-- phpMyAdmin SQL Dump
-- version 2.11.9.5
-- http://www.phpmyadmin.net
--
-- Servidor: localhost
-- Tiempo de generación: 27-05-2009 a las 21:59:10
-- Versión del servidor: 5.1.30
-- Versión de PHP: 5.2.5
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
--
-- Base de datos: `tuwebx49_herreriauruguay`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `jos_banner`
--
CREATE TABLE IF NOT EXISTS `jos_banner` (
`bid` int(11) NOT NULL AUTO_INCREMENT,
`cid` int(11) NOT NULL DEFAULT '0',
`type` varchar(90) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'banner',
`name` text COLLATE utf8_unicode_ci NOT NULL,
`alias` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`imptotal` int(11) NOT NULL DEFAULT '0',
`impmade` int(11) NOT NULL DEFAULT '0',
`clicks` int(11) NOT NULL DEFAULT '0',
`imageurl` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`clickurl` varchar(200) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`date` datetime DEFAULT NULL,
`showBanner` tinyint(1) NOT NULL DEFAULT '0',
`checked_out` tinyint(1) NOT NULL DEFAULT '0',
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`editor` varchar(150) COLLATE utf8_unicode_ci DEFAULT NULL,
`custombannercode` text COLLATE utf8_unicode_ci,
`catid` int(10) unsigned NOT NULL DEFAULT '0',
`description` text COLLATE utf8_unicode_ci NOT NULL,
`sticky` tinyint(1) unsigned NOT NULL DEFAULT '0',
`ordering` int(11) NOT NULL DEFAULT '0',
`publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`tags` text COLLATE utf8_unicode_ci NOT NULL,
`params` text COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`bid`),
KEY `viewbanner` (`showBanner`),
KEY `idx_banner_catid` (`catid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=6 ;
--
-- Volcar la base de datos para la tabla `jos_banner`
--
INSERT INTO `jos_banner` (`bid`, `cid`, `type`, `name`, `alias`, `imptotal`, `impmade`, `clicks`, `imageurl`, `clickurl`, `date`, `showBanner`, `checked_out`, `checked_out_time`, `editor`, `custombannercode`, `catid`, `description`, `sticky`, `ordering`, `publish_up`, `publish_down`, `tags`, `params`) VALUES
(1, 1, 'banner', 'OSM 1', 'osm-1', 0, 194, 0, 'osmbanner1.png', 'http://www.opensourcematters.org', '2004-07-07 15:31:29', 1, 0, '0000-00-00 00:00:00', '', '', 13, '', 0, 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '', ''),
(2, 1, 'banner', 'OSM 2', 'osm-2', 0, 49, 0, 'osmbanner2.png', 'http://www.opensourcematters.org', '2004-07-07 15:31:29', 1, 0, '0000-00-00 00:00:00', '', '', 13, '', 0, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '', ''),
(3, 1, '', 'Joomla!', 'joomla', 0, 11, 0, '', 'http://www.joomla.org', '2006-05-29 14:21:28', 1, 0, '0000-00-00 00:00:00', '', '{NAME}\r\n
\r\nJoomla! The most popular and widely used Open Source CMS Project in the world.', 14, '', 0, 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '', ''),
(4, 1, '', 'Joomla! Forge', 'joomla-forge', 0, 11, 0, '', 'http://forge.joomla.org', '2006-05-29 14:19:26', 1, 0, '0000-00-00 00:00:00', '', '{NAME}\r\n
\r\nJoomla! Forge, development and distribution made easy.', 14, '', 0, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '', ''),
(5, 1, '', 'Joomla! Extensions', 'joomla-extensions', 0, 6, 0, '', 'http://extensions.joomla.org', '2006-05-29 14:23:21', 1, 0, '0000-00-00 00:00:00', '', '{NAME}\r\n
\r\nJoomla! components, modules, plugins and languages by the bucket load.', 14, '', 0, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '', '');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `jos_bannerclient`
--
CREATE TABLE IF NOT EXISTS `jos_bannerclient` (
`cid` int(11) NOT NULL AUTO_INCREMENT,
`name` text COLLATE utf8_unicode_ci NOT NULL,
`contact` text COLLATE utf8_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`extrainfo` text COLLATE utf8_unicode_ci NOT NULL,
`checked_out` tinyint(1) NOT NULL DEFAULT '0',
`checked_out_time` time DEFAULT NULL,
`editor` varchar(150) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`cid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ;
--
-- Volcar la base de datos para la tabla `jos_bannerclient`
--
INSERT INTO `jos_bannerclient` (`cid`, `name`, `contact`, `email`, `extrainfo`, `checked_out`, `checked_out_time`, `editor`) VALUES
(1, 'Open Source Matters', 'Administrator', 'admin@opensourcematters.org', '', 0, '00:00:00', NULL);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `jos_bannertrack`
--
CREATE TABLE IF NOT EXISTS `jos_bannertrack` (
`track_date` date NOT NULL,
`track_type` int(10) unsigned NOT NULL,
`banner_id` int(10) unsigned NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Volcar la base de datos para la tabla `jos_bannertrack`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `jos_categories`
--
CREATE TABLE IF NOT EXISTS `jos_categories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`parent_id` int(11) NOT NULL DEFAULT '0',
`title` text COLLATE utf8_unicode_ci NOT NULL,
`name` text COLLATE utf8_unicode_ci NOT NULL,
`alias` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`image` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`section` varchar(150) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`image_position` varchar(90) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`description` text COLLATE utf8_unicode_ci NOT NULL,
`published` tinyint(1) NOT NULL DEFAULT '0',
`checked_out` int(11) unsigned NOT NULL DEFAULT '0',
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`editor` varchar(150) COLLATE utf8_unicode_ci DEFAULT NULL,
`ordering` int(11) NOT NULL DEFAULT '0',
`access` tinyint(3) unsigned NOT NULL DEFAULT '0',
`count` int(11) NOT NULL DEFAULT '0',
`params` text COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
KEY `cat_idx` (`section`,`published`,`access`),
KEY `idx_section` (`section`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=39 ;
--
-- Volcar la base de datos para la tabla `jos_categories`
--
INSERT INTO `jos_categories` (`id`, `parent_id`, `title`, `name`, `alias`, `image`, `section`, `image_position`, `description`, `published`, `checked_out`, `checked_out_time`, `editor`, `ordering`, `access`, `count`, `params`) VALUES
(1, 0, 'Latest', '', 'latest-news', 'taking_notes.jpg', '1', 'left', 'The latest news from the Joomla! Team', 1, 0, '0000-00-00 00:00:00', '', 1, 0, 1, ''),
(2, 0, 'Joomla! Specific Links', '', 'joomla-specific-links', 'clock.jpg', 'com_weblinks', 'left', 'A selection of links that are all related to the Joomla! Project.', 1, 0, '0000-00-00 00:00:00', NULL, 1, 0, 0, ''),
(3, 0, 'Newsflash', '', 'newsflash', '', '1', 'left', '', 1, 0, '0000-00-00 00:00:00', '', 2, 0, 0, ''),
(4, 0, 'Joomla!', '', 'joomla', '', 'com_newsfeeds', 'left', '', 1, 0, '0000-00-00 00:00:00', NULL, 2, 0, 0, ''),
(5, 0, 'Business: general', '', 'business-general', '', 'com_newsfeeds', 'left', '', 1, 0, '0000-00-00 00:00:00', NULL, 1, 0, 0, ''),
(6, 0, 'Linux', '', 'linux', '', 'com_newsfeeds', 'left', '', 1, 0, '0000-00-00 00:00:00', NULL, 6, 0, 0, ''),
(7, 0, 'Internet', '', 'internet', '', 'com_newsfeeds', 'left', '', 1, 0, '0000-00-00 00:00:00', NULL, 7, 0, 0, ''),
(12, 0, 'Contacts', '', 'contacts', '', 'com_contact_details', 'left', 'Contact Details for this website', 1, 0, '0000-00-00 00:00:00', NULL, 0, 0, 0, ''),
(13, 0, 'Joomla', '', 'joomla', '', 'com_banner', 'left', '', 1, 0, '0000-00-00 00:00:00', NULL, 0, 0, 0, ''),
(14, 0, 'Text Ads', '', 'text-ads', '', 'com_banner', 'left', '', 1, 0, '0000-00-00 00:00:00', NULL, 0, 0, 0, ''),
(15, 0, 'Features', '', 'features', '', 'com_content', 'left', '', 0, 0, '0000-00-00 00:00:00', NULL, 6, 0, 0, ''),
(17, 0, 'Benefits', '', 'benefits', '', 'com_content', 'left', '', 0, 0, '0000-00-00 00:00:00', NULL, 4, 0, 0, ''),
(18, 0, 'Platforms', '', 'platforms', '', 'com_content', 'left', '', 0, 0, '0000-00-00 00:00:00', NULL, 3, 0, 0, ''),
(19, 0, 'Other Resources', '', 'other-resources', '', 'com_weblinks', 'left', '', 1, 0, '0000-00-00 00:00:00', NULL, 2, 0, 0, ''),
(29, 0, 'The CMS', '', 'the-cms', '', '4', 'left', 'Information about the software behind Joomla!
', 1, 0, '0000-00-00 00:00:00', NULL, 2, 0, 0, ''),
(28, 0, 'Current Users', '', 'current-users', '', '3', 'left', 'Questions that users migrating to Joomla! 1.5 are likely to raise
', 1, 0, '0000-00-00 00:00:00', NULL, 2, 0, 0, ''),
(25, 0, 'The Project', '', 'the-project', '', '4', 'left', 'General facts about Joomla!
', 1, 0, '0000-00-00 00:00:00', NULL, 1, 0, 0, ''),
(27, 0, 'New to Joomla', '', 'new-to-joomla', '', '3', 'left', 'Questions for new users of Joomla!
', 1, 0, '0000-00-00 00:00:00', NULL, 3, 0, 0, ''),
(30, 0, 'The Community', '', 'the-community', '', '4', 'left', 'About the millions of Joomla! users and websites
', 1, 0, '0000-00-00 00:00:00', NULL, 3, 0, 0, ''),
(31, 0, 'General', '', 'general', '', '3', 'left', 'General questions about the Joomla! CMS', 1, 0, '0000-00-00 00:00:00', NULL, 1, 0, 0, ''),
(32, 0, 'Languages', '', 'languages', '', '3', 'left', 'Questions related to localisation and languages', 1, 0, '0000-00-00 00:00:00', NULL, 4, 0, 0, ''),
(33, 0, ' YOOslider Vertical', '', '-yooslider-vertical', '', '5', 'left', '', 1, 0, '0000-00-00 00:00:00', NULL, 4, 0, 0, ''),
(34, 0, 'YOOslider Horizontal', '', 'yooslider-horizontal', '', '5', 'left', '', 1, 0, '0000-00-00 00:00:00', NULL, 1, 0, 0, ''),
(35, 0, 'YOOcarousel', '', 'yoocarousel', '', '7', 'left', '', 1, 0, '0000-00-00 00:00:00', NULL, 4, 0, 0, ''),
(36, 0, 'YOOcarousel (Slideshow)', '', 'yoocarousel-slideshow', '', '7', 'left', '', 1, 0, '0000-00-00 00:00:00', NULL, 5, 0, 0, ''),
(37, 0, 'slider', '', 'slider', '', '8', 'left', '', 1, 0, '0000-00-00 00:00:00', NULL, 1, 0, 0, ''),
(38, 0, 'slider', '', 'slider', '', '8', 'left', '', 1, 0, '0000-00-00 00:00:00', NULL, 2, 0, 0, '');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `jos_components`
--
CREATE TABLE IF NOT EXISTS `jos_components` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(150) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`link` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`menuid` int(11) unsigned NOT NULL DEFAULT '0',
`parent` int(11) unsigned NOT NULL DEFAULT '0',
`admin_menu_link` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`admin_menu_alt` text COLLATE utf8_unicode_ci NOT NULL,
`option` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`ordering` int(11) NOT NULL DEFAULT '0',
`admin_menu_img` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`iscore` tinyint(4) NOT NULL DEFAULT '0',
`params` text COLLATE utf8_unicode_ci NOT NULL,
`enabled` tinyint(4) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=73 ;
--
-- Volcar la base de datos para la tabla `jos_components`
--
INSERT INTO `jos_components` (`id`, `name`, `link`, `menuid`, `parent`, `admin_menu_link`, `admin_menu_alt`, `option`, `ordering`, `admin_menu_img`, `iscore`, `params`, `enabled`) VALUES
(1, 'Banners', '', 0, 0, '', 'Banner Management', 'com_banners', 0, 'js/ThemeOffice/component.png', 0, 'track_impressions=0\ntrack_clicks=0\ntag_prefix=\n\n', 1),
(2, 'Banners', '', 0, 1, 'option=com_banners', 'Active Banners', 'com_banners', 1, 'js/ThemeOffice/edit.png', 0, '', 1),
(3, 'Clients', '', 0, 1, 'option=com_banners&c=client', 'Manage Clients', 'com_banners', 2, 'js/ThemeOffice/categories.png', 0, '', 1),
(4, 'Web Links', 'option=com_weblinks', 0, 0, '', 'Manage Weblinks', 'com_weblinks', 0, 'js/ThemeOffice/component.png', 0, 'show_comp_description=1\ncomp_description=\nshow_link_hits=1\nshow_link_description=1\nshow_other_cats=1\nshow_headings=1\nshow_page_title=1\nlink_target=0\nlink_icons=\n\n', 1),
(5, 'Links', '', 0, 4, 'option=com_weblinks', 'View existing weblinks', 'com_weblinks', 1, 'js/ThemeOffice/edit.png', 0, '', 1),
(6, 'Categories', '', 0, 4, 'option=com_categories§ion=com_weblinks', 'Manage weblink categories', '', 2, 'js/ThemeOffice/categories.png', 0, '', 1),
(7, 'Contacts', 'option=com_contact', 0, 0, '', 'Edit contact details', 'com_contact', 0, 'js/ThemeOffice/component.png', 1, 'contact_icons=0\nicon_address=\nicon_email=\nicon_telephone=\nicon_fax=\nicon_misc=\nshow_headings=1\nshow_position=1\nshow_email=0\nshow_telephone=1\nshow_mobile=1\nshow_fax=1\nbannedEmail=\nbannedSubject=\nbannedText=\nsession=1\ncustomReply=0\n\n', 1),
(8, 'Contacts', '', 0, 7, 'option=com_contact', 'Edit contact details', 'com_contact', 0, 'js/ThemeOffice/edit.png', 1, '', 1),
(9, 'Categories', '', 0, 7, 'option=com_categories§ion=com_contact_details', 'Manage contact categories', '', 2, 'js/ThemeOffice/categories.png', 1, '', 1),
(10, 'Polls', 'option=com_poll', 0, 0, 'option=com_poll', 'Manage Polls', 'com_poll', 0, 'js/ThemeOffice/component.png', 0, '', 1),
(11, 'News Feeds', 'option=com_newsfeeds', 0, 0, '', 'News Feeds Management', 'com_newsfeeds', 0, 'js/ThemeOffice/component.png', 0, '', 1),
(12, 'Feeds', '', 0, 11, 'option=com_newsfeeds', 'Manage News Feeds', 'com_newsfeeds', 1, 'js/ThemeOffice/edit.png', 0, '', 1),
(13, 'Categories', '', 0, 11, 'option=com_categories§ion=com_newsfeeds', 'Manage Categories', '', 2, 'js/ThemeOffice/categories.png', 0, '', 1),
(14, 'User', 'option=com_user', 0, 0, '', '', 'com_user', 0, '', 1, '', 1),
(15, 'Search', 'option=com_search', 0, 0, 'option=com_search', 'Search Statistics', 'com_search', 0, 'js/ThemeOffice/component.png', 1, 'enabled=0\n\n', 1),
(16, 'Categories', '', 0, 1, 'option=com_categories§ion=com_banner', 'Categories', '', 3, '', 1, '', 1),
(17, 'Wrapper', 'option=com_wrapper', 0, 0, '', 'Wrapper', 'com_wrapper', 0, '', 1, '', 1),
(18, 'Mail To', '', 0, 0, '', '', 'com_mailto', 0, '', 1, '', 1),
(19, 'Media Manager', '', 0, 0, 'option=com_media', 'Media Manager', 'com_media', 0, '', 1, 'upload_extensions=bmp,csv,doc,epg,gif,ico,jpg,odg,odp,ods,odt,pdf,png,ppt,swf,txt,xcf,xls,BMP,CSV,DOC,EPG,GIF,ICO,JPG,ODG,ODP,ODS,ODT,PDF,PNG,PPT,SWF,TXT,XCF,XLS\nupload_maxsize=10000000\nfile_path=images\nimage_path=images/stories\nrestrict_uploads=1\ncheck_mime=1\nimage_extensions=bmp,gif,jpg,png\nignore_extensions=\nupload_mime=image/jpeg,image/gif,image/png,image/bmp,application/x-shockwave-flash,application/msword,application/excel,application/pdf,application/powerpoint,text/plain,application/x-zip\nupload_mime_illegal=text/html\nenable_flash=1\n\n', 1),
(20, 'Articles', 'option=com_content', 0, 0, '', '', 'com_content', 0, '', 1, 'show_noauth=0\nshow_title=0\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=0\nshow_print_icon=0\nshow_email_icon=0\nshow_hits=0\nfeed_summary=0\nfilter_tags=\nfilter_attritbutes=\n\n', 1),
(21, 'Configuration Manager', '', 0, 0, '', 'Configuration', 'com_config', 0, '', 1, '', 1),
(22, 'Installation Manager', '', 0, 0, '', 'Installer', 'com_installer', 0, '', 1, '', 1),
(23, 'Language Manager', '', 0, 0, '', 'Languages', 'com_languages', 0, '', 1, 'site=es-ES\nadministrator=es-ES\n\n', 1),
(24, 'Mass mail', '', 0, 0, '', 'Mass Mail', 'com_massmail', 0, '', 1, 'mailSubjectPrefix=\nmailBodySuffix=\n\n', 1),
(25, 'Menu Editor', '', 0, 0, '', 'Menu Editor', 'com_menus', 0, '', 1, '', 1),
(26, 'Menu Manager', '', 0, 0, '', 'Menu Manager', 'com_menumanager', 0, '', 1, '', 1),
(27, 'Messaging', '', 0, 0, '', 'Messages', 'com_messages', 0, '', 1, '', 1),
(28, 'Modules Manager', '', 0, 0, '', 'Modules', 'com_modules', 0, '', 1, '', 1),
(29, 'Plugin Manager', '', 0, 0, '', 'Plugins', 'com_plugins', 0, '', 1, '', 1),
(30, 'Template Manager', '', 0, 0, '', 'Templates', 'com_templates', 0, '', 1, '', 1),
(31, 'User Manager', '', 0, 0, '', 'Users', 'com_users', 0, '', 1, 'allowUserRegistration=1\nnew_usertype=Registered\nuseractivation=1\nfrontend_userparams=1\n\n', 1),
(32, 'Cache Manager', '', 0, 0, '', 'Cache', 'com_cache', 0, '', 1, '', 1),
(33, 'Control Panel', '', 0, 0, '', 'Control Panel', 'com_cpanel', 0, '', 1, '', 1),
(39, 'Phoca Gallery', 'option=com_phocagallery', 0, 0, 'option=com_phocagallery', 'Phoca Gallery', 'com_phocagallery', 0, 'components/com_phocagallery/assets/images/icon-16-menu.png', 0, 'font_color=#b36b00\nbackground_color=#fcfcfc\nbackground_color_hover=#f5f5f5\nimage_background_color=#f5f5f5\nimage_background_shadow=shadow1\nborder_color=#e8e8e8\nborder_color_hover=#b36b00\nmargin_box=5\npadding_box=5\ndisplay_name=0\ndisplay_icon_detail=0\ndisplay_icon_download=0\ndisplay_icon_folder=0\ndisplay_icon_random_image=0\ndisplay_back_button=0\ndisplay_categories_back_button=0\ndisplay_subcat_page=0\nfont_size_name=12\nchar_length_name=30\ncategory_box_space=0\ncategories_columns=1\ndisplay_image_categories=1\nimage_categories_size=4\ndisplay_subcategories=1\ndisplay_empty_categories=0\nhide_categories=\ndisplay_access_category=0\ndetail_window=0\ndetail_window_background_color=#ffffff\nmodal_box_overlay_color=#000000\nmodal_box_overlay_opacity=0.3\nmodal_box_border_color=#6b6b6b\nmodal_box_border_width=2\nsb_slideshow_delay=5\nsb_lang=es\ndisplay_description_detail=0\ndisplay_title_description=0\nfont_size_desc=11\nfont_color_desc=#333333\ndescription_detail_height=16\ndescription_lightbox_font_size=12\ndescription_lightbox_font_color=#ffffff\ndescription_lightbox_bg_color=#000000\nslideshow_delay=3000\nslideshow_pause=0\nslideshow_random=0\ndetail_buttons=1\nphocagallery_width=\ndisplay_phoca_info=4\ndefault_pagination=20\npagination=5;10;15;20;50\nenable_piclens=0\nstart_piclens=0\npiclens_image=1\nswitch_image=0\nswitch_width=640\nswitch_height=480\nenable_overlib=0\nol_bg_color=#666666\nol_fg_color=#f6f6f6\nol_tf_color=#000000\nol_cf_color=#ffffff\noverlib_overlay_opacity=0.7\ncreate_watermark=0\nwatermark_position_x=center\nwatermark_position_y=middle\ndisplay_icon_vm=0\nenable_user_cp=0\nmax_create_cat_char=1000\ndisplay_rating=0\ndisplay_comment=0\ncomment_width=500\nmax_comment_char=1000\ndisplay_category_statistics=0\ndisplay_main_cat_stat=1\ndisplay_lastadded_cat_stat=1\ncount_lastadded_cat_stat=3\ndisplay_mostviewed_cat_stat=1\ncount_mostviewed_cat_stat=3\ngoogle_maps_api_key=\ndisplay_categories_geotagging=0\ncategories_lng=\ncategories_lat=\ncategories_zoom=2\ncategories_map_width=500\ncategories_map_height=500\ndisplay_icon_geotagging=0\ndisplay_category_geotagging=0\ncategory_map_width=500\ncategory_map_height=400\ndisplay_title_upload=1\ndisplay_description_upload=1\nmax_upload_char=1000\nupload_maxsize=3000000\ncat_folder_maxsize=20000000\nenable_flash=0\npagination_thumbnail_creation=0\nclean_thumbnails=0\nenable_thumb_creation=1\ncrop_thumbnail=5\nicon_format=gif\nlarge_image_width=640\nlarge_image_height=480\nmedium_image_width=100\nmedium_image_height=100\nsmall_image_width=50\nsmall_image_height=50\nadmin_modal_box_width=680\nadmin_modal_box_height=520\nfront_modal_box_width=680\nfront_modal_box_height=560\nfront_popup_window_width=680\nfront_popup_window_height=560\n\n', 1),
(40, 'Control Panel', '', 0, 39, 'option=com_phocagallery', 'Control Panel', 'com_phocagallery', 0, 'components/com_phocagallery/assets/images/icon-16-control-panel.png', 0, '', 1),
(41, 'Images', '', 0, 39, 'option=com_phocagallery&view=phocagallerys', 'Images', 'com_phocagallery', 1, 'components/com_phocagallery/assets/images/icon-16-menu-gal.png', 0, '', 1),
(42, 'Categories', '', 0, 39, 'option=com_phocagallery&view=phocagallerycs', 'Categories', 'com_phocagallery', 2, 'components/com_phocagallery/assets/images/icon-16-menu-cat.png', 0, '', 1),
(43, 'Themes', '', 0, 39, 'option=com_phocagallery&view=phocagalleryt', 'Themes', 'com_phocagallery', 3, 'components/com_phocagallery/assets/images/icon-16-menu-theme.png', 0, '', 1),
(44, 'Rating', '', 0, 39, 'option=com_phocagallery&view=phocagalleryra', 'Rating', 'com_phocagallery', 4, 'components/com_phocagallery/assets/images/icon-16-menu-vote.png', 0, '', 1),
(45, 'Comments', '', 0, 39, 'option=com_phocagallery&view=phocagallerycos', 'Comments', 'com_phocagallery', 5, 'components/com_phocagallery/assets/images/icon-16-menu-comment.png', 0, '', 1),
(46, 'Info', '', 0, 39, 'option=com_phocagallery&view=phocagalleryin', 'Info', 'com_phocagallery', 6, 'components/com_phocagallery/assets/images/icon-16-menu-info.png', 0, '', 1),
(68, 'Mass content', 'option=com_masscontent', 0, 0, 'option=com_masscontent', 'Mass content', 'com_masscontent', 0, 'js/ThemeOffice/component.png', 0, 'nbMassContent=10\nnbMassCategories=10\nnbMassSections=10\ndisplayWysiwyg=2\ndisplayAlias=1\ndisplayIntroText=1\ndisplayFullText=1\ndisplayMetaDescription=0\ndisplayMetaKeywords=0\ndisplayMetaRobots=0\ndisplayMetaAuthor=0\n\n', 1),
(69, 'Create mass content', '', 0, 68, 'option=com_masscontent&controller=content', 'Create mass content', 'com_masscontent', 0, 'js/ThemeOffice/component.png', 0, '', 1),
(70, 'Create mass sections', '', 0, 68, 'option=com_masscontent&controller=sections', 'Create mass sections', 'com_masscontent', 1, 'js/ThemeOffice/component.png', 0, '', 1),
(71, 'Create mass categories', '', 0, 68, 'option=com_masscontent&controller=categories', 'Create mass categories', 'com_masscontent', 2, 'js/ThemeOffice/component.png', 0, '', 1),
(72, 'Delete mass content', '', 0, 68, 'option=com_masscontent&controller=delete', 'Delete mass content', 'com_masscontent', 3, 'js/ThemeOffice/component.png', 0, '', 1),
(59, 'JCE Administration', 'option=com_jce', 0, 0, 'option=com_jce', 'JCE Administration', 'com_jce', 0, 'js/ThemeOffice/component.png', 0, '', 1),
(60, 'Control Panel', '', 0, 59, 'option=com_jce', 'Control Panel', 'com_jce', 0, 'templates/khepri/images/menu/icon-16-cpanel.png', 0, '', 1),
(61, 'Configuration', '', 0, 59, 'option=com_jce&type=config', 'Configuration', 'com_jce', 1, 'templates/khepri/images/menu/icon-16-config.png', 0, '', 1),
(62, 'Groups', '', 0, 59, 'option=com_jce&type=group', 'Groups', 'com_jce', 2, 'templates/khepri/images/menu/icon-16-user.png', 0, '', 1),
(63, 'Plugins', '', 0, 59, 'option=com_jce&type=plugin', 'Plugins', 'com_jce', 3, 'templates/khepri/images/menu/icon-16-plugin.png', 0, '', 1),
(64, 'Install', '', 0, 59, 'option=com_jce&type=install', 'Install', 'com_jce', 4, 'templates/khepri/images/menu/icon-16-install.png', 0, '', 1),
(67, 'Google translation for Joomfish', 'option=com_jgtranslation', 0, 0, 'option=com_jgtranslation', 'Google translation for Joomfish', 'com_jgtranslation', 0, 'js/ThemeOffice/component.png', 0, '', 1),
(66, 'JoomlaPack', 'option=com_joomlapack', 0, 0, 'option=com_joomlapack', 'JoomlaPack', 'com_joomlapack', 0, 'js/ThemeOffice/component.png', 0, '', 1);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `jos_contact_details`
--
CREATE TABLE IF NOT EXISTS `jos_contact_details` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` text COLLATE utf8_unicode_ci NOT NULL,
`alias` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`con_position` text COLLATE utf8_unicode_ci,
`address` text COLLATE utf8_unicode_ci,
`suburb` text COLLATE utf8_unicode_ci,
`state` text COLLATE utf8_unicode_ci,
`country` text COLLATE utf8_unicode_ci,
`postcode` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`telephone` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`fax` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`misc` mediumtext COLLATE utf8_unicode_ci,
`image` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`imagepos` varchar(60) COLLATE utf8_unicode_ci DEFAULT NULL,
`email_to` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`default_con` tinyint(1) unsigned NOT NULL DEFAULT '0',
`published` tinyint(1) unsigned NOT NULL DEFAULT '0',
`checked_out` int(11) unsigned NOT NULL DEFAULT '0',
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`ordering` int(11) NOT NULL DEFAULT '0',
`params` text COLLATE utf8_unicode_ci NOT NULL,
`user_id` int(11) NOT NULL DEFAULT '0',
`catid` int(11) NOT NULL DEFAULT '0',
`access` tinyint(3) unsigned NOT NULL DEFAULT '0',
`mobile` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`webpage` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ;
--
-- Volcar la base de datos para la tabla `jos_contact_details`
--
INSERT INTO `jos_contact_details` (`id`, `name`, `alias`, `con_position`, `address`, `suburb`, `state`, `country`, `postcode`, `telephone`, `fax`, `misc`, `image`, `imagepos`, `email_to`, `default_con`, `published`, `checked_out`, `checked_out_time`, `ordering`, `params`, `user_id`, `catid`, `access`, `mobile`, `webpage`) VALUES
(1, 'Name', 'name', 'Position', 'Street', 'Suburb', 'State', 'Country', 'Zip Code', 'Telephone', 'Fax', 'Miscellanous info', 'powered_by.png', 'top', 'email@email.com', 1, 1, 0, '0000-00-00 00:00:00', 1, 'menu_image=-1\r\npageclass_sfx=\r\nprint=\r\nname=1\r\nposition=1\r\nemail=0\r\nstreet_address=1\r\nsuburb=1\r\nstate=1\r\ncountry=1\r\npostcode=1\r\ntelephone=1\r\nfax=1\r\nmisc=1\r\nimage=1\r\nvcard=0\r\nemail_description=1\r\nemail_description_text=\r\nemail_form=1\r\nemail_copy=1\r\ndrop_down=0\r\ncontact_icons=0\r\nicon_address=\r\nicon_email=\r\nicon_telephone=\r\nicon_fax=\r\nicon_misc=', 0, 12, 0, '', '');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `jos_content`
--
CREATE TABLE IF NOT EXISTS `jos_content` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`title` text COLLATE utf8_unicode_ci NOT NULL,
`alias` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`title_alias` text COLLATE utf8_unicode_ci NOT NULL,
`introtext` mediumtext COLLATE utf8_unicode_ci NOT NULL,
`fulltext` mediumtext COLLATE utf8_unicode_ci NOT NULL,
`state` tinyint(3) NOT NULL DEFAULT '0',
`sectionid` int(11) unsigned NOT NULL DEFAULT '0',
`mask` int(11) unsigned NOT NULL DEFAULT '0',
`catid` int(11) unsigned NOT NULL DEFAULT '0',
`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`created_by` int(11) unsigned NOT NULL DEFAULT '0',
`created_by_alias` text COLLATE utf8_unicode_ci NOT NULL,
`modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified_by` int(11) unsigned NOT NULL DEFAULT '0',
`checked_out` int(11) unsigned NOT NULL DEFAULT '0',
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`images` text COLLATE utf8_unicode_ci NOT NULL,
`urls` text COLLATE utf8_unicode_ci NOT NULL,
`attribs` text COLLATE utf8_unicode_ci NOT NULL,
`version` int(11) unsigned NOT NULL DEFAULT '1',
`parentid` int(11) unsigned NOT NULL DEFAULT '0',
`ordering` int(11) NOT NULL DEFAULT '0',
`metakey` text COLLATE utf8_unicode_ci NOT NULL,
`metadesc` text COLLATE utf8_unicode_ci NOT NULL,
`access` int(11) unsigned NOT NULL DEFAULT '0',
`hits` int(11) unsigned NOT NULL DEFAULT '0',
`metadata` text COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
KEY `idx_section` (`sectionid`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_state` (`state`),
KEY `idx_catid` (`catid`),
KEY `idx_mask` (`mask`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=128 ;
--
-- Volcar la base de datos para la tabla `jos_content`
--
INSERT INTO `jos_content` (`id`, `title`, `alias`, `title_alias`, `introtext`, `fulltext`, `state`, `sectionid`, `mask`, `catid`, `created`, `created_by`, `created_by_alias`, `modified`, `modified_by`, `checked_out`, `checked_out_time`, `publish_up`, `publish_down`, `images`, `urls`, `attribs`, `version`, `parentid`, `ordering`, `metakey`, `metadesc`, `access`, `hits`, `metadata`) VALUES
(1, 'Welcome to Joomla!', 'welcome-to-joomla', '', '
Joomla! is a free open source framework and content publishing system designed for quickly creating highly interactive multi-language Web sites, online communities, media portals, blogs and eCommerce applications.
Joomla! provides an easy-to-use graphical user interface that simplifies the management and publishing of large volumes of content including HTML, documents, and rich media. Joomla! is used by organisations of all sizes for Public Websites, Intranets and Extranets and is supported by a community of thousands of users.
Joomla! has a rich heritage and has been crowned CMS king many times over. Now with more power under the hood, Joomla! is shifting gear and provides developer power while making the user experience all the more friendly. For those who always wanted increased extensibility, Joomla! 1.5 can make this happen.
', -2, 1, 0, 1, '2006-10-12 12:00:00', 62, '', '2007-05-03 09:41:07', 62, 0, '0000-00-00 00:00:00', '2006-01-02 16:00:00', '0000-00-00 00:00:00', '', '', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', 20, 0, 0, '', '', 0, 34, 'robots=\nauthor='), (2, 'Newsflash 1', 'newsflash-1', '', 'Joomla! makes it easy to launch a website of any kind. Whether you want a brochure site or you''re building a large online community, Joomla! allows you to deploy a site in minutes and add functionality as you need it. The hundreds of extensions will expand your site and allow you to deliver new services that expand your reach into the Internet.
', '', -2, 1, 0, 3, '2004-08-10 08:30:34', 62, '', '2007-05-03 09:41:42', 62, 0, '0000-00-00 00:00:00', '2004-08-09 12:00:00', '0000-00-00 00:00:00', '', '', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', 6, 0, 0, '', '', 0, 1, 'robots=\nauthor='), (3, 'Newsflash 2', 'newsflash-2', '', 'The one thing about a website, it always changes! Joomla! makes it easy to add article, content, images, videos and more. Site administrators can edit and manage content ''in-context'' by clicking the ''edit'' link. Webmasters can also edit content though a graphical administration panel that give you complete control over your site.
', '', -2, 1, 0, 3, '2004-08-10 00:30:34', 62, '', '2007-05-03 09:41:52', 62, 0, '0000-00-00 00:00:00', '2004-08-09 08:00:00', '0000-00-00 00:00:00', '', '', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', 5, 0, 0, '', '', 0, 0, 'robots=\nauthor='), (4, 'Newsflash 3', 'newsflash-3', '', 'With a library of hundreds of free extensions, you can add what you need as your site grows. Don''t wait, look through the Joomla! extensions library today.
', '', -2, 1, 0, 3, '2004-08-10 08:30:34', 62, '', '2007-05-03 09:41:59', 62, 0, '0000-00-00 00:00:00', '2004-08-09 12:00:00', '0000-00-00 00:00:00', '', '', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', 6, 0, 0, '', '', 0, 1, 'robots=\nauthor='), (5, 'Joomla! License Guidelines', 'joomla-license-guidelines', 'joomla-license-guidelines', 'This website is powered by Joomla! The software and default templates on which it runs are Copyright 2005-2006 Open Source Matters. All other content and data, including data entered into this website and templates added after installation, are copyrighted by their respective copyright owners.
If you want to distribute, copy or modify Joomla!, you are welcome to do so under the terms of the GNU General Public License. If you are unfamiliar with this license, you might want to read ''How To Apply These Terms To Your Program'' and the ''GNU General Public License FAQ''.
', '', -2, 4, 0, 25, '2004-08-20 12:11:07', 62, '', '2007-05-03 09:36:19', 62, 0, '0000-00-00 00:00:00', '2004-08-19 08:00:00', '0000-00-00 00:00:00', '', '', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', 5, 0, 0, '', '', 0, 48, 'robots=\nauthor='), (6, 'Example News Item 1', 'example-news-item-1', '', '
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.', '
Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.
Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.
Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.
Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores duo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet clita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero voluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat.
Consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
', -2, 1, 0, 1, '2004-07-07 11:54:06', 62, '', '2007-05-03 09:41:08', 62, 0, '0000-00-00 00:00:00', '2004-07-07 00:00:00', '0000-00-00 00:00:00', '', '', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', 3, 0, 0, '', '', 0, 11, 'robots=\nauthor='), (7, 'Example News Item 2', 'example-news-item-2', '', '
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.
At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
', -2, 1, 0, 1, '2004-07-07 12:00:00', 62, '', '2007-05-03 09:41:13', 62, 0, '0000-00-00 00:00:00', '2004-07-07 12:00:00', '0000-00-00 00:00:00', '', '', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', 5, 0, 0, '', '', 0, 3, 'robots=\nauthor='), (8, 'Example News Item 3', 'example-news-item-3', '', '
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
', '
Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.
Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.
Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.
Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores duo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet clita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero voluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat.
Consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
', -2, 1, 0, 1, '2004-07-07 11:54:06', 62, '', '2007-05-03 09:41:24', 62, 0, '0000-00-00 00:00:00', '2004-07-07 00:00:00', '0000-00-00 00:00:00', '', '', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', 3, 0, 0, '', '', 0, 7, 'robots=\nauthor='), (10, 'How do I localise Joomla! to my language?', 'how-do-i-localise-joomla-to-my-language', '', 'In Joomla! 1.5 all user interfaces can be localised. This includes the installation, the administrator interface and the front end site.
The core release of Joomla! 1.5 is shipped with mutliple language choices in the installation but languages for the site and administration interfaces need to be added after installation. (Other than English). Links to such language packs exist below.
', 'Translation Teams for Joomla! 1.5 may have also released fully localised installation packages where site, administrator and sample data are in the local language. These localised releases can be found in the specific team projects on the Joomla! Forge.
Please note that Joomla! 1.5 is new and language packs for this version may have not been released at this time.
Joomla! can be adapted to provide multi-lingual sites by installing the Joom-Fish component.
', -2, 3, 0, 32, '2006-09-30 16:06:37', 62, '', '2007-05-03 09:40:39', 62, 0, '0000-00-00 00:00:00', '2006-09-29 12:00:00', '0000-00-00 00:00:00', '', '', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', 8, 0, 0, '', '', 0, 6, 'robots=\nauthor='), (11, 'How do I upgrade to Joomla! 1.5 ?', 'how-do-i-upgrade-to-joomla-15', '', 'Joomla 1.5 does not provide an upgrade path from earlier versions. Converting an older site to a Joomla 1.5 site requires creation of a new empty site using Joomla 1.5 and then populating the new site with the content from the old site. This migration of content is not a one-to-one process and involves conversions and modifications to the content dump.
There are two ways to perform the migration:
', 'This is a two phased process using two tools. The first tool is a migrator component named ''com_migrator''. This component has been contributed by Harald Baer and is based on his ''eBackup'' component. The migrator needs to be installed on the old site and when activated it prepares the required export dump of the old site''s data. The second tool is built into the Joomla 1.5 installation process. The exported content dump is loaded to the new site and all conversions and modification are performed ''on-the-fly''.
Step 1 - Using com_migrator to export data from old site:
Step 2 - Using the migration facility to import and convert data during Joomla 1.5 installation:
Note: This function requires use of the iconv function in PHP to convert encodings. If iconv is not found a warning will be provided.
Well... how about never needing to mess with encoding settings again?
Ever needed to display several languages on one page or site and something always came up in Giberish?
With utf-8 (a variant of Unicode) glyphs (charcter forms) of all basically all languages can be displayed with one single encoding setting. For example if you might wish to say WELCOME in as many language possible you could do the following:
', '', -2, 3, 0, 31, '2006-10-05 03:11:29', 62, '', '2007-05-03 09:39:54', 62, 0, '0000-00-00 00:00:00', '2006-10-03 12:00:00', '0000-00-00 00:00:00', '', '', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', 7, 0, 0, '', '', 0, 25, 'robots=\nauthor='), (13, 'What happened to the locale setting?', 'what-happened-to-the-locale-setting', '', 'This is now defined in the language <lang>.xml file in the language metadata settings. If you are having locale problems (dates don''t appear in your language) you might want to check/edit the entries in the locale tag. Note that multiple locale strings can be set and the host will usually accept the first one recognised.', '', -2, 3, 0, 28, '2006-10-06 18:47:35', 62, '', '2007-05-03 09:36:34', 62, 0, '0000-00-00 00:00:00', '2006-10-05 16:00:00', '0000-00-00 00:00:00', '', '', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', 6, 0, 0, '', '', 0, 6, 'robots=\nauthor='), (14, 'What is the FTP layer for?', 'what-is-the-ftp-layer-for', '', 'This allows file operations (such installing extensions or updating the main configuration) without having to make all the folders and files writeable. This makes the site admin''s life a lot easier and increases security of the site
You can check the write status of relevent folders by going to ''''Help->System Info" and then in the sub-menu to "Directory Permissions". With FTP even if all directories are red, Joomla! will operate smoothly.
NOTE: the FTP layer is not required on a Windows host.
', '', -2, 3, 0, 31, '2006-10-06 21:27:49', 62, '', '2007-05-03 09:39:48', 62, 0, '0000-00-00 00:00:00', '2006-10-05 16:00:00', '0000-00-00 00:00:00', '', '', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', 6, 0, 0, '', '', 0, 8, 'robots=\nauthor='), (15, 'Can Joomla! 1.5 operate with PHP Safe Mode On?', 'can-joomla-15-operate-with-php-safe-mode-on', '', 'Yes it can! This is a significant security improvement.
The safe mode limits PHP file to be able to perfom actions only on files/folders who''s owner is the same as PHP is currently using (this is usually ''apache''). As files normally are created either by the Joomla! application or by FTP access, the combination of PHP file actions and the FTP layer allows Joomla! to operate in PHP Safe Mode.
', '', -2, 3, 0, 31, '2006-10-06 21:28:35', 62, '', '2007-05-03 09:39:43', 62, 0, '0000-00-00 00:00:00', '2006-10-05 16:00:00', '0000-00-00 00:00:00', '', '', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', 6, 0, 0, '', '', 0, 3, 'robots=\nauthor='), (16, 'Only one edit window! How do I create "Read more..."?', 'only-one-edit-window-how-do-i-create-read-more', '', 'This is now implemented by inserting a tag (button is in the editor area) a dotted line appears in the edited text showing the split location for the "Read more...". A new bot takes care of the rest.
It is worth mentioning that this does not have a negative effect on migrated data from older sites. The new implementation is fully backward compatible.
', '', -2, 3, 0, 28, '2006-10-06 21:29:28', 62, '', '2007-05-03 09:36:49', 62, 0, '0000-00-00 00:00:00', '2006-10-05 16:00:00', '0000-00-00 00:00:00', '', '', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', 6, 0, 0, '', '', 0, 8, 'robots=\nauthor='), (17, 'My MySql database does not support UTF-8. Do I have a problem?', 'my-mysql-database-does-not-support-utf-8-do-i-have-a-problem', '', 'No you don''t. Versions of MySql lower than 4.1 do not have build in utf-8 support. However, Joomla! 1.5 has made provisions for backward compatibility and is able to use utf-8 on older databases. Let the installer take care of all settings and there is no need to make any changes to the database (charset, collation or any other).', '', -2, 3, 0, 31, '2006-10-07 13:30:37', 62, '', '2007-05-03 09:39:51', 62, 0, '0000-00-00 00:00:00', '2006-10-06 00:00:00', '0000-00-00 00:00:00', '', '', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', 8, 0, 0, '', '', 0, 5, 'robots=\nauthor='), (18, 'Joomla! Features', 'joomla-features', '', 'If you''re new to web publishing systems, you''ll find that Joomla! delivers sophisticated solutions to your online needs. It can deliver a robust enterprise-level website, empowered by endless extensibility for your bespoke publishing needs. Moreover, it is often the system of choice for small business or home users who want a professional looking site that''s simple to deploy and use. We do content right.
So what''s the catch? How much does this system cost? Well, there''s good news ... and more good news! Joomla! 1.5 is free released under an Open Source license.
Had you invested in a commercial alternatives, there''d be nothing but moths left in your wallet.
Joomla! is set to change all that ... Joomla! is different from the normal models for content management software. For a start, it''s not complicated. Joomla! has been developed for everybody. It''s licensed under the GNU/GPL license, easy to install and administer and reliable. Joomla! doesn''t even require the user or administrator of the system to know HTML to operate it once it''s up and running.', '', -2, 4, 0, 29, '2006-10-09 09:49:20', 62, '', '2007-05-03 09:34:19', 62, 0, '0000-00-00 00:00:00', '2006-10-07 12:00:00', '0000-00-00 00:00:00', '', '', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', 12, 0, 0, '', '', 0, 86, 'robots=\nauthor='), (20, 'Support and Documentation', 'support-and-documentation', '', 'Support for the Joomla! CMS can be found on several places. The best place to start would be the official Help Site . On the Help Site you can find a lot of documantation such as an Administrator manual, Developer info, Frequently Asked Questions and so on.
Of course you should not forget the Help System of the CMS itself. On the topmenu in the Backend Administrator you find the Help button which will provide you with lots of explanation on features.
Another great place would of course be the Forum . On the Joomla! Forum you can find help and support from both Community members, but also from Joomla! Core members and Working Group members. The forum contains a lot of information, FAQ''s, just about anything you are looking for in terms of support.
Two other resources for Support are the Developer Site and the Extensions Site . The Developer Site for example provides lots of technical info to developers. The Joomla! Core members are regularly posting there blog reports about several topics such as programming techniques used in Joomla!, Security, Events and more.
Joomla! Documentation can of course be found on the Help Site . You can find information such as an Installation Guide, User and Administrator manuals, Frueqently Asked Questions and a lot more.
Other than the documantation provided by the joomla! Core team, there are also books written about Joomla! You can find a listing of these books in the Joomla! Bookshelf .
Can you help?
Yes! If you have any suggestions for us, please post them to:
http://forum.joomla.org/index.php/board,59.0.html
Here are some interesting facts about Joomla!
', '', -2, 4, 0, 30, '2006-10-09 18:46:37', 62, '', '2007-05-03 09:36:13', 62, 0, '0000-00-00 00:00:00', '2006-10-07 16:00:00', '0000-00-00 00:00:00', '', '', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', 12, 0, 0, '', '', 0, 47, 'robots=\nauthor='), (22, 'What''s New In 1.5?', 'whats-new-in-15', '', '
As with previous releases, Joomla! provides a unified and easy-to-use framework for delivering content for websites of all kinds. To support the changing nature of the Internet and emerging web technologies, Joomla! required substantial restructuring of its core functionality and we also used this effort to simplify many challenges within the current user interface. Joomla! 1.5 has many new features.
', '
The goals for the Joomla! 1.5 release are to:
Substantially improve usability, manageability, and scalability far beyond the original Mambo foundations.
Expand accessibility to support internationalisation, double-byte characters and Right-to-Left support for Arabic and Hebrew languages.
Extend the integration of external applications through Web Services and remote authentication such as the Lightweight Directory Access Protocol (LDAP).
Enhance the content delivery, template and presentation capabilities to support accessibility standards and content delivery to any destination.
Achieve a more sustainable and flexible framework for component and extension developers.
Deliver backwards compatibility with previous releases of components, templates, modules and other extensions.
', -2, 4, 0, 29, '2006-10-12 00:13:58', 62, '', '2007-05-03 09:34:11', 62, 0, '0000-00-00 00:00:00', '2006-10-10 20:00:00', '0000-00-00 00:00:00', '', '', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', 7, 0, 0, '', '', 0, 34, 'robots=\nauthor='), (23, 'Platforms and Open Standards', 'platforms-and-open-standards', '', '
Joomla! runs on any platform including Windows, most flavors of Linux, Several Unix versions, and the Apple OSX platform. Joomla! depends PHP and the MySQL database to deliver dynamic content.
The minimum requirements are:
Joomla! provides plenty of flexibility when displaying your web content. Whether you are using Joomla! for a blog site, news or a website for a company, you''ll find one or more content styles to showcase your information. You can also change the style of content dynamically depending on your preferences. Joomla calls how a page is laid out a layout. Use the guide below to understand which layouts are available and how you might use them.
Joomla! makes it extremely easy to add and display content. All content is placed where your mainbody tag in your template is located. There are three main types of layouts available in Joomla! and all of them can be customised via parameters. The display and parameters are set in the menu item used to display the content your working on. You create these layouts by creating a menu item and choosing how you want the content to display.
Blog layout will show a listing of all content items of the selected blog type (section or category) in the mainbody position of your template. It will give you the standard title, and Intro of each content article in that particular Category and/or Section. You can customise this layout via the use of the content parameters, (See Content Parameters) this is done from the menu not the section manager!
A Blog Archive layout will give you a similar output of content as the normal Blog Display but will add at the top two dropdown boxes for Month and year plus a search button to allow users to search for all archived content from a specific month and year
Table layout will simply give you a table of all the titles in that particular section or category. No intro will be displayed just the titles. You can set how many titles will be displayed in this table by Parameters. The table layout will also provide a filter section so that users can reorder, filter and set how many titles are listed on a single page (up to 50)
Wrappers allow you to place stand alone applications and 3rd party websites inside your Joomla! site. The content within a wrapper appears within the primary content area defined by the "mainbody" tag and allows you to display content to display them as part of your own site. A Wrapper will place an IFRAME into the content section of your website and wrap your standard template navigation around it so it appears in the same way a content item would.
The parameters for each layout type can be found on the right hand side of the editor boxes in the menu item configuration screen. The parameters available depend largely on what kind of layout you are configuring.
', '', -2, 4, 0, 29, '2006-10-13 00:33:10', 62, '', '2007-05-03 09:36:12', 62, 0, '0000-00-00 00:00:00', '2006-10-11 08:00:00', '0000-00-00 00:00:00', '', '', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', 10, 0, 0, '', '', 0, 46, 'robots=\nauthor='), (25, 'What are the requirements to run Joomla! 1.5?', 'what-are-the-requirements-to-run-joomla-15', '', 'Joomla! runs on the php pre-processor. Php comes in many flavors, for a lot of operating systems. Beside php you will need a web server. Most of the times Apache is used, but also php can run on different web-servers like Microsoft IIS. Joomla! also depends on a database, for this currently you can only use MySQL.Out of the box, Joomla does a great job of managing the content needed to make your website sing. But for many people, the true power of Joomla lies in the application framework that makes it possible for thousands of developers around the world to create powerful add-ons that are called extensions. An extension is used to add capabilities to Joomla! that do not exist in the base core code. Here are just some examples of the hundreds of available extensions:
You can find more examples over at our growing Joomla! Extensions Directory. Prepare to be amazed at the amount of exciting work produced by our active developer community!
A useful guide to the extension site can be found at:
http://extensions.joomla.org/content/view/15/63/
There are five types of extensions:
You can read more about the specifics of these using the links in the article table of contents (another useful feature of Joomla!) at the top right or by clicking on the next link below.
A component is the largest and most complex of the extension types. Components are like mini-applications that renders the main body of the page. An analogy that might make the relationship easier to understand would be that Joomla! is a book and all the components are chapters in the book. The core content component (com_content), for example, is the mini-application that handles all core content rendering just as the core registration component (com_user) is the mini-application that handles user registration.
Many of Joomla''s core features are provided by the use of default components such as:
A Component will manage data, set displays, provide functions and in general can perform any operation that doesn''t fall under the general functions of the core code.
Components work hand in hand with Modules and Plugins to provide a rich variety of content display and functionality aside from the standard article and content display. Components make it possible to completely transform Joomla and greatly expand its capabilities.
More information on components is available from the Joomla! help manual: Components
http://help.joomla.org/content/view/77/153/
A more lightweight and flexible extension used for page rendering is a module. Modules are used for small bits of the page that are generally less complex and able to be seen across different components. To continue in our book analogy, a module can be looked at as a footnote or header block, or perhaps an image/caption block that can be rendered on a particular page. Obviously you can have a footnote on any page but not all pages will have them. Footnotes also might appear regardless of which chapter you are reading. Simlarly modules can be rendered regardless of which component you have loaded.
Modules are like little mini-applets that can be placed anywhere on your site. They work in conjunction with components in some cases and in others are complete stand alone snippets of code used to display some data from the database such as Content (Newsflash) Modules are usually used to output data but they can also be form items to input data (Login Module and Polls as an example)
Modules can be assigned to module positions which are defined in both your template and backend under the Site/Template Manager/Module Positions menu items. For example, "left" and "right" are common for a 3 column layout.
Each module is assigned to a module position on your site. If you wish it to display in two different locations you must copy the module and assign the copy to display at the new location. You can also set which menu items (and thus pages) a module will display on. You can select all menu items or you can pick and choose specific menu items by holding down the control key and selecting multiple menu items one by one in the Modules Edit screen
Note your Main Menu is a Module! When you create a new menu in the menu manager you are actually copying the Main Menu module code and giving it the name of your new menu. When you copy a module you do not copy all it''s parameters you simply allow Joomla to use the same code with two separate settings.
NewsFlash is a Module which will display content items from your site in an assignable module position. It can be used and configured to display one category, all categories or to randomly choose content items to highlight to users. It will display as much of an article as you set, and will show a "read more" link to take the user to the full page.
The Newsflash component is particularly useful for things like Site News or to show the latest content item added to your site.
More information on Modules is available from the Joomla! help manual: Modules
http://help.joomla.org/content/view/91/153/
One of the more advanced extensions for Joomla! is the plugin (formerly called a mambot). In previous versions plugins were known as mambots. Along with the development of Joomla! 1.5, mambots have been renamed to plugins and their functionality has been expanded. A plugin is a section of code that runs when a pre-defined event happens within Joomla! Editors are plugins, for example, that execute when the Joomla! event "onGetEditorArea" occurs. Using a plugin allows a developer to change the way their code behaves depending upon which plugins are installed to react to an event.
More information on Plugins is available from the Joomla! help manual: Plugins
http://help.joomla.org/content/view/110/153/
New to Joomla! 1.5 and perhaps the most basic and critical extension is a language. Languages are packaged as either a core language pack or an extension language pack. They allow both the Joomla! core as well as third party components and modules to be internationalised.
More information on languages is available from the Joomla! help manual: Languages
http://help.joomla.org/content/view/23/160/
Got a question? With over 60,000 members, the online forum at Joomla.org are a great resource for both new an experienced users. Go ahead, ask your toughest questions, the community is waiting to see what you''re going to do with your Joomla! site.
Do you want to show off your new Joomla website? Go ahead, we have a section dedicated to that on our forum.
Do you want to join in?
If you think working with Joomla! is fun, wait until you start working on it. We''re passionate about helping Joomla! users make the jump to becoming contributing members of the community, so there are many ways you can help Joomla''s development:
That''s all you need to know if you''d like to join the Joomla! development community.
', '', -2, 4, 0, 30, '2006-10-12 18:50:48', 62, '', '2007-05-03 09:36:16', 62, 0, '0000-00-00 00:00:00', '2006-10-11 04:00:00', '0000-00-00 00:00:00', '', '', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', 9, 0, 0, '', '', 0, 36, 'robots=\nauthor='), (28, 'How do I install Joomla! 1.5?', 'how-do-i-install-joomla-15', '', 'Installing of Joomla! 1.5 is pretty easy. We assume you have set-up your website, and it is accessible with your browser.A lot of different languages are available for the back end, but by default this language may not be installed. If you want a translated back end, get your language pack and install it using the back end installer. After this, go to the extensions menu, select language manager and make your language the default one. Your back end will be translated instantaneously.
Users who have access rights to the back end may choose the language they prefer in their personal details parameters.
This is of course also true for the front-end language.
A good place to find where to download your languages and localised versions of Joomla is on our Help Site.
', '', -2, 3, 0, 32, '2006-10-11 19:18:14', 62, '', '2007-05-03 09:40:01', 62, 0, '0000-00-00 00:00:00', '2006-10-10 16:00:00', '0000-00-00 00:00:00', '', '', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', 6, 0, 0, '', '', 0, 3, 'robots=\nauthor='), (39, 'How do I remove an article?', 'how-do-i-remove-an-article', '', 'To completely remove an article, select the articles that you want to delete and move them to the trash. Next, open the Article Trash in the Content menu and select the articles you want to delete. After deleting an article, it is no longer available and it is not possible to undo this operation.
', '', -2, 3, 0, 27, '2006-10-11 11:19:01', 62, '', '2007-05-03 09:40:48', 62, 0, '0000-00-00 00:00:00', '2006-10-10 12:00:00', '0000-00-00 00:00:00', '', '', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', 5, 0, 0, '', '', 0, 1, 'robots=\nauthor='), (40, 'What is the difference between archiving and trashing an article?', 'what-is-the-difference-between-archiving-and-trashing-an-article', '', 'When you archive an article, the content is put into a state which removes it from your site as published content. The article is still available from within the administration interface and can be retrieved for archival purposes. Trashed articles are just one step from being deleted but are still available until you remove the items from the trash manager. You should use archive if you consider an article important, but not current. Trashed should be used when you want to delete the content entirely from your site and from future search results.
', '', -2, 3, 0, 27, '2006-10-11 11:19:43', 62, '', '2007-05-03 09:40:44', 62, 0, '0000-00-00 00:00:00', '2006-10-10 12:00:00', '0000-00-00 00:00:00', '', '', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', 5, 0, 0, '', '', 0, 2, 'robots=\nauthor='), (41, 'Newsflash 5', 'newsflash-5', '', 'Joomla! 1.5 - ''Experience the Freedom''!. It has never been easier to create your own dynamic site. Manage all your content from the best CMS admin interface and in virtually any language you speak.', '', -2, 1, 0, 3, '2006-10-12 02:17:31', 62, '', '2007-05-03 09:41:36', 62, 0, '0000-00-00 00:00:00', '2006-10-11 08:00:00', '0000-00-00 00:00:00', '', '', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', 4, 0, 0, '', '', 0, 0, 'robots=\nauthor='), (42, 'Newsflash 4', 'newsflash-4', '', 'Yesterday all servers in the U.S. went out on strike in a bid to get more RAM and better CPUs. A spokes person said that the need for better RAM was due to some fool increasing the front-side bus speed. In future, busses will be told to slow down in residential motherboards.', '', -2, 1, 0, 3, '2006-10-12 02:25:50', 62, '', '2007-05-03 09:41:28', 62, 0, '0000-00-00 00:00:00', '2006-10-11 08:00:00', '0000-00-00 00:00:00', '', '', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', 4, 0, 0, '', '', 0, 1, 'robots=\nauthor='), (43, 'Example Pages and Menu Links', 'example-pages-and-menu-links', '', 'This page is an example of content that is "uncategorized". You will see there is a new menu in the left column. It shows links to the SAME content presented in 4 different page layouts.
Follow the links in the Example Pages menu to see some of the options available to you to present content.
You can also have links to components and individual articles. This is all controlled in the menu links.
', '', -2, 0, 0, 0, '2006-10-12 11:26:52', 62, '', '2007-05-03 09:34:04', 62, 0, '0000-00-00 00:00:00', '2006-10-11 12:00:00', '0000-00-00 00:00:00', '', '', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', 6, 0, 13, 'Uncategorized, Uncategorized, Example Pages and Menu Links', '', 0, 26, 'robots=\nauthor='), (44, 'Typography', 'typography', '', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n
\r\n
\r\n\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n
\r\n
Lorem ipsum dolor sit amet, consec est tetur adipisicing elit, sed do eiusmod.\r\nThis is a sample <blockquote> tag with class="big" and an additional <div> tag
\r\n
\r\n\r\n\r\nLorem ipsum dolor sit amet, consec est tetur adipisicing elit, sed do eiusmod.\r\n
\r\n
\r\npre {\r\nbackground: #fff;\r\ncolor: #333;\r\npadding:10px;\r\nborder: 1px solid #ccc;\r\nborder-left: 5px solid #ccc;\r\n}\r\n', '', -2, 0, 0, 0, '2007-06-04 14:55:09', 62, '', '2007-10-09 14:22:37', 62, 0, '0000-00-00 00:00:00', '2007-06-04 14:55:09', '0000-00-00 00:00:00', '', '', 'show_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 5, 0, 33, '', '', 0, 52, 'robots=\nauthor='),
(45, 'Loom', 'switch', '', 'YOOtheme proudly presents Loom! Loom catches the spirit of the autumn season and combines beautiful colors with an elegant design. This exclusive YOOtheme Joomla! template re-introduces the great slider menu and is packed with all your favorite features and effects. Plus its ready to use with our popular YOOslider and YOOcarousel modules. The template and modules are available for Joomla! 1.0 and also as native Joomla! 1.5. Like always we bring you an unique style with the latest Web 2.0 features!\r\n
\r\nThe Top Panel is a hidden module area at the top of the template. By clicking the "Top Panel" button it slides down. To hide the Top Panel click the "Close" button at the upper right or hit the "Top Panel" button once again.\r\n\r\n/*** template parameters ***/\r\n$template_parameters = array(\r\n "toppanel" => true /* true | false */\r\n);\r\n\r\n\r\n
\r\n/*** template parameters ***/\r\n$template_parameters = array(\r\n "layout" => "left" /* left | right */ \r\n);\r\n\r\n
\r\n
\r\n\r\n/*** template parameters ***/\r\n$template_parameters = array(\r\n/* color variation */\r\n"color" => "black", /* default (white) | black */\r\n/* item color variation */\r\n"item1" => "red", /* default | red | blue | green | yellow | lilac */\r\n"item2" => "blue", /* default | red | blue | green | yellow | lilac */\r\n"item3" => "green", /* default | red | blue | green | yellow | lilac */\r\n"item4" => "yellow", /* default | red | blue | green | yellow | lilac */\r\n"item5" => "lilac", /* default | red | blue | green | yellow | lilac */\r\n"item6" => "default", /* default | red | blue | green | yellow | lilac */\r\n/* layout */\r\n"dogear" => true, /* true | false */\r\n"date" => true, /* true | false */\r\n"styleswitcherFont" => true, /* true | false */\r\n"styleswitcherWidth" => true, /* true | false */\r\n"layout" => "left", /* left | right */ \r\n/* features */\r\n"lightbox" => true, /* true | false */\r\n"reflection" => true, /* true | false */\r\n"snap" => false, /* true | false */\r\n/* style switcher */\r\n"fontDefault" => "font-medium", /* font-small | font-medium | font-large */\r\n"widthDefault" => "width-wide", /* width-thin | width-wide | width-fluid */\r\n"widthThinPx" => 780, /* template width for style "width-thin" */\r\n"widthWidePx" => 940, /* template width for style "width-wide" */\r\n"widthFluidPx" => 0.9, /* template width for style "width-fluid" */\r\n/* top panel */\r\n"toppanel" => true, /* true | false */\r\n"heightToppanel" => 320, /* height of the sliding when moving down */\r\n/* text */\r\n"textToppanel" => "Top Panel", /* text label for the toppanel */\r\n/* javascript */\r\n"loadJavascript" => "true" /* true | false */\r\n);\r\n\r\n
\r\nAccessibility is very important to make your website accessible for a wide range of users. The YOOtheme Styleswitcher enables your website to fit to any screen resolution and to resize the entire text. This is done by giving users ability to change font size and page width.\r\n\r\n"styleswitcherFont" => false, /* true | false */\r\n"styleswitcherWidth" => false, /* true | false */\r\n\r\n"fontDefault" => "font-medium", /* font-small | font-medium | font-large */\r\n"widthDefault" => "width-wide", /* width-thin | width-wide | width-fluid */\r\n', '', -2, 0, 0, 0, '2007-06-04 15:00:56', 62, '', '2007-09-30 16:16:18', 62, 0, '0000-00-00 00:00:00', '2007-06-04 15:00:56', '0000-00-00 00:00:00', '', '', 'show_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', 3, 0, 39, '', '', 0, 0, 'robots=\nauthor='), (51, 'Tableless CSS Design', 'Features', '', 'Tableless CSS design is the art of building websites without resorting to the use of tables merely for presentational purposes. Instead of tables, CSS (Cascading Style Sheets) positioning is used to arrange elements and text on a web page. This Template is build with tableless CSS design. This improves web accessibility and makes HTML code semantic. \r\n
We’ve integrated a visual clone of the popular Lightbox JS v2.0 called Slimbox. Slimbox is smaller, more efficient, more convenient and 100% compatible with the original Lightbox v2.\r\n\r\n<img class="lightbox" title="my caption" src="image.jpg" width="240" height="180" />\r\n\r\nOptional: Use the title attribute if you want to show a caption.
\r\n<a href="image.jpg" rel="lightbox" title="my caption">image #1</a>\r\n\r\nOptional: Use the title attribute if you want to show a caption.
\r\n<a href="image-1.jpg" rel="lightbox[a]">image #1</a>\r\nTry out this feature by clicking on the following links: image #1 and showcase with two images\r\n', '', -2, 0, 0, 0, '2007-06-04 15:03:32', 62, '', '2007-09-30 16:17:09', 62, 0, '0000-00-00 00:00:00', '2007-06-04 15:03:32', '0000-00-00 00:00:00', '', '', 'show_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', 5, 0, 41, '', '', 0, 4, 'robots=\nauthor='), (53, 'YOOreflection', 'Features', '', '
\r\n<a href="image-2.jpg" rel="lightbox[a]">image #2</a>\r\n

\r\n<img class="reflect" title="my caption" src="image.jpg" width="240" height="180" />\r\n\r\n
\r\nAll menus shown on this page are implemented using the YOOmenu system. YOOmenu is a flexible all-in-one menu system right out of the box. It makes it possible to bring you the freshest Javascript menus and a lot of cool features. It just takes your experience to a whole new level. \r\n\r\n/* item color variation */\r\n"item1" => "red", /* red | blue | green | yellow */\r\n"item2" => "blue", /* red | blue | green | yellow */\r\n"item3" => "green", /* red | blue | green | yellow */\r\n"item4" => "yellow", /* red | blue | green | yellow */\r\n...\r\n\r\n
<body class="blue">...</body>\r\n\r\n

\r\n<img class="correct-png" src="image-1.jpg" width="240" height="180" />\r\n\r\n
\r\nThis template validates to XHTML and CSS web standards.\r\n
This template implements the exclusive YOOtheme Slider Menu System for the horizontal top navigation.\r\n
\r\n
This template takes advantage of the exclusive YOOtheme Accordion Menu for the sub level navigation. The Accordion Menu uses mootools for the transition effect with smooth animation and color fading.\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n\r\n<div class="spotlight" style="background: url(../images/logo.png);" width="240" height="180"></div>\r\n
\r\n<span class="spotlight" style="background: url(../images/logo.png); display: block;" width="240" height="180"></span>\r\n\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n Soy la cara visible de la empresa pero detrás mío hay un equipo interdisciplinario. Cada fiesta es única e irrepetible
Nos fijamos en todos los detalles como si fuéramos los anfitriones de la fiesta
Nos adaptamos al perfil del cliente. Tipo de fiesta y poder adquisitivo.
Convierte tus sueños en realidad
¡será inolvidable!
1) Asesoramiento e implementación
\r\n2) Planificación y ejecución
\r\n3) Supervisión y coordinación general
\r\n4) Evaluación y mejora continua
Ofrecemos nuestros servicios en forma:
\r\nINTEGRAL
\r\nSe buscan todos los proveedores
PARCIAL
\r\nSe buscan algunos
\r\n
\r\n
BÁSICA
\r\nTeniendo todos los proveedores precisan un profesional que supervise
TIPOS DE EVENTOS
\r\nSOCIALES
\r\nBautismo
\r\nComunión
\r\nDespedida de soltero/a
\r\nCasamientos
\r\nAniversario de bodas
\r\nCumpleaños
\r\nTemáticas
\r\nBar Mitzvá
\r\nBat Mitzvá
\r\n
\r\nEMPRESARIALES
\r\nDesayuno de trabajo
\r\nAlmuerzo de trabajo
\r\nDesfile de modas
\r\nLanzamiento de productos
\r\nInauguraciones
\r\nExposiciones
\r\nCongresos
', '', -2, 0, 0, 0, '2008-09-05 15:17:09', 62, '', '2008-10-30 00:25:27', 62, 0, '0000-00-00 00:00:00', '2008-09-05 15:17:09', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 8, 0, 5, '', '', 0, 1120, 'robots=\nauthor='), (100, 'Servicios', 'servicios', '', '
Ofrecemos nuestros servicios en los siguientes rubros:
Accesorios varios
AGADU
Ajuar
Alianzas
Alquiler de equipamiento
Alta costura
Autos
Azafatas
Bailarines
Baños químicos
Barmans
Barman show
Barra de tragos
Bazares
Bebidas
Body paint
Body sushi show
Cantantes
Carpas
Catering
Ceremonia civil
Ceremonia religiosa
Chacras
Coros
Coordinadores
Cotillón
Decoración
Descorche
Discjockey
Diseño y confección de stands
Disfraces
Distribución de invitaciones
Emergencia médica
Estatuas vivientes
Flores
Fotos
Fuegos artificiales
Gazebo
Grupo electrógeno
Hoteles
Iluminación
Joyerías
Magos
Maletas
Manicura
Maquillaje
Mariachis
Marketing
Mimos
Modelos de pasarela, publicidad y medios gráficos
Mozos
Niñera para los niños
Noche de boda
Odaliscas
Ópticas
Plantas
Pasacalle
Pelucas
Peluquería
Promotores
Psicóloga
Ramos
Registro civil
Relaciones publicas
Salones
Secretarias de congreso
Seguridad
Souvenirs
SPA
Streepers
Supervisiones
Transformistas
Tarjetas
Tarotistas
Tocados
Toldos
Tortas
Uniformes promocionales
Velas
Vestidos de segunda mano
Video
Zapatos
CONSULTA SIN CARGO
', '', -2, 0, 0, 0, '2008-09-05 15:25:03', 62, '', '2008-10-28 21:38:46', 62, 0, '0000-00-00 00:00:00', '2008-09-05 15:25:03', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 4, 0, 2, '', '', 0, 999, 'robots=\nauthor='), (101, 'Modelos', 'modelos', '', '
\r\nPara ver fotos de nuestro STAFF DE MODELOS haga clic AQUÍ
\r\n\r\n

', '', -2, 8, 0, 37, '2008-09-05 22:43:44', 62, '', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '2008-09-05 22:43:44', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 1, 0, 0, '', '', 0, 0, 'robots=\nauthor='),
(105, 'Gracias', 'gracias', '', '
Brindamos un servicio integral en herrería cubriendo todas las necesidades que nuestros clientes tengan.
Realizamos todo tipo de trabajo en hierro ya sea fabriación como reparación.
\r\nTambién contamos con personal que se encarga de la herrería artesanal como por ejemplo lamparas, arañas, etc.
Algunos de los trabajos que ofrecemos son:
- Rejas en general
- Verjas
- Puertas a medida
- Haleros
- Barandas
- Pérgolas
- Portones corredizos
- Encasquillado de motores y arranques
- Ruedas para portones corredizos
- Soldaduras
- Techos livianos
- Parrillas
- Muebles a medida
- Montajes Industriales (pañoles, protección de montacargas, estanterías, soportes para maquinarias, etc)
- Protección de Piletas y Balcones
- Escaleras
- Entrepisos
- Frentes de Locales
- Marquesinas
- Instalaciones para Locales
Por otros trabajos no dude en consultarnos ya que probablemente podamos realizarlo para usted!
En Herrería Uruguay, manejamos los precios más competitivos del mercado, ya que, optimizamos los tiempos de trabajo utilizando tecnología y, logrando asi, un bajo costo que como resultado final, se refleja en nuestros presupuestos, en la conformidad del cliente y en nuestra satisfacción.
Ponganos a prueba, pidanos un presupuesto!
Somos un equipo con gran experiencia formado por ex empleados de Terniven/EX Inmevi que decidimos independizarnos para emprender nuestra propia empresa.
Creemos que este proyecto puede crecer cada día más pero apenas estamos al comienzo! Para esto nos esmeramos en cada trabajo por hacerlo de la mejor forma posible, sabemos que de esta forma nuestros clientes nos volverán a llamar y nos recomendaran, cumpliendo nuestro sueño de que el proyecto se desarolle.
Desde el primer contacto con nuestro cliente, ponemos a su disposición toda nuestra experiencia en el rubro para aportar ideas y sugerir soluciones acordes a sus necesidades.
Entre nuestros servicios se encuentra:
-Construcción de todo tipo en metal
-Reparaciones
-Montajes industriales
-Aberturas para casas, edificios, locales, etc
-Visita a obras
-Reparaciones de puertas, portones
-Carpintería Metálica
-Traslados
-Personal con capitación adecuada y actualización constante.
-Reparaciones
-Montajes industriales
-Aberturas para casas, edificios, locales, etc
-Visita a obras
-Reparaciones de puertas, portones
-Carpintería Metálica
-TrasladoAtención a consorcios, estudios y constructoras
-Personal con capitación adecuada y actualización constante.
-Atención a consorcios, estudios y constructoras
TRAMITESenURUGUAY.com surge para satisfacer la necesidad de miles de uruguayos que viven en el exterior y de empresas o personas interesadas en invertir en el Uruguay.
\r\nBrindamos la posibilidad de realizar trámites y gestiones notariales en URUGUAY sin necesidad de tener que solicitarle ayuda a un familiar o conocido radicado en el país, que en muchas ocasiones por falta de tiempo no podrá hacerlo, lo hará con gran demora o, por falta de conocimiento, no realizara la gestión de forma correcta.
\r\nNuestro equipo formado por escribanos, abogados, gestores y traductores estará a su disposición para poder brindarle la realización y asesoramiento de trámites en todos los organismos públicos y privados tanto de Montevideo como del interior del país.
\r\nTambién podremos ofrecerle cualquier tipo de gestión notarial. Nuestros escribanos con más de 20 años de carrera podrán asesorarlo y darle las garantías que usted necesita. Algunos de los servicios notariales más frecuentes son compraventa de inmuebles, automotores, sucesiones, certificados notariales, poderes, hipotecas, particiones.
\r\nTambién nos encargamos de pagar facturas, tributos, administración de propiedades, clearing de informes, etc.
\r\nAlgunos de los trámites más frecuentes son Partidas de Nacimiento, Gestiones ante el Ministerio del Exterior, Gestiones ante la embajada del país de residencia del cliente, certificaciones notariales, traducciones de documentos para presentarlos en el exterior (ver más).
\r\nNuestro servicio es fácil! Usted simplemente tendrá que solicitar lo que necesita a través de nuestra web y nuestros asesores se contactaran con usted para acordar detalles, solicitarle información adicional y coordinar el pago. Luego de esto recibirá los documentos solicitados en su domicilio (envíos a todo el mundo) en el tiempo estipulado.
\r\nPara su comodidad tenemos varias formas de pago. Aceptamos tarjetas de crédito internacionales (Visa, MasterCard, American Express), PAYPAL y giros a través de Western Union y MoneyGram.
', '', 1, 0, 0, 0, '2009-05-25 05:46:02', 62, '', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '2009-05-25 05:46:02', '0000-00-00 00:00:00', '', '', '', 1, 0, 0, '', '', 0, 97, ''), (107, 'Quiénes somos', 'quienes-somos', '', 'Somos un equipo con gran experiencia formado por ex empleados de Terniven/EX Inmevi que decidimos independizarnos para emprender nuestra propia empresa.
Creemos que este proyecto puede crecer cada día más pero apenas estamos al comienzo! Para esto nos esmeramos en cada trabajo por hacerlo de la mejor forma posible, sabemos que de esta forma nuestros clientes nos volverán a llamar y nos recomendaran, cumpliendo nuestro sueño de que el proyecto se desarolle.
Contáctenos y con gusto le daremos un presupuesto acorde a sus necesidades.
\r\n
', '', -2, 0, 0, 0, '2009-02-23 00:29:13', 62, '', '2009-02-24 22:30:17', 62, 0, '0000-00-00 00:00:00', '2009-02-23 00:29:13', '0000-00-00 00:00:00', '', '', '', 2, 0, 0, '', '', 0, 96, ''), (115, 'Postres', 'postres', '', '
', '', -2, 0, 0, 0, '2009-02-23 00:29:13', 62, '', '2009-02-24 22:36:53', 62, 0, '0000-00-00 00:00:00', '2009-02-23 00:29:13', '0000-00-00 00:00:00', '', '', '', 2, 0, 0, '', '', 0, 69, ''), (116, 'Contacto', 'contacto', '', '', '', -2, 0, 0, 0, '2009-02-23 03:43:29', 62, '', '2009-04-15 03:57:48', 62, 0, '0000-00-00 00:00:00', '2009-02-23 03:43:29', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 7, 0, 0, '', '', 0, 238, 'robots=\nauthor='); INSERT INTO `jos_content` (`id`, `title`, `alias`, `title_alias`, `introtext`, `fulltext`, `state`, `sectionid`, `mask`, `catid`, `created`, `created_by`, `created_by_alias`, `modified`, `modified_by`, `checked_out`, `checked_out_time`, `publish_up`, `publish_down`, `images`, `urls`, `attribs`, `version`, `parentid`, `ordering`, `metakey`, `metadesc`, `access`, `hits`, `metadata`) VALUES (117, 'Presupuesto', 'presupuesto', '', ' \r\n\r\n\r\n', '', -2, 0, 0, 0, '2009-02-23 03:43:29', 62, '', '2009-04-15 04:57:34', 62, 0, '0000-00-00 00:00:00', '2009-02-23 03:43:29', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 5, 0, 0, '', '', 0, 272, 'robots=\nauthor='), (118, 'Gracias', 'gracias', '', '
Su solicitud se ha enviado con éxito.
\r\nLe responderemos a la brevedad.
Muchas gracias!
', '', -2, 0, 0, 0, '2009-02-23 04:06:29', 62, '', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '2009-02-23 04:06:29', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 1, 0, 0, '', '', 0, 50, 'robots=\nauthor='), (119, 'Que ofrecemos', 'Que ofrecemos', '', 'Algunos de los trabajos que ofrecemos son:
- Rejas en general
- Verjas
- Puertas a medida
- Haleros
- Barandas
- Pérgolas
- Portones corredizos
- Encasquillado de motores y arranques
- Ruedas para portones corredizos
- Soldaduras
- Techos livianos
- Parrillas
- Muebles a medida
- Montajes Industriales (pañoles, protección de montacargas, estanterías, soportes para maquinarias, etc)
- Protección de Piletas y Balcones
- Escaleras
- Entrepisos
- Frentes de Locales
- Marquesinas
- Instalaciones para Locales
Por otros trabajos no dude en consultarnos ya que probablemente podamos realizarlo!
', '', -2, 0, 0, 0, '2009-04-15 03:38:16', 62, '', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '2009-04-15 03:38:16', '0000-00-00 00:00:00', '', '', '', 1, 0, 0, '', '', 0, 219, ''), (121, 'Quiénes somos ', 'Quiénes somos ', '', 'TRAMITESenURUGUAY.com es una empresa con el respaldo del estudio jurídico notarial MAZZOTTI & MACHADO (http://www.EstudioMazzottiMachado.com).
\r\nNuestro equipo de profesionales con más de 20 años de carrera le podrá dar el servicio, asesoramiento y garantías que usted necesita.
\r\nNo dude en contactarnos a través de nuestro formulario de contacto, nuestro e-mail contacto@tramitesenuruguay.com o nuestro teléfono +00 598 2 9000702 y con gusto podremos ayudarlo.
', '', 1, 0, 0, 0, '2009-05-25 05:46:02', 62, '', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '2009-05-25 05:46:02', '0000-00-00 00:00:00', '', '', '', 1, 0, 0, '', '', 0, 0, ''), (122, 'Servicios ', 'Servicios ', '', 'Brindamos la posibilidad de realizar trámites y gestiones notariales en URUGUAY sin necesidad de tener que solicitarle ayuda a un familiar o conocido radicado en el país, que en muchas ocasiones por falta de tiempo no podrá hacerlo, lo hará con gran demora o no lo realizara de la forma correcta por falta de conocimiento.
\r\nNuestro equipo formado por escribanos, abogados, gestores y traductores estará a su disposición para poder brindarle la realización y asesoramiento de trámites en todos los organismos públicos y privados tanto de Montevideo como del interior del país.
\r\nTambién podremos ofrecerle cualquier tipo de gestión notarial. Nuestros escribanos con más de 20 años de carrera podrán asesorarlo y darle las garantías que usted necesita. Algunos de los servicios notariales más frecuentes son Compraventa de inmuebles, automotores, sucesiones, certificados notariales, poderes, hipotecas, particiones.
\r\nTambién nos encargamos de pagar facturas, tributos, administración de propiedades, clearing de informes, etc.
\r\nAlgunos de los trámites más frecuentes son Partidas de Nacimiento, Gestiones ante el Ministerio del Exterior, Gestiones ante la embajada del país de residencia del cliente, certificaciones notariales, traducciones de documentos para presentarlos en el exterior.
\r\n¿Quiénes Somos?
TRAMITESenURUGUAY.com es una empresa con el respaldo del estudio jurídico notarial MAZZOTTI & MACHADO (http://www.EstudioMazzottiMachado.com).
\r\nNuestro equipo de profesionales con más de 20 años de carrera le podrá dar el servicio, asesoramiento y garantías que usted necesita.
\r\nNo dude en contactarnos a través de nuestro formulario de contacto, nuestro e-mail contacto@tramitesenuruguay.com o nuestro teléfono +00 598 2 9000702 y con gusto podremos ayudarlo.
\r\n¿Por qué contratar TRAMITESenURUGUAY.com? (Garantías)
Contar con profesionales de más de 20 años de carrera le garantizara que tendrá el asesoramiento y el servicio que usted necesita. Estudiamos caso a caso para brindar un completo asesoramiento en todas nuestras gestiones.
\r\nContamos con agentes que gestionan personalmente la obtención y legalización de partidas de nacimiento, matrimonio y defunción en todo el país y a todo el mundo, facilitando los costos de envío de todas aquellas personas que se encuentran en el extranjero.
\r\nNos comprometemos a realizar los trámites en el tiempo más breve posible.
\r\nTodos nuestros envíos se certifican y se le envía al cliente un número de rastreo, de forma que pueda monitorear donde están sus documentos y en cuanto tiempo le llegaran.
\r\n¿Qué trámites pueden realizarse a través de TRAMITESenURUGUAY.com?
Nuestro equipo formado por escribanos, abogados, gestores y traductores estará a su disposición para poder brindarle la realización y asesoramiento de trámites en todos los organismos públicos y privados tanto de Montevideo como del interior del país.
\r\nTambién podremos ofrecerle cualquier tipo de gestión notarial. Nuestros escribanos con más de 20 años de carrera podrán asesorarlo y darle las garantías que usted necesita. Algunos de los servicios notariales más frecuentes son Compraventa de inmuebles, automotores, sucesiones, certificados notariales, poderes, hipotecas, particiones.
\r\nTambién nos encargamos de pagar facturas, tributos, administración de propiedades, clearing de informes, etc.
\r\nAlgunos de los trámites más frecuentes son Partidas de Nacimiento, Gestiones ante el Ministerio del Exterior, Gestiones ante la embajada del país de residencia del cliente, certificaciones notariales, traducciones de documentos para presentarlos en el exterior.
\r\nOtros trámites que realizamos son:
\r\n¿Duración de los trámites?
La duración varía según el trámite pero en todos los casos nos comprometemos a realizarlos de la forma más rápida posible y damos un estimativo del tiempo requerido. A la vez enviamos un e-mail a todos nuestros clientes cada vez que su tramite ha pasado a una nueva etapa así como un número de rastreo cuando sus documentos hayan sido enviados (de esta forma podrá monitorear desde internet donde están y cuando llegaran).
\r\nContáctenos y con gusto uno de nuestros asesores podrá darle un estimativo del tiempo requerido para el trámite que usted necesita.
\r\n¿Cuál es el costo de los trámites?
El costo de los trámites varía según el tipo de trámite que usted necesite, la urgencia y el tipo de envío elegido.
\r\nContáctenos y con gusto uno de nuestros asesores podrá darle un presupuesto para el trámite que usted necesita.
\r\n¿Cómo solicito un trámite?
Para solicitar un trámite simplemente haga clic en SOLICITAR UN TRAMITE
\r\nTambién puede contactarnos a través de nuestro formulario de contacto, nuestro e-mail contacto@tramitesenuruguay.com o nuestro teléfono +00 598 2 9000702 y con gusto podremos ayudarlo.
\r\n¿Cuáles son los sistemas de pago?
Para su comodidad tenemos varias formas de pago. Aceptamos tarjetas de crédito internacionales (Visa, MasterCard, American Express), PAYPAL y giros a través de Western Union y MoneyGram.
\r\n¿Cómo puedo conocer el estado en que se encuentra el trámite?
Nuestros asesores reportaran vía e-mail cada vez que un trámite haya pasado a una nueva etapa. De la misma forma el cliente podrá solicitar un reporte acerca de cuál es el estado de su trámite.
\r\nUna vez realizado el envío se le envía al cliente un número de rastreo, de forma que pueda monitorear donde están sus documentos y en cuanto tiempo le llegaran.
\r\nPara saber el estado de su tramite no dude en contactarnos a través de nuestro formulario de contacto, nuestro e-mail contacto@tramitesenuruguay.com o nuestro teléfono +00 598 2 9000702 y con gusto podremos ayudarlo.
\r\n¿Puedo solicitar un trámite personalizado?
Nuestro equipo formado por escribanos, abogados, gestores y traductores estará a su disposición para poder brindarle la realización y asesoramiento de trámites en todos los organismos públicos y privados tanto de Montevideo como del interior del país.
\r\nNo se preocupe si no encuentra el trámite que necesita entre los listados de trámites de nuestra página web, los mismos están simplemente como referencia pero podemos realizar cualquier trámite que usted necesita.
\r\nNo dude en contactarnos a través de nuestro formulario de contacto, nuestro e-mail contacto@tramitesenuruguay.com o nuestro teléfono +00 598 2 9000702 y con gusto podremos ayudarlo.
\r\n¿Cómo me envían mi trámite?
\r\nRealizamos envíos a cualquier país del mundo por la empresa de su preferencia.
\r\nEn caso de necesitar un envío económico y sin apuro los realizamos a través de EL CORREO (envío con certificación y rastreo vía internet).
\r\nTambién trabajamos con FEDEX, DHL y TNT que nos permiten ofrecen un envío urgente (aproximadamente 5 días hábiles a cualquier parte del mundo)
\r\n¿Trabajan también con el interior de Uruguay?
Trabajamos en todo el interior de Uruguay y enviamos documentación a todo el mundo.
\r\n¿Cómo es posible contactarse con TRAMITESenURUGUAY.com? Contactarnos a través de nuestro formulario de contacto, nuestro e-mail contacto@tramitesenuruguay.com o nuestro teléfono +00 598 2 9000702 y con gusto podremos ayudarlo.
', '', 1, 0, 0, 0, '2009-05-25 05:46:02', 62, '', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '2009-05-25 05:46:02', '0000-00-00 00:00:00', '', '', '', 1, 0, 0, '', '', 0, 0, ''), (124, 'Forma de pago ', 'Forma de pago ', '', 'Para su comodidad tenemos varias formas de pago. Aceptamos tarjetas de crédito internacionales (Visa, MasterCard, American Express), PAYPAL y giros a través de Western Union y MoneyGram.', '', 1, 0, 0, 0, '2009-05-25 05:46:02', 62, '', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '2009-05-25 05:46:02', '0000-00-00 00:00:00', '', '', '', 1, 0, 0, '', '', 0, 0, ''), (125, 'Envíos ', 'Envíos ', '', 'Realizamos envíos a cualquier país del mundo por la empresa de su preferencia.
\r\nEn caso de necesitar un envío económico y sin apuro los realizamos a través de EL CORREO (envío con certificación y rastreo vía internet).
\r\nTambién trabajamos con FEDEX, DHL y TNT que nos permiten ofrecen un envío urgente (aproximadamente 5 días hábiles a cualquier parte del mundo)
', '', 1, 0, 0, 0, '2009-05-25 05:46:02', 62, '', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '2009-05-25 05:46:02', '0000-00-00 00:00:00', '', '', '', 1, 0, 0, '', '', 0, 0, ''), (126, 'Solicitud de servicio', 'Solicitud de servicio', '', '', '', 1, 0, 0, 0, '2009-05-25 05:46:02', 62, '', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '2009-05-25 05:46:02', '0000-00-00 00:00:00', '', '', '', 1, 0, 0, '', '', 0, 0, ''), (127, 'Contacto', 'Contacto', '', '', '', 1, 0, 0, 0, '2009-05-25 05:46:02', 62, '', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '2009-05-25 05:46:02', '0000-00-00 00:00:00', '', '', '', 1, 0, 0, '', '', 0, 3, ''); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `jos_content_frontpage` -- CREATE TABLE IF NOT EXISTS `jos_content_frontpage` ( `content_id` int(11) NOT NULL DEFAULT '0', `ordering` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`content_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Volcar la base de datos para la tabla `jos_content_frontpage` -- INSERT INTO `jos_content_frontpage` (`content_id`, `ordering`) VALUES (6, 3), (14, 5), (7, 4), (1, 2), (16, 6), (98, 1); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `jos_content_rating` -- CREATE TABLE IF NOT EXISTS `jos_content_rating` ( `content_id` int(11) NOT NULL DEFAULT '0', `rating_sum` int(11) unsigned NOT NULL DEFAULT '0', `rating_count` int(11) unsigned NOT NULL DEFAULT '0', `lastip` varchar(150) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`content_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Volcar la base de datos para la tabla `jos_content_rating` -- -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `jos_core_acl_aro` -- CREATE TABLE IF NOT EXISTS `jos_core_acl_aro` ( `id` int(11) NOT NULL AUTO_INCREMENT, `section_value` varchar(240) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', `value` varchar(240) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `order_value` int(11) NOT NULL DEFAULT '0', `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `hidden` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `__section_value_value_aro` (`section_value`(100),`value`(100)), KEY `jos_gacl_hidden_aro` (`hidden`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=12 ; -- -- Volcar la base de datos para la tabla `jos_core_acl_aro` -- INSERT INTO `jos_core_acl_aro` (`id`, `section_value`, `value`, `order_value`, `name`, `hidden`) VALUES (10, 'users', '62', 0, 'Administrator', 0), (11, 'users', '63', 0, 'Londres Producciones', 0); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `jos_core_acl_aro_groups` -- CREATE TABLE IF NOT EXISTS `jos_core_acl_aro_groups` ( `id` int(11) NOT NULL AUTO_INCREMENT, `parent_id` int(11) NOT NULL DEFAULT '0', `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `lft` int(11) NOT NULL DEFAULT '0', `rgt` int(11) NOT NULL DEFAULT '0', `value` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `jos_gacl_parent_id_aro_groups` (`parent_id`), KEY `jos_gacl_lft_rgt_aro_groups` (`lft`,`rgt`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=31 ; -- -- Volcar la base de datos para la tabla `jos_core_acl_aro_groups` -- INSERT INTO `jos_core_acl_aro_groups` (`id`, `parent_id`, `name`, `lft`, `rgt`, `value`) VALUES (17, 0, 'ROOT', 1, 22, 'ROOT'), (28, 17, 'USERS', 2, 21, 'USERS'), (29, 28, 'Public Frontend', 3, 12, 'Public Frontend'), (18, 29, 'Registered', 4, 11, 'Registered'), (19, 18, 'Author', 5, 10, 'Author'), (20, 19, 'Editor', 6, 9, 'Editor'), (21, 20, 'Publisher', 7, 8, 'Publisher'), (30, 28, 'Public Backend', 13, 20, 'Public Backend'), (23, 30, 'Manager', 14, 19, 'Manager'), (24, 23, 'Administrator', 15, 18, 'Administrator'), (25, 24, 'Super Administrator', 16, 17, 'Super Administrator'); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `jos_core_acl_aro_map` -- CREATE TABLE IF NOT EXISTS `jos_core_acl_aro_map` ( `acl_id` int(11) NOT NULL DEFAULT '0', `section_value` varchar(230) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', `value` varchar(100) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`acl_id`,`section_value`,`value`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Volcar la base de datos para la tabla `jos_core_acl_aro_map` -- -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `jos_core_acl_aro_sections` -- CREATE TABLE IF NOT EXISTS `jos_core_acl_aro_sections` ( `section_id` int(11) NOT NULL AUTO_INCREMENT, `value` varchar(230) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `order_value` int(11) NOT NULL DEFAULT '0', `name` varchar(230) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `hidden` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`section_id`), UNIQUE KEY `value_aro_sections` (`value`), UNIQUE KEY `jos_gacl_value_aro_sections` (`value`), KEY `hidden_aro_sections` (`hidden`), KEY `jos_gacl_hidden_aro_sections` (`hidden`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=11 ; -- -- Volcar la base de datos para la tabla `jos_core_acl_aro_sections` -- INSERT INTO `jos_core_acl_aro_sections` (`section_id`, `value`, `order_value`, `name`, `hidden`) VALUES (10, 'users', 1, 'Users', 0); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `jos_core_acl_groups_aro_map` -- CREATE TABLE IF NOT EXISTS `jos_core_acl_groups_aro_map` ( `group_id` int(11) NOT NULL DEFAULT '0', `section_value` varchar(240) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `aro_id` int(11) NOT NULL DEFAULT '0', UNIQUE KEY `group_id_aro_id_groups_aro_map` (`group_id`,`section_value`,`aro_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Volcar la base de datos para la tabla `jos_core_acl_groups_aro_map` -- INSERT INTO `jos_core_acl_groups_aro_map` (`group_id`, `section_value`, `aro_id`) VALUES (21, '', 11), (25, '', 10); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `jos_core_log_items` -- CREATE TABLE IF NOT EXISTS `jos_core_log_items` ( `time_stamp` date NOT NULL DEFAULT '0000-00-00', `item_table` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `item_id` int(11) unsigned NOT NULL DEFAULT '0', `hits` int(11) unsigned NOT NULL DEFAULT '0' ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Volcar la base de datos para la tabla `jos_core_log_items` -- -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `jos_core_log_searches` -- CREATE TABLE IF NOT EXISTS `jos_core_log_searches` ( `search_term` text COLLATE utf8_unicode_ci NOT NULL, `hits` int(11) unsigned NOT NULL DEFAULT '0' ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Volcar la base de datos para la tabla `jos_core_log_searches` -- -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `jos_dbcache` -- CREATE TABLE IF NOT EXISTS `jos_dbcache` ( `id` varchar(32) NOT NULL DEFAULT '', `groupname` varchar(32) NOT NULL DEFAULT '', `expire` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `value` mediumblob NOT NULL, PRIMARY KEY (`id`,`groupname`), KEY `expire` (`expire`,`groupname`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Volcar la base de datos para la tabla `jos_dbcache` -- -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `jos_groups` -- CREATE TABLE IF NOT EXISTS `jos_groups` ( `id` tinyint(3) unsigned NOT NULL DEFAULT '0', `name` varchar(150) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Volcar la base de datos para la tabla `jos_groups` -- INSERT INTO `jos_groups` (`id`, `name`) VALUES (0, 'Public'), (1, 'Registered'), (2, 'Special'); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `jos_jce_extensions` -- CREATE TABLE IF NOT EXISTS `jos_jce_extensions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `pid` int(11) NOT NULL, `name` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `extension` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `folder` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `published` tinyint(3) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ; -- -- Volcar la base de datos para la tabla `jos_jce_extensions` -- INSERT INTO `jos_jce_extensions` (`id`, `pid`, `name`, `extension`, `folder`, `published`) VALUES (1, 15, 'Joomla Links for Advanced Link', 'joomlalinks', 'links', 1); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `jos_jce_groups` -- CREATE TABLE IF NOT EXISTS `jos_jce_groups` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `description` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `users` text COLLATE utf8_unicode_ci NOT NULL, `types` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `components` text COLLATE utf8_unicode_ci NOT NULL, `rows` text COLLATE utf8_unicode_ci NOT NULL, `plugins` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `published` tinyint(3) NOT NULL, `ordering` int(11) NOT NULL, `checked_out` tinyint(3) NOT NULL, `checked_out_time` datetime NOT NULL, `params` text COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ; -- -- Volcar la base de datos para la tabla `jos_jce_groups` -- INSERT INTO `jos_jce_groups` (`id`, `name`, `description`, `users`, `types`, `components`, `rows`, `plugins`, `published`, `ordering`, `checked_out`, `checked_out_time`, `params`) VALUES (1, 'Default', 'Default group for all users with edit access', '', '19,20,21,23,24,25', '', '28,27,32,33,19,20,21,29,45,44,43,46,26,49,36,37,30,31,39,40;56,47,38,5,9,48,42,24,25,22,18,2;7,17,13,10,3;23,15,14,59,16,4,6,8,12,54,34,41,11', '1,52,53,55,57,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,28,54,59', 1, 1, 62, '2008-08-01 18:52:15', ''); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `jos_jce_plugins` -- CREATE TABLE IF NOT EXISTS `jos_jce_plugins` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `name` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `type` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'plugin', `icon` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `layout` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `row` int(11) NOT NULL DEFAULT '0', `ordering` int(11) NOT NULL DEFAULT '0', `published` tinyint(3) NOT NULL DEFAULT '0', `editable` tinyint(3) NOT NULL DEFAULT '0', `elements` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `params` text COLLATE utf8_unicode_ci NOT NULL, `iscore` tinyint(3) NOT NULL DEFAULT '0', `checked_out` int(11) NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), UNIQUE KEY `plugin` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=60 ; -- -- Volcar la base de datos para la tabla `jos_jce_plugins` -- INSERT INTO `jos_jce_plugins` (`id`, `title`, `name`, `type`, `icon`, `layout`, `row`, `ordering`, `published`, `editable`, `elements`, `params`, `iscore`, `checked_out`, `checked_out_time`) VALUES (1, 'Context Menu', 'contextmenu', 'plugin', '', '', 0, 19, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (2, 'Directionality', 'directionality', 'plugin', 'ltr,rtl', 'directionality', 3, 26, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (3, 'Emotions', 'emotions', 'plugin', 'emotions', 'emotions', 3, 24, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (4, 'Fullscreen', 'fullscreen', 'plugin', 'fullscreen', 'fullscreen', 3, 27, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (5, 'Paste', 'paste', 'plugin', 'pasteword,pastetext', 'paste', 2, 15, 1, 1, '', '', 1, 0, '0000-00-00 00:00:00'), (6, 'Preview', 'preview', 'plugin', 'preview', 'preview', 3, 29, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (7, 'Tables', 'table', 'plugin', 'tablecontrols', 'buttons', 3, 11, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (8, 'Print', 'print', 'plugin', 'print', 'print', 3, 25, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (9, 'Search Replace', 'searchreplace', 'plugin', 'search,replace', 'searchreplace', 2, 18, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (10, 'Styles', 'style', 'plugin', 'styleprops', 'style', 4, 16, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (11, 'Non-Breaking', 'nonbreaking', 'plugin', 'nonbreaking', 'nonbreaking', 4, 21, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (12, 'Visual Characters', 'visualchars', 'plugin', 'visualchars', 'visualchars', 4, 20, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (13, 'XHTML Xtras', 'xhtmlxtras', 'plugin', 'cite,abbr,acronym,del,ins,attribs', 'xhtmlxtras', 4, 17, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (14, 'Image Manager', 'imgmanager', 'plugin', 'imgmanager', 'imgmanager', 4, 30, 1, 1, '', '', 1, 0, '0000-00-00 00:00:00'), (15, 'Advanced Link', 'advlink', 'plugin', 'advlink', 'advlink', 4, 31, 1, 1, '', '', 1, 0, '0000-00-00 00:00:00'), (16, 'Spell Checker', 'spellchecker', 'plugin', 'spellchecker', 'spellchecker', 4, 22, 1, 1, '', '', 1, 0, '0000-00-00 00:00:00'), (17, 'Layers', 'layer', 'plugin', 'insertlayer,moveforward,movebackward,absolute', 'layer', 4, 10, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (18, 'Font ForeColour', 'forecolor', 'command', 'forecolor', 'forecolor', 2, 17, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (19, 'Bold', 'bold', 'command', 'bold', 'bold', 1, 2, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (20, 'Italic', 'italic', 'command', 'italic', 'italic', 1, 3, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (21, 'Underline', 'underline', 'command', 'underline', 'underline', 1, 4, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (22, 'Font BackColour', 'backcolor', 'command', 'backcolor', 'backcolor', 2, 18, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (23, 'Unlink', 'unlink', 'command', 'unlink', 'unlink', 2, 11, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (24, 'Font Select', 'fontselect', 'command', 'fontselect', 'fontselect', 1, 12, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (25, 'Font Size Select', 'fontsizeselect', 'command', 'fontsizeselect', 'fontsizeselect', 1, 13, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (26, 'Style Select', 'styleselect', 'command', 'styleselect', 'styleselect', 1, 10, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (27, 'New Document', 'newdocument', 'command', 'newdocument', 'newdocument', 1, 1, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (28, 'Help', 'help', 'plugin', 'help', 'help', 1, 6, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (29, 'StrikeThrough', 'strikethrough', 'command', 'strikethrough', 'strikethrough', 1, 5, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (30, 'Indent', 'indent', 'command', 'indent', 'indent', 2, 7, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (31, 'Outdent', 'outdent', 'command', 'outdent', 'outdent', 2, 6, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (32, 'Undo', 'undo', 'command', 'undo', 'undo', 2, 8, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (33, 'Redo', 'redo', 'command', 'redo', 'redo', 2, 9, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (34, 'Horizontal Rule', 'hr', 'command', 'hr', 'hr', 3, 2, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (35, 'HTML', 'html', 'command', 'code', 'code', 2, 16, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (36, 'Numbered List', 'numlist', 'command', 'numlist', 'numlist', 2, 5, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (37, 'Bullet List', 'bullist', 'command', 'bullist', 'bullist', 2, 4, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (38, 'Clipboard Actions', 'clipboard', 'command', 'cut,copy,paste', 'clipboard', 2, 1, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (39, 'Subscript', 'sub', 'command', 'sub', 'sub', 3, 5, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (40, 'Superscript', 'sup', 'command', 'sup', 'sup', 3, 6, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (41, 'Visual Aid', 'visualaid', 'command', 'visualaid', 'visualaid', 3, 4, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (42, 'Character Map', 'charmap', 'command', 'charmap', 'charmap', 3, 7, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (43, 'Justify Full', 'full', 'command', 'justifyfull', 'justifyfull', 1, 8, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (44, 'Justify Center', 'center', 'command', 'justifycenter', 'justifycenter', 1, 7, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (45, 'Justify Left', 'left', 'command', 'justifyleft', 'justifyleft', 1, 6, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (46, 'Justify Right', 'right', 'command', 'justifyright', 'justifyright', 1, 9, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (47, 'Remove Format', 'removeformat', 'command', 'removeformat', 'removeformat', 3, 3, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (48, 'Anchor', 'anchor', 'command', 'anchor', 'anchor', 2, 12, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (49, 'Format Select', 'formatselect', 'command', 'formatselect', 'formatselect', 1, 11, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (50, 'Image', 'image', 'command', 'image', 'image', 2, 13, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (51, 'Link', 'link', 'command', 'link', 'link', 2, 10, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (52, 'File Browser', 'browser', 'plugin', '', '', 0, 28, 1, 1, '', '', 1, 0, '0000-00-00 00:00:00'), (53, 'Inline Popups', 'inlinepopups', 'plugin', '', '', 0, 12, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (54, 'Read More', 'readmore', 'plugin', 'readmore', 'readmore', 4, 23, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (55, 'Media Support', 'media', 'plugin', '', '', 0, 9, 1, 1, '', '', 1, 0, '0000-00-00 00:00:00'), (56, 'Code Cleanup', 'cleanup', 'command', 'cleanup', 'cleanup', 2, 14, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (57, 'Safari Browser Support', 'safari', 'plugin', '', '', 0, 13, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'), (59, 'Advanced Code Editor', 'advcode', 'plugin', 'advcode', 'advcode', 4, 8, 1, 0, '', '', 1, 0, '0000-00-00 00:00:00'); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `jos_jf_content` -- CREATE TABLE IF NOT EXISTS `jos_jf_content` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `language_id` int(11) NOT NULL DEFAULT '0', `reference_id` int(11) NOT NULL DEFAULT '0', `reference_table` varchar(100) NOT NULL DEFAULT '', `reference_field` varchar(100) NOT NULL DEFAULT '', `value` mediumtext NOT NULL, `original_value` varchar(255) DEFAULT NULL, `original_text` mediumtext NOT NULL, `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified_by` int(11) unsigned NOT NULL DEFAULT '0', `published` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `combo` (`reference_id`,`reference_field`,`reference_table`), KEY `jfContent` (`language_id`,`reference_id`,`reference_table`), KEY `jfContentLanguage` (`reference_id`,`reference_field`,`reference_table`,`language_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=6347 ; -- -- Volcar la base de datos para la tabla `jos_jf_content` -- INSERT INTO `jos_jf_content` (`id`, `language_id`, `reference_id`, `reference_table`, `reference_field`, `value`, `original_value`, `original_text`, `modified`, `modified_by`, `published`) VALUES (1, 2, 3, 'banner', 'name', 'Joomla!', 'ebfd59777230e1503f8b8986a78c4cc6', '', '2009-01-02 09:44:37', 62, 0), (2, 2, 3, 'banner', 'clickurl', 'http://www.joomla.org', 'dbad5e86abf37af199eab496ede3e0a4', '', '2009-01-02 09:44:37', 62, 0), (3, 2, 3, 'banner', 'custombannercode', '{NAME}\r\n
', '8d760d07856e72cd175ea2aa7d28c115', '', '2009-01-02 09:44:43', 62, 0),
(103, 2, 104, 'content', 'publish_up', '2008-09-05 22:43:44', '1177866e20f25486a2f820e5f0a92839', '', '2009-01-02 09:44:43', 62, 0),
(104, 2, 104, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:43', 62, 0),
(105, 2, 104, 'content', 'attribs', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', '56405df14c2814f631f9f82fcbfc75a2', '', '2009-01-02 09:44:43', 62, 0),
(106, 2, 61, 'content', 'title', 'Accordion Menu', '3fa88033d075e54aa16f8023b8c228a0', '', '2009-01-02 09:44:43', 62, 0),
(107, 2, 61, 'content', 'alias', 'Features', '98f770b0af18ca763421bac22b4b6805', '', '2009-01-02 09:44:43', 62, 0),
(108, 2, 61, 'content', 'introtext', '
This template takes advantage of the exclusive YOOtheme Accordion Menu for the sub level navigation. The Accordion Menu uses mootools for the transition effect with smooth animation and color fading.\r\n
\r\n
\r\nYes it can! This is a significant security improvement.
The safe mode limits PHP file to be able to perfom actions only on files/folders who''s owner is the same as PHP is currently using (this is usually ''apache''). As files normally are created either by the Joomla! application or by FTP access, the combination of PHP file actions and the FTP layer allows Joomla! to operate in PHP Safe Mode.
', '4b36599002e56dea96c915a44476c6c4', '', '2009-01-02 09:44:43', 62, 0), (121, 2, 15, 'content', 'publish_up', '2006-10-05 16:00:00', '045ed0d9ac437e04f39354fffa1622b3', '', '2009-01-02 09:44:43', 62, 0), (122, 2, 15, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:43', 62, 0), (123, 2, 15, 'content', 'attribs', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '097193d9531ef3dc84a690efb0a94cd6', '', '2009-01-02 09:44:43', 62, 0), (124, 2, 102, 'content', 'title', 'Contacto', '0a25e3680d265c53368dde50f60c925f', '', '2009-01-02 09:44:43', 62, 1), (125, 2, 102, 'content', 'alias', 'contacto', '0d87b5c76b4c480a107b621cc67f469d', '', '2009-01-02 09:44:43', 62, 1), (126, 2, 102, 'content', 'introtext', '\r\n\r\n', '0c30305c96b2bc95846d62fd693886de', '', '2009-01-02 09:44:43', 62, 1), (127, 2, 102, 'content', 'publish_up', '2008-09-05 15:27:55', 'fdd91007c9e1bbb53b499cb4a60e1f47', '', '2009-01-02 09:44:43', 62, 1), (128, 2, 102, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:43', 62, 1), (129, 2, 102, 'content', 'attribs', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', '56405df14c2814f631f9f82fcbfc75a2', '', '2009-01-02 09:44:43', 62, 1), (130, 2, 24, 'content', 'title', 'Content Layouts', 'da67658283b9cb4ff566d571289f9ea8', '', '2009-01-02 09:44:43', 62, 0), (131, 2, 24, 'content', 'alias', 'content-layouts', 'e911217b34628fe566f2e4ab33ec678a', '', '2009-01-02 09:44:43', 62, 0), (132, 2, 24, 'content', 'introtext', 'Joomla! provides plenty of flexibility when displaying your web content. Whether you are using Joomla! for a blog site, news or a website for a company, you''ll find one or more content styles to showcase your information. You can also change the style of content dynamically depending on your preferences. Joomla calls how a page is laid out a layout. Use the guide below to understand which layouts are available and how you might use them.
Joomla! makes it extremely easy to add and display content. All content is placed where your mainbody tag in your template is located. There are three main types of layouts available in Joomla! and all of them can be customised via parameters. The display and parameters are set in the menu item used to display the content your working on. You create these layouts by creating a menu item and choosing how you want the content to display.
Blog layout will show a listing of all content items of the selected blog type (section or category) in the mainbody position of your template. It will give you the standard title, and Intro of each content article in that particular Category and/or Section. You can customise this layout via the use of the content parameters, (See Content Parameters) this is done from the menu not the section manager!
A Blog Archive layout will give you a similar output of content as the normal Blog Display but will add at the top two dropdown boxes for Month and year plus a search button to allow users to search for all archived content from a specific month and year
Table layout will simply give you a table of all the titles in that particular section or category. No intro will be displayed just the titles. You can set how many titles will be displayed in this table by Parameters. The table layout will also provide a filter section so that users can reorder, filter and set how many titles are listed on a single page (up to 50)
Wrappers allow you to place stand alone applications and 3rd party websites inside your Joomla! site. The content within a wrapper appears within the primary content area defined by the "mainbody" tag and allows you to display content to display them as part of your own site. A Wrapper will place an IFRAME into the content section of your website and wrap your standard template navigation around it so it appears in the same way a content item would.
The parameters for each layout type can be found on the right hand side of the editor boxes in the menu item configuration screen. The parameters available depend largely on what kind of layout you are configuring.
', '2a806022b06e98556bce16f01577f6cc', '', '2009-01-02 09:44:43', 62, 0), (133, 2, 24, 'content', 'publish_up', '2006-10-11 08:00:00', '24b01a55f2043c98f18f696a7a77e82d', '', '2009-01-02 09:44:43', 62, 0), (134, 2, 24, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:43', 62, 0), (135, 2, 24, 'content', 'attribs', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '097193d9531ef3dc84a690efb0a94cd6', '', '2009-01-02 09:44:43', 62, 0), (136, 2, 58, 'content', 'title', 'Demo Content', '0c6ac90b57479652ccb4b60b05b6776b', '', '2009-01-02 09:44:43', 62, 0), (137, 2, 58, 'content', 'alias', 'Features', '98f770b0af18ca763421bac22b4b6805', '', '2009-01-02 09:44:43', 62, 0), (138, 2, 58, 'content', 'introtext', 'In addition to this template you can download the complete demo content which contains all content from this demo site you see right now. It consists of the database backup as text file and all images used on this site.
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.', 'cd473a03d052107edcffc855556fe6c8', '', '2009-01-02 09:44:44', 62, 0),
(157, 2, 6, 'content', 'fulltext', '
Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.
Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.
Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.
Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores duo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet clita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero voluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat.
Consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
', 'a0e962dc2164f3029979e9f0f407194c', '', '2009-01-02 09:44:44', 62, 0), (158, 2, 6, 'content', 'publish_up', '2004-07-07 00:00:00', 'fc173c11a347b312ea5d3cd30b45010d', '', '2009-01-02 09:44:44', 62, 0), (159, 2, 6, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:44', 62, 0), (160, 2, 6, 'content', 'attribs', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '097193d9531ef3dc84a690efb0a94cd6', '', '2009-01-02 09:44:44', 62, 0), (161, 2, 7, 'content', 'title', 'Example News Item 2', 'e97158420b4c5e106e4f1ed6fd785e24', '', '2009-01-02 09:44:44', 62, 0), (162, 2, 7, 'content', 'alias', 'example-news-item-2', '72323a017a0f4b73ed547b5259bf96a6', '', '2009-01-02 09:44:44', 62, 0), (163, 2, 7, 'content', 'introtext', '
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.
At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
', 'daac25e4fa38efb43b2c791a35802654', '', '2009-01-02 09:44:44', 62, 0), (165, 2, 7, 'content', 'publish_up', '2004-07-07 12:00:00', 'eef8c4f5a36c4ea170d328a9c02afe5a', '', '2009-01-02 09:44:44', 62, 0), (166, 2, 7, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:44', 62, 0), (167, 2, 7, 'content', 'attribs', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '097193d9531ef3dc84a690efb0a94cd6', '', '2009-01-02 09:44:44', 62, 0), (168, 2, 8, 'content', 'title', 'Example News Item 3', '46dd95600ff7f728be49044a85733319', '', '2009-01-02 09:44:44', 62, 0), (169, 2, 8, 'content', 'alias', 'example-news-item-3', '995024efe5d5ecad0cbf3acf9c12e8dc', '', '2009-01-02 09:44:44', 62, 0), (170, 2, 8, 'content', 'introtext', '
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
', '77389c682c829d431ffdb4328692565a', '', '2009-01-02 09:44:44', 62, 0), (177, 2, 9, 'content', 'fulltext', '
Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.
Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.
Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.
Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores duo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet clita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero voluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat.
Consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
', 'a5d43ba23bb4a8986893d5e531edd238', '', '2009-01-02 09:44:44', 62, 0), (178, 2, 9, 'content', 'publish_up', '2004-07-07 00:00:00', 'fc173c11a347b312ea5d3cd30b45010d', '', '2009-01-02 09:44:44', 62, 0), (179, 2, 9, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:44', 62, 0), (180, 2, 9, 'content', 'attribs', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '097193d9531ef3dc84a690efb0a94cd6', '', '2009-01-02 09:44:44', 62, 0), (181, 2, 43, 'content', 'title', 'Example Pages and Menu Links', '8ff89da833dec28e43542683c60f14f7', '', '2009-01-02 09:44:44', 62, 0), (182, 2, 43, 'content', 'alias', 'example-pages-and-menu-links', '707eb8e6a7b82ee88070d666cde6ab6c', '', '2009-01-02 09:44:44', 62, 0), (183, 2, 43, 'content', 'introtext', 'This page is an example of content that is "uncategorized". You will see there is a new menu in the left column. It shows links to the SAME content presented in 4 different page layouts.
Follow the links in the Example Pages menu to see some of the options available to you to present content.
You can also have links to components and individual articles. This is all controlled in the menu links.
', '5da14be09f854b8e33c4ef8e676ac52f', '', '2009-01-02 09:44:44', 62, 0), (184, 2, 43, 'content', 'metakey', 'Uncategorized, Uncategorized, Example Pages and Menu Links', 'a6fd3ff74cf36468450ae28d80493773', '', '2009-01-02 09:44:44', 62, 0), (185, 2, 43, 'content', 'publish_up', '2006-10-11 12:00:00', '4070d2a596dc0c3d2b111b93696dd9dc', '', '2009-01-02 09:44:44', 62, 0), (186, 2, 43, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:44', 62, 0); INSERT INTO `jos_jf_content` (`id`, `language_id`, `reference_id`, `reference_table`, `reference_field`, `value`, `original_value`, `original_text`, `modified`, `modified_by`, `published`) VALUES (187, 2, 43, 'content', 'attribs', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '097193d9531ef3dc84a690efb0a94cd6', '', '2009-01-02 09:44:44', 62, 0), (188, 2, 26, 'content', 'title', 'Extensions', '5e2f5f3c24ae8c6ab3eca618826b0e23', '', '2009-01-02 09:44:44', 62, 0), (189, 2, 26, 'content', 'alias', 'extensions', '2ac737d240fc746cef37129b7569f08e', '', '2009-01-02 09:44:44', 62, 0), (190, 2, 26, 'content', 'introtext', 'Out of the box, Joomla does a great job of managing the content needed to make your website sing. But for many people, the true power of Joomla lies in the application framework that makes it possible for thousands of developers around the world to create powerful add-ons that are called extensions. An extension is used to add capabilities to Joomla! that do not exist in the base core code. Here are just some examples of the hundreds of available extensions:
You can find more examples over at our growing Joomla! Extensions Directory. Prepare to be amazed at the amount of exciting work produced by our active developer community!
A useful guide to the extension site can be found at:
http://extensions.joomla.org/content/view/15/63/
There are five types of extensions:
You can read more about the specifics of these using the links in the article table of contents (another useful feature of Joomla!) at the top right or by clicking on the next link below.
A component is the largest and most complex of the extension types. Components are like mini-applications that renders the main body of the page. An analogy that might make the relationship easier to understand would be that Joomla! is a book and all the components are chapters in the book. The core content component (com_content), for example, is the mini-application that handles all core content rendering just as the core registration component (com_user) is the mini-application that handles user registration.
Many of Joomla''s core features are provided by the use of default components such as:
A Component will manage data, set displays, provide functions and in general can perform any operation that doesn''t fall under the general functions of the core code.
Components work hand in hand with Modules and Plugins to provide a rich variety of content display and functionality aside from the standard article and content display. Components make it possible to completely transform Joomla and greatly expand its capabilities.
More information on components is available from the Joomla! help manual: Components
http://help.joomla.org/content/view/77/153/
A more lightweight and flexible extension used for page rendering is a module. Modules are used for small bits of the page that are generally less complex and able to be seen across different components. To continue in our book analogy, a module can be looked at as a footnote or header block, or perhaps an image/caption block that can be rendered on a particular page. Obviously you can have a footnote on any page but not all pages will have them. Footnotes also might appear regardless of which chapter you are reading. Simlarly modules can be rendered regardless of which component you have loaded.
Modules are like little mini-applets that can be placed anywhere on your site. They work in conjunction with components in some cases and in others are complete stand alone snippets of code used to display some data from the database such as Content (Newsflash) Modules are usually used to output data but they can also be form items to input data (Login Module and Polls as an example)
Modules can be assigned to module positions which are defined in both your template and backend under the Site/Template Manager/Module Positions menu items. For example, "left" and "right" are common for a 3 column layout.
Each module is assigned to a module position on your site. If you wish it to display in two different locations you must copy the module and assign the copy to display at the new location. You can also set which menu items (and thus pages) a module will display on. You can select all menu items or you can pick and choose specific menu items by holding down the control key and selecting multiple menu items one by one in the Modules Edit screen
Note your Main Menu is a Module! When you create a new menu in the menu manager you are actually copying the Main Menu module code and giving it the name of your new menu. When you copy a module you do not copy all it''s parameters you simply allow Joomla to use the same code with two separate settings.
NewsFlash is a Module which will display content items from your site in an assignable module position. It can be used and configured to display one category, all categories or to randomly choose content items to highlight to users. It will display as much of an article as you set, and will show a "read more" link to take the user to the full page.
The Newsflash component is particularly useful for things like Site News or to show the latest content item added to your site.
More information on Modules is available from the Joomla! help manual: Modules
http://help.joomla.org/content/view/91/153/
One of the more advanced extensions for Joomla! is the plugin (formerly called a mambot). In previous versions plugins were known as mambots. Along with the development of Joomla! 1.5, mambots have been renamed to plugins and their functionality has been expanded. A plugin is a section of code that runs when a pre-defined event happens within Joomla! Editors are plugins, for example, that execute when the Joomla! event "onGetEditorArea" occurs. Using a plugin allows a developer to change the way their code behaves depending upon which plugins are installed to react to an event.
More information on Plugins is available from the Joomla! help manual: Plugins
http://help.joomla.org/content/view/110/153/
New to Joomla! 1.5 and perhaps the most basic and critical extension is a language. Languages are packaged as either a core language pack or an extension language pack. They allow both the Joomla! core as well as third party components and modules to be internationalised.
More information on languages is available from the Joomla! help manual: Languages
http://help.joomla.org/content/view/23/160/
\r\n/*** template parameters ***/\r\n$template_parameters = array(\r\n/* color variation */\r\n"color" => "black", /* default (white) | black */\r\n/* item color variation */\r\n"item1" => "red", /* default | red | blue | green | yellow | lilac */\r\n"item2" => "blue", /* default | red | blue | green | yellow | lilac */\r\n"item3" => "green", /* default | red | blue | green | yellow | lilac */\r\n"item4" => "yellow", /* default | red | blue | green | yellow | lilac */\r\n"item5" => "lilac", /* default | red | blue | green | yellow | lilac */\r\n"item6" => "default", /* default | red | blue | green | yellow | lilac */\r\n/* layout */\r\n"dogear" => true, /* true | false */\r\n"date" => true, /* true | false */\r\n"styleswitcherFont" => true, /* true | false */\r\n"styleswitcherWidth" => true, /* true | false */\r\n"layout" => "left", /* left | right */ \r\n/* features */\r\n"lightbox" => true, /* true | false */\r\n"reflection" => true, /* true | false */\r\n"snap" => false, /* true | false */\r\n/* style switcher */\r\n"fontDefault" => "font-medium", /* font-small | font-medium | font-large */\r\n"widthDefault" => "width-wide", /* width-thin | width-wide | width-fluid */\r\n"widthThinPx" => 780, /* template width for style "width-thin" */\r\n"widthWidePx" => 940, /* template width for style "width-wide" */\r\n"widthFluidPx" => 0.9, /* template width for style "width-fluid" */\r\n/* top panel */\r\n"toppanel" => true, /* true | false */\r\n"heightToppanel" => 320, /* height of the sliding when moving down */\r\n/* text */\r\n"textToppanel" => "Top Panel", /* text label for the toppanel */\r\n/* javascript */\r\n"loadJavascript" => "true" /* true | false */\r\n);\r\n\r\n
1) Asesoramiento e implementación
\r\n2) Planificación y ejecución
\r\n3) Supervisión y coordinación general
\r\n4) Evaluación y mejora continua
Ofrecemos nuestros servicios en forma:
\r\nINTEGRAL
\r\nSe buscan todos los proveedores
PARCIAL
\r\nSe buscan algunos
\r\n
\r\n
BÁSICA
\r\nTeniendo todos los proveedores precisan un profesional que supervise
TIPOS DE EVENTOS
\r\nSOCIALES
\r\nBautismo
\r\nComunión
\r\nDespedida de soltero/a
\r\nCasamientos
\r\nAniversario de bodas
\r\nCumpleaños
\r\nTemáticas
\r\nBar Mitzvá
\r\nBat Mitzvá
\r\n
\r\nEMPRESARIALES
\r\nDesayuno de trabajo
\r\nAlmuerzo de trabajo
\r\nDesfile de modas
\r\nLanzamiento de productos
\r\nInauguraciones
\r\nExposiciones
\r\nCongresos
', '0be7fc961d39d6ad9e2b7829b27b72c5', '', '2009-01-02 09:44:44', 62, 0), (204, 2, 99, 'content', 'publish_up', '2008-09-05 15:17:09', '548958db14309c4427a2f69173bef60c', '', '2009-01-02 09:44:44', 62, 0), (205, 2, 99, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:44', 62, 0), (206, 2, 99, 'content', 'attribs', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', '56405df14c2814f631f9f82fcbfc75a2', '', '2009-01-02 09:44:44', 62, 0), (207, 2, 105, 'content', 'title', 'Danke', 'e44165d04caec1113db6159d0210c4c3', 'Gracias', '2009-01-02 13:20:23', 62, 0), (208, 2, 105, 'content', 'alias', 'danke', '3e0a5f7ef3ae90289abe88023b987cd9', 'gracias', '2009-01-02 13:20:23', 62, 0), (209, 2, 105, 'content', 'introtext', '
In Joomla! 1.5 all user interfaces can be localised. This includes the installation, the administrator interface and the front end site.
The core release of Joomla! 1.5 is shipped with mutliple language choices in the installation but languages for the site and administration interfaces need to be added after installation. (Other than English). Links to such language packs exist below.
', 'cb507be0d0aa854e9e9456615350b606', '', '2009-01-02 09:44:45', 62, 0), (252, 2, 10, 'content', 'fulltext', 'Translation Teams for Joomla! 1.5 may have also released fully localised installation packages where site, administrator and sample data are in the local language. These localised releases can be found in the specific team projects on the Joomla! Forge.
Please note that Joomla! 1.5 is new and language packs for this version may have not been released at this time.
Joomla! can be adapted to provide multi-lingual sites by installing the Joom-Fish component.
', '1c8c8fa6451b35d0c79eb73e5f2b68f0', '', '2009-01-02 09:44:45', 62, 0), (253, 2, 10, 'content', 'publish_up', '2006-09-29 12:00:00', 'a624671b6088e65972be21b5f53c35f3', '', '2009-01-02 09:44:45', 62, 0), (254, 2, 10, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:45', 62, 0), (255, 2, 10, 'content', 'attribs', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '097193d9531ef3dc84a690efb0a94cd6', '', '2009-01-02 09:44:45', 62, 0), (256, 2, 39, 'content', 'title', 'How do I remove an article?', 'f774472783eb3241b07448bb55d50943', '', '2009-01-02 09:44:45', 62, 0), (257, 2, 39, 'content', 'alias', 'how-do-i-remove-an-article', '207c2c64a0fa6a4267bc1dcf84d85304', '', '2009-01-02 09:44:45', 62, 0), (258, 2, 39, 'content', 'introtext', 'To completely remove an article, select the articles that you want to delete and move them to the trash. Next, open the Article Trash in the Content menu and select the articles you want to delete. After deleting an article, it is no longer available and it is not possible to undo this operation.
', 'c1ed455ffc910ffdc8f42417cf163011', '', '2009-01-02 09:44:45', 62, 0), (259, 2, 39, 'content', 'publish_up', '2006-10-10 12:00:00', '4c310ad99bddeed1fdaed234c3544fe6', '', '2009-01-02 09:44:45', 62, 0), (260, 2, 39, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:45', 62, 0), (261, 2, 39, 'content', 'attribs', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '097193d9531ef3dc84a690efb0a94cd6', '', '2009-01-02 09:44:45', 62, 0), (262, 2, 11, 'content', 'title', 'How do I upgrade to Joomla! 1.5 ?', '8c0a4fd54270b62cd9ff7c1d6d04ae10', '', '2009-01-02 09:44:45', 62, 0), (263, 2, 11, 'content', 'alias', 'how-do-i-upgrade-to-joomla-15', '9958835b3bea86858d88534944a2626a', '', '2009-01-02 09:44:45', 62, 0), (264, 2, 11, 'content', 'introtext', 'Joomla 1.5 does not provide an upgrade path from earlier versions. Converting an older site to a Joomla 1.5 site requires creation of a new empty site using Joomla 1.5 and then populating the new site with the content from the old site. This migration of content is not a one-to-one process and involves conversions and modifications to the content dump.
There are two ways to perform the migration:
', '38066a6c7f062df3522a0003483fae01', '', '2009-01-02 09:44:45', 62, 0), (265, 2, 11, 'content', 'fulltext', 'This is a two phased process using two tools. The first tool is a migrator component named ''com_migrator''. This component has been contributed by Harald Baer and is based on his ''eBackup'' component. The migrator needs to be installed on the old site and when activated it prepares the required export dump of the old site''s data. The second tool is built into the Joomla 1.5 installation process. The exported content dump is loaded to the new site and all conversions and modification are performed ''on-the-fly''.
Step 1 - Using com_migrator to export data from old site:
Step 2 - Using the migration facility to import and convert data during Joomla 1.5 installation:
Note: This function requires use of the iconv function in PHP to convert encodings. If iconv is not found a warning will be provided.
A lot of different languages are available for the back end, but by default this language may not be installed. If you want a translated back end, get your language pack and install it using the back end installer. After this, go to the extensions menu, select language manager and make your language the default one. Your back end will be translated instantaneously.
Users who have access rights to the back end may choose the language they prefer in their personal details parameters.
This is of course also true for the front-end language.
A good place to find where to download your languages and localised versions of Joomla is on our Help Site.
', 'bcc35998853fc3bfd35847ff2535d902', '', '2009-01-02 09:44:45', 62, 0), (272, 2, 38, 'content', 'publish_up', '2006-10-10 16:00:00', '68bedc32ee2c08a3b36e62888d49ba45', '', '2009-01-02 09:44:45', 62, 0), (273, 2, 38, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:45', 62, 0), (274, 2, 38, 'content', 'attribs', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '097193d9531ef3dc84a690efb0a94cd6', '', '2009-01-02 09:44:45', 62, 0), (6342, 5, 63, 'users', 'name', 'Londra Productions', '577d023732687af72d8df7231f2df48b', 'Londres Producciones', '2009-02-01 08:13:05', 62, 1), (281, 2, 35, 'content', 'title', 'Is it possible to change the types of menu entries?', '183001d9fe613320a5487856b98b2f78', '', '2009-01-02 09:44:46', 62, 0), (282, 2, 35, 'content', 'alias', 'is-it-possible-to-change-the-types-of-menu-entries', 'a9fc842a80e14dfe555f67fdd818df16', '', '2009-01-02 09:44:46', 62, 0), (283, 2, 35, 'content', 'introtext', 'You indeed can change the menu items type to whatever you want, even after they have been created. If you for instance want to change the blog section of a menu link, jump to the back end and edit the menu item. Push the "change type" button and select the details for the menu you want to assign.', '6d20538537b85f909d5fcfb085e60538', '', '2009-01-02 09:44:46', 62, 0), (284, 2, 35, 'content', 'publish_up', '2006-10-10 08:00:00', '2e7045692e33f043eea7ee4d616d891e', '', '2009-01-02 09:44:46', 62, 0), (285, 2, 35, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:46', 62, 0), (286, 2, 35, 'content', 'attribs', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '097193d9531ef3dc84a690efb0a94cd6', '', '2009-01-02 09:44:46', 62, 0), (287, 2, 31, 'content', 'title', 'Is it useful to install the example data?', 'de1d3ae16c2826a00bde0fc4f6b7e3ac', '', '2009-01-02 09:44:46', 62, 0), (288, 2, 31, 'content', 'alias', 'is-it-useful-to-install-the-example-data', '604eb77bd9d85c36f00bedf90b4a24e1', '', '2009-01-02 09:44:46', 62, 0), (289, 2, 31, 'content', 'introtext', 'This depends on what you want to achieve. If you are new to Joomla! and have no clue how all fits together, just install the example data. If you don''t like the English example because you - for instance - speak Chinese, then leave it out.', 'cb10982af7e329f269e44ee71aa97705', '', '2009-01-02 09:44:46', 62, 0), (290, 2, 31, 'content', 'publish_up', '2006-10-10 12:00:00', '4c310ad99bddeed1fdaed234c3544fe6', '', '2009-01-02 09:44:46', 62, 0), (291, 2, 31, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:46', 62, 0), (292, 2, 31, 'content', 'attribs', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '097193d9531ef3dc84a690efb0a94cd6', '', '2009-01-02 09:44:46', 62, 0), (293, 2, 21, 'content', 'title', 'Joomla! Facts', '0e655eb97aa2ddf22db38df391ee0661', '', '2009-01-02 09:44:46', 62, 0), (294, 2, 21, 'content', 'alias', 'joomla-facts', '376b54b7a60f14862e303cd24379bab5', '', '2009-01-02 09:44:46', 62, 0), (295, 2, 21, 'content', 'introtext', 'Here are some interesting facts about Joomla!
', '9381c7c6e62ee2924a56eb405d99d640', '', '2009-01-02 09:44:46', 62, 0), (296, 2, 21, 'content', 'publish_up', '2006-10-07 16:00:00', 'd0a8e4422578eaee7bae3035623205c1', '', '2009-01-02 09:44:46', 62, 0), (297, 2, 21, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:46', 62, 0), (298, 2, 21, 'content', 'attribs', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '097193d9531ef3dc84a690efb0a94cd6', '', '2009-01-02 09:44:46', 62, 0), (299, 2, 18, 'content', 'title', 'Joomla! Features', 'cc1c9b7a924d96bd50616674ac2ecf4a', '', '2009-01-02 09:44:46', 62, 0), (300, 2, 18, 'content', 'alias', 'joomla-features', 'e901cf6f39ebb30c73986f8471cdffb2', '', '2009-01-02 09:44:46', 62, 0), (301, 2, 18, 'content', 'introtext', '
This website is powered by Joomla! The software and default templates on which it runs are Copyright 2005-2006 Open Source Matters. All other content and data, including data entered into this website and templates added after installation, are copyrighted by their respective copyright owners.
If you want to distribute, copy or modify Joomla!, you are welcome to do so under the terms of the GNU General Public License. If you are unfamiliar with this license, you might want to read ''How To Apply These Terms To Your Program'' and the ''GNU General Public License FAQ''.
', '6b38cdb49943aae0bc38297feb955362', '', '2009-01-02 09:44:46', 62, 0), (309, 2, 5, 'content', 'publish_up', '2004-08-19 08:00:00', '7a7b1cbf40696992bde2f65279fde2b6', '', '2009-01-02 09:44:46', 62, 0), (310, 2, 5, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:46', 62, 0), (311, 2, 5, 'content', 'attribs', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '097193d9531ef3dc84a690efb0a94cd6', '', '2009-01-02 09:44:46', 62, 0), (312, 2, 19, 'content', 'title', 'Joomla! Overview', '8ac68def4f400443d65a0de648c7f3fc', '', '2009-01-02 09:44:46', 62, 0), (313, 2, 19, 'content', 'alias', 'joomla-overview', '76b2d78165ee15fbc1009f592ad497eb', '', '2009-01-02 09:44:46', 62, 0), (314, 2, 19, 'content', 'introtext', 'If you''re new to web publishing systems, you''ll find that Joomla! delivers sophisticated solutions to your online needs. It can deliver a robust enterprise-level website, empowered by endless extensibility for your bespoke publishing needs. Moreover, it is often the system of choice for small business or home users who want a professional looking site that''s simple to deploy and use. We do content right.
So what''s the catch? How much does this system cost? Well, there''s good news ... and more good news! Joomla! 1.5 is free released under an Open Source license.
Had you invested in a commercial alternatives, there''d be nothing but moths left in your wallet.
Joomla! is set to change all that ... Joomla! is different from the normal models for content management software. For a start, it''s not complicated. Joomla! has been developed for everybody. It''s licensed under the GNU/GPL license, easy to install and administer and reliable. Joomla! doesn''t even require the user or administrator of the system to know HTML to operate it once it''s up and running.', 'a346360e57595cffcd48d68665325d85', '', '2009-01-02 09:44:46', 62, 0), (315, 2, 19, 'content', 'publish_up', '2006-10-07 12:00:00', '79a1abace5b2068985643ff6283cad11', '', '2009-01-02 09:44:46', 62, 0), (316, 2, 19, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:46', 62, 0), (317, 2, 19, 'content', 'attribs', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '097193d9531ef3dc84a690efb0a94cd6', '', '2009-01-02 09:44:46', 62, 0), (318, 2, 67, 'content', 'title', 'Latest Gadgets', 'bba451a55c446bafc801069b1f5535bd', '', '2009-01-02 09:44:46', 62, 0), (319, 2, 67, 'content', 'alias', 'latest-gadgets', 'c01100fe9c511e6c2bb5700fce7250ed', '', '2009-01-02 09:44:46', 62, 0), (320, 2, 67, 'content', 'introtext', '
\r\n
\r\n \r\n/*** template parameters ***/\r\n$template_parameters = array(\r\n "layout" => "left" /* left | right */ \r\n);\r\n\r\n
\r\n
\r\n\r\nPara ver fotos de nuestro STAFF DE MODELOS haga clic AQUÍ
\r\n\r\n
Joomla! makes it easy to launch a website of any kind. Whether you want a brochure site or you''re building a large online community, Joomla! allows you to deploy a site in minutes and add functionality as you need it. The hundreds of extensions will expand your site and allow you to deliver new services that expand your reach into the Internet.
', 'a3572147388b159f46573596620e111b', '', '2009-01-02 09:44:47', 62, 0), (363, 2, 2, 'content', 'publish_up', '2004-08-09 12:00:00', 'f337bb29b8d1a9ff2af6664ea486651c', '', '2009-01-02 09:44:47', 62, 0), (364, 2, 2, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:47', 62, 0), (365, 2, 2, 'content', 'attribs', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '097193d9531ef3dc84a690efb0a94cd6', '', '2009-01-02 09:44:47', 62, 0), (366, 2, 3, 'content', 'title', 'Newsflash 2', '6bb9ac24fbb2926c7c18c01dff8aa695', '', '2009-01-02 09:44:47', 62, 0), (367, 2, 3, 'content', 'alias', 'newsflash-2', 'b7be8b85b00ae2bc66bc71bc3a0dc209', '', '2009-01-02 09:44:47', 62, 0), (368, 2, 3, 'content', 'introtext', 'The one thing about a website, it always changes! Joomla! makes it easy to add article, content, images, videos and more. Site administrators can edit and manage content ''in-context'' by clicking the ''edit'' link. Webmasters can also edit content though a graphical administration panel that give you complete control over your site.
', 'c6d7a164f8d34605544aac483af2e311', '', '2009-01-02 09:44:47', 62, 0), (369, 2, 3, 'content', 'publish_up', '2004-08-09 08:00:00', '8480ac634d82a4861b98bb189ec6ffe3', '', '2009-01-02 09:44:47', 62, 0), (370, 2, 3, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:47', 62, 0), (371, 2, 3, 'content', 'attribs', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '097193d9531ef3dc84a690efb0a94cd6', '', '2009-01-02 09:44:47', 62, 0), (372, 2, 4, 'content', 'title', 'Newsflash 3', 'b084c6c7fa1b11b38922cda8402f4f05', '', '2009-01-02 09:44:47', 62, 0), (373, 2, 4, 'content', 'alias', 'newsflash-3', '4057528cbc0617864f4ab0e83f0bc0d6', '', '2009-01-02 09:44:47', 62, 0), (374, 2, 4, 'content', 'introtext', 'With a library of hundreds of free extensions, you can add what you need as your site grows. Don''t wait, look through the Joomla! extensions library today.
', '6bc4e341af57b79616594215d2777757', '', '2009-01-02 09:44:47', 62, 0), (375, 2, 4, 'content', 'publish_up', '2004-08-09 12:00:00', 'f337bb29b8d1a9ff2af6664ea486651c', '', '2009-01-02 09:44:47', 62, 0), (376, 2, 4, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:47', 62, 0), (377, 2, 4, 'content', 'attribs', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '097193d9531ef3dc84a690efb0a94cd6', '', '2009-01-02 09:44:47', 62, 0), (378, 2, 42, 'content', 'title', 'Newsflash 4', '068f81200bd35dd40c7336cb3a770c4a', '', '2009-01-02 09:44:47', 62, 0), (379, 2, 42, 'content', 'alias', 'newsflash-4', '8fdaa613c96dc4dc9da7c6fff0e8de24', '', '2009-01-02 09:44:47', 62, 0), (380, 2, 42, 'content', 'introtext', 'Yesterday all servers in the U.S. went out on strike in a bid to get more RAM and better CPUs. A spokes person said that the need for better RAM was due to some fool increasing the front-side bus speed. In future, busses will be told to slow down in residential motherboards.', '4a4a3ffb9a18c92d830a78478ddbd223', '', '2009-01-02 09:44:47', 62, 0), (381, 2, 42, 'content', 'publish_up', '2006-10-11 08:00:00', '24b01a55f2043c98f18f696a7a77e82d', '', '2009-01-02 09:44:47', 62, 0), (382, 2, 42, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:47', 62, 0), (383, 2, 42, 'content', 'attribs', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '097193d9531ef3dc84a690efb0a94cd6', '', '2009-01-02 09:44:47', 62, 0), (384, 2, 41, 'content', 'title', 'Newsflash 5', '3fe850555edef37696e1630c0d040d3c', '', '2009-01-02 09:44:47', 62, 0), (385, 2, 41, 'content', 'alias', 'newsflash-5', '56c30d25f2ff489734c762115ea2c825', '', '2009-01-02 09:44:47', 62, 0), (386, 2, 41, 'content', 'introtext', 'Joomla! 1.5 - ''Experience the Freedom''!. It has never been easier to create your own dynamic site. Manage all your content from the best CMS admin interface and in virtually any language you speak.', '7eabf1bc83b9616c78f713eaa5daba69', '', '2009-01-02 09:44:47', 62, 0), (387, 2, 41, 'content', 'publish_up', '2006-10-11 08:00:00', '24b01a55f2043c98f18f696a7a77e82d', '', '2009-01-02 09:44:47', 62, 0), (388, 2, 41, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:47', 62, 0), (389, 2, 41, 'content', 'attribs', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '097193d9531ef3dc84a690efb0a94cd6', '', '2009-01-02 09:44:47', 62, 0), (390, 2, 16, 'content', 'title', 'Only one edit window! How do I create "Read more..."?', '6bd85699eab343bacddaae880ff71df5', '', '2009-01-02 09:44:47', 62, 0), (391, 2, 16, 'content', 'alias', 'only-one-edit-window-how-do-i-create-read-more', '5b630becba4dfebb0640f469c8d81bd8', '', '2009-01-02 09:44:47', 62, 0), (392, 2, 16, 'content', 'introtext', 'This is now implemented by inserting a tag (button is in the editor area) a dotted line appears in the edited text showing the split location for the "Read more...". A new bot takes care of the rest.
It is worth mentioning that this does not have a negative effect on migrated data from older sites. The new implementation is fully backward compatible.
', '1407d049f4c0e4f32ca7d56ca10edaa7', '', '2009-01-02 09:44:47', 62, 0), (393, 2, 16, 'content', 'publish_up', '2006-10-05 16:00:00', '045ed0d9ac437e04f39354fffa1622b3', '', '2009-01-02 09:44:47', 62, 0), (394, 2, 16, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:47', 62, 0), (395, 2, 16, 'content', 'attribs', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '097193d9531ef3dc84a690efb0a94cd6', '', '2009-01-02 09:44:47', 62, 0), (396, 2, 23, 'content', 'title', 'Platforms and Open Standards', '25c18bd20d4aaf9b0f2f73ee79b6708b', '', '2009-01-02 09:44:47', 62, 0), (397, 2, 23, 'content', 'alias', 'platforms-and-open-standards', '0334173f689ac8cde39ae669b9e83d13', '', '2009-01-02 09:44:47', 62, 0), (398, 2, 23, 'content', 'introtext', 'Joomla! runs on any platform including Windows, most flavors of Linux, Several Unix versions, and the Apple OSX platform. Joomla! depends PHP and the MySQL database to deliver dynamic content.
The minimum requirements are:
\r\n<img class="correct-png" src="image-1.jpg" width="240" height="180" />\r\n\r\n
Ofrecemos nuestros servicios en los siguientes rubros:
Accesorios varios
AGADU
Ajuar
Alianzas
Alquiler de equipamiento
Alta costura
Autos
Azafatas
Bailarines
Baños químicos
Barmans
Barman show
Barra de tragos
Bazares
Bebidas
Body paint
Body sushi show
Cantantes
Carpas
Catering
Ceremonia civil
Ceremonia religiosa
Chacras
Coros
Coordinadores
Cotillón
Decoración
Descorche
Discjockey
Diseño y confección de stands
Disfraces
Distribución de invitaciones
Emergencia médica
Estatuas vivientes
Flores
Fotos
Fuegos artificiales
Gazebo
Grupo electrógeno
Hoteles
Iluminación
Joyerías
Magos
Maletas
Manicura
Maquillaje
Mariachis
Marketing
Mimos
Modelos de pasarela, publicidad y medios gráficos
Mozos
Niñera para los niños
Noche de boda
Odaliscas
Ópticas
Plantas
Pasacalle
Pelucas
Peluquería
Promotores
Psicóloga
Ramos
Registro civil
Relaciones publicas
Salones
Secretarias de congreso
Seguridad
Souvenirs
SPA
Streepers
Supervisiones
Transformistas
Tarjetas
Tarotistas
Tocados
Toldos
Tortas
Uniformes promocionales
Velas
Vestidos de segunda mano
Video
Zapatos
CONSULTA SIN CARGO
', '891f7b1704fa10524ae07cd03a477a1b', '', '2009-01-02 09:44:48', 62, 0), (411, 2, 100, 'content', 'publish_up', '2008-09-05 15:25:03', 'e4f26e679ed3b9263d51ff7aaffeea12', '', '2009-01-02 09:44:48', 62, 0), (412, 2, 100, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:48', 62, 0), (413, 2, 100, 'content', 'attribs', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', '56405df14c2814f631f9f82fcbfc75a2', '', '2009-01-02 09:44:48', 62, 0), (414, 2, 69, 'content', 'title', 'Sign up', 'd9776f0775997b2e698c6975420b5c5d', '', '2009-01-02 09:44:48', 62, 0), (415, 2, 69, 'content', 'alias', 'sign-up', '3232cb6b61415092122d840c1f61664b', '', '2009-01-02 09:44:48', 62, 0), (416, 2, 69, 'content', 'introtext', '
\r\n
\r\n
This template implements the exclusive YOOtheme Slider Menu System for the horizontal top navigation.\r\n
\r\nAccessibility is very important to make your website accessible for a wide range of users. The YOOtheme Styleswitcher enables your website to fit to any screen resolution and to resize the entire text. This is done by giving users ability to change font size and page width.\r\n\r\n"styleswitcherFont" => false, /* true | false */\r\n"styleswitcherWidth" => false, /* true | false */\r\n\r\n"fontDefault" => "font-medium", /* font-small | font-medium | font-large */\r\n"widthDefault" => "width-wide", /* width-thin | width-wide | width-fluid */\r\n', '8e63f56087d2d7046a25c446b23bb31b', '', '2009-01-02 09:44:48', 62, 0), (441, 2, 50, 'content', 'publish_up', '2007-06-04 15:00:56', 'a287b70c0bc6d0822c98c4bcd5d31c0a', '', '2009-01-02 09:44:48', 62, 0), (442, 2, 50, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:48', 62, 0), (443, 2, 50, 'content', 'attribs', 'show_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '9f65e3a10ed88897516309a600df3d82', '', '2009-01-02 09:44:48', 62, 0), (444, 2, 20, 'content', 'title', 'Support and Documentation', '703d2d3f6aa5b2ce745f7ed65ca218a6', '', '2009-01-02 09:44:48', 62, 0), (445, 2, 20, 'content', 'alias', 'support-and-documentation', '1ed8a0a2b192624ce802c733bb239f8a', '', '2009-01-02 09:44:48', 62, 0), (446, 2, 20, 'content', 'introtext', '
Support for the Joomla! CMS can be found on several places. The best place to start would be the official Help Site . On the Help Site you can find a lot of documantation such as an Administrator manual, Developer info, Frequently Asked Questions and so on.
Of course you should not forget the Help System of the CMS itself. On the topmenu in the Backend Administrator you find the Help button which will provide you with lots of explanation on features.
Another great place would of course be the Forum . On the Joomla! Forum you can find help and support from both Community members, but also from Joomla! Core members and Working Group members. The forum contains a lot of information, FAQ''s, just about anything you are looking for in terms of support.
Two other resources for Support are the Developer Site and the Extensions Site . The Developer Site for example provides lots of technical info to developers. The Joomla! Core members are regularly posting there blog reports about several topics such as programming techniques used in Joomla!, Security, Events and more.
Joomla! Documentation can of course be found on the Help Site . You can find information such as an Installation Guide, User and Administrator manuals, Frueqently Asked Questions and a lot more.
Other than the documantation provided by the joomla! Core team, there are also books written about Joomla! You can find a listing of these books in the Joomla! Bookshelf .
Can you help?
Yes! If you have any suggestions for us, please post them to:
http://forum.joomla.org/index.php/board,59.0.html
Got a question? With over 60,000 members, the online forum at Joomla.org are a great resource for both new an experienced users. Go ahead, ask your toughest questions, the community is waiting to see what you''re going to do with your Joomla! site.
Do you want to show off your new Joomla website? Go ahead, we have a section dedicated to that on our forum.
Do you want to join in?
If you think working with Joomla! is fun, wait until you start working on it. We''re passionate about helping Joomla! users make the jump to becoming contributing members of the community, so there are many ways you can help Joomla''s development:
That''s all you need to know if you''d like to join the Joomla! development community.
', 'a47fa0dc28be20c05c653c5a25e3a0c1', '', '2009-01-02 09:44:48', 62, 0), (459, 2, 27, 'content', 'publish_up', '2006-10-11 04:00:00', 'f053abee6352ee64e8ccfc85147aa97f', '', '2009-01-02 09:44:48', 62, 0), (460, 2, 27, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:48', 62, 0), (461, 2, 27, 'content', 'attribs', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '097193d9531ef3dc84a690efb0a94cd6', '', '2009-01-02 09:44:48', 62, 0), (462, 2, 44, 'content', 'title', 'Typography', '603850e072131401265c4fc01027db93', '', '2009-01-02 09:44:49', 62, 0), (463, 2, 44, 'content', 'alias', 'typography', '4acfe94183f4e917d7a73c5b6bd6396b', '', '2009-01-02 09:44:49', 62, 0), (464, 2, 44, 'content', 'introtext', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n
\r\n
\r\n\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n
\r\n
Lorem ipsum dolor sit amet, consec est tetur adipisicing elit, sed do eiusmod.\r\nThis is a sample <blockquote> tag with class="big" and an additional <div> tag
\r\n
\r\n\r\n\r\nLorem ipsum dolor sit amet, consec est tetur adipisicing elit, sed do eiusmod.\r\n
\r\n
\r\npre {\r\nbackground: #fff;\r\ncolor: #333;\r\npadding:10px;\r\nborder: 1px solid #ccc;\r\nborder-left: 5px solid #ccc;\r\n}\r\n', 'f30b32f212f53eebfa23f96cb1745a7a', '', '2009-01-02 09:44:49', 62, 0),
(465, 2, 44, 'content', 'publish_up', '2007-06-04 14:55:09', '093be8947883c30885ca614a80416d4e', '', '2009-01-02 09:44:49', 62, 0),
(466, 2, 44, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:49', 62, 0),
(467, 2, 44, 'content', 'attribs', 'show_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', '4b2dcc154c45eb945fc12110fc5757d9', '', '2009-01-02 09:44:49', 62, 0),
(468, 2, 1, 'content', 'title', 'Welcome to Joomla!', 'ebf8cea264f9b2e9fb2e48478d3f2f77', '', '2009-01-02 09:44:49', 62, 0),
(469, 2, 1, 'content', 'alias', 'welcome-to-joomla', 'e35d3428aedbf7dfd9d22463aa376ef5', '', '2009-01-02 09:44:49', 62, 0),
(470, 2, 1, 'content', 'introtext', 'Joomla! is a free open source framework and content publishing system designed for quickly creating highly interactive multi-language Web sites, online communities, media portals, blogs and eCommerce applications.
Joomla! provides an easy-to-use graphical user interface that simplifies the management and publishing of large volumes of content including HTML, documents, and rich media. Joomla! is used by organisations of all sizes for Public Websites, Intranets and Extranets and is supported by a community of thousands of users.
Joomla! has a rich heritage and has been crowned CMS king many times over. Now with more power under the hood, Joomla! is shifting gear and provides developer power while making the user experience all the more friendly. For those who always wanted increased extensibility, Joomla! 1.5 can make this happen.
', 'dc33f9862768cf3cd184b87b85741fad', '', '2009-01-02 09:44:49', 62, 0), (472, 2, 1, 'content', 'publish_up', '2006-01-02 16:00:00', '82aaeb5a99b7fb63b107071a19328154', '', '2009-01-02 09:44:49', 62, 0), (473, 2, 1, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:49', 62, 0), (474, 2, 1, 'content', 'attribs', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '097193d9531ef3dc84a690efb0a94cd6', '', '2009-01-02 09:44:49', 62, 0), (475, 2, 25, 'content', 'title', 'What are the requirements to run Joomla! 1.5?', '8ff7ca0f546371e4b7658d7cf60779b1', '', '2009-01-02 09:44:49', 62, 0), (476, 2, 25, 'content', 'alias', 'what-are-the-requirements-to-run-joomla-15', '707fbbc660e287083cbfe95ab30c58c7', '', '2009-01-02 09:44:49', 62, 0), (477, 2, 25, 'content', 'introtext', 'Joomla! runs on the php pre-processor. Php comes in many flavors, for a lot of operating systems. Beside php you will need a web server. Most of the times Apache is used, but also php can run on different web-servers like Microsoft IIS. Joomla! also depends on a database, for this currently you can only use MySQL.When you archive an article, the content is put into a state which removes it from your site as published content. The article is still available from within the administration interface and can be retrieved for archival purposes. Trashed articles are just one step from being deleted but are still available until you remove the items from the trash manager. You should use archive if you consider an article important, but not current. Trashed should be used when you want to delete the content entirely from your site and from future search results.
', '4238c5fd846f74e49e82a8f1dfb237aa', '', '2009-01-02 09:44:49', 62, 0), (490, 2, 40, 'content', 'publish_up', '2006-10-10 12:00:00', '4c310ad99bddeed1fdaed234c3544fe6', '', '2009-01-02 09:44:49', 62, 0), (491, 2, 40, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:49', 62, 0), (492, 2, 40, 'content', 'attribs', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '097193d9531ef3dc84a690efb0a94cd6', '', '2009-01-02 09:44:49', 62, 0), (493, 2, 14, 'content', 'title', 'What is the FTP layer for?', '8ee784665c1d1dac447446a669f1a790', '', '2009-01-02 09:44:49', 62, 0), (494, 2, 14, 'content', 'alias', 'what-is-the-ftp-layer-for', '2ea7a599dc6be3decd38213359bd7ec0', '', '2009-01-02 09:44:49', 62, 0), (495, 2, 14, 'content', 'introtext', 'This allows file operations (such installing extensions or updating the main configuration) without having to make all the folders and files writeable. This makes the site admin''s life a lot easier and increases security of the site
You can check the write status of relevent folders by going to ''''Help->System Info" and then in the sub-menu to "Directory Permissions". With FTP even if all directories are red, Joomla! will operate smoothly.
NOTE: the FTP layer is not required on a Windows host.
', 'f3bd64fc434a2eb91bd609b6e8d8807e', '', '2009-01-02 09:44:49', 62, 0), (496, 2, 14, 'content', 'publish_up', '2006-10-05 16:00:00', '045ed0d9ac437e04f39354fffa1622b3', '', '2009-01-02 09:44:49', 62, 0), (497, 2, 14, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:49', 62, 0), (498, 2, 14, 'content', 'attribs', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '097193d9531ef3dc84a690efb0a94cd6', '', '2009-01-02 09:44:49', 62, 0), (499, 2, 29, 'content', 'title', 'What is the purpose of the collation selection in the installation screen?', 'cc43b8951ed7e1b8109fa933e046e956', '', '2009-01-02 09:44:49', 62, 0), (500, 2, 29, 'content', 'alias', 'what-is-the-purpose-of-the-collation-selection-in-the-installation-screen', 'a7d75928f16e1673643680de444de2e8', '', '2009-01-02 09:44:49', 62, 0), (501, 2, 29, 'content', 'introtext', 'The collation option determines the way ordering in the database is done. In languages that use special characters, for instance the German umlaut, the database collation determines the sorting order. If you don''t know which collation you need, select the "utf8_general_ci" as most languages use this. The other collations listed are exceptions in regards to the general collation. If your language is not listed in the list of collations it most likely means that "utf8_general_ci is suitable.', '04f881b12437bea753f3f80ed3ea71d7', '', '2009-01-02 09:44:49', 62, 0), (502, 2, 29, 'content', 'publish_up', '2006-10-10 08:00:00', '2e7045692e33f043eea7ee4d616d891e', '', '2009-01-02 09:44:49', 62, 0), (503, 2, 29, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:49', 62, 0), (504, 2, 29, 'content', 'attribs', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '097193d9531ef3dc84a690efb0a94cd6', '', '2009-01-02 09:44:49', 62, 0), (505, 2, 33, 'content', 'title', 'What is uncategorised content?', 'e28663f9634b7f347a76957b5fff7c74', '', '2009-01-02 09:44:49', 62, 0), (506, 2, 33, 'content', 'alias', 'what-is-uncategorised-content', '1101d53f013773c80844d9b2727b7775', '', '2009-01-02 09:44:49', 62, 0), (507, 2, 33, 'content', 'introtext', 'Most articles will be assigned to a section and category. In many cases, you might not know where you want it to appear so put the article in the uncategorized section. The articles marked as uncategorized are handled as static content.', 'bbbd9b476e1db53d12ecdae142f87bc9', '', '2009-01-02 09:44:49', 62, 0), (508, 2, 33, 'content', 'publish_up', '2006-10-10 16:00:00', '68bedc32ee2c08a3b36e62888d49ba45', '', '2009-01-02 09:44:49', 62, 0), (509, 2, 33, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:49', 62, 0), (510, 2, 33, 'content', 'attribs', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '097193d9531ef3dc84a690efb0a94cd6', '', '2009-01-02 09:44:49', 62, 0), (511, 2, 30, 'content', 'title', 'What languages are supported by Joomla! 1.5?', '854173f148eae0afb224b3e3e332645d', '', '2009-01-02 09:44:49', 62, 0), (512, 2, 30, 'content', 'alias', 'what-languages-are-supported-by-joomla-15', '4da6ae0ba689d0551219859e75596fca', '', '2009-01-02 09:44:49', 62, 0), (513, 2, 30, 'content', 'introtext', 'Within the installer you will find a wide collection of languages. The installer currently supports the following languages: Arabic, Bulgarian, Bengali, Czech, Danish, German, Greek, English, Spanish, Finnish, French, Hebrew, Devanagari(India), Croatian(Croatia), Magyar (Hungary), Italian, Malay,As with previous releases, Joomla! provides a unified and easy-to-use framework for delivering content for websites of all kinds. To support the changing nature of the Internet and emerging web technologies, Joomla! required substantial restructuring of its core functionality and we also used this effort to simplify many challenges within the current user interface. Joomla! 1.5 has many new features.
', '8e32fe775696b20331efc63c6d97ec81', '', '2009-01-02 09:44:49', 62, 0), (520, 2, 22, 'content', 'fulltext', '
The goals for the Joomla! 1.5 release are to:
Substantially improve usability, manageability, and scalability far beyond the original Mambo foundations.
Expand accessibility to support internationalisation, double-byte characters and Right-to-Left support for Arabic and Hebrew languages.
Extend the integration of external applications through Web Services and remote authentication such as the Lightweight Directory Access Protocol (LDAP).
Enhance the content delivery, template and presentation capabilities to support accessibility standards and content delivery to any destination.
Achieve a more sustainable and flexible framework for component and extension developers.
Deliver backwards compatibility with previous releases of components, templates, modules and other extensions.
', '8d3f1d446fbc148b9be4c74eaef876e2', '', '2009-01-02 09:44:49', 62, 0), (521, 2, 22, 'content', 'publish_up', '2006-10-10 20:00:00', '9bc29b726d85276175db3a130e4d42da', '', '2009-01-02 09:44:49', 62, 0), (522, 2, 22, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:49', 62, 0), (523, 2, 22, 'content', 'attribs', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '097193d9531ef3dc84a690efb0a94cd6', '', '2009-01-02 09:44:49', 62, 0), (524, 2, 36, 'content', 'title', 'Where did the installer go?', 'e07dc776b6feaa91a86cf4f6354a6012', '', '2009-01-02 09:44:50', 62, 0), (525, 2, 36, 'content', 'alias', 'where-did-the-installer-go', '45e372a6fd65bbb06122330eb5196fe6', '', '2009-01-02 09:44:50', 62, 0), (526, 2, 36, 'content', 'introtext', 'The improved installer can be found under the extensions option. With versions prior to 1.5 you needed to select a specific extensions type when you wanted to install it, with Joomla! 1.5 you just select the extension you want to upload, and click on install. The installer will do all the hard work for you.', 'e1a6b85dd6e6c59034edeb619638b771', '', '2009-01-02 09:44:50', 62, 0), (527, 2, 36, 'content', 'publish_up', '2006-10-10 08:00:00', '2e7045692e33f043eea7ee4d616d891e', '', '2009-01-02 09:44:50', 62, 0), (528, 2, 36, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:50', 62, 0), (529, 2, 36, 'content', 'attribs', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '097193d9531ef3dc84a690efb0a94cd6', '', '2009-01-02 09:44:50', 62, 0), (530, 2, 37, 'content', 'title', 'Where did the Mambots go?', '950b30a4f2d7229a6c9fbf706d2ded2f', '', '2009-01-02 09:44:50', 62, 0), (531, 2, 37, 'content', 'alias', 'where-did-the-mambots-go', '5d5c06753d820a674969d9c64f59f518', '', '2009-01-02 09:44:50', 62, 0), (532, 2, 37, 'content', 'introtext', 'Mambots have been renamed as "Plugins" Mambots were introduced in Mambo and offered possibilities to add plugin logic to your site to mainly for the purpose of manipulating content. In Joomla!, Plugins will now have much broader capabilities than Mambots. Plugins are able to extend functionality at the framework layer as well.', '7436d04081532fbc9d87dfde846938c9', '', '2009-01-02 09:44:50', 62, 0), (533, 2, 37, 'content', 'publish_up', '2006-10-10 12:00:00', '4c310ad99bddeed1fdaed234c3544fe6', '', '2009-01-02 09:44:50', 62, 0), (534, 2, 37, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:50', 62, 0), (535, 2, 37, 'content', 'attribs', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '097193d9531ef3dc84a690efb0a94cd6', '', '2009-01-02 09:44:50', 62, 0), (536, 2, 32, 'content', 'title', 'Where is the static content?', '6ec40363e217e42a84d7a1b1724c1a1d', '', '2009-01-02 09:44:50', 62, 0), (537, 2, 32, 'content', 'alias', 'where-is-the-static-content', 'ad5702e002d5c690e123fc4532c9299e', '', '2009-01-02 09:44:50', 62, 0), (538, 2, 32, 'content', 'introtext', 'In Joomla! versions prior to 1.5 there was a distinctive difference on static and normal content. Both content types are still around, but are not handled as separate items. If you want to create static content, just select "uncategorized" as section and category and the content is handled as static content.', '0a3c41f508447140ea2bf0bc2c921ebd', '', '2009-01-02 09:44:50', 62, 0), (539, 2, 32, 'content', 'publish_up', '2006-10-10 08:00:00', '2e7045692e33f043eea7ee4d616d891e', '', '2009-01-02 09:44:50', 62, 0), (540, 2, 32, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:50', 62, 0), (541, 2, 32, 'content', 'attribs', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '097193d9531ef3dc84a690efb0a94cd6', '', '2009-01-02 09:44:50', 62, 0), (542, 2, 12, 'content', 'title', 'Why does Joomla! 1.5 use utf-8 encoding?', '0c135bda6fb7a1f2ed1c0c04f2a44083', '', '2009-01-02 09:44:50', 62, 0), (543, 2, 12, 'content', 'alias', 'why-does-joomla-15-use-utf-8-encoding', '5c409766c86d27eaed7e0fb3d5d8e308', '', '2009-01-02 09:44:50', 62, 0), (544, 2, 12, 'content', 'introtext', '
Well... how about never needing to mess with encoding settings again?
Ever needed to display several languages on one page or site and something always came up in Giberish?
With utf-8 (a variant of Unicode) glyphs (charcter forms) of all basically all languages can be displayed with one single encoding setting. For example if you might wish to say WELCOME in as many language possible you could do the following:
', '784e58dd61b93d84f5e22c136badeef4', '', '2009-01-02 09:44:50', 62, 0), (545, 2, 12, 'content', 'publish_up', '2006-10-03 12:00:00', 'cf7ed831630cf2790a6b09ce0c31f54a', '', '2009-01-02 09:44:50', 62, 0), (546, 2, 12, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:50', 62, 0), (547, 2, 12, 'content', 'attribs', 'pageclass_sfx=\nshow_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '097193d9531ef3dc84a690efb0a94cd6', '', '2009-01-02 09:44:50', 62, 0), (548, 2, 56, 'content', 'title', 'XHTML&CSS Validation', 'e48d41935ca58e5ddc0b2dcb1ed7a957', '', '2009-01-02 09:44:50', 62, 0), (549, 2, 56, 'content', 'alias', 'Features', '98f770b0af18ca763421bac22b4b6805', '', '2009-01-02 09:44:50', 62, 0), (550, 2, 56, 'content', 'introtext', '
\r\nThis template validates to XHTML and CSS web standards.\r\n
\r\n
\r\n \r\n
\r\n \r\n
We’ve integrated a visual clone of the popular Lightbox JS v2.0 called Slimbox. Slimbox is smaller, more efficient, more convenient and 100% compatible with the original Lightbox v2.\r\n\r\n<img class="lightbox" title="my caption" src="image.jpg" width="240" height="180" />\r\n\r\nOptional: Use the title attribute if you want to show a caption.
\r\n<a href="image.jpg" rel="lightbox" title="my caption">image #1</a>\r\n\r\nOptional: Use the title attribute if you want to show a caption.
\r\n<a href="image-1.jpg" rel="lightbox[a]">image #1</a>\r\nTry out this feature by clicking on the following links: image #1 and showcase with two images\r\n', 'd392aa9ca6c9974325fbdbcefc055579', '', '2009-01-02 09:44:50', 62, 0), (569, 2, 52, 'content', 'publish_up', '2007-06-04 15:03:32', '77017dfe0678792207c33d7a942811dd', '', '2009-01-02 09:44:50', 62, 0), (570, 2, 52, 'content', 'publish_down', '0000-00-00 00:00:00', '8e30a659c31b53017073692309ab0da1', '', '2009-01-02 09:44:50', 62, 0), (571, 2, 52, 'content', 'attribs', 'show_title=1\nlink_titles=\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=', '9f65e3a10ed88897516309a600df3d82', '', '2009-01-02 09:44:50', 62, 0), (572, 2, 62, 'content', 'title', 'YOOlogin', '537d2028ce23ae9723457e6a9ee07061', '', '2009-01-02 09:44:50', 62, 0), (573, 2, 62, 'content', 'alias', 'Features', '98f770b0af18ca763421bac22b4b6805', '', '2009-01-02 09:44:50', 62, 0), (574, 2, 62, 'content', 'introtext', 'With the YOOlogin module you get a enhanced version of the default Joomla! login module. We took the liberty to get rid of the tables used in the Joomla! login module to provide you a clean design. The YOOlogin module now fits well in our professional template layouts.\r\n
\r\n<a href="image-2.jpg" rel="lightbox[a]">image #2</a>\r\n
\r\nAll menus shown on this page are implemented using the YOOmenu system. YOOmenu is a flexible all-in-one menu system right out of the box. It makes it possible to bring you the freshest Javascript menus and a lot of cool features. It just takes your experience to a whole new level. \r\n\r\n/* item color variation */\r\n"item1" => "red", /* red | blue | green | yellow */\r\n"item2" => "blue", /* red | blue | green | yellow */\r\n"item3" => "green", /* red | blue | green | yellow */\r\n"item4" => "yellow", /* red | blue | green | yellow */\r\n...\r\n\r\n
<body class="blue">...</body>\r\n\r\n


\r\n<img class="reflect" title="my caption" src="image.jpg" width="240" height="180" />\r\n\r\n
\r\n
\r\n
\r\n
\r\n \r\n
\r\n \r\n \r\n<div class="spotlight" style="background: url(../images/logo.png);" width="240" height="180"></div>\r\n
\r\n<span class="spotlight" style="background: url(../images/logo.png); display: block;" width="240" height="180"></span>\r\n\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\nThe Top Panel is a hidden module area at the top of the template. By clicking the "Top Panel" button it slides down. To hide the Top Panel click the "Close" button at the upper right or hit the "Top Panel" button once again.\r\n\r\n/*** template parameters ***/\r\n$template_parameters = array(\r\n "toppanel" => true /* true | false */\r\n);\r\n\r\n\r\n