User talk

N6REJ

From Joomla! Documentation

Revision as of 11:03, 25 June 2010 by N6REJ (talk | contribs) (New page: while working with 1.6 I discovered a need to revert MySQL to its previous state because I use the J16 SVN trunk for my local deveolopement as well as JBS work. I created the following SQ...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

while working with 1.6 I discovered a need to revert MySQL to its previous state because I use the J16 SVN trunk for my local deveolopement as well as JBS work. I created the following SQL script that will do just that, it will remove all 'default' J1.6 databases and replace them with your bak_ ones. USE AT YOUR OWN RISK.

<source lang="sql"> -- phpMyAdmin SQL Dump -- version 3.2.0.1 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Jun 25, 2010 at 03:41 PM -- Server version: 5.1.36 -- PHP Version: 5.3.0

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";

-- -- Database: `j16` --

DROP TABLE IF EXISTS `jos_weblinks`; DROP TABLE IF EXISTS `jos_viewlevels`; DROP TABLE IF EXISTS `jos_user_usergroup_map`; DROP TABLE IF EXISTS `jos_user_profiles`; DROP TABLE IF EXISTS `jos_users`; DROP TABLE IF EXISTS `jos_usergroups`; DROP TABLE IF EXISTS `jos_update_sites_extensions`; DROP TABLE IF EXISTS `jos_update_sites`; DROP TABLE IF EXISTS `jos_update_categories`; DROP TABLE IF EXISTS `jos_updates`; DROP TABLE IF EXISTS `jos_template_styles`; DROP TABLE IF EXISTS `jos_session`; DROP TABLE IF EXISTS `jos_schemas`; DROP TABLE IF EXISTS `jos_redirect_links`; DROP TABLE IF EXISTS `jos_newsfeeds`; DROP TABLE IF EXISTS `jos_modules_menu`; DROP TABLE IF EXISTS `jos_modules`; DROP TABLE IF EXISTS `jos_messages_cfg`; DROP TABLE IF EXISTS `jos_messages`; DROP TABLE IF EXISTS `jos_menu_types`; DROP TABLE IF EXISTS `jos_menu`; DROP TABLE IF EXISTS `jos_languages`; DROP TABLE IF EXISTS `jos_extensions`; DROP TABLE IF EXISTS `jos_core_log_searches`; DROP TABLE IF EXISTS `jos_content_rating`; DROP TABLE IF EXISTS `jos_content_frontpage`; DROP TABLE IF EXISTS `jos_content`; DROP TABLE IF EXISTS `jos_contact_details`; DROP TABLE IF EXISTS `jos_categories`; DROP TABLE IF EXISTS `jos_assets`; DROP TABLE IF EXISTS `jos_banners`; DROP TABLE IF EXISTS `jos_banner_clients`; DROP TABLE IF EXISTS `jos_banner_tracks`;


CREATE TABLE IF NOT EXISTS `jos_assets` (

 `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
 `parent_id` int(11) NOT NULL DEFAULT '0' COMMENT 'Nested set parent.',
 `lft` int(11) NOT NULL DEFAULT '0' COMMENT 'Nested set lft.',
 `rgt` int(11) NOT NULL DEFAULT '0' COMMENT 'Nested set rgt.',
 `level` int(10) unsigned NOT NULL COMMENT 'The cached level in the nested tree.',
 `name` varchar(50) NOT NULL COMMENT 'The unique name for the asset.\n',
 `title` varchar(100) NOT NULL COMMENT 'The descriptive title for the asset.',
 `rules` varchar(5120) NOT NULL COMMENT 'JSON encoded access control.',
 PRIMARY KEY (`id`),
 UNIQUE KEY `idx_asset_name` (`name`),
 KEY `idx_lft_rgt` (`lft`,`rgt`),
 KEY `idx_parent_id` (`parent_id`)

) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=172 ;

-- -- Dumping data for table `jos_assets` --

INSERT INTO `jos_assets` (`id`, `parent_id`, `lft`, `rgt`, `level`, `name`, `title`, `rules`) VALUES (1, 0, 0, 319, 0, 'root.1', 'Root Asset', '{"core.login.site":{"6":1,"2":1},"core.login.admin":{"6":1},"core.admin":{"8":1},"core.manage":{"7":1,"10":1},"core.create":{"6":1},"core.delete":{"6":1},"core.edit":{"6":1},"core.edit.state":{"6":1}}'), (2, 1, 1, 2, 1, 'com_admin', 'com_admin', '{}'), (3, 1, 3, 8, 1, 'com_banners', 'com_banners', '{"core.admin":{"7":1},"core.manage":{"6":1},"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (4, 1, 11, 12, 1, 'com_cache', 'com_cache', '{"core.admin":{"7":1},"core.manage":{"7":1}}'), (5, 1, 13, 14, 1, 'com_checkin', 'com_checkin', '{"core.admin":{"7":1},"core.manage":{"7":1}}'), (6, 1, 15, 16, 1, 'com_config', 'com_config', '{}'), (7, 1, 17, 22, 1, 'com_contact', 'com_contact', '{"core.admin":{"7":1},"core.manage":{"6":1},"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (8, 1, 23, 60, 1, 'com_content', 'com_content', '{"core.admin":{"7":1},"core.manage":{"6":1},"core.create":{"3":1,"5":1},"core.delete":[],"core.edit":{"4":1},"core.edit.state":{"5":1}}'), (9, 1, 61, 62, 1, 'com_cpanel', 'com_cpanel', '{}'), (10, 1, 63, 64, 1, 'com_installer', 'com_installer', '{"core.admin":{"7":1},"core.manage":{"7":1},"core.create":[],"core.delete":[],"core.edit.state":[]}'), (11, 1, 65, 66, 1, 'com_languages', 'com_languages', '{"core.admin":{"7":1},"core.manage":[],"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (12, 1, 67, 68, 1, 'com_login', 'com_login', '{}'), (13, 1, 69, 70, 1, 'com_mailto', 'com_mailto', '{}'), (14, 1, 71, 72, 1, 'com_massmail', 'com_massmail', '{}'), (15, 1, 73, 74, 1, 'com_media', 'com_media', '{"core.admin":{"7":1},"core.manage":{"6":1},"core.create":{"3":1,"4":1,"5":1},"core.delete":{"5":1},"core.edit":[],"core.edit.state":[]}'), (16, 1, 75, 76, 1, 'com_menus', 'com_menus', '{"core.admin":{"7":1},"core.manage":[],"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (17, 1, 77, 78, 1, 'com_messages', 'com_messages', '{}'), (18, 1, 79, 80, 1, 'com_modules', 'com_modules', '{"core.admin":{"7":1},"core.manage":[],"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (19, 1, 81, 84, 1, 'com_newsfeeds', 'com_newsfeeds', '{"core.admin":{"7":1},"core.manage":{"6":1},"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (20, 1, 85, 86, 1, 'com_plugins', 'com_plugins', '{"core.admin":{"7":1},"core.manage":[],"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (21, 1, 87, 88, 1, 'com_redirect', 'com_redirect', '{"core.admin":{"7":1},"core.manage":[]}'), (22, 1, 89, 90, 1, 'com_search', 'com_search', '{"core.admin":{"7":1},"core.manage":{"6":1}}'), (23, 1, 91, 92, 1, 'com_templates', 'com_templates', '{"core.admin":{"7":1},"core.manage":[],"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (24, 1, 93, 94, 1, 'com_users', 'com_users', '{"core.admin":{"7":1},"core.manage":[],"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (25, 1, 95, 104, 1, 'com_weblinks', 'com_weblinks', '{"core.admin":{"7":1},"core.manage":{"6":1},"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (26, 1, 105, 106, 1, 'com_wrapper', 'com_wrapper', '{}'), (27, 8, 24, 25, 2, 'com_content.article.1', 'Joomla!', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (28, 1, 115, 116, 1, 'com_content.category.11', 'News', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (29, 60, 42, 55, 4, 'com_content.category.12', 'Countries', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (30, 29, 43, 54, 5, 'com_content.category.23', 'Australia', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (31, 30, 44, 47, 6, 'com_content.category.24', 'Queensland', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (32, 30, 48, 51, 6, 'com_content.category.25', 'Tasmania', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (33, 31, 45, 46, 7, 'com_content.article.2', 'Great Barrier Reef', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (34, 32, 49, 50, 7, 'com_content.article.3', 'Cradle Mountain-Lake St Clair National Park', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (35, 25, 96, 103, 2, 'com_weblinks.category.20', 'Sample Data Weblinks', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (36, 35, 97, 100, 3, 'com_weblinks.category.21', 'Joomla! Specific Links', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (37, 36, 98, 99, 4, 'com_weblinks.category.22', 'Other Resources', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (39, 7, 18, 19, 2, 'com_contact.category.26', 'Contacts', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (40, 3, 4, 5, 2, 'com_banners.category.27', 'Banners', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (41, 19, 82, 83, 2, 'com_newsfeeds.category.28', 'News Feeds', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (42, 60, 36, 41, 4, 'com_content.category.38', 'Photo Gallery', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (43, 1, 107, 108, 1, 'com_content.article.56', 'Koala', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (44, 1, 109, 110, 1, 'com_content.article.57', 'Wobbegone', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (45, 1, 111, 112, 1, 'com_content.article.58', 'Phyllopteryx', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (46, 1, 113, 114, 1, 'com_content.article.59', 'Spotted Quoll', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (47, 1, 9, 10, 1, 'com_content.article.60', 'Pinnacles', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (48, 1, 305, 306, 1, 'com_content.article.61', 'Ormiston Pound', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (49, 1, 235, 236, 1, 'com_content.article.62', 'Blue Mountain Rain Forest', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (50, 1, 237, 238, 1, 'com_content.article.63', 'Cradle Mountain', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (51, 30, 52, 53, 6, 'com_content.article.9', 'Australian Parks', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (52, 54, 31, 32, 5, 'com_content.article.64', 'First Blog Entry', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (53, 54, 33, 34, 5, 'com_content.article.65', 'Second Blog Post', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (54, 60, 30, 35, 4, 'com_content.category.35', 'Park Blog', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (55, 7, 20, 21, 2, 'com_contact.category.45', 'Parks Site', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (56, 1, 239, 240, 1, 'com_contact.category.47', 'Staff', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (57, 1, 241, 242, 1, 'com_contact.category.48', 'Suppliers', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (58, 1, 243, 292, 1, 'com_contact.category.49', 'Fruit', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (59, 1, 307, 308, 1, 'com_content.article.7', 'Sample Sites', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (60, 156, 29, 56, 3, 'com_content.category.50', 'Park Site', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (61, 1, 117, 218, 1, 'com_content.category.32', 'Extensions', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (62, 152, 137, 138, 3, 'com_content.article.66', 'Articles Modules', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (63, 152, 139, 140, 3, 'com_content.article.67', 'User Modules', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (64, 152, 141, 142, 3, 'com_content.article.68', 'Display Modules', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (65, 152, 143, 144, 3, 'com_content.article.69', 'Utility Modules', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (66, 152, 145, 146, 3, 'com_content.article.70', 'Menus', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (67, 152, 155, 156, 3, 'com_content.article.71', 'Custom HTML', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (68, 152, 181, 182, 3, 'com_content.article.72', 'Weblinks Module', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (69, 152, 153, 154, 3, 'com_content.article.73', 'Breadcrumbs', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (70, 152, 177, 178, 3, 'com_content.article.37', 'Statistics', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (71, 152, 179, 180, 3, 'com_content.article.38', 'Syndicate', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (72, 156, 57, 58, 3, 'com_content.article.26', 'Site Map', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (73, 152, 147, 148, 3, 'com_content.article.27', 'Archive Module', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (74, 152, 187, 188, 3, 'com_content.article.41', 'Banner', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (75, 152, 157, 158, 3, 'com_content.article.33', 'Feed Display', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (76, 152, 135, 136, 3, 'com_content.article.43', 'Footer', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (77, 152, 159, 160, 3, 'com_content.article.28', 'Latest Articles Module', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (78, 152, 163, 164, 3, 'com_content.article.42', 'Login', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (79, 152, 165, 166, 3, 'com_content.article.40', 'Menu', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (81, 152, 167, 168, 3, 'com_content.article.30', 'Most Read Content', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (82, 152, 169, 170, 3, 'com_content.article.32', 'Newest Users', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (83, 152, 161, 162, 3, 'com_content.article.34', 'News Flash', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (84, 152, 171, 172, 3, 'com_content.article.35', 'Random Image', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (85, 152, 173, 174, 3, 'com_content.article.55', 'Related Items', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (86, 152, 175, 176, 3, 'com_content.article.36', 'Search', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (87, 58, 244, 245, 2, 'com_contact.category.51', 'A', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (88, 58, 246, 247, 2, 'com_contact.category.52', 'B', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (89, 58, 248, 249, 2, 'com_contact.category.53', 'C', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (90, 58, 250, 251, 2, 'com_contact.category.54', 'D', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (91, 58, 252, 253, 2, 'com_contact.category.55', 'E', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (92, 58, 254, 255, 2, 'com_contact.category.56', 'F', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (93, 58, 256, 257, 2, 'com_contact.category.57', 'G', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (94, 58, 258, 259, 2, 'com_contact.category.58', 'H', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (95, 58, 260, 261, 2, 'com_contact.category.59', 'J', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (96, 58, 262, 263, 2, 'com_contact.category.60', 'K', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (97, 58, 264, 265, 2, 'com_contact.category.61', 'L', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (98, 58, 266, 267, 2, 'com_contact.category.62', 'M', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (99, 58, 268, 269, 2, 'com_contact.category.63', 'O', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (100, 58, 270, 271, 2, 'com_contact.category.64', 'P', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (101, 58, 272, 273, 2, 'com_contact.category.65', 'Q', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (102, 58, 274, 275, 2, 'com_contact.category.66', 'R', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (103, 58, 276, 277, 2, 'com_contact.category.67', 'S', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (104, 58, 278, 279, 2, 'com_contact.category.68', 'T', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (105, 58, 280, 281, 2, 'com_contact.category.69', 'U', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (106, 58, 282, 283, 2, 'com_contact.category.70', 'V', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (107, 58, 284, 285, 2, 'com_contact.category.71', 'W', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (108, 58, 286, 287, 2, 'com_contact.category.72', 'X', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (109, 58, 288, 289, 2, 'com_contact.category.73', 'Y', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (110, 58, 290, 291, 2, 'com_contact.category.74', 'Z', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (111, 1, 219, 230, 1, 'com_content.category.75', 'Fruit Shop Site', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (112, 111, 220, 221, 2, 'com_content.article.79', 'Fruit Shop', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (113, 111, 222, 227, 2, 'com_content.category.76', 'Growers', '{"core.create":[],"core.delete":[],"core.edit":{"10":1},"core.edit.state":[]}'), (114, 1, 231, 232, 1, 'com_content.article.6', 'Professionals', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (115, 113, 223, 224, 3, 'com_content.article.80', 'Happy Orange Orchard', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (116, 113, 225, 226, 3, 'com_content.article.81', 'Wonderful Watermelon', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (117, 111, 228, 229, 2, 'com_content.article.82', 'Directions', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (147, 61, 120, 131, 2, 'com_content.category.41', 'Templates', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (119, 147, 123, 124, 3, 'com_content.article.76', 'Atomic', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (120, 153, 197, 198, 3, 'com_content.article.48', 'Authentication', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (168, 147, 129, 130, 3, 'com_content.article.89', 'Beez5', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (122, 154, 211, 212, 3, 'com_content.article.13', 'Contact', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (123, 1, 297, 298, 1, 'com_content.article.10', 'Content', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (124, 153, 199, 200, 3, 'com_content.article.49', 'Content', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (125, 153, 201, 202, 3, 'com_content.article.50', 'Editors', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (126, 153, 203, 204, 3, 'com_content.article.51', 'Editors-xtd', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (127, 1, 299, 300, 1, 'com_content.article.4', 'Joomla! Beginners', '{"core.delete":[],"core.edit":{"3":0},"core.edit.state":[]}'), (128, 1, 301, 302, 1, 'com_content.article.5', 'Upgraders', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (129, 1, 303, 304, 1, 'com_content.article.22', 'The Joomla! Community', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (130, 1, 309, 310, 1, 'com_content.article.11', 'Weblinks', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (131, 1, 311, 312, 1, 'com_content.article.12', 'News Feeds', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (132, 154, 215, 216, 3, 'com_content.article.14', 'Users', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (148, 147, 121, 122, 3, 'com_content.article.74', 'Beez 2', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (136, 153, 193, 194, 3, 'com_content.article.52', 'Search', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (137, 1, 313, 314, 1, 'com_content.article.23', 'The Joomla! Project', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (138, 147, 127, 128, 3, 'com_content.article.25', 'Typography', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (139, 153, 195, 196, 3, 'com_content.article.47', 'System', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (154, 61, 208, 217, 2, 'com_content.category.39', 'Components', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (141, 61, 118, 119, 2, 'com_content.article.17', 'Languages', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (142, 154, 213, 214, 3, 'com_content.article.20', 'Search', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (143, 1, 315, 316, 1, 'com_content.article.24', 'Using Joomla!', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (144, 153, 191, 192, 3, 'com_content.article.53', 'User', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (145, 1, 317, 318, 1, 'com_content.article.54', 'Whats New in 1.5?', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (146, 154, 209, 210, 3, 'com_content.article.83', 'Administrator Components', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (149, 147, 125, 126, 3, 'com_content.article.78', 'Milky Way', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (166, 152, 183, 184, 3, 'com_content.article.31', 'Whos Online', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (151, 61, 132, 133, 2, 'com_content.category.42', 'Languages', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (152, 61, 134, 189, 2, 'com_content.category.40', 'Modules', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (153, 61, 190, 207, 2, 'com_content.category.43', 'Plugins', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (155, 8, 26, 27, 2, 'com_content.category.77', 'ccc', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (156, 8, 28, 59, 2, 'com_content.category.29', 'Sample Data-Content', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (157, 1, 293, 294, 1, 'com_content.article.84', 'Getting help', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (158, 1, 295, 296, 1, 'com_content.article.85', 'Getting Started', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (159, 152, 151, 152, 3, 'com_content.article.86', 'Article Categories', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (160, 42, 37, 38, 5, 'com_content.category.36', 'Scenery', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (161, 42, 39, 40, 5, 'com_content.category.37', 'Animals', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (162, 152, 149, 150, 3, 'com_content.article.87', 'Language Switcher', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (164, 1, 233, 234, 1, 'com_content.article.88', 'Parameters', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (167, 152, 185, 186, 3, 'com_content.article.39', 'Wrapper', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (169, 153, 205, 206, 3, 'com_content.article.90', 'User', '{"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (170, 35, 101, 102, 3, 'com_weblinks.category.44', 'Parks Links', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}'), (171, 3, 6, 7, 2, 'com_banners.category.30', 'Sample Data-Banners', '{"core.create":[],"core.delete":[],"core.edit":[],"core.edit.state":[]}');

-- --------------------------------------------------------

-- -- Table structure for table `jos_banners` --


CREATE TABLE IF NOT EXISTS `jos_banners` (

 `id` int(11) NOT NULL AUTO_INCREMENT,
 `cid` int(11) NOT NULL DEFAULT '0',
 `type` int(11) NOT NULL DEFAULT '0',
 `name` varchar(255) NOT NULL DEFAULT ,
 `alias` varchar(255) NOT NULL DEFAULT ,
 `imptotal` int(11) NOT NULL DEFAULT '0',
 `impmade` int(11) NOT NULL DEFAULT '0',
 `clicks` int(11) NOT NULL DEFAULT '0',
 `clickurl` varchar(200) NOT NULL DEFAULT ,
 `state` tinyint(3) NOT NULL DEFAULT '0',
 `catid` int(10) unsigned NOT NULL DEFAULT '0',
 `description` text NOT NULL,
 `custombannercode` varchar(2048) NOT NULL,
 `sticky` tinyint(1) unsigned NOT NULL DEFAULT '0',
 `ordering` int(11) NOT NULL DEFAULT '0',
 `metakey` text NOT NULL,
 `params` text NOT NULL,
 `own_prefix` tinyint(1) NOT NULL DEFAULT '0',
 `metakey_prefix` varchar(255) NOT NULL DEFAULT ,
 `purchase_type` tinyint(4) NOT NULL DEFAULT '-1',
 `track_clicks` tinyint(4) NOT NULL DEFAULT '-1',
 `track_impressions` tinyint(4) NOT NULL DEFAULT '-1',
 `checked_out` int(10) 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',
 `reset` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
 `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
 `language` char(7) NOT NULL DEFAULT ,
 PRIMARY KEY (`id`),
 KEY `idx_state` (`state`),
 KEY `idx_own_prefix` (`own_prefix`),
 KEY `idx_metakey_prefix` (`metakey_prefix`),
 KEY `idx_banner_catid` (`catid`),
 KEY `idx_language` (`language`)

) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;

-- -- Dumping data for table `jos_banners` --

INSERT INTO `jos_banners` (`id`, `cid`, `type`, `name`, `alias`, `imptotal`, `impmade`, `clicks`, `clickurl`, `state`, `catid`, `description`, `custombannercode`, `sticky`, `ordering`, `metakey`, `params`, `own_prefix`, `metakey_prefix`, `purchase_type`, `track_clicks`, `track_impressions`, `checked_out`, `checked_out_time`, `publish_up`, `publish_down`, `reset`, `created`, `language`) VALUES (1, 1, 0, 'OSM 1', 'osm-1', 0, 43, 0, 'http://www.opensourcematters.org', 0, 27, , , 0, 1, , '{"alt":"Open Source Matters","imageurl":"images/banners/osmbanner1.png"}', 0, , -1, -1, -1, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '2009-10-10 13:52:59', 'en-GB'), (2, 1, 0, 'Shop 1', 'shop-1', 0, 15, 0, , 1, 30, , , 0, 1, , '{"imageurl":"images/banners/shop-ad-books.jpg"}', 0, , -1, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '2010-01-12 00:25:24', 'en-GB'), (3, 1, 0, 'Shop 2', 'shop-2', 0, 0, 0, , 0, 30, , , 0, 2, , '{"alt":"Joomla! Books","imageurl":"images/banners/shop-ad.jpg"}', 0, , -1, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '2010-01-12 00:35:30', 'en-GB'), (4, 1, 0, 'Shop 2', 'shop-2', 0, 5, 1, 'http://shop.joomla.org', 1, 30, , , 0, 3, , '{}', 0, , -1, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '2010-01-12 00:55:54', 'en-GB');

-- --------------------------------------------------------

-- -- Table structure for table `jos_banner_clients` --


CREATE TABLE IF NOT EXISTS `jos_banner_clients` (

 `id` int(11) NOT NULL AUTO_INCREMENT,
 `name` varchar(255) NOT NULL DEFAULT ,
 `contact` varchar(255) NOT NULL DEFAULT ,
 `email` varchar(255) NOT NULL DEFAULT ,
 `extrainfo` text NOT NULL,
 `state` tinyint(3) NOT NULL DEFAULT '0',
 `checked_out` int(10) unsigned NOT NULL DEFAULT '0',
 `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
 `metakey` text NOT NULL,
 `own_prefix` tinyint(4) NOT NULL DEFAULT '0',
 `metakey_prefix` varchar(255) NOT NULL DEFAULT ,
 `purchase_type` tinyint(4) NOT NULL DEFAULT '-1',
 `track_clicks` tinyint(4) NOT NULL DEFAULT '-1',
 `track_impressions` tinyint(4) NOT NULL DEFAULT '-1',
 PRIMARY KEY (`id`),
 KEY `idx_own_prefix` (`own_prefix`),
 KEY `idx_metakey_prefix` (`metakey_prefix`)

) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;

-- -- Dumping data for table `jos_banner_clients` --

INSERT INTO `jos_banner_clients` (`id`, `name`, `contact`, `email`, `extrainfo`, `state`, `checked_out`, `checked_out_time`, `metakey`, `own_prefix`, `metakey_prefix`, `purchase_type`, `track_clicks`, `track_impressions`) VALUES (1, 'Joomla!', 'Administrator', 'email@email.com', , 1, 0, '0000-00-00 00:00:00', , 0, , -1, -1, -1);

-- --------------------------------------------------------

-- -- Table structure for table `jos_banner_tracks` --


CREATE TABLE IF NOT EXISTS `jos_banner_tracks` (

 `track_date` date NOT NULL,
 `track_type` int(10) unsigned NOT NULL,
 `banner_id` int(10) unsigned NOT NULL,
 `count` int(10) unsigned NOT NULL DEFAULT '0',
 PRIMARY KEY (`track_date`,`track_type`,`banner_id`),
 KEY `idx_track_date` (`track_date`),
 KEY `idx_track_type` (`track_type`),
 KEY `idx_banner_id` (`banner_id`)

) ENGINE=MyISAM DEFAULT CHARSET=utf8;

-- -- Dumping data for table `jos_banner_tracks` --


-- --------------------------------------------------------

-- -- Table structure for table `jos_categories` --


CREATE TABLE IF NOT EXISTS `jos_categories` (

 `id` int(11) NOT NULL AUTO_INCREMENT,
 `asset_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'FK to the #__assets table.',
 `parent_id` int(10) unsigned NOT NULL DEFAULT '0',
 `lft` int(11) NOT NULL DEFAULT '0',
 `rgt` int(11) NOT NULL DEFAULT '0',
 `level` int(10) unsigned NOT NULL DEFAULT '0',
 `path` varchar(255) NOT NULL DEFAULT ,
 `extension` varchar(50) NOT NULL DEFAULT ,
 `title` varchar(255) NOT NULL,
 `alias` varchar(255) NOT NULL DEFAULT ,
 `note` varchar(255) NOT NULL DEFAULT ,
 `description` varchar(5120) NOT NULL DEFAULT ,
 `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',
 `access` tinyint(3) unsigned NOT NULL DEFAULT '0',
 `params` varchar(2048) NOT NULL DEFAULT ,
 `metadesc` varchar(1024) NOT NULL COMMENT 'The meta description for the page.',
 `metakey` varchar(1024) NOT NULL COMMENT 'The meta keywords for the page.',
 `metadata` varchar(2048) NOT NULL COMMENT 'JSON encoded metadata properties.',
 `created_user_id` int(10) unsigned NOT NULL DEFAULT '0',
 `created_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
 `modified_user_id` int(10) unsigned NOT NULL DEFAULT '0',
 `modified_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
 `hits` int(10) unsigned NOT NULL DEFAULT '0',
 `language` char(7) NOT NULL,
 PRIMARY KEY (`id`),
 KEY `cat_idx` (`extension`,`published`,`access`),
 KEY `idx_access` (`access`),
 KEY `idx_checkout` (`checked_out`),
 KEY `idx_path` (`path`),
 KEY `idx_left_right` (`lft`,`rgt`),
 KEY `idx_alias` (`alias`),
 KEY `idx_language` (`language`)

) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=77 ;

-- -- Dumping data for table `jos_categories` --

INSERT INTO `jos_categories` (`id`, `asset_id`, `parent_id`, `lft`, `rgt`, `level`, `path`, `extension`, `title`, `alias`, `note`, `description`, `published`, `checked_out`, `checked_out_time`, `access`, `params`, `metadesc`, `metakey`, `metadata`, `created_user_id`, `created_time`, `modified_user_id`, `modified_time`, `hits`, `language`) VALUES (1, 0, 0, 0, 119, 0, , 'system', 'ROOT', 'root', , , 1, 0, '0000-00-00 00:00:00', 1, '{}', , , , 0, '2009-10-18 16:07:09', 0, '0000-00-00 00:00:00', 0, '*'), (11, 28, 29, 28, 29, 2, 'sample-data-content/news', 'com_content', 'News', 'news', , 'The top articles category.', 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":"-1"}', , , '{"page_title":"","author":"","robots":""}', 0, '0000-00-00 00:00:00', 0, '0000-00-00 00:00:00', 0, 'en-GB'),

(12, 29, 50, 39, 46, 3, 'sample-data-content/park-site/countries', 'com_content', 'Countries', 'countries', , '

The latest news from the Joomla! Team

', 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":"-1"}', , , '{"page_title":"","author":"","robots":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, 'en-GB'), (20, 35, 1, 1, 8, 1, 'sample-data-weblinks', 'com_weblinks', 'Sample Data Weblinks', 'sample-data-weblinks', , '

The sample weblinks category.

', 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":""}', 0, '2010-03-26 10:22:23', 42, '2010-06-12 12:29:14', 0, 'en-GB'), (21, 36, 20, 2, 5, 2, 'sample-data-weblinks/joomla-specific-links', 'com_weblinks', 'Joomla! Specific Links', 'joomla-specific-links', , '

A selection of links that are all related to the Joomla! Project.

', 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":""}', 0, '2010-03-26 10:22:23', 42, '2010-06-12 12:29:18', 0, 'en-GB'),

(22, 37, 21, 3, 4, 3, 'sample-data-weblinks/joomla-specific-links/other-resources', 'com_weblinks', 'Other Resources', 'other-resources', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":""}', 0, '2010-01-24 11:23:53', 42, '2010-06-12 12:29:22', 0, 'en-GB'), (23, 30, 12, 40, 45, 4, 'sample-data-content/park-site/countries/australia', 'com_content', 'Australia', 'australia', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":""}', 0, '2010-05-12 21:23:12', 0, '0000-00-00 00:00:00', 0, 'en-GB'), (24, 31, 23, 41, 42, 5, 'sample-data-content/park-site/countries/australia/queensland', 'com_content', 'Queensland', 'queensland', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":""}', 0, '2010-05-12 21:25:06', 0, '0000-00-00 00:00:00', 0, 'en-GB'), (25, 32, 23, 43, 44, 5, 'sample-data-content/park-site/countries/australia/tasmania', 'com_content', 'Tasmania', 'tasmania', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":""}', 0, '2010-05-12 21:25:31', 0, '0000-00-00 00:00:00', 0, 'en-GB'), (26, 38, 1, 53, 112, 1, 'contacts', 'com_contact', 'Contacts', 'contacts', , , 1, 0, '0000-00-00 00:00:00', 1, , , , , 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*'), (27, 40, 1, 113, 114, 1, 'banners', 'com_banners', 'Banners', 'banners', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":"","foobar":""}', , , '{"page_title":"","author":"","robots":""}', 0, '2010-05-12 21:19:28', 42, '2010-06-12 12:28:36', 0, '*'), (28, 41, 1, 115, 116, 1, 'news-feeds', 'com_newsfeeds', 'News Feeds', 'news-feeds', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":""}', 0, '2010-05-12 21:19:28', 42, '2010-06-12 12:29:02', 0, '*'),

(29, 156, 1, 9, 52, 1, 'sample-data-content', 'com_content', 'Sample Data-Content', 'sample-data-content', , '

This sample data illustrates various features of Joomla! 1.6.

', 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":"images\\/chrysanthemum.jpg"}', , , '{"page_title":"","author":"","robots":""}', 0, '2010-05-19 05:31:28', 0, '0000-00-00 00:00:00', 0, '*'),

(30, 171, 1, 117, 118, 1, 'sample-data-banners', 'com_banners', 'Sample Data-Banners', 'sample-data-banners', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":"","foobar":""}', , , '{"page_title":"","author":"","robots":""}', 0, '2010-05-12 21:19:28', 42, '2010-06-12 12:28:40', 0, '*'), (31, 0, 29, 10, 27, 2, 'sample-data-content/joomla', 'com_content', 'Joomla!', 'joomla', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":""}', 0, '2010-01-24 11:23:53', 0, '0000-00-00 00:00:00', 0, '*'),

(32, 61, 31, 11, 22, 3, 'sample-data-content/joomla/extensions', 'com_content', 'Extensions', 'extensions', , '

The Joomla! content management system lets you create webpages of various types using extensions. There are 5 basic types of extensions: components, modules, templates, languages, and plugins. Your website includes the extensions you need to create a basic website in English, but thousands of additional extensions of all types are available. The <a href="http://extensions.joomla.org">Joomla! Extensions Directory</a> is the largest directory of Joomla! extensions.

', 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":""}', 0, '2010-05-15 18:53:36', 42, '2010-06-07 16:18:18', 0, '*'),

(33, 0, 31, 23, 24, 3, 'sample-data-content/joomla/the-joomla-project', 'com_content', 'The Joomla! Project', 'the-joomla-project', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":""}', 0, '2010-01-24 11:23:53', 0, '0000-00-00 00:00:00', 0, '*'), (34, 0, 31, 25, 26, 3, 'sample-data-content/joomla/the-joomla-community', 'com_content', 'The Joomla! Community', 'the-joomla-community', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":""}', 0, '2010-01-24 11:23:53', 0, '0000-00-00 00:00:00', 0, '*'),

(35, 54, 50, 31, 32, 3, 'sample-data-content/park-site/park-blog', 'com_content', 'Park Blog', 'park-blog', , '

Here is where I will blog all about the parks of Australia. Please comment and give me ideas of what parks you have enjoyed.

', 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":""}', 0, '2010-05-12 21:22:21', 0, '0000-00-00 00:00:00', 0, 'en-GB'),

(36, 160, 38, 34, 35, 4, 'sample-data-content/park-site/photo-gallery/scenery', 'com_content', 'Scenery', 'scenery', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":""}', 0, '2010-05-12 21:22:46', 0, '0000-00-00 00:00:00', 0, 'en-GB'), (37, 161, 38, 36, 37, 4, 'sample-data-content/park-site/photo-gallery/animals', 'com_content', 'Animals', 'animals', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":""}', 0, '2010-05-12 21:22:59', 0, '0000-00-00 00:00:00', 0, 'en-GB'), (38, 42, 50, 33, 38, 3, 'sample-data-content/park-site/photo-gallery', 'com_content', 'Photo Gallery', 'photo-gallery', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":""}', 0, '2010-05-12 21:22:34', 0, '0000-00-00 00:00:00', 0, 'en-GB'),

(39, 154, 32, 12, 13, 4, 'sample-data-content/joomla/extensions/components', 'com_content', 'Components', 'components', , '

Components are larger extensions that produce the major content for your site. Each component has one or more "views" that control how content is displayed.In the Joomla! administrator there are additional extensions suce as Menus, Redirection, and the extension managers.

', 1, 0, '0000-00-00 00:00:00', 1, '{"target":""}', , , '{"page_title":"","author":"","robots":""}', 0, '2010-04-30 20:41:19', 0, '0000-00-00 00:00:00', 0, '*'),

(40, 152, 32, 14, 15, 4, 'sample-data-content/joomla/extensions/modules', 'com_content', 'Modules', 'modules', , 'Modules are small blocks of content that can be displayed in positions on a web page. The menus on this site are displayed in modules. The core of Joomla! includes 17 separate modules ranging from login to search to random images. Each module has a name that starts mod_ but when it displays it has a title. In the descriptions in this section, the titles are the same as the names.', 1, 0, '0000-00-00 00:00:00', 1, '{"target":""}', , , '{"page_title":"","author":"","robots":""}', 0, '2010-04-30 18:58:30', 0, '0000-00-00 00:00:00', 0, '*'),

(41, 147, 32, 16, 17, 4, 'sample-data-content/joomla/extensions/templates', 'com_content', 'Templates', 'templates', , '

Templates give your site its look and feel. They determine layout, colors, type faces, graphics and other aspects of design that make your site unique. Your installation of Joomla comes prepackaged with four templates.

', 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":""}', 0, '2010-05-16 02:27:52', 42, '2010-06-07 16:20:56', 0, '*'),

(42, 151, 32, 18, 19, 4, 'sample-data-content/joomla/extensions/languages', 'com_content', 'Languages', 'languages', , '\r\nJoomla! installs in English, but there are translations of the interfaces, sample data and help screens are available in dozens of languages.\r\nTranslation information\r\nIf there is no language pack available for your language, instructions are available for creating your own translation, which you can also contribute to the community by starting a translation team to create an accredited translation.\r\nTranslations are installed the the extensions manager in the site administrator and then managed using the language manager.\r\n\r\n', 1, 0, '0000-00-00 00:00:00', 1, '{"target":""}', , , '{"page_title":"","author":"","robots":""}', 0, '2010-04-30 19:44:04', 0, '0000-00-00 00:00:00', 0, '*'), (43, 153, 32, 20, 21, 4, 'sample-data-content/joomla/extensions/plugins', 'com_content', 'Plugins', 'plugins', , 'Plugins are small task oriented extensions that enhance the Joomla! framework.\r\nSome are associated with particular extensions and others, such as editors, are used across all of Joomla!. Most beginning users do not need to change any of the plugins that install with Joomla!.\r\n ', 1, 0, '0000-00-00 00:00:00', 1, '{"target":""}', , , '{"page_title":"","author":"","robots":""}', 0, '2010-04-30 19:43:02', 0, '0000-00-00 00:00:00', 0, '*'),

(44, 170, 20, 6, 7, 2, 'sample-data-weblinks/parks-links', 'com_weblinks', 'Parks Links', 'parks-links', , '

Here are links to some of my favorite parks.

', 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":""}', 0, '2010-01-24 11:23:53', 42, '2010-06-12 12:29:26', 0, 'en-GB'),

(45, 55, 26, 54, 55, 2, 'contacts/parks-site', 'com_contact', 'Parks Site', 'parks-site', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*'), (46, 0, 26, 56, 111, 2, 'contacts/shop-site', 'com_contact', 'Shop Site', 'shop-site', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*'), (47, 56, 46, 57, 58, 3, 'contacts/shop-site/staff', 'com_contact', 'Staff', 'staff', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*'), (48, 57, 46, 59, 60, 3, 'contacts/shop-site/suppliers', 'com_contact', 'Suppliers', 'suppliers', , 'We get our fruit from the very best growers.', -2, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*'), (49, 58, 46, 61, 110, 3, 'contacts/shop-site/fruit', 'com_contact', 'Fruit', 'fruit', , 'Our directory of information about different kinds of fruit.', 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*'), (50, 60, 29, 30, 47, 2, 'sample-data-content/park-site', 'com_content', 'Park Site', 'park-site', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":""}', 0, '2010-05-12 21:22:08', 0, '0000-00-00 00:00:00', 0, 'en-GB'), (51, 87, 49, 62, 63, 4, 'contacts/shop-site/fruit/a', 'com_contact', 'A', 'a', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":"","rights":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*'), (52, 88, 49, 64, 65, 4, 'contacts/shop-site/fruit/b', 'com_contact', 'B', 'b', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":"","rights":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*'), (53, 89, 49, 66, 67, 4, 'contacts/shop-site/fruit/c', 'com_contact', 'C', 'c', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":"","rights":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*'), (54, 90, 49, 68, 69, 4, 'contacts/shop-site/fruit/d', 'com_contact', 'D', 'd', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":"","rights":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*'), (55, 91, 49, 70, 71, 4, 'contacts/shop-site/fruit/e', 'com_contact', 'E', 'e', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":"","rights":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*'), (56, 92, 49, 72, 73, 4, 'contacts/shop-site/fruit/f', 'com_contact', 'F', 'f', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":"","rights":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*'), (57, 93, 49, 74, 75, 4, 'contacts/shop-site/fruit/g', 'com_contact', 'G', 'g', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":"","rights":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*'), (58, 94, 49, 76, 77, 4, 'contacts/shop-site/fruit/h', 'com_contact', 'H', 'h', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":"","rights":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*'), (59, 95, 49, 78, 79, 4, 'contacts/shop-site/fruit/j', 'com_contact', 'J', 'j', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":"","rights":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*'), (60, 96, 49, 80, 81, 4, 'contacts/shop-site/fruit/k', 'com_contact', 'K', 'k', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":"","rights":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*'), (61, 97, 49, 82, 83, 4, 'contacts/shop-site/fruit/l', 'com_contact', 'L', 'l', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":"","rights":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*'), (62, 98, 49, 84, 85, 4, 'contacts/shop-site/fruit/m', 'com_contact', 'M', 'm', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":"","rights":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*'), (63, 99, 49, 86, 87, 4, 'contacts/shop-site/fruit/o', 'com_contact', 'O', 'o', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":"","rights":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*'), (64, 100, 49, 88, 89, 4, 'contacts/shop-site/fruit/p', 'com_contact', 'P', 'p', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":"","rights":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*'), (65, 101, 49, 90, 91, 4, 'contacts/shop-site/fruit/q', 'com_contact', 'Q', 'q', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":"","rights":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*'), (66, 102, 49, 92, 93, 4, 'contacts/shop-site/fruit/r', 'com_contact', 'R', 'r', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":"","rights":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*'), (67, 103, 49, 94, 95, 4, 'contacts/shop-site/fruit/s', 'com_contact', 'S', 's', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":"","rights":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*'), (68, 104, 49, 96, 97, 4, 'contacts/shop-site/fruit/t', 'com_contact', 'T', 't', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":"","rights":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*'), (69, 105, 49, 98, 99, 4, 'contacts/shop-site/fruit/u', 'com_contact', 'U', 'u', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":"","rights":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*'), (70, 106, 49, 100, 101, 4, 'contacts/shop-site/fruit/v', 'com_contact', 'V', 'v', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":"","rights":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*'), (71, 107, 49, 102, 103, 4, 'contacts/shop-site/fruit/w', 'com_contact', 'W', 'w', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":"","rights":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*'), (72, 108, 49, 104, 105, 4, 'contacts/shop-site/fruit/x', 'com_contact', 'X', 'x', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":"","rights":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*'), (73, 109, 49, 106, 107, 4, 'contacts/shop-site/fruit/y', 'com_contact', 'Y', 'y', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":"","rights":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*'), (74, 110, 49, 108, 109, 4, 'contacts/shop-site/fruit/z', 'com_contact', 'Z', 'z', , , 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":"","rights":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*'), (75, 111, 29, 48, 51, 2, 'sample-data-content/fruit-shop-site', 'com_content', 'Fruit Shop Site', 'fruit-shop-site', , 'This category will hold all articles and article categories for the shop sample site.', 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":"","rights":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*'), (76, 113, 75, 49, 50, 3, 'sample-data-content/fruit-shop-site/growers', 'com_content', 'Growers', 'growers', , 'Each supplier will have a page that can be edited. To see this in action you will need to create users who are suppliers and assign them as authors to the suppliers articles.', 1, 0, '0000-00-00 00:00:00', 1, '{"target":"","image":""}', , , '{"page_title":"","author":"","robots":"","rights":""}', 0, '2010-05-12 21:19:28', 0, '0000-00-00 00:00:00', 0, '*');

-- --------------------------------------------------------

-- -- Table structure for table `jos_contact_details` --


CREATE TABLE IF NOT EXISTS `jos_contact_details` (

 `id` int(11) NOT NULL AUTO_INCREMENT,
 `name` varchar(255) NOT NULL DEFAULT ,
 `alias` varchar(255) NOT NULL DEFAULT ,
 `con_position` varchar(255) DEFAULT NULL,
 `address` text,
 `suburb` varchar(100) DEFAULT NULL,
 `state` varchar(100) DEFAULT NULL,
 `country` varchar(100) DEFAULT NULL,
 `postcode` varchar(100) DEFAULT NULL,
 `telephone` varchar(255) DEFAULT NULL,
 `fax` varchar(255) DEFAULT NULL,
 `misc` mediumtext,
 `image` varchar(255) DEFAULT NULL,
 `imagepos` varchar(20) DEFAULT NULL,
 `email_to` varchar(255) DEFAULT NULL,
 `default_con` tinyint(1) unsigned NOT NULL DEFAULT '0',
 `published` tinyint(1) NOT NULL DEFAULT '0',
 `checked_out` int(10) 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 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) NOT NULL DEFAULT ,
 `webpage` varchar(255) NOT NULL DEFAULT ,
 `sortname1` varchar(255) NOT NULL,
 `sortname2` varchar(255) NOT NULL,
 `sortname3` varchar(255) NOT NULL,
 `language` char(7) NOT NULL,
 `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
 `created_by` int(10) unsigned NOT NULL DEFAULT '0',
 `created_by_alias` varchar(255) NOT NULL DEFAULT ,
 `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
 `modified_by` int(10) unsigned NOT NULL DEFAULT '0',
 `metakey` text NOT NULL,
 `metadesc` text NOT NULL,
 `metadata` text NOT NULL,
 `featured` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Set if article is featured.',
 `xreference` varchar(50) NOT NULL COMMENT 'A reference to enable linkages to external data sets.',
 `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
 `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
 PRIMARY KEY (`id`),
 KEY `idx_access` (`access`),
 KEY `idx_checkout` (`checked_out`),
 KEY `idx_state` (`published`),
 KEY `idx_catid` (`catid`),
 KEY `idx_createdby` (`created_by`),
 KEY `idx_featured_catid` (`featured`,`catid`),
 KEY `idx_language` (`language`),
 KEY `idx_xreference` (`xreference`)

) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=9 ;

-- -- Dumping data for table `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`, `sortname1`, `sortname2`, `sortname3`, `language`, `created`, `created_by`, `created_by_alias`, `modified`, `modified_by`, `metakey`, `metadesc`, `metadata`, `featured`, `xreference`, `publish_up`, `publish_down`) VALUES

(1, 'Contact Name Here', 'name', 'Position', 'Street Address', 'Suburb', 'State', 'Country', 'Zip Code', 'Telephone', 'Fax', '

Information about or by the contact.

', 'images/powered_by.png', 'top', 'email@email.com', 1, 1, 0, '0000-00-00 00:00:00', 1, '{"show_contact_category":"","presentation_style":"","show_name":"","show_position":"","show_email":"","show_street_address":"","show_suburb":"","show_state":"","show_postcode":"","show_country":"","show_telephone":"","show_mobile":"","show_fax":"","show_webpage":"","show_misc":"","show_image":"","allow_vcard":"","show_articles":"","show_profile":"","show_links":"0","linka_name":"Twitter","linka":"http:\\/\\/twitter.com\\/joomla","linkb_name":"YouTube","linkb":"http:\\/\\/www.youtube.com\\/user\\/joomla","linkc_name":"Ustream","linkc":"http:\\/\\/www.ustream.tv\\/joomla","linkd_name":"FriendFeed","linkd":"http:\\/\\/friendfeed.com\\/joomla","linke_name":"Scribed","linke":"http:\\/\\/www.scribd.com\\/people\\/view\\/504592-joomla","show_email_form":"","show_email_copy":"","banned_email":"","banned_subject":"","banned_text":"","validate_session":"","custom_reply":"","redirect":""}', 0, 26, 1, , , 'last', 'first', 'middle', 'en-GB', '0000-00-00 00:00:00', 0, , '2010-05-27 09:24:25', 42, , , '{"robots":"","rights":""}', 0, , '0000-00-00 00:00:00', '0000-00-00 00:00:00'),

(2, 'Webmaster', 'webmaster', , , , , , , , , , , NULL, 'webmaster@example.com', 0, 1, 0, '0000-00-00 00:00:00', 0, '{"show_contact_category":"","show_name":"","show_position":"","show_email":"","show_street_address":"","show_suburb":"","show_state":"","show_postcode":"","show_country":"","show_telephone":"","show_mobile":"","show_fax":"","show_webpage":"","show_misc":"","show_image":"","allow_vcard":"","show_articles":"","show_profile":"","show_links":"0","linka_name":"","linka":"","linkb_name":"","linkb":"","linkc_name":"","linkc":"","linkd_name":"","linkd":"","linke_name":"","linke":"","show_email_form":"1","show_email_copy":"1","banned_email":"","banned_subject":"","banned_text":"","validate_session":"1","custom_reply":"","redirect":""}', 0, 45, 1, , , , , , 'en-GB', '0000-00-00 00:00:00', 0, , '2010-05-15 20:48:47', 42, , , '{"robots":"","rights":""}', 0, , '0000-00-00 00:00:00', '0000-00-00 00:00:00'),

(3, 'Owner', 'owner', , , , , , , , , '

Im the owner of this store.

', , NULL, , 0, 1, 0, '0000-00-00 00:00:00', 0, '{"show_contact_category":"","show_name":"","show_position":"","show_email":"","show_street_address":"","show_suburb":"","show_state":"","show_postcode":"","show_country":"","show_telephone":"","show_mobile":"","show_fax":"","show_webpage":"","show_misc":"","show_image":"","allow_vcard":"","show_articles":"","show_profile":"","show_links":"0","linka_name":"","linka":"","linkb_name":"","linkb":"","linkc_name":"","linkc":"","linkd_name":"","linkd":"","linke_name":"","linke":"","show_email_form":"","show_email_copy":"","banned_email":"","banned_subject":"","banned_text":"","validate_session":"","custom_reply":"","redirect":""}', 0, 47, 1, , , , , , '*', '0000-00-00 00:00:00', 0, , '2010-05-26 16:18:11', 42, , , '{"robots":"","rights":""}', 1, , '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (4, 'Buyer', 'buyer', , , , , , , , , '

I am in charge of buying fruit. If you sell good fruit, contact me.

', , NULL, , 0, 1, 0, '0000-00-00 00:00:00', 0, '{"show_contact_category":"","show_name":"","show_position":"","show_email":"","show_street_address":"","show_suburb":"","show_state":"","show_postcode":"","show_country":"","show_telephone":"","show_mobile":"","show_fax":"","show_webpage":"","show_misc":"","show_image":"","allow_vcard":"","show_articles":"","show_profile":"","show_links":"0","linka_name":"","linka":"","linkb_name":"","linkb":"","linkc_name":"","linkc":"","linkd_name":"","linkd":"","linke_name":"","linke":"","show_email_form":"","show_email_copy":"","banned_email":"","banned_subject":"","banned_text":"","validate_session":"","custom_reply":"","redirect":""}', 0, 47, 1, , , , , , '*', '0000-00-00 00:00:00', 0, , '2010-05-26 16:18:29', 42, , , '{"robots":"","rights":""}', 1, , '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (5, 'Bananas', '-bananas', , , , , , , , , '

Bananas are a great source of potassium.

\r\n

', 'images/sampledata/fruitshop/bananas_2.jpg', NULL, , 0, 1, 0, '0000-00-00 00:00:00', 0, '{"show_contact_category":"","presentation_style":"","show_name":"","show_position":"","show_email":"","show_street_address":"","show_suburb":"","show_state":"","show_postcode":"","show_country":"","show_telephone":"","show_mobile":"","show_fax":"","show_webpage":"","show_misc":"","show_image":"","allow_vcard":"","show_articles":"","show_profile":"","show_links":"0","linka_name":"","linka":"","linkb_name":"","linkb":"","linkc_name":"","linkc":"","linkd_name":"","linkd":"","linke_name":"","linke":"","show_email_form":"","show_email_copy":"","banned_email":"","banned_subject":"","banned_text":"","validate_session":"","custom_reply":"","redirect":""}', 0, 52, 1, , 'http://en.wikipedia.org/wiki/Banana', , , , '*', '0000-00-00 00:00:00', 0, , '2010-05-27 21:06:58', 42, , , '{"robots":"","rights":""}', 0, , '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (6, 'Apples', '-apples', , , , , , , , , '

Applies are a versatile fruit, used for eating, cooking, and preserving.

\r\n

There are more that 7500 different kinds of apples grown around the world.

', 'images/sampledata/fruitshop/apple.jpg', NULL, , 0, 1, 0, '0000-00-00 00:00:00', 0, '{"show_contact_category":"","presentation_style":"full","show_name":"","show_position":"","show_email":"","show_street_address":"","show_suburb":"","show_state":"","show_postcode":"","show_country":"","show_telephone":"","show_mobile":"","show_fax":"","show_webpage":"","show_misc":"","show_image":"","allow_vcard":"","show_articles":"","show_profile":"","show_links":"0","linka_name":"","linka":"","linkb_name":"","linkb":"","linkc_name":"","linkc":"","linkd_name":"","linkd":"","linke_name":"","linke":"","show_email_form":"","show_email_copy":"","banned_email":"","banned_subject":"","banned_text":"","validate_session":"","custom_reply":"","redirect":""}', 0, 51, 1, , 'http://en.wikipedia.org/wiki/Apple', , , , '*', '0000-00-00 00:00:00', 0, , '2010-05-27 20:39:24', 42, , , '{"robots":"","rights":""}', 0, , '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (8, 'Shop Address', 'shop-address', , , 'Our City', 'Our Province', 'Our Country', , '555-555-5555', , '

Here are directions for how to get to our shop.

', , NULL, , 0, 1, 0, '0000-00-00 00:00:00', 0, '{"show_contact_category":"","show_name":"","show_position":"","show_email":"","show_street_address":"","show_suburb":"","show_state":"","show_postcode":"","show_country":"","show_telephone":"","show_mobile":"","show_fax":"","show_webpage":"","show_misc":"","show_image":"","allow_vcard":"","show_articles":"","show_profile":"","show_links":"0","linka_name":"","linka":"","linkb_name":"","linkb":"","linkc_name":"","linkc":"","linkd_name":"","linkd":"","linke_name":"","linke":"","show_email_form":"","show_email_copy":"","banned_email":"","banned_subject":"","banned_text":"","validate_session":"","custom_reply":"","redirect":""}', 0, 46, 1, , , , , , '*', '0000-00-00 00:00:00', 0, , '2010-05-26 16:14:57', 42, , , '{"robots":"","rights":""}', 1, , '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (7, 'Tamarind', 'tamarind', , , , , , , , , '

Tamarinds are a versatile fruit used around the world. In its young form it is used in hot sauces; ripened it is the basis for many freshing drinks.

\r\n

', 'images/sampledata/fruitshop/tamarind.jpg', NULL, , 0, 1, 0, '0000-00-00 00:00:00', 0, '{"show_contact_category":"","presentation_style":"full","show_name":"","show_position":"","show_email":"","show_street_address":"","show_suburb":"","show_state":"","show_postcode":"","show_country":"","show_telephone":"","show_mobile":"","show_fax":"","show_webpage":"","show_misc":"","show_image":"","allow_vcard":"","show_articles":"","show_profile":"","show_links":"0","linka_name":"","linka":"","linkb_name":"","linkb":"","linkc_name":"","linkc":"","linkd_name":"","linkd":"","linke_name":"","linke":"","show_email_form":"","show_email_copy":"","banned_email":"","banned_subject":"","banned_text":"","validate_session":"","custom_reply":"","redirect":""}', 0, 68, 1, , 'http://en.wikipedia.org/wiki/Tamarind', , , , '*', '0000-00-00 00:00:00', 0, , '2010-05-26 23:28:31', 42, , , '{"robots":"","rights":""}', 0, , '0000-00-00 00:00:00', '0000-00-00 00:00:00');

-- --------------------------------------------------------

-- -- Table structure for table `jos_content` --


CREATE TABLE IF NOT EXISTS `jos_content` (

 `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
 `asset_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'FK to the #__assets table.',
 `title` varchar(255) NOT NULL DEFAULT ,
 `alias` varchar(255) NOT NULL DEFAULT ,
 `title_alias` varchar(255) NOT NULL DEFAULT ,
 `introtext` mediumtext NOT NULL,
 `fulltext` mediumtext NOT NULL,
 `state` tinyint(3) NOT NULL DEFAULT '0',
 `sectionid` int(10) unsigned NOT NULL DEFAULT '0',
 `mask` int(10) unsigned NOT NULL DEFAULT '0',
 `catid` int(10) unsigned NOT NULL DEFAULT '0',
 `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
 `created_by` int(10) unsigned NOT NULL DEFAULT '0',
 `created_by_alias` varchar(255) NOT NULL DEFAULT ,
 `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
 `modified_by` int(10) unsigned NOT NULL DEFAULT '0',
 `checked_out` int(10) 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 NOT NULL,
 `urls` text NOT NULL,
 `attribs` varchar(5120) NOT NULL,
 `version` int(10) unsigned NOT NULL DEFAULT '1',
 `parentid` int(10) unsigned NOT NULL DEFAULT '0',
 `ordering` int(11) NOT NULL DEFAULT '0',
 `metakey` text NOT NULL,
 `metadesc` text NOT NULL,
 `access` int(10) unsigned NOT NULL DEFAULT '0',
 `hits` int(10) unsigned NOT NULL DEFAULT '0',
 `metadata` text NOT NULL,
 `featured` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Set if article is featured.',
 `language` char(7) NOT NULL COMMENT 'The language code for the article.',
 `xreference` varchar(50) NOT NULL COMMENT 'A reference to enable linkages to external data sets.',
 PRIMARY KEY (`id`),
 KEY `idx_access` (`access`),
 KEY `idx_checkout` (`checked_out`),
 KEY `idx_state` (`state`),
 KEY `idx_catid` (`catid`),
 KEY `idx_createdby` (`created_by`),
 KEY `idx_featured_catid` (`featured`,`catid`),
 KEY `idx_language` (`language`),
 KEY `idx_xreference` (`xreference`)

) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=91 ;

-- -- Dumping data for table `jos_content` --

INSERT INTO `jos_content` (`id`, `asset_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`, `featured`, `language`, `xreference`) VALUES

(1, 27, 'Joomla!', 'joomla', , '

Congratulations, You have a Joomla! site! Joomla! makes your site easy to build a website just the way you want it and keep it simple to update and maintain. Joomla! is a flexible and powerful platform, whether you are building a small site for yourself or a huge site with hundreds of thousands of visitors. Joomla is open source, which means you can make it work just the way you want it to.

', , 1, 1, 0, 0, '2008-08-12 10:00:00', 42, 'Joomla!', '2010-05-26 23:51:11', 42, 0, '0000-00-00 00:00:00', '2006-01-03 01:00:00', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 36, 0, 1, , , 1, 121, '{"robots":"","author":""}', 1, '*', ), (87, 162, 'Language Switcher', 'language-switcher', , '

The language switcher module allows you to take advantage of the language tags that are available when content, modules and menu links are created.

\r\n

This module displays a list of available Content Languages for switching between them.

\r\n

When switching languages, it redirects to the Home page defined for the chosen language. Thereafter, the navigation will be the one defined for that language.

\r\n

The language filter plugin must be enabled for this module to work properly.

\r\n

<a href="http://docs.joomla.org/Help15:Screen.modulessite.edit.15#Language_Switcher" title="Language Switcher Module">Help</a>

\r\n

To view an example of the language switch moduler module, go to the site administrator and enable the language filter plugin and the language switcher module labellled "language switcher" and visit the fruit shop or park sample sites. However, you will need to follow [link separate instructions for installing a second language and implementing language switching. ]

\r\n

', , 1, 0, 0, 40, '2010-05-15 09:39:34', 42, 'Joomla!', '2010-06-07 16:58:26', 42, 0, '0000-00-00 00:00:00', '2010-06-07 09:54:41', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 7, 0, 27, , , 1, 5, , 0, '*', ), (2, 33, 'Great Barrier Reef', 'great-barrier-reef', , '

The Great Barrier Reef is the largest coral reef system composed of over 2,900 individual reefs[3] and 900 islands stretching for over 3,000 kilometres (1,600 mi) over an area of approximately 344,400 square kilometres (133,000 sq mi). The reef is located in the Coral Sea, off the coast of Queensland in northeast Australia.

http://en.wikipedia.org/wiki/Great_Barrier_Reef

', '

The Great Barrier Reef can be seen from outer space and is the worlds biggest single structure made by living organisms. This reef structure is composed of and built by billions of tiny organisms, known as coral polyps. The Great Barrier Reef supports a wide diversity of life, and was selected as a World Heritage Site in 1981.CNN has labelled it one of the 7 natural wonders of the world. The Queensland National Trust has named it a state icon of Queensland.

A large part of the reef is protected by the Great Barrier Reef Marine Park, which helps to limit the impact of human use, such as overfishing and tourism. Other environmental pressures to the reef and its ecosystem include water quality from runoff, climate change accompanied by mass coral bleaching, and cyclic outbreaks of the crown-of-thorns starfish.

The Great Barrier Reef has long been known to and utilised by the Aboriginal Australian and Torres Strait Islander peoples, and is an important part of local groups cultures and spirituality. The reef is a very popular destination for tourists, especially in the Whitsundays and Cairns regions. Tourism is also an important economic activity for the region. Fishing also occurs in the region, generating AU$ 1 billion per year.

', 1, 0, 0, 24, '2009-06-22 11:07:08', 42, , '2010-04-25 21:48:59', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","article-allow_ratings":"","article-allow_comments":"","show_author":"","show_create_date":"","show_modify_date":"","show_print_icon":"","show_email_icon":"","readmore":"","page_title":"","layout":""}', 1, 0, 1, , , 1, 4, '{"robots":"","author":""}', 0, 'en-GB', ), (3, 34, 'Cradle Mountain-Lake St Clair National Park', 'cradle-mountain-lake-st-clair-national-park', , '

Cradle Mountain-Lake St Clair National Park is located in the Central Highlands area of Tasmania (Australia), 165 km northwest of Hobart. The park contains many walking trails, and is where hikes along the well-known Overland Track usually begins. Major features are Cradle Mountain and Barn Bluff in the northern end, Mount Pelion East, Mount Pelion West, Mount Oakleigh and Mount Ossa in the middle and Lake St Clair in the southern end of the park. The park is part of the Tasmanian Wilderness World Heritage Area.

http://en.wikipedia.org/wiki/Cradle_Mountain-Lake_St_Clair_National_Park

', '

Access and usage fee

Access from the south (Lake St. Clair) is usually from Derwent Bridge on the Lyell Highway. Northern access (Cradle Valley) is usually via Sheffield, Wilmot or Mole Creek. A less frequently used entrance is via the Arm River Track, from the east.

In 2005, the Tasmanian Parks & Wildlife Service introduced a booking system & fee for use of the Overland Track over peak periods. Initially the fee was 100 Australian dollars, but this was raised to 150 Australian dollars in 2007. The money that is collected is used to finance the park ranger organisation, track maintenance, building of new facilities and rental of helicopter transport to remove waste from the toilets at the huts in the park.

', 1, 0, 0, 25, '2009-06-22 11:17:24', 42, , '2010-04-25 21:48:58', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","article-allow_ratings":"","article-allow_comments":"","show_author":"","show_create_date":"","show_modify_date":"","show_print_icon":"","show_email_icon":"","readmore":"","page_title":"","layout":""}', 1, 0, 1, , , 1, 0, '{"robots":"","author":""}', 0, '*', ), (4, 127, 'Joomla! Beginners', 'joomla-beginners', , '

If this is your first Joomla site or your first web site, you have come to the right place. Joomla will help you get your website up and running quickly and easily.

\r\n', '\r\n

Start off using your site by logging in using the administrator account you created when you installed. Explore the articles and other resources right here on your site data to learn more about how Joomla works.(When youre done reading, you can delete or archive all of this.) You will also probably want to visit the beginners areas of the <a href="http://docs.joomla.org">Joomla documentation</a> and <a href="http://forum.joomla.org">support forums</a>.

\r\n

Youll also want to sign up for the Joomla Security Mailing list and the Announcements mailing list. For inspiration visit the Joomla Site Showcase to see an amazing array of ways people use Joomla to tell their stories on the web.

\r\n

The basic Joomla! installation will let you get a great site up and running, but when you are ready for more features the power of Joomla! is in the creative ways that developers have extended it to do all kinds of things. Visit the Joomla! Extensions Directory to see thousands of extensions that can do almost anything you could want on a website. Cant find what you need? You may want to find a Joomla professional on the Joomla! Resources Directory.

\r\n

Want to learn more? Consider attending a Joomla! Day or other event or joining a local Joomla! Users Group. Cant find one near you? Start one yourself.

', 1, 0, 0, 31, '2010-01-10 01:30:47', 42, , '2010-05-26 23:51:11', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"1","link_titles":"0","show_intro":"","show_category":"0","link_category":"0","show_parent_category":"","link_parent_category":"","show_author":"0","show_create_date":"0","show_modify_date":"0","show_publish_date":"0","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 12, 0, 5, , , 1, 12, '{"robots":"","author":""}', 1, '*', ), (5, 128, 'Upgraders', 'upgraders', , '

If you are an experienced Joomla! 1.5 user, 1.6 will seem very familiar. There are new templates and improved user interfaces, but most functionality is the same. The biggest changes are improved access control (ACL) and nested categories.

\r\n', '\r\n


The new user manager which will let you manage who has access to what in your site. You can leave access groups exactly the way you had them in Joomla 1.5 or make them as complicated as you want. You can learn more about how access control works [in this article] and on the [Joomla Documentation site].

In Joomla 1.5 and 1.0 content was organized into sections and categories. In 1.6 sections are gone, and you can create categories within categories, going as deep as you want. You can learn more about how categories work in 1.6 [in this article] and [on the Joomla Documentation site].

All layouts have been redesigned to improve accessibility and flexibility. If you would like to keep the 1.5 layouts, you can find them in the html folder of the MilkyWay template. Simply copy the layouts you want to the html folder of your template.

Updating your site and extensions when needed is easier than ever thanks to installer improvements.

To learn more about how to move a Joomla 1.5 site to a Joomla 1.6 installation [read this].

', 1, 0, 0, 31, '2010-01-10 01:33:34', 42, , '2010-05-26 23:51:11', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"1","link_titles":"0","show_intro":"","show_category":"0","link_category":"0","show_parent_category":"","link_parent_category":"","show_author":"0","show_create_date":"0","show_modify_date":"0","show_publish_date":"0","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 3, 0, 4, , , 1, 6, '{"robots":"","author":""}', 1, '*', ), (6, 114, 'Professionals', 'professionals', , '

Joomla! 1.6 continues development of the Joomla Framework and CMS as a powerful and flexible way to bring your vision of the web to reality. With the administrator now fully MVC, the ability to control its look and the management of extensions is now complete.

\r\n', '\r\n

\r\n

Languages files can now be overridden and working with multiple templates and overrides for the same views, creating the design you want is easier than it has ever been. Limiting support to PHP 5.x and above and ending legacy support for Joomla 1.0 makes Joomla lighter and faster than ever.

\r\n

Access control lists are now incorporated using a new system developed for Joomla. The ACL system is designed with developers in mind, so it is easy to incorporate into your extensions. The new nested sets libraries allow you to incorporate infinitely deep categories but also to use nested sets in a variety of other ways.

\r\n

A new forms library makes creating all kinds of user interaction simple. MooTools 1.2 provides a highly flexible javascript framework that is a major advance over MooTools 1.0.

\r\n


New events throughout the core make integration of your plugins where you want them a snap.

\r\n

Learn about:

\r\n

    \r\n
  • [working with ACL]
  • \r\n
  • [working with nested sets]
  • \r\n
  • [integrating comments]
  • \r\n
  • [using the forms library]
  • \r\n
  • [working with Mootools 1.2]
  • \r\n
  • [using the override system]
  • \r\n
  • [Joomla! API]
  • \r\n
  • [Database]
  • \r\n
  • [Triggers]
  • \r\n
  • [Xmlrpc]
  • \r\n
  • [Installing and updating extensions]
  • \r\n
  • [Setting up your development environment]
  • \r\n

', 1, 0, 0, 31, '2010-01-10 01:37:46', 42, , '2010-05-26 23:51:11', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"1","link_titles":"","show_intro":"","show_category":"0","link_category":"0","show_parent_category":"","link_parent_category":"","show_author":"0","show_create_date":"0","show_modify_date":"0","show_publish_date":"0","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":"","article-allow_ratings":"","article-allow_comments":""}', 7, 0, 3, , , 1, 9, '{"robots":"","author":"","rights":""}', 1, '*', ), (7, 59, 'Sample Sites', 'sample-sites', , '

Your installation includes sample data, designed to show you some of the options you have for building your website. In addition to information about Joomla! there are two sample "sites within a site" designed to help you get started with builidng your own site.

\r\n

The first site is a simple site about <a href="index.php?Itemid=243">Australian Parks</a>. It shows you you an quickly and easily build a personal site with just the building blocks that are part of Joomla!. It includes a personal blog, weblinks, and a very simple image gallery.

\r\n

The second site is slightly more complex and represents what you might do if you are building a site for a small business, in this case a <a href="index.php/welcome.html"></a><a href="index.php?Itemid=429">Fruit Shop</a>.

\r\n

In building either style site, or something completely different, you will probably want to add <a href="http://extensions.joomla.org">extensions</a> and either create or purchase your own template. Many Joomla! users start off by modifying the <a href="http://docs.joomla.org/How_do_you_modify_a_template%3F">templates</a> that come with the core distribution so that they include special images and other design elements that relate to their sites focus.

', , 1, 0, 0, 31, '2010-01-10 01:59:13', 42, , '2010-06-07 14:59:47', 42, 0, '0000-00-00 00:00:00', '2010-06-07 14:55:46', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 13, 0, 6, , , 1, 125, '{"robots":"","author":""}', 0, '*', ), (89, 168, 'Beez5', 'beez5', , '

Beez5 is a simplified variation of Bee_20 which features use of html5, accessible javascript and an easy to change header.

', , 1, 0, 0, 41, '2010-06-07 16:32:24', 42, 'Joomla!', '2010-06-07 16:32:48', 42, 0, '0000-00-00 00:00:00', '2010-06-07 16:32:24', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 2, 0, 2, , , 1, 0, , 0, '*', ), (9, 51, 'Australian Parks', 'australian-parks', , '

Welcome!

\r\n

This is a basic site about the beautiful and fascinating parks of Australia.

\r\n

On this site you can read all about my travels to different parks, see photos, and find links to park websites.

\r\n

.

', , 1, 0, 0, 23, '2010-01-10 05:41:55', 42, 'Park Fan', '2010-05-29 16:13:14', 42, 0, '0000-00-00 00:00:00', '2010-05-29 16:13:14', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 4, 0, 1, , , 1, 53, '{"robots":"","author":""}', 0, 'en-GB', ), (10, 123, 'Content', 'content', , '

The content component (com_content) is what you use to write articles. It is extremely flexible and has the largest number of built in views.

', , 1, 0, 0, 39, '2010-01-10 12:50:35', 42, 'Joomla!', '2010-04-30 22:38:03', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":"","article-allow_ratings":"","article-allow_comments":""}', 3, 0, 1, , , 1, 23, '{"robots":"","author":""}', 0, '*', ), (11, 130, 'Weblinks', 'weblinks', , '

Weblinks (com_weblinks) is a component that provides a structured way to organize external links and present them in a visually attractive, consistent and informative way.

', , 1, 0, 0, 39, '2010-01-10 12:58:33', 42, , '2010-04-26 05:19:12', 43, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":"","article-allow_ratings":"","article-allow_comments":""}', 3, 0, 2, , , 1, 16, '{"robots":"","author":""}', 0, '*', ), (12, 131, 'News Feeds', 'news-feeds', , '

News Feeds (com_newsfeeds) provides a way to organize and present news feeds. News feeds are a way that you present information from another site on your site. For example, the joomla.org website has numerous feeds that you an incorporate on your site. You an use menus to present a single feed, a list of feeds in a category, or or a list of all feed categories.

', , 1, 0, 0, 39, '2010-01-10 13:08:52', 42, 'Joomla!', '2010-04-30 22:38:36', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":"","article-allow_ratings":"","article-allow_comments":""}', 5, 0, 3, , , 1, 45, '{"robots":"","author":""}', 0, '*', ), (13, 122, 'Contact', 'contacts', , '

The contact component provides a way to provide contact forms and information for your site or to create a most complex directory that can be used for many different purposes.', , 1, 0, 0, 39, '2010-01-10 13:19:46', 42, , '2010-05-01 19:35:46', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":"","article-allow_ratings":"","article-allow_comments":""}', 3, 0, 4, , , 1, 33, '{"robots":"","author":""}', 0, '*', ), (14, 132, 'Users', 'users-component', , '

The users extension lets your site visitors register, login and logout, change their passwords and other information, and recover lost passwords.

', , 1, 0, 0, 39, '2010-01-10 14:00:05', 42, , '2010-05-01 19:36:08', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":"","article-allow_ratings":"","article-allow_comments":""}', 4, 0, 5, , , 1, 4, '{"robots":"","author":""}', 0, '*', ), (17, 141, 'Languages', 'languages', , '

Joomla! installs in English, but there are translations of the interfaces, sample data and help screens are available in dozens of languages.

\r\n

<a href="http://community.joomla.org/translations.html">Translation information</a>

\r\n

If there is no language pack available for your language, instructions are available for creating your own translation, which you can also contribute to the community by starting a translation team to create an accredited translation.

\r\n

Translations of the interfaces are installed using the extensions manager in the site administrator and then managed using the language manager.

\r\n

If you have two or more languages installed you may enable the language switcher plugin and module. They should always be used together. If you create multilingual content and mark your content, menu items or modules as in specific languages and follow the complete instructions [link] your users will be able to select a specific content language using the module. By efault both the plugin and module are disabled.

\r\n

There are a number of extensions that can help you manage translations of content available in the<a href="http://extensions.joomla.org"> Joomla! Extensions Directory</a>.

\r\n

', , 1, 0, 0, 32, '2010-01-10 14:02:22', 42, 'Joomla!', '2010-06-07 17:50:21', 42, 0, '0000-00-00 00:00:00', '2010-06-07 14:23:34', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 7, 0, 4, , , 1, 26, '{"robots":"","author":""}', 0, '*', ), (84, 157, 'Getting help', 'getting-help', , '

There are lots of places you can get help with Joomla!.

\r\n

In many places you will see the help icon [image]. Click on this for more information about the options and functions of items on your screen.

\r\n

', , 1, 0, 0, 31, '2010-05-01 10:54:28', 42, 'Joomla!', '2010-05-19 11:23:43', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 5, 0, 1, , , 1, 16, , 0, '*', ), (85, 158, 'Getting Started', 'getting-started', , '

Its easy to get started creating your website. Knowing some of the basics will help.

\r\n

What is a Content Management System?

\r\n

A content management system is software that allows you to create and manage webpages easily by separating the creation of your content from the mechanics required to present it on the web.

\r\n

In this site, the content is stored in a database. The look and feel are created by a template. The Joomla! software brings together the template and the content to create web pages.

\r\n

Site and Administrator

\r\n

Your site actually has two separate sites. The site (also called the front end) is what visitors to your site will see. The administrator (also called the back end) is only used by people managing your site. You can access the administrator by clicking the "Site Administrator" link on the "This Site" menu or by adding /administrator to the end of you domain name.

\r\n

Log in to the administrator using the username and password created during the installation of Joomla!.

\r\n

Logging in

\r\n

To login to the front end of your site use the login form or the login menu link on the "This Site" menu. Use the user name an password that were created as part of the installation process. Once logged in you will be able to create and edit articles.

\r\n

In managing your site, you will be able to create content that only logged in users are able to see.

\r\n

Creating an article

\r\n

Once you are logged in, a new menu will be visible. To create a new article, click on the "submit article" link on that menu.

\r\n

The new article interface gives you a lot of options, but all you need to do is add a title an put something in the content area. To make it easy to find, set the state to published an put it in the Joomla! category.

\r\n

You can edit an existing article by clicking on the edit icon (if available).

\r\n

Learn more

\r\n

There is much more to learn about how to use Joomla! to create the web site you envision. You can learn much more at the <a href="http://docs.joomla.org">Joomla! documentation site</a> and on the<a href="http://forum.joomla.org"> Joomla! forums</a>.

', , 1, 0, 0, 31, '2010-05-01 11:10:43', 42, 'Joomla!', '2010-05-16 20:16:12', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 8, 0, 2, , , 1, 29, , 0, '*', ), (20, 142, 'Search', 'search-component', , '

The search component proviedes basic search functionality for the information contained in your core components. Many third part extensions also can be searched by the search component.

', , 1, 0, 0, 39, '2010-01-10 15:45:55', 42, 'joomla!', '2010-05-01 19:35:58', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":"","article-allow_ratings":"","article-allow_comments":""}', 5, 0, 6, , , 1, 9, '{"robots":"","author":""}', 0, '*', ), (22, 129, 'The Joomla! Community', 'the-joomla-community', , '

Joomla! means All Together, and it is a community of people all working and having fun together that makes Joomla! possible. Thousands of people each year participate in the Joomla! community, and we hope you will be one of them.

\r\n

People with all kinds of skills, of all skill levels and from around the world are welcome to join in. Participate in the <a href="http://joomla.org">Joomla.org</a> family of websites (the<a href="http://forum.joomla.org"> forum </a>is a great place to start). Come to a <a href="http://community.joomla.org/events.html">Joomla! event</a>. Join or start a <a href="http://community.joomla.org/user-groups.html">Joomla! Users Group</a>. Whether you are a developer, site administrator, designer, end user or fan, there are ways for you to participate and contribute.

\r\n

', , 1, 0, 0, 34, '2010-01-10 16:00:04', 42, , '2010-04-26 04:13:54', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":"","article-allow_ratings":"","article-allow_comments":""}', 3, 0, 0, , , 1, 19, '{"robots":"","author":""}', 0, '*', ), (23, 137, 'The Joomla! Project', 'the-joomla-project', , '

The Joomla! Project consists of all of the people who make and support the Joomla! Web Platform and Content Management System. Our mission is to provide a flexible platform for digital publishing and collaboration.

\r\n

The core values are:

\r\n

\r\n

    \r\n
  • Freedom
  • \r\n
  • Equality
  • \r\n
  • Trust
  • \r\n
  • Community
  • \r\n
  • Collaboration
  • \r\n
  • Usability
  • \r\n

\r\n

\r\n
In our vision, we see:
\r\n
    \r\n
  • People publishing and collaborating in their communities and around the world
  • \r\n
  • Software that is free, secure, and high-quality
  • \r\n
  • A community that is enjoyable and rewarding to participate in
  • \r\n
  • People around the world using their preferred languages
  • \r\n
  • A project that acts autonomously
  • \r\n
  • A project that is socially responsible
  • \r\n
  • A project dedicated to maintaining the trust of its users
  • \r\n
\r\n

\r\n

There are millions of users around the world and thousands of people who contribute to the project. The work in three main groups: the Production Working Group, responsible for everything that goes into software and documentation; the Community Working Group, responsible for creating a nurturing the community; and Open Source Matters, the non profit organization responsible for managing legal, financial and organizational issues.

\r\n

', , 1, 0, 0, 33, '2010-01-10 16:10:59', 42, 'Joomla!', '2010-04-26 05:57:07', 43, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":"","article-allow_ratings":"","article-allow_comments":""}', 4, 0, 0, , , 1, 11, '{"robots":"","author":""}', 0, '*', ), (24, 143, 'Using Joomla!', 'using-joomla', , '

With Joomla! You can create anything from a simple personal website to a complex ecommerce or social site with millions of visitors.

', , 1, 0, 0, 31, '2010-01-10 16:16:02', 42, , '2010-05-16 20:23:47', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 3, 0, 7, , , 1, 117, '{"robots":"","author":""}', 0, '*', ), (25, 138, 'Typography', 'typography', , '

H1 ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmonpqrstuvwzyz

\r\n

H2 ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmonpqrstuvwzyz

\r\n

H3 ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmonpqrstuvwzyz

\r\n

H4 ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmonpqrstuvwzyz

\r\n

H5 ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmonpqrstuvwzyz

\r\n

H6 ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmonpqrstuvwzyz

\r\n

P The quick brown fox ran over the lazy dog. THE QUICK BROWN FOX RAN OVER THE LAZY DOG.

\r\n

    \r\n
  • Item
  • \r\n
  • Item
  • \r\n
  • Item
    \r\n
      \r\n
    • Item
    • \r\n
    • Item
    • \r\n
    • Item
      \r\n
        \r\n
      • Item
      • \r\n
      • Item
      • \r\n
      • Item
      • \r\n
      \r\n
    • \r\n
    \r\n
  • \r\n

\r\n

    \r\n
  1. tem
  2. \r\n
  3. Item
  4. \r\n
  5. Item
      \r\n
    1. Item
    2. \r\n
    3. Item
    4. \r\n
    5. Item
        \r\n
      1. Item
      2. \r\n
      3. Item
      4. \r\n
      5. Item
      6. \r\n
    6. \r\n
  6. \r\n

\r\n

\r\n', '\r\n

', 1, 0, 0, 41, '2010-01-10 17:12:21', 42, , '2010-06-07 16:32:48', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"0","link_category":"0","show_parent_category":"","link_parent_category":"","show_author":"0","show_create_date":"0","show_modify_date":"0","show_publish_date":"0","show_readmore":"","show_print_icon":"1","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":"","article-allow_ratings":"","article-allow_comments":""}', 4, 0, 5, , 'Typography page for Joomla! templates.', 1, 20, '{"robots":"","author":""}', 0, '*', ), (26, 72, 'Site Map', 'site-map', , '

{loadposition sitemapload}

\r\n

By putting all of your content into nested categories you can give users and search engines access to everything using a menu.

', , 1, 0, 0, 29, '2010-01-10 19:00:52', 42, 'Joomla!', '2010-05-16 10:57:09', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 16, 0, 0, , , 1, 103, '{"robots":"","author":"","rights":""}', 0, '*', ), (27, 73, 'Archive Module', 'archive-module', , '

This module shows a list of the calendar months containing archived articles. After you have changed the status of an article to archived, this list will be automatically generated. <a href="http://docs.joomla.org/Screen.modulessite.edit.15#Archived_Content" title="Archive Module">Help</a>

\r\n

{loadposition archiveload}

', , 1, 0, 0, 40, '2010-01-11 01:05:22', 42, 'Joomla!', '2010-06-07 13:15:53', 42, 0, '0000-00-00 00:00:00', '2010-06-07 01:21:36', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 13, 0, 11, , , 1, 33, '{"robots":"","author":"","rights":""}', 0, '*', ), (28, 77, 'Latest Articles Module', 'latest-articles-module', , '

This Module shows a list of the most recently published and current Articles. Some that are shown may have expired even though they are the most recent. <a href="http://docs.joomla.org/Help15:Screen.modulessite.edit.15#Latest_News" title="Latest Articles">Help</a>

\r\n

{loadposition articleslatestload}

', , 1, 0, 0, 40, '2010-01-11 01:05:22', 42, 'Joomla!', '2010-06-07 13:17:38', 42, 0, '0000-00-00 00:00:00', '2010-06-07 10:06:51', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 8, 0, 15, 'modules', , 1, 24, '{"robots":"","author":"","rights":""}', 0, '*', ), (30, 81, 'Most Read Content', 'most-read-content', , '

This Module shows a list of the currently published Articles which have the highest number of page views. <a href="http://docs.joomla.org/Help15:Screen.modulessite.edit.15#Most_Read_Content" title="Most Read Content">Help</a>

\r\n

{loadposition articlespopularload}

', , 1, 0, 0, 40, '2010-01-11 01:05:22', 42, 'Joomla!', '2010-06-07 13:15:41', 42, 0, '0000-00-00 00:00:00', '2010-06-07 10:43:42', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 6, 0, 16, 'modules', , 1, 47, '{"robots":"","author":"","rights":""}', 0, '*', ), (31, 94, 'Whos Online', 'whos-online', , '

The Whos Online Module displays the number of Anonymous Users (e.g. Guests) and Registered Users (ones logged in) that are currently accessing the Web site. <a href="http://docs.joomla.org/Help15:Screen.modulessite.edit.15#Who.27s_Online" title="Whos Online">Help</a>

\r\n

{loadposition whosonlineload}

', , 1, 0, 0, 40, '2010-01-11 01:05:22', 42, 'Joomla!', '2010-06-07 13:20:50', 42, 0, '0000-00-00 00:00:00', '2010-06-07 13:03:53', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 9, 0, 17, , , 1, 14, '{"robots":"","author":"","rights":""}', 0, '*', ), (32, 82, 'Newest Users', 'newest-users', , '

This module displays the latest registered users. <a href="http://docs.joomla.org/Help15:Screen.modulessite.edit.15#Newest_Users" title="Newest Users">Help</a>

\r\n

{loadposition userslatestload}

', , 1, 0, 0, 40, '2010-01-11 01:05:22', 42, 'Joomla!', '2010-06-07 13:18:03', 42, 0, '0000-00-00 00:00:00', '2010-06-07 11:33:39', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 7, 0, 18, , , 1, 10, '{"robots":"","author":"","rights":""}', 0, '*', ), (33, 75, 'Feed Display', 'feed-display', , '

This module allows the displaying of a syndicated feed. <a href="http://docs.joomla.org/Help15:Screen.modulessite.edit.15#Feed_Display" title="Feed Display Module">Help</a>

\r\n

{loadposition feeddisplayload}

', , 1, 0, 0, 40, '2010-01-11 01:05:22', 42, 'Joomla!', '2010-06-07 13:16:51', 42, 0, '0000-00-00 00:00:00', '2010-06-07 09:47:50', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 6, 0, 19, , , 1, 5, '{"robots":"","author":"","rights":""}', 0, '*', ), (34, 83, 'News Flash', 'news-flash', , '

Displays a set number based on date or a random item from a category. <a href="http://docs.joomla.org/Help15:Screen.modulessite.edit.15#NewsFlash" title="News Flash Module">Help</a>

\r\n

{loadposition newsflashload}

', , 1, 0, 0, 40, '2010-01-11 01:05:22', 42, 'Joomla!', '2010-06-07 13:18:48', 42, 0, '0000-00-00 00:00:00', '2010-06-07 10:08:44', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 9, 0, 20, , , 1, 41, '{"robots":"","author":"","rights":""}', 0, '*', ), (35, 84, 'Random Image', 'random-image', , '

This Module displays a random image from your chosen directory. <a href="http://docs.joomla.org/Help15:Screen.modulessite.edit.15#Random_Image" title="Random Image Module">Help</a>

\r\n

{loadposition randomimageload}

', , 1, 0, 0, 40, '2010-01-11 01:05:22', 42, , '2010-06-07 12:10:01', 42, 0, '0000-00-00 00:00:00', '2010-06-07 12:10:01', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 5, 0, 21, , , 1, 13, '{"robots":"","author":"","rights":""}', 0, '*', ), (36, 86, 'Search', 'search', , '

This module will display a search box. <a href="http://docs.joomla.org/Help15:Screen.modulessite.edit.15#Search" title="Search">Help</a>

\r\n

{loadposition searchload}

', , 1, 0, 0, 40, '2010-01-11 01:05:22', 42, 'Joomla!', '2010-06-07 13:19:33', 42, 0, '0000-00-00 00:00:00', '2010-06-07 12:19:06', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 5, 0, 22, , , 1, 13, '{"robots":"","author":"","rights":""}', 0, '*', ), (37, 70, 'Statistics', 'statistics', , '

The Statistics Module shows information about your server installation together with statistics on the Web site users, number of Articles in your database and the number of Web links you provide.

\r\n

{loadposition statisticsload}

', , 1, 0, 0, 40, '2010-01-11 01:05:22', 42, 'Joomla!', '2010-06-07 13:19:51', 42, 0, '0000-00-00 00:00:00', '2010-06-07 12:22:37', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 7, 0, 23, , , 1, 17, '{"robots":"","author":"","rights":""}', 0, '*', ), (38, 71, 'Syndicate', 'syndicate', , '

The syndicate module allows you to display a link that allows users to take a feed from your site. It will only display on pages for which feeds are possible. That means it will not display on single article, contact or weblinks pages, such as this one. <a href="http://docs.joomla.org/Help15:Screen.modulessite.edit.15#Syndicate" title="Synicate Module">Help</a>

\r\n

[screen shot]

\r\n

{loadposition syndicateload}

', , 1, 0, 0, 40, '2010-01-11 01:05:22', 42, 'Joomla!', '2010-06-07 13:19:57', 42, 0, '0000-00-00 00:00:00', '2010-06-07 12:27:46', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 6, 0, 24, , , 1, 14, '{"robots":"","author":"","rights":""}', 0, '*', ), (39, 93, 'Wrapper', 'wrapper', , '

This module shows an iFrame window to specified location. <a href="http://docs.joomla.org/Help15:Screen.modulessite.edit.15#Wrapper" title="Wrapper Module">Help</a>

\r\n

{loadposition wrapperload}

', , 1, 0, 0, 40, '2010-01-11 01:05:22', 42, 'Joomla!', '2010-06-07 13:21:02', 42, 0, '0000-00-00 00:00:00', '2010-06-07 13:08:11', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 5, 0, 25, , , 1, 17, '{"robots":"","author":"","rights":""}', 0, '*', ), (40, 79, 'Menu', 'menu', , '

This module displays a menu on the site (frontend).

\r\n

{loadposition menuload}

', , 1, 0, 0, 40, '2010-01-11 01:05:22', 42, 'Joomla!', '2010-06-07 10:22:14', 42, 0, '0000-00-00 00:00:00', '2010-06-07 10:21:50', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 5, 0, 26, , , 1, 11, '{"robots":"","author":"","rights":""}', 0, '*', ), (41, 74, 'Banner', 'banner', , '

{loadposition bannersload}

', , 1, 0, 0, 40, '2010-01-11 01:05:22', 42, 'Joomla!', '2010-06-07 13:16:14', 42, 0, '0000-00-00 00:00:00', '2010-06-07 13:16:14', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 5, 0, 14, , , 1, 21, '{"robots":"","author":"","rights":""}', 0, '*', ), (42, 78, 'Login', 'login', , '

This module displays a username and password login form. It also displays a link to retrieve a forgotten password. If user registration is enabled (in the Global Configuration settings), another link will be shown to enable self-registration for users. <a href="http://docs.joomla.org/Help15:Screen.modulessite.edit.15#Login" title="Login">Help</a>

\r\n

{loadposition loginload}

', , 1, 0, 0, 40, '2010-01-11 01:05:22', 42, , '2010-06-07 10:23:10', 42, 0, '0000-00-00 00:00:00', '2010-06-07 10:20:11', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 5, 0, 13, , , 1, 16, '{"robots":"","author":"","rights":""}', 0, '*', ), (43, 76, 'Footer', 'footer', , '

This module shows the Joomla! copyright information. <a href="http://docs.joomla.org/Help15:Screen.modulessite.edit.15#Footer" title="Footer Module">Help</a>

\r\n

{loadposition footerload}

', , 1, 0, 0, 40, '2010-01-11 01:05:22', 42, 'Joomla!', '2010-06-07 13:17:21', 42, 0, '0000-00-00 00:00:00', '2010-06-07 10:00:23', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 5, 0, 10, , , 1, 8, '{"robots":"","author":"","rights":""}', 0, '*', );

INSERT INTO `jos_content` (`id`, `asset_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`, `featured`, `language`, `xreference`) VALUES

(55, 85, 'Related Items', 'related-items', , '

This Module displays other Articles that are related to the one currently being viewed. These relations are established by the Meta Keywords. All the keywords of the current Article are searched against all the keywords of all other published articles. <a href="http://docs.joomla.org/Help15:Screen.modulessite.edit.15#Related_Articles" title="Related Items Module">Help</a>

\r\n

{loadposition relateditemsload}

\r\n', , 1, 0, 0, 40, '2010-01-12 04:23:22', 42, 'Joomla!', '2010-06-07 13:19:21', 42, 0, '0000-00-00 00:00:00', '2010-06-07 12:14:57', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 5, 0, 6, 'modules', , 1, 31, '{"robots":"","author":"","rights":""}', 0, '*', ), (47, 139, 'System', 'system', , '

System plugins operate every time a page on your site loads. They control such things as your URLS, whether users can check a "remember me" box on the login module, and whether caching is enabled. New in 1.6 is the redirect plugin that with the redirect component assist you in managing changes in URLs.

\r\n

Default on:

\r\n

    \r\n
  • Remember me
  • \r\n
  • SEF
  • \r\n
  • Debug
  • \r\n

\r\n

Default off:

\r\n

    \r\n
  • Cache
  • \r\n
  • Log
  • \r\n
  • Redirect
  • \r\n

\r\n


', , 1, 0, 0, 43, '2010-01-11 15:42:12', 42, , '2010-06-08 03:24:07', 42, 0, '0000-00-00 00:00:00', '2010-06-07 19:12:53', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 8, 0, 1, , , 1, 6, '{"robots":"","author":""}', 0, '*', ), (48, 120, 'Authentication', 'authentication', , '

The authentication plugins operate when users login to your site or administrator. The Joomla! authentication is in operation by default but you can enable Gmail, LDAP or OpenID or install a plugin for a different system.

\r\n

Default on:

\r\n

\r\n

    \r\n
  • Joomla
  • \r\n

\r\n

\r\n

Default off:

\r\n

\r\n

    \r\n
  • Gmail
  • \r\n
  • LDAP
  • \r\n
  • OpenID
  • \r\n

\r\n

', , 1, 0, 0, 43, '2010-01-11 15:43:13', 42, 'Joomla!', '2010-06-07 19:35:17', 42, 0, '0000-00-00 00:00:00', '2010-06-07 19:35:17', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 3, 0, 2, , , 1, 4, '{"robots":"","author":""}', 0, '*', ), (49, 124, 'Content', 'content', , '

Content plugins run when specific kinds of pages are loaded. They do things ranging from protecting email addresses from harvesters to creating page breaks.

\r\n

Default on:

\r\n

\r\n

    \r\n
  • Email Cloaking
  • \r\n
  • Load Module
  • \r\n
  • Page Break
  • \r\n
  • Page Navigation
  • \r\n
  • Rating
  • \r\n

\r\n

\r\n

Default off:

\r\n

\r\n

    \r\n
  • Code Highlighting (Geshi)
  • \r\n

\r\n

', , 1, 0, 0, 43, '2010-01-11 15:45:31', 42, 'Joomla!', '2010-06-07 19:49:13', 42, 0, '0000-00-00 00:00:00', '2010-06-07 19:49:13', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 2, 0, 3, , , 1, 5, '{"robots":"","author":""}', 0, '*', ), (50, 125, 'Editors', 'editors', , '

Editors are used thoughout Joomla! where content is created. TinyMCE is the default choice in most locations although CodeMirror is used in the template manager. No Editor provides a text box for html content.

\r\n

Default on:

\r\n

    \r\n
  • CodeMirror
  • \r\n
  • TinyMCE
  • \r\n
  • No Editor
  • \r\n

\r\n

Default off:

\r\n

    \r\n
  • None
  • \r\n

\r\n

', , 1, 0, 0, 43, '2010-01-11 15:47:52', 42, , '2010-06-08 02:45:23', 42, 0, '0000-00-00 00:00:00', '2010-06-07 19:54:10', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 6, 0, 4, , , 1, 4, '{"robots":"","author":""}', 0, '*', ), (51, 126, 'Editors-xtd', 'editors-xtd', , '

These plugins are behind the buttons found beneath your editor. They only run when an editor plugin runs.

\r\n

Default on:

\r\n

    \r\n
  • Editor Button: Image
  • \r\n
  • Editor Button: Readmore
  • \r\n
  • Editor Button: Page Break
  • \r\n
  • Editor Button: Article
  • \r\n

\r\n

Default off:

\r\n

    \r\n
  • None
  • \r\n

', , 1, 0, 0, 43, '2010-01-11 15:57:14', 42, , '2010-06-08 03:29:19', 42, 0, '0000-00-00 00:00:00', '2010-06-07 19:59:09', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 8, 0, 5, , , 1, 3, '{"robots":"","author":""}', 0, '*', ), (52, 136, 'Search', 'search', , '

The search component uses plugins to control which parts of your Joomla! site are searched. You may choose to turn off some areas to improve performance or for other reasons. Many third party Joomla! extensions have search plugins that extend where search takes place.

\r\n

Default On:

\r\n

    \r\n
  • Content
  • \r\n
  • Contacts
  • \r\n
  • Weblinks
  • \r\n
  • News Feeds
  • \r\n
  • Categories
  • \r\n

', , 1, 0, 0, 43, '2010-01-11 17:25:41', 42, , '2010-06-08 02:46:19', 42, 0, '0000-00-00 00:00:00', '2010-06-07 19:07:00', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 5, 0, 6, , , 1, 3, '{"robots":"","author":""}', 0, '*', ), (53, 144, 'User', 'user', , '

Default on:

  • Joomla

Default off:

Two new plugins are available in 1.6 but are disabled by default.

  • Contact Creator
    Creates a new linked contact record for each new user created.
  • Profile
    This example profile plugin allows you to insert additional fields into user registration and profile display. This is intended as an example of the types of extensions to the profile you might want to create.
  • ',
    , 1, 0, 0, 43, '2010-01-11 17:30:01', 42, , '2010-05-01 20:27:47', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":"","article-allow_ratings":"","article-allow_comments":""}', 3, 0, 7, , , 1, 4, '{"robots":"","author":""}', 0, '*', ), (54, 145, 'Whats New in 1.5?', 'whats-new-in-15', , , '\r\n

    As with previous releases, Joomla! provides a unified and easy-to-use framework for delivering content for Web sites 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.

    \r\n

    In Joomla! 1.5, youll notice:

    \r\n

    Substantially improved usability, manageability, and scalability far beyond the original Mambo foundations

    \r\n

    \r\n

    Expanded accessibility to support internationalisation, double-byte characters and right-to-left support for Arabic, Farsi, and Hebrew languages among others

    \r\n
  • Extended integration of external applications through Web services and remote authentication such as the Lightweight Directory Access Protocol (LDAP)\r\n

    \r\n
  • \r\n
  • Enhanced content delivery, template and presentation capabilities to support accessibility standards and content delivery to any destination\r\n

    \r\n
  • \r\n

    n

    \r\n
  • \r\n

    A more sustainable and flexible framework for Component and Extension developers

    \r\n
  • \r\n
  • \r\n

    Backward compatibility with previous releases of Components, Templates, Modules, and other Extensions

    \r\n
  • ', 2, 0, 0, 31, '2010-01-12 03:51:04', 42, , '2010-04-26 05:28:18', 43, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":"","article-allow_ratings":"","article-allow_comments":""}', 3, 0, 8, , , 1, 2, '{"robots":"","author":""}', 0, '*', ), (56, 43, 'Koala', 'koala', , '

    <img src="images/sampledata/parks/animals/180px_koala_ag1.jpg" border="0" alt="Koala Thumbnail" width="180" height="123" style="vertical-align: middle; border: 0;" />

    \r\n', '\r\n

    <img src="images/sampledata/parks/animals/800px_koala_ag1.jpg" border="0" alt="Koala Climbing Tree" width="500" height="341" style="vertical-align: middle; border: 0;" />

    \r\n

    \r\n

    \r\n

    Source: http://commons.wikimedia.org/wiki/File:Koala-ag1.jpg

    \r\n

    Author: Arnaud Gaillard

    \r\n

    License: Creative Commons Share Alike Attribution Generic 1.0

    ', 1, 0, 0, 37, '2010-01-23 18:18:52', 42, 'Park Fan', '2010-05-13 02:19:00', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00',
    , , '{"show_title":"","link_titles":"","show_intro":"0","show_category":"0","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"0","show_create_date":"0","show_modify_date":"0","show_publish_date":"0","show_readmore":"1","show_print_icon":"0","show_email_icon":"0","show_hits":"","page_title":"","alternative_readmore":"Full size koala","layout":""}', 11, 0, 1, , , 1, 17, '{"robots":"","author":""}', 0, 'en-GB', ), (57, 44, 'Wobbegone', 'wobbegone', , '

    <img src="images/sampledata/parks/animals/180px_wobbegong.jpg" border="0" alt="Wobbegone" style="vertical-align: middle; border: 0;" />

    \r\n', '\r\n

    <img src="images/sampledata/parks/animals/800px_wobbegong.jpg" border="0" style="vertical-align: middle; border: 0;" />

    \r\n

    Source: http://en.wikipedia.org/wiki/File:Wobbegong.jpg

    \r\n

    Author: Richard Ling

    \r\n

    Rights: GNU Free Documentation License v 1.2 or later

    ', 1, 0, 0, 37, '2010-01-23 18:30:58', 42, 'Park Fan', '2010-05-13 02:19:29', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00',
    , , '{"show_title":"","link_titles":"","show_intro":"0","show_category":"0","link_category":"0","show_parent_category":"","link_parent_category":"","show_author":"0","show_create_date":"0","show_modify_date":"0","show_publish_date":"0","show_readmore":"1","show_print_icon":"0","show_email_icon":"0","show_hits":"","page_title":"","alternative_readmore":"Full size wobbegone","layout":""}', 9, 0, 2, , , 1, 9, '{"robots":"","author":""}', 0, 'en-GB', ), (58, 45, 'Phyllopteryx', 'phyllopteryx', , '

    <img src="images/sampledata/parks/animals/200px_phyllopteryx_taeniolatus1.jpg" border="0" style="vertical-align: middle;" />

    \r\n

    \r\n', '\r\n

    <img src="images/sampledata/parks/animals/800px_phyllopteryx_taeniolatus1.jpg" border="0" style="vertical-align: middle;" />

    \r\n

    \r\n

    Source: http://en.wikipedia.org/wiki/File:Phyllopteryx_taeniolatus1.jpg

    \r\n

    Author: Richard Ling

    \r\n

    License: GNU Free Documentation License v 1.2 or later

    ', 1, 0, 0, 37, '2010-01-23 19:00:03', 42, 'Park Fan', '2010-05-13 02:19:11', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00',
    , , '{"show_title":"","link_titles":"","show_intro":"1","show_category":"0","link_category":"0","show_parent_category":"","link_parent_category":"","show_author":"0","show_create_date":"0","show_modify_date":"0","show_publish_date":"0","show_readmore":"1","show_print_icon":"0","show_email_icon":"0","show_hits":"","page_title":"","alternative_readmore":"Full size phyllopteryx","layout":""}', 9, 0, 3, , , 1, 8, '{"robots":"","author":""}', 0, 'en-GB', ), (59, 46, 'Spotted Quoll', 'spotted-quoll', , '

    <img src="images/sampledata/parks/animals/220px_spottedquoll_2005_seanmcclean.jpg" border="0" alt="Spotted Quoll" style="vertical-align: middle; border: 0;" />

    \r\n', '\r\n

    <img src="images/sampledata/parks/animals/789px_spottedquoll_2005_seanmcclean.jpg" border="0" alt="Spotted Quoll" style="vertical-align: middle;" />

    \r\n

    \r\n

    Source: http://en.wikipedia.org/wiki/File:SpottedQuoll_2005_SeanMcClean.jpg

    \r\n

    Author: Sean McClean

    \r\n

    License: GNU Free Documentation License v 1.2 or later

    ', 1, 0, 0, 37, '2010-01-23 19:09:49', 42, 'Park Fan', '2010-05-13 02:19:21', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00',
    , , '{"show_title":"","link_titles":"","show_intro":"0","show_category":"0","link_category":"0","show_parent_category":"","link_parent_category":"","show_author":"0","show_create_date":"0","show_modify_date":"0","show_publish_date":"0","show_readmore":"","show_print_icon":"0","show_email_icon":"0","show_hits":"","page_title":"","alternative_readmore":"Full size spotted quoll","layout":""}', 6, 0, 4, , , 1, 12, '{"robots":"","author":""}', 0, 'en-GB', ), (60, 47, 'Pinnacles', 'pinnacles', , '

    <img src="images/sampledata/parks/landscape/120px_pinnacles_western_australia.jpg" border="0" alt="Kings Canyon" width="120" height="90" style="vertical-align: middle; border: 0;" />

    \r\n

    \r\n', '\r\n

    <img src="images/sampledata/parks/landscape/800px_pinnacles_western_australia.jpg" border="0" alt="Kings Canyon" width="500" height="374" style="vertical-align: middle; border: 0;" />

    \r\n

    \r\n

    Source: http://commons.wikimedia.org/wiki/File:Pinnacles_Western_Australia.jpg

    \r\n

    Author: <a class="new" href="http://commons.wikimedia.org/w/index.php?title=User:Markdoe&action=edit&redlink=1" title="User:Markdoe (page does not exist)"></a>Martin Gloss

    \r\n

    License: GNU Free Documentation license v 1.2 or later.

    ', 1, 0, 0, 36, '2010-01-23 20:15:41', 42, , '2010-05-13 02:18:11', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"1","link_titles":"1","show_intro":"0","show_category":"0","link_category":"1","show_parent_category":"","link_parent_category":"","show_author":"0","show_create_date":"0","show_modify_date":"0","show_publish_date":"0","show_readmore":"1","show_print_icon":"0","show_email_icon":"0","show_hits":"","page_title":"","alternative_readmore":"Full size Pinnacles","layout":""}', 9, 0, 1, , , 1, 4, '{"robots":"","author":""}', 0, 'en-GB', ), (61, 48, 'Ormiston Pound', 'ormiston-pound', , '

    <img src="images/sampledata/parks/landscape/180px_ormiston_pound.jpg" border="0" alt="Ormiston Pound" style="border: 0;" />

    \r\n

    \r\n', '\r\n

    <img src="images/sampledata/parks/landscape/800px_ormiston_pound.jpg" border="0" alt="Ormiston Pound" height="375" style="vertical-align: middle; border: 0;" />

    \r\n

    \r\n

    Source: http://commons.wikimedia.org/wiki/File:Ormiston_Pound.JPG

    \r\n

    Author:

    \r\n

    License: GNU Free Public Documentation License

    ', 1, 0, 0, 36, '2010-01-23 20:53:40', 42,
    , '2010-05-13 02:18:03', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"0","show_category":"0","link_category":"1","show_parent_category":"","link_parent_category":"","show_author":"0","show_create_date":"0","show_modify_date":"0","show_publish_date":"0","show_readmore":"1","show_print_icon":"0","show_email_icon":"0","show_hits":"","page_title":"","alternative_readmore":"Full Size Ormiston Pound","layout":""}', 7, 0, 2, , , 1, 6, '{"robots":"","author":""}', 0, 'en-GB', ), (62, 49, 'Blue Mountain Rain Forest', 'blue-mountain-rain-forest', , '

    <img src="images/sampledata/parks/landscape/120px_rainforest_bluemountainsnsw.jpg" border="0" alt="Rain Forest Blue Mountrains" />

    \r\n', '\r\n

    <img src="images/sampledata/parks/landscape/727px_rainforest_bluemountainsnsw.jpg" border="0" alt="Rain Forest Blue Mountrains" style="vertical-align: middle;" />

    \r\n

    \r\n

    Source: http://commons.wikimedia.org/wiki/File:Rainforest,bluemountainsNSW.jpg

    \r\n

    Author: Adam J.W.C.

    \r\n

    License: GNU Free Documentation License

    ', 1, 0, 0, 36, '2010-01-23 21:08:32', 42,
    , '2010-05-13 02:17:42', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"1","link_titles":"1","show_intro":"0","show_category":"0","link_category":"1","show_parent_category":"","link_parent_category":"","show_author":"0","show_create_date":"0","show_modify_date":"0","show_publish_date":"0","show_readmore":"1","show_print_icon":"0","show_email_icon":"0","show_hits":"","page_title":"","alternative_readmore":"Full size Blue Mountains rainforest","layout":""}', 5, 0, 3, , , 1, 2, '{"robots":"","author":""}', 0, 'en-GB', ), (63, 50, 'Cradle Mountain', 'cradle-mountain', , '

    <img src="images/sampledata/parks/landscape/250px_cradle_mountain_seen_from_barn_bluff.jpg" border="0" alt="Cradle Mountain" style="vertical-align: middle;" />

    \r\n', '\r\n

    <img src="images/sampledata/parks/landscape/800px_cradle_mountain_seen_from_barn_bluff.jpg" border="0" alt="Cradle Mountain" style="vertical-align: middle;" />

    \r\n

    \r\n

    Source: http://commons.wikimedia.org/wiki/File:Rainforest,bluemountainsNSW.jpg

    \r\n

    Author: Alan J.W.C.

    \r\n

    License: GNU Free Documentation License v . 1.2 or later

    ', 1, 0, 0, 36, '2010-01-23 21:17:34', 42,
    , '2010-05-13 02:17:53', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"1","link_titles":"1","show_intro":"0","show_category":"0","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"0","show_create_date":"0","show_modify_date":"0","show_publish_date":"0","show_readmore":"1","show_print_icon":"0","show_email_icon":"0","show_hits":"","page_title":"","alternative_readmore":"Full size Cradle Mountrain","layout":""}', 4, 0, 4, , , 1, 4, '{"robots":"","author":""}', 0, 'en-GB', ), (64, 52, 'First Blog Entry', 'first-blog-entry', , '

    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed faucibus purus vitae diam posuere nec eleifend elit dictum. Aenean sit amet erat purus, id fermentum lorem. Integer elementum tristique lectus, non posuere quam pretium sed. Quisque scelerisque erat at urna condimentum euismod. Fusce vestibulum facilisis est, a accumsan massa aliquam in. In auctor interdum mauris a luctus. Morbi euismod tempor dapibus. Duis dapibus posuere quam. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. In eu est nec erat sollicitudin hendrerit. Pellentesque sed turpis nunc, sit amet laoreet velit. Praesent vulputate semper nulla nec varius. Aenean aliquam, justo at blandit sodales, mauris leo viverra orci, sed sodales mauris orci vitae magna.

    \r\n', '\r\n

    Quisque a massa sed libero tristique suscipit. Morbi tristique molestie metus, vel vehicula nisl ultrices pretium. Sed sit amet est et sapien condimentum viverra. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Phasellus viverra tortor porta orci convallis ac cursus erat sagittis. Vivamus aliquam, purus non luctus adipiscing, orci urna imperdiet eros, sed tincidunt neque sapien et leo. Cras fermentum, dolor id tempor vestibulum, neque lectus luctus mauris, nec congue tellus arcu nec augue. Nulla quis mi arcu, in bibendum quam. Sed placerat laoreet fermentum. In varius lobortis consequat. Proin vulputate felis ac arcu lacinia adipiscing. Morbi molestie, massa id sagittis luctus, sem sapien sollicitudin quam, in vehicula quam lectus quis augue. Integer orci lectus, bibendum in fringilla sit amet, rutrum eget enim. Curabitur at libero vitae lectus gravida luctus. Nam mattis, ligula sit amet vestibulum feugiat, eros sem sodales mi, nec dignissim ante elit quis nisi. Nulla nec magna ut leo convallis sagittis ac non erat. Etiam in augue nulla, sed tristique orci. Vestibulum quis eleifend sapien.

    \r\n

    Nam ut orci vel felis feugiat posuere ut eu lorem. In risus tellus, sodales eu eleifend sed, imperdiet id nulla. Nunc at enim lacus. Etiam dignissim, arcu quis accumsan varius, dui dui faucibus erat, in molestie mauris diam ac lacus. Sed sit amet egestas nunc. Nam sollicitudin lacinia sapien, non gravida eros convallis vitae. Integer vehicula dui a elit placerat venenatis. Nullam tincidunt ligula aliquet dui interdum feugiat. Maecenas ultricies, lacus quis facilisis vehicula, lectus diam consequat nunc, euismod eleifend metus felis eu mauris. Aliquam dapibus, ipsum a dapibus commodo, dolor arcu accumsan neque, et tempor metus arcu ut massa. Curabitur non risus vitae nisl ornare pellentesque. Pellentesque nec ipsum eu dolor sodales aliquet. Vestibulum egestas scelerisque tincidunt. Integer adipiscing ultrices erat vel rhoncus.

    \r\n

    Integer ac lectus ligula. Nam ornare nisl id magna tincidunt ultrices. Phasellus est nisi, condimentum at sollicitudin vel, consequat eu ipsum. In venenatis ipsum in ligula tincidunt bibendum id et leo. Vivamus quis purus massa. Ut enim magna, pharetra ut condimentum malesuada, auctor ut ligula. Proin mollis, urna a aliquam rutrum, risus erat cursus odio, a convallis enim lectus ut lorem. Nullam semper egestas quam non mattis. Vestibulum venenatis aliquet arcu, consectetur pretium erat pulvinar vel. Vestibulum in aliquet arcu. Ut dolor sem, pellentesque sit amet vestibulum nec, tristique in orci. Sed lacinia metus vel purus pretium sit amet commodo neque condimentum.

    \r\n

    Aenean laoreet aliquet ullamcorper. Nunc tincidunt luctus tellus, eu lobortis sapien tincidunt sed. Donec luctus accumsan sem, at porttitor arcu vestibulum in. Sed suscipit malesuada arcu, ac porttitor orci volutpat in. Vestibulum consectetur vulputate eros ut porttitor. Aenean dictum urna quis erat rutrum nec malesuada tellus elementum. Quisque faucibus, turpis nec consectetur vulputate, mi enim semper mi, nec porttitor libero magna ut lacus. Quisque sodales, leo ut fermentum ullamcorper, tellus augue gravida magna, eget ultricies felis dolor vitae justo. Vestibulum blandit placerat neque, imperdiet ornare ipsum malesuada sed. Quisque bibendum quam porta diam molestie luctus. Sed metus lectus, ornare eu vulputate vel, eleifend facilisis augue. Maecenas eget urna velit, ac volutpat velit. Nam id bibendum ligula. Donec pellentesque, velit eu convallis sodales, nisi dui egestas nunc, et scelerisque lectus quam ut ipsum.

    ', 1, 0, 0, 35, '2010-01-23 22:41:36', 42,
    , '2010-05-16 12:22:46', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 3, 0, 1, , , 1, 1, '{"robots":"","author":""}', 0, 'en-GB', ), (65, 53, 'Second Blog Post', 'second-blog-post', , '

    Pellentesque bibendum metus ut dolor fermentum ut pulvinar tortor hendrerit. Nam vel odio vel diam tempus iaculis in non urna. Curabitur scelerisque, nunc id interdum vestibulum, felis elit luctus dui, ac dapibus tellus mauris tempus augue. Duis congue facilisis lobortis. Phasellus neque erat, tincidunt non lacinia sit amet, rutrum vitae nunc. Sed placerat lacinia fermentum. Integer justo sem, cursus id tristique eget, accumsan vel sapien. Curabitur ipsum neque, elementum vel vestibulum ut, lobortis a nisl. Fusce malesuada mollis purus consectetur auctor. Morbi tellus nunc, dapibus sit amet rutrum vel, laoreet quis mauris. Aenean nec sem nec purus bibendum venenatis. Mauris auctor commodo libero, in adipiscing dui adipiscing eu. Praesent eget orci ac nunc sodales varius.

    \r\n', '\r\n

    Nam eget venenatis lorem. Vestibulum a interdum sapien. Suspendisse potenti. Quisque auctor purus nec sapien venenatis vehicula malesuada velit vehicula. Fusce vel diam dolor, quis facilisis tortor. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Pellentesque libero nisi, pellentesque quis cursus sit amet, vehicula vitae nisl. Curabitur nec nunc ac sem tincidunt auctor. Phasellus in mattis magna. Donec consequat orci eget tortor ultricies rutrum. Mauris luctus vulputate molestie. Proin tincidunt vehicula euismod. Nam congue leo non erat cursus a adipiscing ipsum congue. Nulla iaculis purus sit amet turpis aliquam sit amet dapibus odio tincidunt. Ut augue diam, congue ut commodo pellentesque, fermentum mattis leo. Sed iaculis urna id enim dignissim sodales at a ipsum. Quisque varius lobortis mollis. Nunc purus magna, pellentesque pellentesque convallis sed, varius id ipsum. Etiam commodo mi mollis erat scelerisque fringilla. Nullam bibendum massa sagittis diam ornare rutrum.

    \r\n

    Praesent convallis metus ut elit faucibus tempus in quis dui. Donec fringilla imperdiet nibh, sit amet fringilla velit congue et. Quisque commodo luctus ligula, vitae porttitor eros venenatis in. Praesent aliquet commodo orci id varius. Nulla nulla nibh, varius id volutpat nec, sagittis nec eros. Cras et dui justo. Curabitur malesuada facilisis neque, sed tempus massa tincidunt ut. Sed suscipit odio in lacus auctor vehicula non ut lacus. In hac habitasse platea dictumst. Sed nulla nisi, lacinia in viverra at, blandit vel tellus. Nulla metus erat, ultrices non pretium vel, varius nec sem. Morbi sollicitudin mattis lacus quis pharetra. Donec tincidunt mollis pretium. Proin non libero justo, vitae mattis diam. Integer vel elit in enim varius posuere sed vitae magna. Duis blandit tempor elementum. Vestibulum molestie dui nisi.

    \r\n

    Curabitur volutpat interdum lorem sed tempus. Sed placerat quam non ligula lacinia sodales. Cras ultrices justo at nisi luctus hendrerit. Quisque sit amet placerat justo. In id sapien eu neque varius pharetra sed in sapien. Etiam nisl nunc, suscipit sed gravida sed, scelerisque ut nisl. Mauris quis massa nisl, aliquet posuere ligula. Etiam eget tortor mauris. Sed pellentesque vestibulum commodo. Mauris vitae est a libero dapibus dictum fringilla vitae magna.

    \r\n

    Nulla facilisi. Praesent eget elit et mauris gravida lobortis ac nec risus. Ut vulputate ullamcorper est, volutpat feugiat lacus convallis non. Maecenas quis sem odio, et aliquam libero. Integer vel tortor eget orci tincidunt pulvinar interdum at erat. Integer ullamcorper consequat eros a pellentesque. Cras sagittis interdum enim in malesuada. Etiam non nunc neque. Fusce non ligula at tellus porta venenatis. Praesent tortor orci, fermentum sed tincidunt vel, varius vel dui. Duis pulvinar luctus odio, eget porta justo vulputate ac. Nulla varius feugiat lorem sed tempor. Phasellus pulvinar dapibus magna eget egestas. In malesuada lectus at justo pellentesque vitae rhoncus nulla ultrices. Proin ut sem sem. Donec eu suscipit ipsum. Cras eu arcu porttitor massa feugiat aliquet at quis nisl.

    ', 1, 0, 0, 35, '2010-01-23 22:44:09', 42,
    , '2010-05-16 12:30:27', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 4, 0, 2, , , 1, 4, '{"robots":"","author":""}', 0, 'en-GB', ), (66, 62, 'Articles Modules', 'content-modules', , '

    Content modules display article and other information from the content component.

    ',
    , 1, 0, 0, 40, '2010-03-04 00:05:49', 42, 'Joomla!', '2010-06-07 13:16:05', 42, 0, '0000-00-00 00:00:00', '2010-06-07 13:16:05', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 4, 0, 1, , , 1, 38, '{"robots":"","author":"","rights":""}', 0, '*', ), (67, 63, 'User Modules', 'user-modules', , '

    User modules interact with the user system, allowing users to login, showing who is logged in, and showing the most recently registered users.

    \r\n', '\r\n

    ', 1, 0, 0, 40, '2010-03-04 01:25:09', 42, 'Joomla!', '2010-06-07 13:20:03', 42, 0, '0000-00-00 00:00:00', '2010-06-07 13:20:03', '0000-00-00 00:00:00',
    , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 3, 0, 2, , , 1, 15, '{"robots":"","author":"","rights":""}', 0, '*', ), (68, 64, 'Display Modules', 'display-modules', , '

    These modules display information from other components.

    \r\n', '\r\n

    ', 1, 0, 0, 40, '2010-03-04 01:56:54', 42, 'Joomla!', '2010-06-07 13:16:43', 42, 0, '0000-00-00 00:00:00', '2010-06-07 13:16:43', '0000-00-00 00:00:00',
    , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 3, 0, 3, , , 1, 7, '{"robots":"","author":"","rights":""}', 0, '*', ), (69, 65, 'Utility Modules', 'utility-modules', , '

    Utility modules provide useful functionality such as search, syndication, and statistics.

    \r\n', '\r\n

    ', 1, 0, 0, 40, '2010-03-04 03:24:05', 42, 'Joomla!', '2010-06-07 13:20:09', 42, 0, '0000-00-00 00:00:00', '2010-06-07 13:20:09', '0000-00-00 00:00:00',
    , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 3, 0, 4, , , 1, 21, '{"robots":"","author":"","rights":""}', 0, '*', ), (70, 66, 'Menus', 'menus', , '

    Menus provide navigation and structure to your site.

    ',
    , 1, 0, 0, 40, '2010-03-04 03:36:41', 42, 'Joomla!', '2010-06-07 13:18:13', 42, 0, '0000-00-00 00:00:00', '2010-06-07 13:18:13', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 4, 0, 5, , , 1, 12, '{"robots":"","author":"","rights":""}', 0, '*', ), (71, 67, 'Custom HTML', 'custom-html', , '

    This Module allows you to create your own HTML Module using a WYSIWYG editor. <a href="http://docs.joomla.org/Help15:Screen.modulessite.edit.15#Custom_HTML" title="Custom HTML Module">Help</a>

    \r\n

    {loadposition customload}

    \r\n', '\r\n

    ', 1, 0, 0, 40, '2010-03-04 03:46:39', 42, 'Joomla!', '2010-06-07 09:30:22', 42, 0, '0000-00-00 00:00:00', '2010-06-07 09:29:04', '0000-00-00 00:00:00',
    , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 5, 0, 8, , , 1, 10, '{"robots":"","author":"","rights":""}', 0, '*', ), (72, 68, 'Weblinks Module', 'weblinks-module', , '

    This module displays the list of weblinks in a category. <a href="http://docs.joomla.org/Help15:Screen.modulessite.edit.15#Weblinks" title="Weblinks Module">Help</a>

    \r\n

    {loadposition weblinksload}

    ',
    , 1, 0, 0, 40, '2010-03-04 03:49:23', 42, 'Joomla!', '2010-06-07 13:01:12', 42, 0, '0000-00-00 00:00:00', '2010-06-07 13:01:12', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 4, 0, 9, , , 1, 9, '{"robots":"","author":"","rights":""}', 0, '*', ), (73, 69, 'Breadcrumbs', 'breadcrumbs', , '

    Breadcrumbs provide a pathway for users to navigate through the site. <a href="http://docs.joomla.org/Help15:Screen.modulessite.edit.15#Breadcrumbs" title="Breacrumbs Module">Help</a>

    \r\n

    {loadposition breadcrumbsload}

    \r\n', '\r\n

    ', 1, 0, 0, 40, '2010-03-04 03:54:50', 42, 'Joomla!', '2010-06-07 13:16:24', 42, 0, '0000-00-00 00:00:00', '2010-06-07 09:23:22', '0000-00-00 00:00:00',
    , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 6, 0, 12, , , 1, 13, '{"robots":"","author":"","rights":""}', 0, '*', ), (74, 87, 'Beez 2', 'template-1', , '

    Beez 2 is a versatile, easy to customize template that works for a variety of sites. It meets xxx accessibility standards and demonstrates a range of css and javascript techniques.

    \r\n

    [screen shot]

    \r\n

    ',
    , 1, 0, 0, 41, '2010-03-14 15:09:03', 42, 'Joomla!', '2010-06-07 16:47:48', 42, 0, '0000-00-00 00:00:00', '2010-06-07 16:47:48', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 5, 0, 1, , , 1, 14, '{"robots":"","author":"","rights":""}', 0, '*', ), (76, 89, 'Atomic', 'atomic', , '

    Atomic is a minimal template designed to be a skeleton for making your own template and to learn about Joomla! templating.

    \r\n

    [screen shot]

    \r\n',
    , 1, 0, 0, 41, '2010-03-14 15:13:33', 42, , '2010-06-07 16:32:48', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":"","article-allow_ratings":"","article-allow_comments":""}', 2, 0, 3, , , 1, 11, '{"robots":"","author":"","rights":""}', 0, '*', ), (78, 91, 'Milky Way', 'milky-way', , '

    Milky Way is the default template for Joomla! 1.5. You can find all of the old layouts in the _html folder if you need them for your upgraded sites.

    \r\n

    <img src="templates/rhuk_milkyway/template_thumbnail.png" border="0" alt="Milky Way Image" width="206" height="150" style="vertical-align: middle;" />

    \r\n',
    , 1, 0, 0, 41, '2010-03-14 15:17:02', 42, , '2010-06-07 16:32:48', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":"","article-allow_ratings":"","article-allow_comments":""}', 2, 0, 4, , , 1, 14, '{"robots":"","author":"","rights":""}', 0, '*', ), (79, 112, 'Fruit Shop', 'fruit-shop', , '

    Welcome to the Fruit Shop

    \r\n


    \r\n

    We sell fruits from around the world. Please use our website to learn more about our business. We hope you will come to our shop and buy some fruit.

    \r\n

    This mini site will show you how you might want to set up a site for a business, in this case one selling fruit. It shows how to use access controls to manage your site content. If you were building a real site, you would might want to extend it with e-commerce, a catalog, mailing lists or other enhancements, many of which are available through the<a href="http://extensions.joomla.org" style="color: #1b57b1; text-decoration: none; font-weight: normal;"> Joomla! Extensions Directory</a>.

    \r\n

    To understand this site you will probably want to make one user with groups set to customer and one with group set to grower. By logging in with different privileges you can see how access control works.

    \r\n


    \r\n',
    , 1, 0, 0, 75, '2010-03-22 00:32:45', 42, , '2010-04-25 21:48:59', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":"","article-allow_ratings":"","article-allow_comments":""}', 4, 0, 1, , , 1, 96, '{"robots":"","author":"","rights":""}', 0, '*', ), (80, 115, 'Happy Orange Orchard', 'happy-orange-orchard', , '

    At our orchard we grow the worlds best oranges as well as other citrus fruit such as lemons and grapefruit. Our family has been tending this orchard for generations.

    \r\n', , 1, 0, 0, 76, '2010-03-26 14:34:21', 42, , '2010-04-25 21:48:59', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":"","article-allow_ratings":"","article-allow_comments":""}', 2, 0, 1, , , 1, 11, '{"robots":"","author":"","rights":""}', 0, '*', ), (81, 116, 'Wonderful Watermelon', 'wonderful-watermelon', , '

    Watermelon is a wonderful and healthy treat. We grow the worlds sweetest watermelon. We have the largest watermelon patch in our country.

    \r\n', , 1, 0, 0, 76, '2010-03-26 14:44:26', 44, , '2010-03-26 15:34:22', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":"","article-allow_ratings":"","article-allow_comments":""}', 3, 0, 2, , , 1, 4, '{"robots":"","author":"","rights":""}', 0, '*', ), (82, 117, 'Directions', 'directions', , '

    Heres how to find our shop.

    \r\n

    \r\n

    By car

    \r\n

    By foot

    \r\n

    By bus

    \r\n

    \r\n', , 1, 0, 0, 75, '2010-03-26 16:26:52', 42, , '2010-04-25 21:48:58', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":"","article-allow_ratings":"","article-allow_comments":""}', 2, 0, 2, , , 1, 13, '{"robots":"","author":"","rights":""}', 0, '*', ), (83, 146, 'Administrator Components', 'administrator-components', , '

    All components also are used in the administrator area of your website. In addition to the ones listed here, there are components in the administrator that do not have direct front end displays, but do help shape your site. The most important ones for most users are:

    \r\n
      \r\n
    • Media Manager
    • \r\n
    • Extensions Manager
    • \r\n
    • Menu Manager
    • \r\n
    • Configuration
    • \r\n
    • Banners
    • \r\n
    \r\n', '\r\n

    Media Manager

    \r\n

    \r\n

    \r\n

    Extensions Manager

    \r\n

    Menu Manager

    \r\n

    Configuration

    \r\n

    Banners

    ', 1, 0, 0, 39, '2010-01-10 15:28:15', 42, 'Joomla!', '2010-05-16 06:58:55', 42, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00',
    , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 9, 0, 7, , , 1, 16, , 0, '*', ), (86, 159, 'Article Categories', 'article-categories-module', , '

    This module displays a list of categories from one parent category. <a href="http://docs.joomla.org/Help15:Screen.modulessite.edit.15#Categories" title="Categories Module">Help</a>

    \r\n

    {loadposition articlescategoriesload}

    ',
    , 1, 0, 0, 40, '2010-05-03 00:06:44', 42, 'Joomla!', '2010-06-07 09:21:40', 42, 0, '0000-00-00 00:00:00', '2010-06-07 09:21:39', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 8, 0, 7, , , 1, 6, , 0, '*', ), (88, 164, 'Parameters', 'parameters', , '

    As you make your Joomla! site using the extension you will control the details of the display using parameters. Parameters control everything from whether the authors name is displayed to who can view what to the number of items shown on a list.

    \r\n

    ', , 1, 0, 0, 31, '2010-05-27 20:26:52', 42, 'Joomla!', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '2010-05-27 20:26:52', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 2, 0, 0, , , 1, 3, , 0, '*', ), (90, 169, 'User', 'user', , '

    Default on:

    \r\n

    \r\n
      \r\n
    • Joomla
    • \r\n
    \r\n

    \r\n

    Default off:

    \r\n

    Two new plugins are available in 1.6 but are disabled by default.

    \r\n

    \r\n
      \r\n
    • Contact Creator

      Creates a new linked contact record for each new user created.

    • \r\n
    • Profile

      This example profile plugin allows you to insert additional fields into user registration and profile display. This is intended as an example of the types of extensions to the profile you might want to create.
    • \r\n
    \r\n

    ',
    , 1, 0, 0, 43, '2010-01-11 17:30:01', 42, , '2010-06-08 03:28:53', 42, 0, '0000-00-00 00:00:00', '2010-06-07 20:40:33', '0000-00-00 00:00:00', , , '{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_readmore":"","show_print_icon":"","show_email_icon":"","show_hits":"","page_title":"","alternative_readmore":"","layout":""}', 3, 0, 0, , , 1, 0, , 0, '*', );

    -- --------------------------------------------------------

    -- -- Table structure for table `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;

    -- -- Dumping data for table `jos_content_frontpage` --

    INSERT INTO `jos_content_frontpage` (`content_id`, `ordering`) VALUES (1, 1), (4, 2), (5, 3), (6, 4);

    -- --------------------------------------------------------

    -- -- Table structure for table `jos_content_rating` --


    CREATE TABLE IF NOT EXISTS `jos_content_rating` (

     `content_id` int(11) NOT NULL DEFAULT '0',
     `rating_sum` int(10) unsigned NOT NULL DEFAULT '0',
     `rating_count` int(10) unsigned NOT NULL DEFAULT '0',
     `lastip` varchar(50) NOT NULL DEFAULT ,
     PRIMARY KEY (`content_id`)
    

    ) ENGINE=MyISAM DEFAULT CHARSET=utf8;

    -- -- Dumping data for table `jos_content_rating` --


    -- --------------------------------------------------------

    -- -- Table structure for table `jos_core_log_searches` --


    CREATE TABLE IF NOT EXISTS `jos_core_log_searches` (

     `search_term` varchar(128) NOT NULL DEFAULT ,
     `hits` int(10) unsigned NOT NULL DEFAULT '0'
    

    ) ENGINE=MyISAM DEFAULT CHARSET=utf8;

    -- -- Dumping data for table `jos_core_log_searches` --


    -- --------------------------------------------------------

    -- -- Table structure for table `jos_extensions` --


    CREATE TABLE IF NOT EXISTS `jos_extensions` (

     `extension_id` int(11) NOT NULL AUTO_INCREMENT,
     `name` varchar(100) NOT NULL,
     `type` varchar(20) NOT NULL,
     `element` varchar(100) NOT NULL,
     `folder` varchar(100) NOT NULL,
     `client_id` tinyint(3) NOT NULL,
     `enabled` tinyint(3) NOT NULL DEFAULT '1',
     `access` tinyint(3) unsigned NOT NULL DEFAULT '1',
     `protected` tinyint(3) NOT NULL DEFAULT '0',
     `manifest_cache` text NOT NULL,
     `params` text NOT NULL,
     `custom_data` text NOT NULL,
     `system_data` text NOT NULL,
     `checked_out` int(10) unsigned NOT NULL DEFAULT '0',
     `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
     `ordering` int(11) DEFAULT '0',
     `state` int(11) DEFAULT '0',
     PRIMARY KEY (`extension_id`),
     KEY `element_clientid` (`element`,`client_id`),
     KEY `element_folder_clientid` (`element`,`folder`,`client_id`),
     KEY `extension` (`type`,`element`,`folder`,`client_id`)
    

    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=10006 ;

    -- -- Dumping data for table `jos_extensions` --

    INSERT INTO `jos_extensions` (`extension_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `manifest_cache`, `params`, `custom_data`, `system_data`, `checked_out`, `checked_out_time`, `ordering`, `state`) VALUES (1, 'com_mailto', 'component', 'com_mailto', , 0, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (2, 'com_wrapper', 'component', 'com_wrapper', , 0, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (3, 'com_admin', 'component', 'com_admin', , 1, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (4, 'com_banners', 'component', 'com_banners', , 1, 1, 1, 0, , '{"purchase_type":"3","track_impressions":"0","track_clicks":"0","metakey_prefix":""}', , , 0, '0000-00-00 00:00:00', 0, 0), (5, 'com_cache', 'component', 'com_cache', , 1, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (6, 'com_categories', 'component', 'com_categories', , 1, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (7, 'com_checkin', 'component', 'com_checkin', , 1, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (8, 'com_contact', 'component', 'com_contact', , 1, 1, 1, 0, , '{"show_contact_category":"hide","show_contact_list":"0","presentation_style":"sliders","show_name":"1","show_position":"1","show_email":"0","show_street_address":"1","show_suburb":"1","show_state":"1","show_postcode":"1","show_country":"1","show_telephone":"1","show_mobile":"1","show_fax":"1","show_webpage":"1","show_misc":"1","show_image":"1","image":"","allow_vcard":"0","show_articles":"0","show_profile":"0","show_links":"0","linka_name":"","linkb_name":"","linkc_name":"","linkd_name":"","linke_name":"","contact_icons":"0","icon_address":"","icon_email":"","icon_telephone":"","icon_mobile":"","icon_fax":"","icon_misc":"","show_headings":"1","show_position_headings":"1","show_email_headings":"0","show_telephone_headings":"1","show_mobile_headings":"0","show_fax_headings":"0","allow_vcard_headings":"0","show_suburb_headings":"1","show_state_headings":"1","show_country_headings":"1","show_email_form":"1","show_email_copy":"1","banned_email":"","banned_subject":"","banned_text":"","validate_session":"1","custom_reply":"0","redirect":"","show_category_crumb":"0","metakey":"","metadesc":"","robots":"","author":"","rights":"","xreference":""}', , , 0, '0000-00-00 00:00:00', 0, 0), (9, 'com_cpanel', 'component', 'com_cpanel', , 1, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (10, 'com_installer', 'component', 'com_installer', , 1, 1, 1, 1, , '{}', , , 0, '0000-00-00 00:00:00', 0, 0), (11, 'com_languages', 'component', 'com_languages', , 1, 1, 1, 1, , '{"administrator":"en-GB","site":"en-GB"}', , , 0, '0000-00-00 00:00:00', 0, 0), (12, 'com_login', 'component', 'com_login', , 1, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (13, 'com_media', 'component', 'com_media', , 1, 1, 0, 1, , '{"upload_extensions":"bmp,csv,doc,gif,ico,jpg,jpeg,odg,odp,ods,odt,pdf,png,ppt,swf,txt,xcf,xls,BMP,CSV,DOC,GIF,ICO,JPG,JPEG,ODG,ODP,ODS,ODT,PDF,PNG,PPT,SWF,TXT,XCF,XLS","upload_maxsize":"10485760","file_path":"images","image_path":"images","restrict_uploads":"1","allowed_media_usergroup":"3","check_mime":"1","image_extensions":"bmp,gif,jpg,png","ignore_extensions":"","upload_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","upload_mime_illegal":"text\\/html","enable_flash":"0"}', , , 0, '0000-00-00 00:00:00', 0, 0), (14, 'com_menus', 'component', 'com_menus', , 1, 1, 1, 1, , '{}', , , 0, '0000-00-00 00:00:00', 0, 0), (15, 'com_messages', 'component', 'com_messages', , 1, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (16, 'com_modules', 'component', 'com_modules', , 1, 1, 1, 1, , '{}', , , 0, '0000-00-00 00:00:00', 0, 0), (17, 'com_newsfeeds', 'component', 'com_newsfeeds', , 1, 1, 1, 0, , '{"show_feed_image":"1","show_feed_description":"1","show_item_description":"1","feed_word_count":"0","show_headings":"1","show_name":"1","show_articles":"0","show_link":"1","show_description":"1","show_description_image":"1","display_num":"","show_pagination_limit":"1","show_pagination":"1","show_pagination_results":"1","show_cat_items":"1"}', , , 0, '0000-00-00 00:00:00', 0, 0), (18, 'com_plugins', 'component', 'com_plugins', , 1, 1, 1, 1, , '{}', , , 0, '0000-00-00 00:00:00', 0, 0), (19, 'com_search', 'component', 'com_search', , 1, 1, 1, 1, , '{"enabled":"0","show_date":"1"}', , , 0, '0000-00-00 00:00:00', 0, 0), (20, 'com_templates', 'component', 'com_templates', , 1, 1, 1, 1, , '{}', , , 0, '0000-00-00 00:00:00', 0, 0), (21, 'com_weblinks', 'component', 'com_weblinks', , 1, 1, 1, 0, , '{"show_comp_description":"1","comp_description":"","show_link_hits":"1","show_link_description":"1","show_other_cats":"0","show_headings":"0","show_numbers":"0","show_report":"1","count_clicks":"1","target":"0","link_icons":""}', , , 0, '0000-00-00 00:00:00', 0, 0), (22, 'com_content', 'component', 'com_content', , 1, 1, 0, 1, , '{"show_title":"1","link_titles":"1","show_intro":"1","show_category":"1","link_category":"1","show_parent_category":"0","link_parent_category":"0","show_author":"1","link_author":"0","show_create_date":"0","show_modify_date":"0","show_publish_date":"1","show_item_navigation":"1","show_readmore":"1","show_icons":"1","show_print_icon":"1","show_email_icon":"1","show_hits":"1","num_leading_articles":"1","num_intro_articles":"4","num_columns":"2","num_links":"4","multi_column_order":"0","show_pagination":"2","show_pagination_results":"1","display_num":"10","show_headings":"1","list_show_title":"0","show_date":"hide","date_format":"","list_hits":"1","list_author":"1","filter_field":"hide","show_pagination_limit":"1","maxLevel":"1","show_category_title":"0","show_empty_categories":"0","show_description":"0","show_description_image":"0","show_cat_num_articles":"0","drill_down_layout":"0","orderby_pri":"order","orderby_sec":"rdate","show_noauth":"0","show_feed_link":"1","feed_summary":"0","filter_type":"BL","filter_tags":"","filter_attritbutes":""}', , , 0, '0000-00-00 00:00:00', 0, 0), (23, 'com_config', 'component', 'com_config', , 1, 1, 0, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (24, 'com_redirect', 'component', 'com_redirect', , 1, 1, 0, 1, , '{}', , , 0, '0000-00-00 00:00:00', 0, 0), (25, 'com_users', 'component', 'com_users', , 1, 1, 0, 1, , '{"allowUserRegistration":"1","new_usertype":"2","useractivation":"1","frontend_userparams":"1","mailSubjectPrefix":"","mailBodySuffix":""}', , , 0, '0000-00-00 00:00:00', 0, 0), (100, 'Joomla! Web Application Framework', 'library', 'joomla', , 0, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (101, 'PHPMailer', 'library', 'phpmailer', , 0, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (102, 'SimplePie', 'library', 'simplepie', , 0, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (103, 'Bitfolge', 'library', 'simplepie', , 0, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (104, 'phputf8', 'library', 'simplepie', , 0, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (200, 'mod_articles_archive', 'module', 'mod_articles_archive', , 0, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (201, 'mod_articles_latest', 'module', 'mod_articles_latest', , 0, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (202, 'mod_articles_popular', 'module', 'mod_articles_popular', , 0, 1, 1, 0, , , , , 0, '0000-00-00 00:00:00', 0, 0), (203, 'mod_banners', 'module', 'mod_banners', , 0, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (204, 'mod_breadcrumbs', 'module', 'mod_breadcrumbs', , 0, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (205, 'mod_custom', 'module', 'mod_custom', , 0, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (206, 'mod_feed', 'module', 'mod_feed', , 0, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (207, 'mod_footer', 'module', 'mod_footer', , 0, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (208, 'mod_login', 'module', 'mod_login', , 0, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (209, 'mod_menu', 'module', 'mod_menu', , 0, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (210, 'mod_articles_news', 'module', 'mod_articles_news', , 0, 1, 1, 0, , , , , 0, '0000-00-00 00:00:00', 0, 0), (211, 'mod_random_image', 'module', 'mod_random_image', , 0, 1, 1, 0, , , , , 0, '0000-00-00 00:00:00', 0, 0), (212, 'mod_related_items', 'module', 'mod_related_items', , 0, 1, 1, 0, , , , , 0, '0000-00-00 00:00:00', 0, 0), (213, 'mod_search', 'module', 'mod_search', , 0, 1, 1, 0, , , , , 0, '0000-00-00 00:00:00', 0, 0), (214, 'mod_stats', 'module', 'mod_stats', , 0, 1, 1, 0, , , , , 0, '0000-00-00 00:00:00', 0, 0), (215, 'mod_syndicate', 'module', 'mod_syndicate', , 0, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (216, 'mod_users_latest', 'module', 'mod_users_latest', , 0, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (217, 'mod_weblinks', 'module', 'mod_weblinks', , 0, 1, 1, 0, , , , , 0, '0000-00-00 00:00:00', 0, 0), (218, 'mod_whosonline', 'module', 'mod_whosonline', , 0, 1, 1, 0, , , , , 0, '0000-00-00 00:00:00', 0, 0), (219, 'mod_wrapper', 'module', 'mod_wrapper', , 0, 1, 1, 0, , , , , 0, '0000-00-00 00:00:00', 0, 0), (220, 'mod_articles_category', 'module', 'mod_articles_category', , 0, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (221, 'mod_articles_categories', 'module', 'mod_articles_categories', , 0, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (222, 'mod_languages', 'module', 'mod_languages', , 0, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (300, 'mod_custom', 'module', 'mod_custom', , 1, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (301, 'mod_feed', 'module', 'mod_feed', , 1, 1, 1, 0, , , , , 0, '0000-00-00 00:00:00', 0, 0), (302, 'mod_latest', 'module', 'mod_latest', , 1, 1, 1, 0, , , , , 0, '0000-00-00 00:00:00', 0, 0), (303, 'mod_logged', 'module', 'mod_logged', , 1, 1, 1, 0, , , , , 0, '0000-00-00 00:00:00', 0, 0), (304, 'mod_login', 'module', 'mod_login', , 1, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (305, 'mod_menu', 'module', 'mod_menu', , 1, 1, 1, 0, , , , , 0, '0000-00-00 00:00:00', 0, 0), (306, 'mod_online', 'module', 'mod_online', , 1, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (307, 'mod_popular', 'module', 'mod_popular', , 1, 1, 1, 0, , , , , 0, '0000-00-00 00:00:00', 0, 0), (308, 'mod_quickicon', 'module', 'mod_quickicon', , 1, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (309, 'mod_status', 'module', 'mod_status', , 1, 1, 1, 0, , , , , 0, '0000-00-00 00:00:00', 0, 0), (310, 'mod_submenu', 'module', 'mod_submenu', , 1, 1, 1, 0, , , , , 0, '0000-00-00 00:00:00', 0, 0), (311, 'mod_title', 'module', 'mod_title', , 1, 1, 1, 0, , , , , 0, '0000-00-00 00:00:00', 0, 0), (312, 'mod_toolbar', 'module', 'mod_toolbar', , 1, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (313, 'mod_unread', 'module', 'mod_unread', , 1, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (400, 'plg_authentication_gmail', 'plugin', 'gmail', 'authentication', 0, 0, 1, 0, , '{"applysuffix":"0","suffix":"","verifypeer":"1","user_blacklist":""}', , , 0, '0000-00-00 00:00:00', 1, 0), (401, 'plg_authentication_joomla', 'plugin', 'joomla', 'authentication', 0, 1, 1, 1, , '{}', , , 0, '0000-00-00 00:00:00', 0, 0), (402, 'plg_authentication_ldap', 'plugin', 'ldap', 'authentication', 0, 0, 1, 0, , '{"host":"","port":"389","use_ldapV3":"0","negotiate_tls":"0","no_referrals":"0","auth_method":"bind","base_dn":"","search_string":"","users_dn":"","username":"admin","password":"bobby7","ldap_fullname":"fullName","ldap_email":"mail","ldap_uid":"uid"}', , , 0, '0000-00-00 00:00:00', 3, 0), (403, 'plg_authentication_openid', 'plugin', 'openid', 'authentication', 0, 0, 1, 0, , '{"usermode":"2","phishing-resistant":"0","multi-factor":"0","multi-factor-physical":"0"}', , , 0, '0000-00-00 00:00:00', 4, 0), (404, 'plg_content_emailcloak', 'plugin', 'emailcloak', 'content', 0, 1, 1, 0, , '{"mode":"1"}', , , 0, '0000-00-00 00:00:00', 1, 0), (405, 'plg_content_geshi', 'plugin', 'geshi', 'content', 0, 1, 1, 0, , '{}', , , 0, '0000-00-00 00:00:00', 2, 0), (406, 'plg_content_loadmodule', 'plugin', 'loadmodule', 'content', 0, 1, 1, 0, , '{"style":"table"}', , , 0, '0000-00-00 00:00:00', 3, 0), (407, 'plg_content_pagebreak', 'plugin', 'pagebreak', 'content', 0, 1, 1, 1, , '{"title":"1","multipage_toc":"1","showall":"1"}', , , 0, '0000-00-00 00:00:00', 4, 0), (408, 'plg_content_pagenavigation', 'plugin', 'pagenavigation', 'content', 0, 1, 1, 1, , '{"position":"1"}', , , 0, '0000-00-00 00:00:00', 5, 0), (409, 'plg_content_vote', 'plugin', 'vote', 'content', 0, 1, 1, 1, , '{}', , , 0, '0000-00-00 00:00:00', 6, 0), (410, 'plg_editors_codemirror', 'plugin', 'codemirror', 'editors', 0, 1, 1, 1, , '{"linenumbers":"0","tabmode":"indent"}', , , 0, '0000-00-00 00:00:00', 1, 0), (411, 'plg_editors_none', 'plugin', 'none', 'editors', 0, 1, 1, 1, , '{}', , , 0, '0000-00-00 00:00:00', 2, 0), (412, 'plg_editors_tinymce', 'plugin', 'tinymce', 'editors', 0, 1, 1, 1, , '{"mode":"1","skin":"0","compressed":"0","cleanup_startup":"0","cleanup_save":"2","entity_encoding":"raw","lang_mode":"0","lang_code":"en","text_direction":"ltr","content_css":"1","content_css_custom":"","relative_urls":"1","newlines":"0","invalid_elements":"script,applet,iframe","extended_elements":"","toolbar":"top","toolbar_align":"left","html_height":"550","html_width":"750","element_path":"1","fonts":"1","paste":"1","searchreplace":"1","insertdate":"1","format_date":"%Y-%m-%d","inserttime":"1","format_time":"%H:%M:%S","colors":"1","table":"1","smilies":"1","media":"1","hr":"1","directionality":"1","fullscreen":"1","style":"1","layer":"1","xhtmlxtras":"1","visualchars":"1","nonbreaking":"1","template":"1","blockquote":"1","wordcount":"1","advimage":"1","advlink":"1","autosave":"1","contextmenu":"1","inlinepopups":"1","safari":"0","custom_plugin":"","custom_button":""}', , , 0, '0000-00-00 00:00:00', 3, 0), (413, 'plg_editors-xtd_article', 'plugin', 'article', 'editors-xtd', 0, 1, 1, 1, , '{}', , , 0, '0000-00-00 00:00:00', 1, 0), (414, 'plg_editors-xtd_image', 'plugin', 'image', 'editors-xtd', 0, 1, 1, 0, , '{}', , , 0, '0000-00-00 00:00:00', 2, 0), (415, 'plg_editors-xtd_pagebreak', 'plugin', 'pagebreak', 'editors-xtd', 0, 1, 1, 0, , '{}', , , 0, '0000-00-00 00:00:00', 3, 0), (416, 'plg_editors-xtd_readmore', 'plugin', 'readmore', 'editors-xtd', 0, 1, 1, 0, , '{}', , , 0, '0000-00-00 00:00:00', 4, 0), (417, 'plg_search_categories', 'plugin', 'categories', 'search', 0, 1, 1, 0, , '{"search_limit":"50","search_content":"0","search_uncategorised":"0","search_archived":"0"}', , , 0, '0000-00-00 00:00:00', 2, 0), (418, 'plg_search_contacts', 'plugin', 'contacts', 'search', 0, 1, 1, 1, , '{"search_limit":"50","search_content":"0","search_uncategorised":"0","search_archived":"0"}', , , 0, '0000-00-00 00:00:00', 4, 0), (419, 'plg_search_content', 'plugin', 'content', 'search', 0, 1, 1, 1, , '{"search_limit":"50","search_content":"1","search_uncategorised":"0","search_archived":"0"}', , , 0, '0000-00-00 00:00:00', 5, 0), (420, 'plg_search_newsfeeds', 'plugin', 'newsfeeds', 'search', 0, 1, 1, 0, , '{"search_limit":"50","search_content":"0","search_uncategorised":"0","search_archived":"0"}', , , 0, '0000-00-00 00:00:00', 3, 0), (421, 'plg_search_weblinks', 'plugin', 'weblinks', 'search', 0, 1, 1, 1, , '{"search_limit":"50","search_content":"0","search_uncategorised":"0","search_archived":"0"}', , , 0, '0000-00-00 00:00:00', 1, 0), (422, 'plg_system_cache', 'plugin', 'cache', 'system', 0, 0, 1, 1, , '{"browsercache":"0","cachetime":"15"}', , , 0, '0000-00-00 00:00:00', 1, 0), (423, 'plg_system_debug', 'plugin', 'debug', 'system', 0, 1, 1, 0, , '{"profile":"1","queries":"1","memory":"1","language_files":"1","language_strings":"1","strip-first":"1","strip-prefix":"","strip-suffix":""}', , , 0, '0000-00-00 00:00:00', 2, 0), (424, 'plg_system_log', 'plugin', 'log', 'system', 0, 1, 1, 1, , '{}', , , 0, '0000-00-00 00:00:00', 3, 0), (425, 'plg_system_redirect', 'plugin', 'redirect', 'system', 0, 1, 1, 1, , '{}', , , 0, '0000-00-00 00:00:00', 4, 0), (426, 'plg_system_remember', 'plugin', 'remember', 'system', 0, 1, 1, 1, , '{}', , , 0, '0000-00-00 00:00:00', 5, 0), (427, 'plg_system_sef', 'plugin', 'sef', 'system', 0, 1, 1, 0, , '{}', , , 0, '0000-00-00 00:00:00', 6, 0), (428, 'plg_user_contactcreator', 'plugin', 'contactcreator', 'user', 0, 0, 1, 1, , '{"autowebpage":"","category":"26","autopublish":"0"}', , , 0, '0000-00-00 00:00:00', 1, 0), (429, 'plg_user_joomla', 'plugin', 'joomla', 'user', 0, 1, 1, 0, , '{"autoregister":"1"}', , , 0, '0000-00-00 00:00:00', 2, 0), (430, 'plg_user_profile', 'plugin', 'profile', 'user', 0, 0, 1, 1, , '{"register-require_address1":"0","register-require_address2":"0","register-require_city":"0","register-require_region":"0","register-require_country":"0","register-require_postal_code":"0","register-require_phone":"0","register-require_website":"0","profile-require_address1":"1","profile-require_address2":"1","profile-require_city":"1","profile-require_region":"1","profile-require_country":"1","profile-require_postal_code":"1","profile-require_phone":"1","profile-require_website":"1"}', , , 0, '0000-00-00 00:00:00', 0, 0), (431, 'plg_extension_joomla', 'plugin', 'joomla', 'extension', 0, 1, 1, 1, , '{}', , , 0, '0000-00-00 00:00:00', 1, 0), (432, 'plg_system_languagefilter', 'plugin', 'languagefilter', 'system', 0, 0, 1, 1, , '{}', , , 0, '0000-00-00 00:00:00', 0, 0), (500, 'atomic', 'template', 'atomic', , 0, 1, 1, 0, , , , , 0, '0000-00-00 00:00:00', 0, 0), (501, 'rhuk_milkyway', 'template', 'rhuk_milkyway', , 0, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (502, 'bluestork', 'template', 'bluestork', , 1, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (503, 'beez_20', 'template', 'beez_20', , 0, 1, 1, 0, , , , , 0, '0000-00-00 00:00:00', 0, 0), (504, 'hathor', 'template', 'hathor', , 1, 1, 1, 0, , , , , 0, '0000-00-00 00:00:00', 0, 0), (505, 'Beez5', 'template', 'beez5', , 0, 1, 1, 0, 'a:11:{s:6:"legacy";b:1;s:4:"name";s:5:"Beez5";s:4:"type";s:8:"template";s:12:"creationDate";s:11:"21 May 2010";s:6:"author";s:12:"Angie Radtke";s:9:"copyright";s:72:"Copyright (C) 2005 - 2010 Open Source Matters, Inc. All rights reserved.";s:11:"authorEmail";s:23:"a.radtke@derauftritt.de";s:9:"authorUrl";s:26:"http://www.der-auftritt.de";s:7:"version";s:5:"1.6.0";s:11:"description";s:22:"A Easy Version of Beez";s:5:"group";s:0:"";}', '{"wrapperSmall":"53","wrapperLarge":"72","sitetitle":"BEEZ 2.0","sitedescription":"Your site name","navposition":"center","html5":"0"}', , , 0, '0000-00-00 00:00:00', 0, 0), (600, 'English (United Kingdom)', 'language', 'en-GB', , 0, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (601, 'English (United Kingdom)', 'language', 'en-GB', , 1, 1, 1, 1, , , , , 0, '0000-00-00 00:00:00', 0, 0), (602, 'English (United States)', 'language', 'en-US', , 0, 1, 1, 0, , , , , 0, '0000-00-00 00:00:00', 0, 0), (603, 'English (United States)', 'language', 'en-US', , 1, 1, 1, 0, , , , , 0, '0000-00-00 00:00:00', 0, 0), (604, 'XXTestLang', 'language', 'xx-XX', , 1, 1, 1, 0, , , , , 0, '0000-00-00 00:00:00', 0, 0), (605, 'XXTestLang', 'language', 'xx-XX', , 0, 1, 1, 0, , , , , 0, '0000-00-00 00:00:00', 0, 0), (10005, 'jforum', 'component', 'com_jforum', , 0, 1, 0, 0, 'a:11:{s:6:"legacy";b:1;s:4:"name";s:6:"jforum";s:4:"type";s:9:"component";s:12:"creationDate";s:11:"??Unknown??";s:6:"author";s:11:"??Unknown??";s:9:"copyright";s:0:"";s:11:"authorEmail";s:0:"";s:9:"authorUrl";s:0:"";s:7:"version";s:0:"";s:11:"description";s:0:"";s:5:"group";s:0:"";}', '{}', , , 0, '0000-00-00 00:00:00', 0, 0);

    -- --------------------------------------------------------

    -- -- Table structure for table `jos_languages` --


    CREATE TABLE IF NOT EXISTS `jos_languages` (

     `lang_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
     `lang_code` char(7) NOT NULL,
     `title` varchar(50) NOT NULL,
     `title_native` varchar(50) NOT NULL,
     `sef` varchar(50) NOT NULL,
     `image` varchar(50) NOT NULL,
     `description` varchar(512) NOT NULL,
     `metakey` text NOT NULL,
     `metadesc` text NOT NULL,
     `published` int(11) NOT NULL DEFAULT '0',
     PRIMARY KEY (`lang_id`),
     UNIQUE KEY `idx_sef` (`sef`)
    

    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;

    -- -- Dumping data for table `jos_languages` --

    INSERT INTO `jos_languages` (`lang_id`, `lang_code`, `title`, `title_native`, `sef`, `image`, `description`, `metakey`, `metadesc`, `published`) VALUES (1, 'en-GB', 'English (UK)', 'English (UK)', 'en', 'en', , , , 1), (2, 'en-US', 'English (US)', 'English (US)', 'us', 'en', , , , 0), (3, 'xx-XX', 'xx (Test)', 'xx (Test)', 'xx', 'br', , , , 1);

    -- --------------------------------------------------------

    -- -- Table structure for table `jos_menu` --


    CREATE TABLE IF NOT EXISTS `jos_menu` (

     `id` int(11) NOT NULL AUTO_INCREMENT,
     `menutype` varchar(24) NOT NULL COMMENT 'The type of menu this item belongs to. FK to #__menu_types.menutype',
     `title` varchar(255) NOT NULL COMMENT 'The display title of the menu item.',
     `alias` varchar(255) NOT NULL COMMENT 'The SEF alias of the menu item.',
     `note` varchar(255) NOT NULL DEFAULT ,
     `path` varchar(1024) NOT NULL COMMENT 'The computed path of the menu item based on the alias field.',
     `link` varchar(1024) NOT NULL COMMENT 'The actually link the menu item refers to.',
     `type` varchar(16) NOT NULL COMMENT 'The type of link: Component, URL, Alias, Separator',
     `published` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'The published state of the menu link.',
     `parent_id` int(10) unsigned NOT NULL DEFAULT '1' COMMENT 'The parent menu item in the menu tree.',
     `level` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The relative level in the tree.',
     `component_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'FK to #__extensions.id',
     `ordering` int(11) NOT NULL DEFAULT '0' COMMENT 'The relative ordering of the menu item in the tree.',
     `checked_out` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'FK to #__users.id',
     `checked_out_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'The time the menu item was checked out.',
     `browserNav` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'The click behaviour of the link.',
     `access` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'The access level required to view the menu item.',
     `img` varchar(255) NOT NULL COMMENT 'The image of the menu item.',
     `template_style_id` int(10) unsigned NOT NULL DEFAULT '0',
     `params` varchar(10240) NOT NULL COMMENT 'JSON encoded data for the menu item.',
     `lft` int(11) NOT NULL DEFAULT '0' COMMENT 'Nested set lft.',
     `rgt` int(11) NOT NULL DEFAULT '0' COMMENT 'Nested set rgt.',
     `home` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Indicates if this menu item is the home or default page.',
     `language` char(7) NOT NULL DEFAULT ,
     PRIMARY KEY (`id`),
     UNIQUE KEY `idx_alias_parent_id` (`alias`,`parent_id`),
     KEY `idx_componentid` (`component_id`,`menutype`,`published`,`access`),
     KEY `idx_menutype` (`menutype`),
     KEY `idx_left_right` (`lft`,`rgt`),
     KEY `idx_alias` (`alias`),
     KEY `idx_path` (`path`(333)),
     KEY `idx_language` (`language`)
    

    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=463 ;

    -- -- Dumping data for table `jos_menu` --

    INSERT INTO `jos_menu` (`id`, `menutype`, `title`, `alias`, `note`, `path`, `link`, `type`, `published`, `parent_id`, `level`, `component_id`, `ordering`, `checked_out`, `checked_out_time`, `browserNav`, `access`, `img`, `template_style_id`, `params`, `lft`, `rgt`, `home`, `language`) VALUES (1, , 'Menu_Item_Root', 'root', , , , , 1, 0, 0, 0, 0, 0, '0000-00-00 00:00:00', 0, 0, , 0, , 0, 273, 0, '*'), (2, '_adminmenu', 'com_banners', 'Banners', , 'Banners', 'index.php?option=com_banners', 'component', 0, 1, 1, 4, 0, 0, '0000-00-00 00:00:00', 0, 0, 'class:banners', 0, , 13, 22, 0, '*'), (3, '_adminmenu', 'com_banners', 'Banners', , 'Banners/Banners', 'index.php?option=com_banners', 'component', 0, 2, 2, 4, 0, 0, '0000-00-00 00:00:00', 0, 0, 'class:banners', 0, , 14, 15, 0, '*'), (4, '_adminmenu', 'com_banners_clients', 'Clients', , 'Banners/Clients', 'index.php?option=com_banners&view=clients', 'component', 0, 2, 2, 4, 0, 0, '0000-00-00 00:00:00', 0, 0, 'class:banners-clients', 0, , 16, 17, 0, '*'), (5, '_adminmenu', 'com_banners_tracks', 'Tracks', , 'Banners/Tracks', 'index.php?option=com_banners&view=tracks', 'component', 0, 2, 2, 4, 0, 0, '0000-00-00 00:00:00', 0, 0, 'class:banners-tracks', 0, , 18, 19, 0, '*'), (6, '_adminmenu', 'com_banners_categories', 'Categories', , 'Banners/Categories', 'index.php?option=com_categories&extension=com_banners', 'component', 0, 2, 2, 6, 0, 0, '0000-00-00 00:00:00', 0, 0, 'class:banners-cat', 0, , 20, 21, 0, '*'), (7, '_adminmenu', 'com_contact', 'Contacts', , 'Contacts', 'index.php?option=com_contact', 'component', 0, 1, 1, 8, 0, 0, '0000-00-00 00:00:00', 0, 0, 'class:contact', 0, , 23, 28, 0, '*'), (8, '_adminmenu', 'com_contact', 'Contacts', , 'Contacts/Contacts', 'index.php?option=com_contact', 'component', 0, 7, 2, 8, 0, 0, '0000-00-00 00:00:00', 0, 0, 'class:contact', 0, , 24, 25, 0, '*'), (9, '_adminmenu', 'com_contact_categories', 'Categories', , 'Contacts/Categories', 'index.php?option=com_categories&extension=com_contact', 'component', 0, 7, 2, 6, 0, 0, '0000-00-00 00:00:00', 0, 0, 'class:contact-cat', 0, , 26, 27, 0, '*'), (10, '_adminmenu', 'com_messages', 'Messaging', , 'Messaging', 'index.php?option=com_messages', 'component', 0, 1, 1, 15, 0, 0, '0000-00-00 00:00:00', 0, 0, 'class:messages', 0, , 29, 34, 0, '*'), (11, '_adminmenu', 'com_messages_add', 'New Private Message', , 'Messaging/New Private Message', 'index.php?option=com_messages&task=message.add', 'component', 0, 10, 2, 15, 0, 0, '0000-00-00 00:00:00', 0, 0, 'class:messages-add', 0, , 30, 31, 0, '*'), (12, '_adminmenu', 'com_messages_read', 'Read Private Message', , 'Messaging/Read Private Message', 'index.php?option=com_messages', 'component', 0, 10, 2, 15, 0, 0, '0000-00-00 00:00:00', 0, 0, 'class:messages-read', 0, , 32, 33, 0, '*'), (13, '_adminmenu', 'com_newsfeeds', 'News Feeds', , 'News Feeds', 'index.php?option=com_newsfeeds', 'component', 0, 1, 1, 17, 0, 0, '0000-00-00 00:00:00', 0, 0, 'class:newsfeeds', 0, , 35, 40, 0, '*'), (14, '_adminmenu', 'com_newsfeeds_feeds', 'Feeds', , 'News Feeds/Feeds', 'index.php?option=com_newsfeeds', 'component', 0, 13, 2, 17, 0, 0, '0000-00-00 00:00:00', 0, 0, 'class:newsfeeds', 0, , 36, 37, 0, '*'), (15, '_adminmenu', 'com_newsfeeds_categories', 'Categories', , 'News Feeds/Categories', 'index.php?option=com_categories&extension=com_newsfeeds', 'component', 0, 13, 2, 6, 0, 0, '0000-00-00 00:00:00', 0, 0, 'class:newsfeeds-cat', 0, , 38, 39, 0, '*'), (16, '_adminmenu', 'com_redirect', 'Redirect', , 'Redirect', 'index.php?option=com_redirect', 'component', 0, 1, 1, 24, 0, 0, '0000-00-00 00:00:00', 0, 0, 'class:redirect', 0, , 49, 50, 0, '*'), (17, '_adminmenu', 'com_search', 'Search', , 'Search', 'index.php?option=com_search', 'component', 0, 1, 1, 19, 0, 0, '0000-00-00 00:00:00', 0, 0, 'class:search', 0, , 41, 42, 0, '*'), (18, '_adminmenu', 'com_weblinks', 'Weblinks', , 'Weblinks', 'index.php?option=com_weblinks', 'component', 0, 1, 1, 21, 0, 0, '0000-00-00 00:00:00', 0, 0, 'class:weblinks', 0, , 43, 48, 0, '*'), (19, '_adminmenu', 'com_weblinks_links', 'Links', , 'Weblinks/Links', 'index.php?option=com_weblinks', 'component', 0, 18, 2, 21, 0, 0, '0000-00-00 00:00:00', 0, 0, 'class:weblinks', 0, , 44, 45, 0, '*'), (20, '_adminmenu', 'com_weblinks_categories', 'Categories', , 'Weblinks/Categories', 'index.php?option=com_categories&extension=com_weblinks', 'component', 0, 18, 2, 6, 0, 0, '0000-00-00 00:00:00', 0, 0, 'class:weblinks-cat', 0, , 46, 47, 0, '*'), (227, 'aboutjoomla', 'Weblinks Categories', 'weblinks-categories', , 'using-joomla/extensions/components/weblinks-component/weblinks-categories', 'index.php?option=com_weblinks&view=categories', 'component', 1, 265, 5, 21, 6, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"Category":"20","menu-anchor_title":"","menu-anchor_css":"","menu_image":"-1","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 105, 106, 0, '*'), (233, 'mainmenu', 'Login', 'login', , 'login', 'index.php?option=com_users&view=login', 'component', 1, 1, 1, 25, -3, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 11, 12, 0, '*'), (229, 'aboutjoomla', 'Single Contact', 'single-contact', , 'using-joomla/extensions/components/contact-component/single-contact', 'index.php?option=com_contact&view=contact&id=1', 'component', 1, 270, 5, 8, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"show_category_crumb":"","presentation_style":"tabs","show_contact_category":"","show_contact_list":"","show_name":"","show_position":"","show_email":"","show_street_address":"","show_suburb":"","show_state":"","show_postcode":"","show_country":"","show_telephone":"","show_mobile":"","show_fax":"","show_webpage":"","show_misc":"","show_image":"","allow_vcard":"","show_articles":"","show_links":"1","linka_name":"","linkb_name":"","linkc_name":"","linkd_name":"","linke_name":"","show_email_form":"","show_email_copy":"","banned_email":"","banned_subject":"","banned_text":"","validate_session":"","custom_reply":"","redirect":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 95, 96, 0, '*'), (201, 'usermenu', 'Your Profile', 'your-profile', , 'your-profile', 'index.php?option=com_users&view=profile', 'component', 1, 1, 1, 25, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 51, 52, 0, '*'), (231, 'parks', 'Parks in Places', 'parks-in-places', , 'parks-in-places', 'index.php?option=com_content&view=categories&id=23', 'component', 1, 1, 1, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 114, '{"categories_description":"","maxLevel":"-1","show_empty_categories":"","show_description":"","show_description_image":"","show_cat_num_articles":"","display_num":"","category_layout":"","show_headings":"","show_date":"","date_format":"","filter_field":"","num_leading_articles":"1","num_intro_articles":"4","num_columns":"2","num_links":"4","multi_column_order":"","orderby_pri":"","orderby_sec":"","order_date":"","show_pagination":"","show_noauth":"","show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","link_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_readmore":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","show_feed_link":"","feed_summary":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 55, 56, 0, '*'), (296, 'parks', 'Park Links', 'park-links', , 'park-links', 'index.php?option=com_weblinks&view=category&id=44', 'component', 1, 1, 1, 21, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"maxLevel":"-1","show_empty_categories":"","show_description":"","show_description_image":"","show_cat_num_articles":"","display_num":"","show_headings":"","orderby_pri":"","show_pagination":"","show_noauth":"","show_feed_link":"1","feed_summary":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 241, 242, 0, '*'), (234, 'parks', 'Park Blog', 'park-blog', , 'park-blog', 'index.php?option=com_content&view=category&layout=blog&id=35', 'component', 1, 1, 1, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 114, '{"maxLevel":"","show_empty_categories":"","show_description":"1","show_description_image":"1","show_category_title":"","show_cat_num_articles":"","num_leading_articles":"1","num_intro_articles":"4","num_columns":"2","num_links":"4","multi_column_order":"","orderby_pri":"","orderby_sec":"","order_date":"","show_pagination":"2","show_noauth":"","show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","link_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_readmore":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","show_feed_link":"1","feed_summary":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 57, 58, 0, '*'), (238, 'mainmenu', 'Sample Sites', 'sample-sites', , 'sample-sites', 'index.php?option=com_content&view=article&id=7', 'component', 1, 1, 1, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_noauth":"","show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","link_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","robots":"","rights":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","secure":0}', 255, 260, 0, '*'), (207, 'top', 'Joomla.org', 'joomlaorg', , 'joomlaorg', 'http://joomla.org', 'url', 1, 1, 1, 0, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"menu-anchor_title":"","menu-anchor_css":"","menu_image":""}', 67, 68, 0, '*'), (242, 'parks', 'Write a Blog Post', 'write-a-blog-post', , 'write-a-blog-post', 'index.php?option=com_content&view=form&layout=edit', 'component', 1, 1, 1, 22, 0, 0, '0000-00-00 00:00:00', 0, 3, , 114, '{"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 59, 60, 0, '*'), (243, 'parks', 'Parks Home', 'parks-home', , 'parks-home', 'index.php?option=com_content&view=article&id=9', 'component', 1, 1, 1, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 114, '{"show_noauth":"","show_title":"0","link_titles":"","show_intro":"","show_category":"0","link_category":"0","show_parent_category":"","link_parent_category":"","show_author":"0","link_author":"","show_create_date":"0","show_modify_date":"0","show_publish_date":"0","show_item_navigation":"0","show_icons":"","show_print_icon":"0","show_email_icon":"0","show_hits":"0","robots":"","rights":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","secure":0}', 53, 54, 0, '*'), (244, 'parks', 'Image Gallery', 'image-gallery', , 'image-gallery', 'index.php?option=com_content&view=categories&id=38', 'component', 1, 1, 1, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 4, '{"categories_description":"","maxLevel":"-1","show_empty_categories":"","show_description":"1","show_description_image":"1","show_cat_num_articles":"","display_num":"","category_layout":"","show_headings":"","show_date":"","date_format":"","filter_field":"","num_leading_articles":"1","num_intro_articles":"4","num_columns":"2","num_links":"4","multi_column_order":"","orderby_pri":"","orderby_sec":"","order_date":"","show_pagination":"2","show_noauth":"","show_title":"0","link_titles":"","show_intro":"0","show_category":"1","link_category":"1","show_parent_category":"0","link_parent_category":"0","show_author":"0","link_author":"0","show_create_date":"0","show_modify_date":"0","show_publish_date":"0","show_item_navigation":"1","show_readmore":"1","show_icons":"0","show_print_icon":"0","show_email_icon":"0","show_hits":"0","show_feed_link":"1","feed_summary":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 61, 66, 0, '*'), (270, 'aboutjoomla', 'Contact Component', 'contact-component', , 'using-joomla/extensions/components/contact-component', 'index.php?option=com_content&view=article&id=13', 'component', 1, 268, 4, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 90, 99, 0, '*'), (279, 'aboutjoomla', 'The Joomla! Community', 'the-joomla-community', , 'the-joomla-community', 'index.php?option=com_content&view=article&id=22', 'component', 1, 1, 1, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_noauth":"","show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","link_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","robots":"","rights":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","secure":0}', 237, 238, 0, '*'), (249, 'aboutjoomla', 'Submit a Weblink', 'submit-a-weblink', , 'using-joomla/extensions/components/weblinks-component/submit-a-weblink', 'index.php?option=com_weblinks&view=form&layout=edit', 'component', 1, 265, 5, 21, 0, 0, '0000-00-00 00:00:00', 0, 3, , 0, '{"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 101, 102, 0, '*'), (251, 'aboutjoomla', 'Contact Categories', 'contact-categories', , 'using-joomla/extensions/components/contact-component/contact-categories', 'index.php?option=com_contact&view=categories&id=0', 'component', 1, 270, 5, 8, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"show_base_description":"","categories_description":"","maxLevel":"-1","show_empty_categories":"","show_description":"","show_description_image":"","show_cat_num_articles":"","display_num":"","show_headings":"","filter_field":"","show_pagination":"","show_noauth":"","presentation_style":"sliders","show_name":"","show_position":"","show_email":"","show_street_address":"","show_suburb":"","show_state":"","show_postcode":"","show_country":"","show_telephone":"","show_mobile":"","show_fax":"","show_webpage":"","show_misc":"","show_image":"","allow_vcard":"","show_articles":"","show_links":"1","linka_name":"","linkb_name":"","linkc_name":"","linkd_name":"","linke_name":"","show_email_form":"","show_email_copy":"","banned_email":"","banned_subject":"","banned_text":"","validate_session":"","custom_reply":"","redirect":"","show_feed_link":"","feed_summary":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 91, 92, 0, '*'), (252, 'aboutjoomla', 'News Feed Categories', 'new-feed-categories', , 'using-joomla/extensions/components/news-feeds-component/new-feed-categories', 'index.php?option=com_newsfeeds&view=categories', 'component', 1, 267, 5, 17, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"Category":"28","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 109, 110, 0, '*'), (253, 'aboutjoomla', 'News Feed Category', 'news-feed-category', , 'using-joomla/extensions/components/news-feeds-component/news-feed-category', 'index.php?option=com_newsfeeds&view=category&id=28', 'component', 1, 267, 5, 17, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"maxLevel":"-1","show_empty_categories":"","show_description":"","show_description_image":"","show_cat_num_articles":"","display_num":"","show_headings":"","orderby_pri":"","orderby_sec":"","order_date":"","show_pagination":"","show_noauth":"","show_feed_image":"","show_feed_description":"","show_item_description":"","feed_character_count":"0","show_feed_link":"","feed_summary":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 113, 114, 0, '*'), (254, 'aboutjoomla', 'Single News Feed', 'single-news-feed', , 'using-joomla/extensions/components/news-feeds-component/single-news-feed', 'index.php?option=com_newsfeeds&view=newsfeed&id=4', 'component', 1, 267, 5, 17, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"show_feed_image":"","show_feed_description":"","show_item_description":"","feed_character_count":"0","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 111, 112, 0, '*'), (255, 'aboutjoomla', 'Search', 'search', , 'using-joomla/extensions/components/search-component/search', 'index.php?option=com_search&view=search', 'component', 1, 276, 5, 19, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"search_areas":"1","show_date":"1","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 131, 132, 0, '*'), (256, 'aboutjoomla', 'Archived articles', 'archived-articles', , 'using-joomla/extensions/components/content-component/archived-articles', 'index.php?option=com_content&view=archive', 'component', 1, 266, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"orderby_sec":"","order_date":"","display_num":"","filter_field":"","show_category":"1","link_category":"1","show_title":"1","link_titles":"1","show_intro":"1","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_readmore":"","show_hits":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 85, 86, 0, '*'), (257, 'aboutjoomla', 'Single Article', 'single-article', , 'using-joomla/extensions/components/content-component/single-article', 'index.php?option=com_content&view=article&id=2', 'component', 1, 266, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 75, 76, 0, '*'), (278, 'aboutjoomla', 'The Joomla! Project', 'the-joomla-project', , 'the-joomla-project', 'index.php?option=com_content&view=article&id=23', 'component', 1, 1, 1, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_noauth":"","show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","link_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","robots":"","rights":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","secure":0}', 239, 240, 0, '*'), (259, 'aboutjoomla', 'Article Category Blog', 'article-category-blog', , 'using-joomla/extensions/components/content-component/article-category-blog', 'index.php?option=com_content&view=category&layout=blog&id=31', 'component', 1, 266, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"maxLevel":"","show_empty_categories":"","show_description":"0","show_description_image":"0","show_category_title":"","show_cat_num_articles":"","num_leading_articles":"1","num_intro_articles":"4","num_columns":"2","num_links":"4","multi_column_order":"","orderby_pri":"","orderby_sec":"","order_date":"","show_pagination":"2","show_noauth":"","show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","link_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_readmore":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","article-allow_ratings":"","article-allow_comments":"","show_feed_link":"1","feed_summary":"","menu-anchor_title":"","menu-anchor_css":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 79, 80, 0, '*'), (260, 'aboutjoomla', 'Article Category List', 'article-category-list', , 'using-joomla/extensions/components/content-component/article-category-list', 'index.php?option=com_content&view=category&id=31', 'component', 1, 266, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"maxLevel":"","show_category_title":"","page_subheading":"","show_empty_categories":"","show_description":"","show_description_image":"","show_cat_num_articles":"","display_num":"","show_headings":"","list_show_title":"","list_show_date":"","date_format":"","list_show_hits":"","list_show_author":"","filter_field":"","orderby_pri":"","orderby_sec":"","order_date":"","show_pagination":"","show_pagination_limit":"","show_noauth":"","show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","link_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_readmore":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","article-allow_ratings":"","article-allow_comments":"","show_feed_link":"","feed_summary":"","menu-anchor_title":"","menu-anchor_css":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 81, 82, 0, '*'), (262, 'aboutjoomla', 'Featured Articles', 'featured-articles-', , 'using-joomla/extensions/components/content-component/featured-articles-', 'index.php?option=com_content&view=featured', 'component', 1, 266, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"num_leading_articles":"1","num_intro_articles":"4","num_columns":"2","num_links":"4","orderby_pri":"","orderby_sec":"front","order_date":"","multi_column_order":"1","show_pagination":"2","show_pagination_results":"1","show_noauth":"","article-allow_ratings":"","article-allow_comments":"","show_feed_link":"1","feed_summary":"","show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_readmore":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 83, 84, 0, '*'), (263, 'aboutjoomla', 'Submit Article', 'submit-article', , 'using-joomla/extensions/components/content-component/submit-article', 'index.php?option=com_content&view=form&layout=edit', 'component', 1, 266, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 3, , 0, '{"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 87, 88, 0, '*'), (265, 'aboutjoomla', 'Weblinks Component', 'weblinks-component', , 'using-joomla/extensions/components/weblinks-component', 'index.php?option=com_content&view=article&id=11', 'component', 1, 268, 4, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 100, 107, 0, '*'), (266, 'aboutjoomla', 'Content Component', 'content-component', , 'using-joomla/extensions/components/content-component', 'index.php?option=com_content&view=article&id=10', 'component', 1, 268, 4, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 74, 89, 0, '*'), (267, 'aboutjoomla', 'News Feeds Component', 'news-feeds-component', , 'using-joomla/extensions/components/news-feeds-component', 'index.php?option=com_content&view=article&id=12', 'component', 1, 268, 4, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 108, 115, 0, '*'), (268, 'aboutjoomla', 'Components', 'components', , 'using-joomla/extensions/components', 'index.php?option=com_content&view=category&layout=blog&id=39', 'component', 1, 277, 3, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"maxLevel":"","show_empty_categories":"","show_description":"1","show_description_image":"","show_category_title":"","show_cat_num_articles":"","num_leading_articles":"0","num_intro_articles":"7","num_columns":"1","num_links":"0","multi_column_order":"","orderby_pri":"","orderby_sec":"order","order_date":"","show_pagination":"0","show_noauth":"","show_title":"","link_titles":"","show_intro":"","show_category":"0","link_category":"","show_parent_category":"0","link_parent_category":"","show_author":"0","link_author":"0","show_create_date":"0","show_modify_date":"0","show_publish_date":"0","show_item_navigation":"0","show_readmore":"","show_icons":"0","show_print_icon":"0","show_email_icon":"0","show_hits":"0","article-allow_ratings":"","article-allow_comments":"","show_feed_link":"","feed_summary":"","menu-anchor_title":"","menu-anchor_css":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 73, 136, 0, '*'), (277, 'aboutjoomla', 'Using Extensions', 'extensions', , 'using-joomla/extensions', 'index.php?option=com_content&view=categories&id=32', 'component', 1, 280, 2, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"show_base_description":"1","categories_description":"","maxLevel":"-1","show_empty_categories":"1","show_description":"1","show_description_image":"1","show_cat_num_articles":"","display_num":"","category_layout":"","show_headings":"0","show_date":"hide","date_format":"","filter_field":"hide","num_leading_articles":"0","num_intro_articles":"5","num_columns":"1","num_links":"0","multi_column_order":"","orderby_pri":"order","orderby_sec":"","order_date":"","show_pagination":"","show_noauth":"","show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","link_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_readmore":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","show_feed_link":"","feed_summary":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":1,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 72, 231, 0, '*'), (271, 'aboutjoomla', 'Users Component', 'users-component', , 'using-joomla/extensions/components/users-component', 'index.php?option=com_content&view=article&id=14', 'component', 1, 268, 4, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 116, 129, 0, '*'), (272, 'aboutjoomla', 'Article Categories', 'article-categories', , 'using-joomla/extensions/components/content-component/article-categories', 'index.php?option=com_content&view=categories', 'component', 1, 266, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"Category":"29","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 77, 78, 0, '*'), (273, 'aboutjoomla', 'Administrator Components', 'administrator-components', , 'using-joomla/extensions/components/administrator-components', 'index.php?option=com_content&view=article&id=83', 'component', 1, 268, 4, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_noauth":"","show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","link_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","robots":"","rights":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","secure":0}', 134, 135, 0, '*'), (274, 'aboutjoomla', 'Weblinks Single Category', 'webl-links-single-category', , 'using-joomla/extensions/components/weblinks-component/webl-links-single-category', 'index.php?option=com_weblinks&view=category&id=21', 'component', 1, 265, 5, 21, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"show_feed_link":"1","image":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 103, 104, 0, '*'), (275, 'aboutjoomla', 'Contact Single Category', 'contact-single-category', , 'using-joomla/extensions/components/contact-component/contact-single-category', 'index.php?option=com_contact&view=category&catid=26&id=26', 'component', 1, 270, 5, 8, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"maxLevel":"-1","show_empty_categories":"","show_description":"","show_description_image":"","show_cat_num_articles":"","display_num":"20","show_headings":"","filter_field":"","show_pagination":"","show_noauth":"","presentation_style":"sliders","show_name":"","show_position":"","show_email":"","show_street_address":"","show_suburb":"","show_state":"","show_postcode":"","show_country":"","show_telephone":"","show_mobile":"","show_fax":"","show_webpage":"","show_misc":"","show_image":"","allow_vcard":"","show_articles":"","show_links":"1","linka_name":"","linkb_name":"","linkc_name":"","linkd_name":"","linke_name":"","show_email_form":"","show_email_copy":"","banned_email":"","banned_subject":"","banned_text":"","validate_session":"","custom_reply":"","redirect":"","show_feed_link":"1","feed_summary":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 93, 94, 0, '*'), (276, 'aboutjoomla', 'Search Component', 'search-component', , 'using-joomla/extensions/components/search-component', 'index.php?option=com_content&view=article&id=20', 'component', 1, 268, 4, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 130, 133, 0, '*'), (280, 'aboutjoomla', 'Using Joomla!', 'using-joomla', , 'using-joomla', 'index.php?option=com_content&view=article&id=24', 'component', 1, 1, 1, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_noauth":"","show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","link_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","robots":"","rights":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","secure":0}', 69, 236, 0, '*'), (281, 'aboutjoomla', 'Modules', 'modules', , 'using-joomla/extensions/modules', 'index.php?option=com_content&view=category&layout=blog&id=40', 'component', 1, 277, 3, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"maxLevel":"","show_empty_categories":"","show_description":"1","show_description_image":"1","show_category_title":"","show_cat_num_articles":"","num_leading_articles":"0","num_intro_articles":"5","num_columns":"1","num_links":"0","multi_column_order":"","orderby_pri":"order","orderby_sec":"order","order_date":"","show_pagination":"","show_noauth":"","show_title":"1","link_titles":"","show_intro":"","show_category":"0","link_category":"0","show_parent_category":"0","link_parent_category":"","show_author":"0","link_author":"0","show_create_date":"0","show_modify_date":"0","show_publish_date":"0","show_item_navigation":"0","show_readmore":"0","show_icons":"0","show_print_icon":"0","show_email_icon":"0","show_hits":"0","article-allow_ratings":"","article-allow_comments":"","show_feed_link":"","feed_summary":"","menu-anchor_title":"","menu-anchor_css":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 137, 192, 0, '*'), (282, 'aboutjoomla', 'Templates', 'templates', , 'using-joomla/extensions/templates', 'index.php?option=com_content&view=category&layout=blog&id=41', 'component', 1, 277, 3, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"maxLevel":"0","show_empty_categories":"","show_description":"1","show_description_image":"","show_category_title":"1","show_cat_num_articles":"","num_leading_articles":"0","num_intro_articles":"4","num_columns":"2","num_links":"4","multi_column_order":"","orderby_pri":"","orderby_sec":"order","order_date":"","show_pagination":"0","show_noauth":"","show_title":"1","link_titles":"1","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","link_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_readmore":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","show_feed_link":"","feed_summary":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 193, 212, 0, '*'), (283, 'aboutjoomla', 'Languages', 'languages', , 'using-joomla/extensions/languages', 'index.php?option=com_content&view=article&id=17', 'component', 1, 277, 3, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 213, 214, 0, '*'), (284, 'aboutjoomla', 'Plugins', 'plugins', , 'using-joomla/extensions/plugins', 'index.php?option=com_content&view=category&layout=blog&id=43', 'component', 1, 277, 3, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"maxLevel":"","show_empty_categories":"","show_description":"1","show_description_image":"","show_category_title":"","show_cat_num_articles":"","num_leading_articles":"0","num_intro_articles":"7","num_columns":"1","num_links":"0","multi_column_order":"","orderby_pri":"","orderby_sec":"order","order_date":"","show_pagination":"","show_noauth":"","show_title":"","link_titles":"","show_intro":"","show_category":"0","link_category":"0","show_parent_category":"0","link_parent_category":"0","show_author":"0","link_author":"","show_create_date":"0","show_modify_date":"0","show_publish_date":"0","show_item_navigation":"","show_readmore":"","show_icons":"0","show_print_icon":"0","show_email_icon":"0","show_hits":"0","show_feed_link":"","feed_summary":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 215, 230, 0, '*'), (285, 'aboutjoomla', 'Typography Atomic', 'typography-atomic', , 'using-joomla/extensions/templates/atomic/typography-atomic', 'index.php?option=com_content&view=article&id=25', 'component', 1, 422, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 3, '{"show_noauth":"","show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","link_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","robots":"","rights":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","secure":0}', 207, 208, 0, '*'), (286, 'aboutjoomla', 'Typography Milky Way', 'typography-milky-way', , 'using-joomla/extensions/templates/milky-way/typography-milky-way', 'index.php?option=com_content&view=article&id=25', 'component', 1, 421, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 1, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"0","link_category":"0","show_title":"","link_titles":"","show_intro":"","show_author":"0","show_create_date":"0","show_modify_date":"0","show_publish_date":"0","show_item_navigation":"","show_icons":"1","show_print_icon":"1","show_email_icon":"1","show_hits":"0","metadata":{"robots":"","rights":""},"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 201, 202, 0, '*'), (290, 'mainmenu', 'Articles', 'articles', , 'site-map/articles', 'index.php?option=com_content&view=categories&id=0', 'component', 1, 294, 2, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"categories_description":"","maxLevel":"-1","show_empty_categories":"","show_description":"","show_description_image":"","show_cat_num_articles":"","display_num":"","category_layout":"","show_headings":"","show_date":"","date_format":"","filter_field":"","num_leading_articles":"1","num_intro_articles":"4","num_columns":"2","num_links":"4","multi_column_order":"","orderby_pri":"","orderby_sec":"","order_date":"","show_pagination":"","show_noauth":"","show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","link_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_readmore":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","article-allow_ratings":"","article-allow_comments":"","show_feed_link":"","feed_summary":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 4, 5, 0, '*'), (294, 'mainmenu', 'Site Map', 'site-map', , 'site-map', 'index.php?option=com_content&view=article&id=26', 'component', 1, 1, 1, 22, -4, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"show_noauth":"","show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","link_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","robots":"","rights":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","secure":0}', 3, 10, 0, '*'), (445, 'mainmenu', 'Parks', 'parks', , 'sample-sites/parks', 'index.php?Itemid=', 'alias', 1, 238, 2, 0, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"aliasoptions":"243","menu-anchor_title":"","menu-anchor_css":"","menu_image":""}', 256, 257, 0, '*'), (300, 'aboutjoomla', 'Latest Users', 'latest-users', , 'using-joomla/extensions/modules/user-modules/latest-users', 'index.php?option=com_content&view=article&id=32', 'component', 1, 412, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","metadata":{"robots":"","rights":""},"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 153, 154, 0, '*'), (301, 'aboutjoomla', 'Whos Online', 'whos-online', , 'using-joomla/extensions/modules/user-modules/whos-online', 'index.php?option=com_content&view=article&id=31', 'component', 1, 412, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","metadata":{"robots":"","rights":""},"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 155, 156, 0, '*'), (302, 'aboutjoomla', 'Most Read', 'most-read', , 'using-joomla/extensions/modules/content-modules/most-read', 'index.php?option=com_content&view=article&id=30', 'component', 1, 411, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"show_noauth":"","show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","link_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","robots":"","rights":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","secure":0}', 139, 140, 0, '*'), (303, 'aboutjoomla', 'Menu', 'menu', , 'using-joomla/extensions/modules/menu-modules/menu', 'index.php?option=com_content&view=article&id=40', 'component', 1, 415, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","metadata":{"robots":"","rights":""},"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 189, 190, 0, '*'), (304, 'aboutjoomla', 'Statistics', 'statistics', , 'using-joomla/extensions/modules/utility-modules/statistics', 'index.php?option=com_content&view=article&id=37', 'component', 1, 414, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","metadata":{"robots":"","rights":""},"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 179, 180, 0, '*'); INSERT INTO `jos_menu` (`id`, `menutype`, `title`, `alias`, `note`, `path`, `link`, `type`, `published`, `parent_id`, `level`, `component_id`, `ordering`, `checked_out`, `checked_out_time`, `browserNav`, `access`, `img`, `template_style_id`, `params`, `lft`, `rgt`, `home`, `language`) VALUES (305, 'aboutjoomla', 'Banner', 'banner', , 'using-joomla/extensions/modules/display-modules/banner', 'index.php?option=com_content&view=article&id=41', 'component', 1, 413, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","metadata":{"robots":"","rights":""},"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 163, 164, 0, '*'), (306, 'aboutjoomla', 'Search', 'search', , 'using-joomla/extensions/modules/utility-modules/search', 'index.php?option=com_content&view=article&id=36', 'component', 1, 414, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","metadata":{"robots":"","rights":""},"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 181, 182, 0, '*'), (307, 'aboutjoomla', 'Random Image', 'random-image', , 'using-joomla/extensions/modules/display-modules/random-image', 'index.php?option=com_content&view=article&id=35', 'component', 1, 413, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","metadata":{"robots":"","rights":""},"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 161, 162, 0, '*'), (309, 'aboutjoomla', 'News Flash', 'news-flash', , 'using-joomla/extensions/modules/content-modules/news-flash', 'index.php?option=com_content&view=article&id=34', 'component', 1, 411, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","metadata":{"robots":"","rights":""},"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 141, 142, 0, '*'), (310, 'aboutjoomla', 'Latest Articles', 'latest-articles', , 'using-joomla/extensions/modules/content-modules/latest-articles', 'index.php?option=com_content&view=article&id=28', 'component', 1, 411, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","metadata":{"robots":"","rights":""},"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 143, 144, 0, '*'), (311, 'aboutjoomla', 'Syndicate', 'syndicate', , 'using-joomla/extensions/modules/utility-modules/syndicate', 'index.php?option=com_content&view=article&id=38', 'component', 1, 414, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","metadata":{"robots":"","rights":""},"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 177, 178, 0, '*'), (312, 'aboutjoomla', 'Login', 'login', , 'using-joomla/extensions/modules/user-modules/login', 'index.php?option=com_content&view=article&id=42', 'component', 1, 412, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","metadata":{"robots":"","rights":""},"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 157, 158, 0, '*'), (313, 'aboutjoomla', 'Wrapper', 'wrapper', , 'using-joomla/extensions/modules/display-modules/wrapper', 'index.php?option=com_content&view=article&id=39', 'component', 1, 413, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","metadata":{"robots":"","rights":""},"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 169, 170, 0, '*'), (451, 'aboutjoomla', 'Milky Way Home', 'milky-way-home', , 'using-joomla/extensions/templates/milky-way/milky-way-home', 'index.php?option=com_content&view=featured', 'component', 1, 421, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 1, '{"maxLevel":"","show_empty_categories":"","show_description":"","show_description_image":"","show_cat_num_articles":"","num_leading_articles":"1","num_intro_articles":"4","num_columns":"2","num_links":"4","multi_column_order":"","orderby_pri":"","orderby_sec":"","order_date":"","show_pagination":"","show_noauth":"","show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","link_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_readmore":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","show_feed_link":"","feed_summary":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 203, 204, 0, '*'), (316, 'aboutjoomla', 'Home Page Atomic', 'home-page-atomic', , 'using-joomla/extensions/templates/atomic/home-page-atomic', 'index.php?option=com_content&view=featured', 'component', 1, 422, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 3, '{"maxLevel":"","show_empty_categories":"","show_description":"","show_description_image":"","show_cat_num_articles":"","num_leading_articles":"1","num_intro_articles":"4","num_columns":"2","num_links":"4","multi_column_order":"1","orderby_pri":"","orderby_sec":"front","order_date":"","show_pagination":"2","show_noauth":"","show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","link_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_readmore":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","show_feed_link":"1","feed_summary":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 209, 210, 0, '*'), (317, 'aboutjoomla', 'System', 'system', , 'using-joomla/extensions/plugins/system', 'index.php?option=com_content&view=article&id=47', 'component', 1, 284, 4, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 216, 217, 0, '*'), (318, 'aboutjoomla', 'Authentication', 'authentication', , 'using-joomla/extensions/plugins/authentication', 'index.php?option=com_content&view=article&id=48', 'component', 1, 284, 4, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 218, 219, 0, '*'), (319, 'aboutjoomla', 'Content', 'content', , 'using-joomla/extensions/plugins/content', 'index.php?option=com_content&view=article&id=49', 'component', 1, 284, 4, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 220, 221, 0, '*'), (320, 'aboutjoomla', 'Editors', 'editors', , 'using-joomla/extensions/plugins/editors', 'index.php?option=com_content&view=article&id=50', 'component', 1, 284, 4, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 222, 223, 0, '*'), (321, 'aboutjoomla', 'Editors Extended', 'editors-extended', , 'using-joomla/extensions/plugins/editors-extended', 'index.php?option=com_content&view=article&id=51', 'component', 1, 284, 4, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 224, 225, 0, '*'), (322, 'aboutjoomla', 'Search', 'search', , 'using-joomla/extensions/plugins/search', 'index.php?option=com_content&view=article&id=52', 'component', 1, 284, 4, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 226, 227, 0, '*'), (323, 'aboutjoomla', 'User', 'user', , 'using-joomla/extensions/plugins/user', 'index.php?option=com_content&view=article&id=53', 'component', 1, 284, 4, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 228, 229, 0, '*'), (324, 'aboutjoomla', 'Footer', 'footer', , 'using-joomla/extensions/modules/display-modules/footer', 'index.php?option=com_content&view=article&id=43', 'component', 1, 413, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","metadata":{"robots":"","rights":""},"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 167, 168, 0, '*'), (325, 'aboutjoomla', 'Archive', 'archive', , 'using-joomla/extensions/modules/content-modules/archive', 'index.php?option=com_content&view=article&id=27', 'component', 1, 411, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","metadata":{"robots":"","rights":""},"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 145, 146, 0, '*'), (326, 'aboutjoomla', 'Related Items', 'related-items', , 'using-joomla/extensions/modules/content-modules/related-items', 'index.php?option=com_content&view=article&id=55', 'component', 1, 411, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","metadata":{"robots":"","rights":""},"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 147, 148, 0, '*'), (399, 'parks', 'Animals', 'animals', , 'image-gallery/animals', 'index.php?option=com_content&view=category&layout=blog&id=37', 'component', 1, 244, 2, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 114, '{"maxLevel":"","show_empty_categories":"","show_description":"1","show_description_image":"0","show_category_title":"","show_cat_num_articles":"","num_leading_articles":"0","num_intro_articles":"6","num_columns":"2","num_links":"4","multi_column_order":"1","orderby_pri":"","orderby_sec":"","order_date":"","show_pagination":"2","show_noauth":"","show_title":"","link_titles":"","show_intro":"0","show_category":"1","link_category":"1","show_parent_category":"","link_parent_category":"","show_author":"0","link_author":"","show_create_date":"0","show_modify_date":"0","show_publish_date":"0","show_item_navigation":"1","show_readmore":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","show_feed_link":"1","feed_summary":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 62, 63, 0, '*'), (400, 'parks', 'Scenery', 'scenery', , 'image-gallery/scenery', 'index.php?option=com_content&view=category&layout=blog&id=36', 'component', 1, 244, 2, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 114, '{"maxLevel":"","show_empty_categories":"","show_description":"0","show_description_image":"0","show_category_title":"","show_cat_num_articles":"","num_leading_articles":"0","num_intro_articles":"4","num_columns":"2","num_links":"4","multi_column_order":"1","orderby_pri":"","orderby_sec":"","order_date":"","show_pagination":"2","show_noauth":"","show_title":"","link_titles":"","show_intro":"0","show_category":"1","link_category":"","show_parent_category":"0","link_parent_category":"0","show_author":"0","link_author":"0","show_create_date":"0","show_modify_date":"0","show_publish_date":"0","show_item_navigation":"1","show_readmore":"1","show_icons":"0","show_print_icon":"0","show_email_icon":"0","show_hits":"0","show_feed_link":"1","feed_summary":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 64, 65, 0, '*'), (402, 'aboutjoomla', 'Login Form', 'login-form', , 'using-joomla/extensions/components/users-component/login-form', 'index.php?option=com_users&view=login', 'component', 1, 271, 5, 25, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 117, 118, 0, '*'), (403, 'aboutjoomla', 'User Profile', 'user-profile', , 'using-joomla/extensions/components/users-component/user-profile', 'index.php?option=com_users&view=profile', 'component', 1, 271, 5, 25, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 119, 120, 0, '*'), (404, 'aboutjoomla', 'Edit User Profile', 'edit-user-profile', , 'using-joomla/extensions/components/users-component/edit-user-profile', 'index.php?option=com_users&view=profile&layout=edit', 'component', 1, 271, 5, 25, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 121, 122, 0, '*'), (405, 'aboutjoomla', 'Registration Form', 'registration-form', , 'using-joomla/extensions/components/users-component/registration-form', 'index.php?option=com_users&view=registration', 'component', 1, 271, 5, 25, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 123, 124, 0, '*'), (406, 'aboutjoomla', 'Username Reminder Request', 'username-reminder', , 'using-joomla/extensions/components/users-component/username-reminder', 'index.php?option=com_users&view=remind', 'component', 1, 271, 5, 25, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 125, 126, 0, '*'), (409, 'aboutjoomla', 'Password Reset', 'password-reset', , 'using-joomla/extensions/components/users-component/password-reset', 'index.php?option=com_users&view=reset', 'component', 1, 271, 5, 25, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 127, 128, 0, '*'), (410, 'aboutjoomla', 'Feed Display', 'feed-display', , 'using-joomla/extensions/modules/display-modules/feed-display', 'index.php?option=com_content&view=article&id=33', 'component', 1, 413, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","metadata":{"robots":"","rights":""},"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 165, 166, 0, '*'), (411, 'aboutjoomla', 'Content Modules', 'content-modules', , 'using-joomla/extensions/modules/content-modules', 'index.php?option=com_content&view=article&id=66', 'component', 1, 281, 4, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","metadata":{"robots":"","rights":""},"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 138, 151, 0, '*'), (412, 'aboutjoomla', 'User Modules', 'user-modules', , 'using-joomla/extensions/modules/user-modules', 'index.php?option=com_content&view=article&id=67', 'component', 1, 281, 4, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","metadata":{"robots":"","rights":""},"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 152, 159, 0, '*'), (413, 'aboutjoomla', 'Display Modules', 'display-modules', , 'using-joomla/extensions/modules/display-modules', 'index.php?option=com_content&view=article&id=68', 'component', 1, 281, 4, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","metadata":{"robots":"","rights":""},"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 160, 175, 0, '*'), (414, 'aboutjoomla', 'Utility Modules', 'utility-modules', , 'using-joomla/extensions/modules/utility-modules', 'index.php?option=com_content&view=article&id=69', 'component', 1, 281, 4, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","metadata":{"robots":"","rights":""},"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 176, 187, 0, '*'), (415, 'aboutjoomla', 'Menu Modules', 'menu-modules', , 'using-joomla/extensions/modules/menu-modules', 'index.php?option=com_content&view=article&id=70', 'component', 1, 281, 4, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","metadata":{"robots":"","rights":""},"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 188, 191, 0, '*'), (416, 'aboutjoomla', 'Breadcrumbs', 'breadcrumbs', , 'using-joomla/extensions/modules/utility-modules/breadcrumbs', 'index.php?option=com_content&view=article&id=73', 'component', 1, 414, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","metadata":{"robots":"","rights":""},"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 183, 184, 0, '*'), (417, 'aboutjoomla', 'Weblinks', 'weblinks', , 'using-joomla/extensions/modules/display-modules/weblinks', 'index.php?option=com_content&view=article&id=72', 'component', 1, 413, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","metadata":{"robots":"","rights":""},"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 171, 172, 0, '*'), (418, 'aboutjoomla', 'Custom HTML', 'custom-html', , 'using-joomla/extensions/modules/display-modules/custom-html', 'index.php?option=com_content&view=article&id=71', 'component', 1, 413, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","metadata":{"robots":"","rights":""},"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 173, 174, 0, '*'), (419, 'aboutjoomla', 'Beez 2', 'beez-2', , 'using-joomla/extensions/templates/beez-2', 'index.php?option=com_content&view=article&id=74', 'component', 1, 282, 4, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"show_noauth":"","show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","link_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","robots":"","rights":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","secure":0}', 194, 199, 0, '*'), (421, 'aboutjoomla', 'Milky Way', 'milky-way', , 'using-joomla/extensions/templates/milky-way', 'index.php?option=com_content&view=article&id=78', 'component', 1, 282, 4, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_category":"","link_category":"","show_title":"","link_titles":"","show_intro":"","show_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","metadata":{"robots":"","rights":""},"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 200, 205, 0, '*'), (422, 'aboutjoomla', 'Atomic', 'atomic', , 'using-joomla/extensions/templates/atomic', 'index.php?option=com_content&view=article&id=76', 'component', 1, 282, 4, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"show_noauth":"","show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","link_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","robots":"","rights":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","secure":0}', 206, 211, 0, '*'), (423, 'aboutjoomla', 'Typography Beez', 'typography-beez', , 'using-joomla/extensions/templates/beez-2/typography-beez', 'index.php?option=com_content&view=article&id=25', 'component', 1, 419, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 4, '{"show_noauth":"","show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","link_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","robots":"","rights":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","secure":0}', 195, 196, 0, '*'), (424, 'aboutjoomla', 'Home Page Beez', 'home-page-beez', , 'using-joomla/extensions/templates/beez-2/home-page-beez', 'index.php?option=com_content&view=featured', 'component', 1, 419, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 4, '{"maxLevel":"","show_empty_categories":"","show_description":"","show_description_image":"","show_cat_num_articles":"","num_leading_articles":"1","num_intro_articles":"4","num_columns":"2","num_links":"4","multi_column_order":"1","orderby_pri":"","orderby_sec":"front","order_date":"","show_pagination":"2","show_noauth":"","show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","link_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_readmore":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","show_feed_link":"1","feed_summary":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 197, 198, 0, '*'), (430, 'fruitshop', 'Contact us', 'contact-us', , 'contact-us', 'index.php?option=com_contact&view=category&catid=47&id=26', 'component', 1, 1, 1, 8, 0, 0, '0000-00-00 00:00:00', 0, 1, , 6, '{"maxLevel":"-1","show_empty_categories":"","show_description":"","show_description_image":"","show_cat_num_articles":"","display_num":"20","show_headings":"","filter_field":"","show_pagination":"","show_noauth":"","show_name":"","show_position":"","show_email":"","show_street_address":"","show_suburb":"","show_state":"","show_postcode":"","show_country":"","show_telephone":"","show_mobile":"","show_fax":"","show_webpage":"","show_misc":"","show_image":"","allow_vcard":"","show_articles":"","show_links":"1","linka_name":"","linkb_name":"","linkc_name":"","linkd_name":"","linke_name":"","show_email_form":"","show_email_copy":"","banned_email":"","banned_subject":"","banned_text":"","validate_session":"","custom_reply":"","redirect":"","article-allow_ratings":"","article-allow_comments":"","show_feed_link":"1","feed_summary":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 249, 250, 0, '*'), (427, 'fruitshop', 'Fruit encyclopedia', 'fruit-encyclopedia', , 'fruit-encyclopedia', 'index.php?option=com_contact&view=categories&id=49', 'component', 1, 1, 1, 8, 0, 0, '0000-00-00 00:00:00', 0, 1, , 6, '{"show_base_description":"","categories_description":"","maxLevel":"-1","show_empty_categories":"1","show_description":"","show_description_image":"","show_cat_num_articles":"1","display_num":"","show_headings":"0","filter_field":"hide","show_pagination":"","show_noauth":"","presentation_style":"full","show_name":"","show_position":"","show_email":"","show_street_address":"","show_suburb":"","show_state":"","show_postcode":"","show_country":"","show_telephone":"","show_mobile":"","show_fax":"","show_webpage":"","show_misc":"","show_image":"","allow_vcard":"","show_articles":"","show_links":"1","linka_name":"","linkb_name":"","linkc_name":"","linkd_name":"","linke_name":"","show_email_form":"","show_email_copy":"","banned_email":"","banned_subject":"","banned_text":"","validate_session":"","custom_reply":"","redirect":"","show_feed_link":"","feed_summary":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":" categories-listalphabet","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 245, 246, 0, '*'), (429, 'fruitshop', 'Welcome', 'welcome', 'Fruit store front page', 'welcome', 'index.php?option=com_content&view=article&id=79', 'component', 1, 1, 1, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 6, '{"show_noauth":"","show_title":"0","link_titles":"0","show_intro":"1","show_category":"0","link_category":"0","show_parent_category":"","link_parent_category":"","show_author":"0","link_author":"","show_create_date":"0","show_modify_date":"0","show_publish_date":"0","show_item_navigation":"0","show_icons":"0","show_print_icon":"0","show_email_icon":"0","show_hits":"0","robots":"","rights":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","secure":0}', 243, 244, 0, '*'), (431, 'fruitshop', 'Growers', 'growers', , 'growers', 'index.php?option=com_content&view=category&layout=blog&id=76', 'component', 1, 1, 1, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 6, '{"maxLevel":"0","show_empty_categories":"","show_description":"1","show_description_image":"","show_category_title":"1","show_cat_num_articles":"","num_leading_articles":"5","num_intro_articles":"0","num_columns":"1","num_links":"4","multi_column_order":"","orderby_pri":"","orderby_sec":"alpha","order_date":"","show_pagination":"","show_noauth":"","show_title":"1","link_titles":"1","show_intro":"1","show_category":"0","link_category":"","show_parent_category":"0","link_parent_category":"0","show_author":"0","link_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"0","show_item_navigation":"","show_readmore":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"0","show_feed_link":"","feed_summary":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 247, 248, 0, '*'), (432, 'fruitshop', 'Login ', 'login-', , 'login-', 'index.php?option=com_users&view=login', 'component', 1, 1, 1, 25, 0, 0, '0000-00-00 00:00:00', 0, 1, , 6, '{"login_redirect_url":"","logindescription_show":"1","login_description":"","login_image":"","logout_redirect_url":"","logoutdescription_show":"1","logout_description":"","logout_image":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 251, 252, 0, '*'), (433, 'fruitshop', 'Directions', 'directions', , 'directions', 'index.php?option=com_content&view=article&id=82', 'component', 1, 1, 1, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 6, '{"article-allow_ratings":"","article-allow_comments":"","show_noauth":"","show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","link_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","robots":"","rights":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","secure":0}', 253, 254, 0, '*'), (435, 'mainmenu', 'Home', 'homepage', , 'homepage', 'index.php?option=com_content&view=featured', 'component', 1, 1, 1, 22, -5, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"maxLevel":"","show_empty_categories":"","show_description":"","show_description_image":"","show_cat_num_articles":"","num_leading_articles":"1","num_intro_articles":"3","num_columns":"3","num_links":"0","multi_column_order":"1","orderby_pri":"","orderby_sec":"front","order_date":"","show_pagination":"2","show_noauth":"","show_title":"1","link_titles":"","show_intro":"","show_category":"0","link_category":"0","show_parent_category":"0","link_parent_category":"0","show_author":"0","link_author":"0","show_create_date":"0","show_modify_date":"0","show_publish_date":"0","show_item_navigation":"0","show_readmore":"1","show_icons":"0","show_print_icon":"0","show_email_icon":"0","show_hits":"0","show_feed_link":"1","feed_summary":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 1, 2, 1, '*'), (444, 'top', 'Sample Sites', 'sample-sites-2', , 'sample-sites-2', 'index.php?Itemid=', 'alias', 1, 1, 1, 0, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"aliasoptions":"238","menu-anchor_title":"","menu-anchor_css":"","menu_image":""}', 263, 264, 0, '*'), (436, 'aboutjoomla', 'Getting help', 'getting-help', , 'using-joomla/getting-help', 'index.php?option=com_content&view=article&id=84', 'component', 1, 280, 2, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_noauth":"","show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","link_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","robots":"","rights":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","secure":0}', 232, 233, 0, '*'), (437, 'aboutjoomla', 'Getting started', 'getting-started', , 'using-joomla/getting-started', 'index.php?option=com_content&view=article&id=85', 'component', 1, 280, 2, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_noauth":"","show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","link_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","robots":"","rights":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","secure":0}', 70, 71, 0, '*'), (438, 'mainmenu', 'Weblinks', 'weblinks', , 'site-map/weblinks', 'index.php?option=com_weblinks&view=categories&id=0', 'component', 1, 294, 2, 21, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"categories_description":"","maxLevel":"-1","show_empty_categories":"","show_description":"","show_description_image":"","show_cat_num_articles":"","display_num":"","show_headings":"","orderby_pri":"","show_pagination":"","show_noauth":"","article-allow_ratings":"","article-allow_comments":"","show_feed_link":"","feed_summary":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 6, 7, 0, '*'), (439, 'mainmenu', 'Contacts', 'contacts', , 'site-map/contacts', 'index.php?option=com_contact&view=categories&id=0', 'component', 1, 294, 2, 8, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"categories_description":"","maxLevel":"-1","show_empty_categories":"","show_description":"","show_description_image":"","show_cat_num_articles":"","display_num":"","show_headings":"","filter_field":"","show_pagination":"","show_noauth":"","show_name":"","show_position":"","show_email":"","show_street_address":"","show_suburb":"","show_state":"","show_postcode":"","show_country":"","show_telephone":"","show_mobile":"","show_fax":"","show_webpage":"","show_misc":"","show_image":"","allow_vcard":"","show_articles":"","show_links":"1","linka_name":"","linkb_name":"","linkc_name":"","linkd_name":"","linke_name":"","show_email_form":"","show_email_copy":"","banned_email":"","banned_subject":"","banned_text":"","validate_session":"","custom_reply":"","redirect":"","article-allow_ratings":"","article-allow_comments":"","show_feed_link":"","feed_summary":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 8, 9, 0, '*'), (443, 'aboutjoomla', 'Article Categories', 'article-categories-view', , 'using-joomla/extensions/modules/content-modules/article-categories-view', 'index.php?option=com_content&view=article&id=86', 'component', 1, 411, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"article-allow_ratings":"","article-allow_comments":"","show_noauth":"","show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","link_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","robots":"","rights":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","secure":0}', 149, 150, 0, '*'), (446, 'mainmenu', 'Shop', 'shop', , 'sample-sites/shop', 'index.php?Itemid=', 'alias', 1, 238, 2, 0, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"aliasoptions":"429","menu-anchor_title":"","menu-anchor_css":"","menu_image":""}', 258, 259, 0, '*'), (447, 'aboutjoomla', 'Language Switcher', 'language-switcher', , 'using-joomla/extensions/modules/utility-modules/language-switcher', 'index.php?option=com_content&view=article&id=87', 'component', 1, 414, 5, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"show_noauth":"","show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","link_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","robots":"","rights":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","secure":0}', 185, 186, 0, '*'), (448, 'mainmenu', 'Site Administrator', 'site-administrator', , 'site-administrator', 'administrator', 'url', 1, 1, 1, 0, 0, 0, '0000-00-00 00:00:00', 1, 1, , 0, '{"menu-anchor_title":"","menu-anchor_css":"","menu_image":""}', 261, 262, 0, '*'), (449, 'usermenu', 'Submit an Article', 'submit-an-article', , 'submit-an-article', 'index.php?option=com_content&view=form&layout=edit', 'component', 1, 1, 1, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"3","secure":0}', 267, 268, 0, '*'), (450, 'usermenu', 'Submit a Web Link', 'submit-a-web-link', , 'submit-a-web-link', 'index.php?option=com_weblinks&view=form&layout=edit', 'component', 1, 1, 1, 21, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":0,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 269, 270, 0, '*'), (452, 'aboutjoomla', 'Featured Contacts', 'featured-contacts', , 'using-joomla/extensions/components/contact-component/featured-contacts', 'index.php?option=com_contact&view=featured&id=47', 'component', 1, 270, 5, 8, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"maxLevel":"-1","show_empty_categories":"","show_description":"","show_description_image":"","show_cat_num_articles":"","display_num":"","show_headings":"","filter_field":"","show_pagination":"","show_noauth":"","presentation_style":"sliders","show_name":"","show_position":"","show_email":"","show_street_address":"","show_suburb":"","show_state":"","show_postcode":"","show_country":"","show_telephone":"","show_mobile":"","show_fax":"","show_webpage":"","show_misc":"","show_image":"","allow_vcard":"","show_articles":"","show_links":"1","linka_name":"","linkb_name":"","linkc_name":"","linkd_name":"","linke_name":"","show_email_form":"","show_email_copy":"","banned_email":"","banned_subject":"","banned_text":"","validate_session":"","custom_reply":"","redirect":"","show_feed_link":"","feed_summary":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":1,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"","secure":0}', 97, 98, 0, '*'); INSERT INTO `jos_menu` (`id`, `menutype`, `title`, `alias`, `note`, `path`, `link`, `type`, `published`, `parent_id`, `level`, `component_id`, `ordering`, `checked_out`, `checked_out_time`, `browserNav`, `access`, `img`, `template_style_id`, `params`, `lft`, `rgt`, `home`, `language`) VALUES (453, 'aboutjoomla', 'Parameters', 'parameters', , 'using-joomla/parameters', 'index.php?option=com_content&view=article&id=88', 'component', 1, 280, 2, 22, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"show_noauth":"","show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"","link_parent_category":"","show_author":"","link_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"","show_item_navigation":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"","robots":"","rights":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","show_page_heading":1,"page_title":"","page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","secure":0}', 234, 235, 0, '*'), (454, 'top', 'Home', 'home', , 'home', 'index.php?Itemid=', 'alias', 1, 1, 1, 0, 0, 0, '0000-00-00 00:00:00', 0, 1, , 0, '{"aliasoptions":"435","menu-anchor_title":"","menu-anchor_css":"","menu_image":""}', 265, 266, 0, '*'), (462, '_adminmenu', 'com_jforum', 'jforum', , , 'index.php?option=com_jforum', 'component', 0, 1, 1, 10005, 0, 0, '0000-00-00 00:00:00', 0, 1, 'class:component', 0, , 271, 272, 0, );

    -- --------------------------------------------------------

    -- -- Table structure for table `jos_menu_types` --


    CREATE TABLE IF NOT EXISTS `jos_menu_types` (

     `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
     `menutype` varchar(24) NOT NULL,
     `title` varchar(48) NOT NULL,
     `description` varchar(255) NOT NULL DEFAULT ,
     PRIMARY KEY (`id`),
     UNIQUE KEY `idx_menutype` (`menutype`)
    

    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ;

    -- -- Dumping data for table `jos_menu_types` --

    INSERT INTO `jos_menu_types` (`id`, `menutype`, `title`, `description`) VALUES (2, 'usermenu', 'User Menu', 'A Menu for logged in Users'), (3, 'top', 'Top', 'Links for major types of users'), (4, 'aboutjoomla', 'About Joomla', 'All about Joomla!'), (5, 'parks', 'Australian Parks', 'Main menu for a site about Australian parks'), (6, 'mainmenu', 'Main Menu', 'Simple Home Menu'), (7, 'fruitshop', 'Fruit Shop', 'Menu for the sample shop site.');

    -- --------------------------------------------------------

    -- -- Table structure for table `jos_messages` --


    CREATE TABLE IF NOT EXISTS `jos_messages` (

     `message_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
     `user_id_from` int(10) unsigned NOT NULL DEFAULT '0',
     `user_id_to` int(10) unsigned NOT NULL DEFAULT '0',
     `folder_id` tinyint(3) unsigned NOT NULL DEFAULT '0',
     `date_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
     `state` tinyint(1) NOT NULL DEFAULT '0',
     `priority` tinyint(1) unsigned NOT NULL DEFAULT '0',
     `subject` varchar(255) NOT NULL DEFAULT ,
     `message` text NOT NULL,
     PRIMARY KEY (`message_id`),
     KEY `useridto_state` (`user_id_to`,`state`)
    

    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

    -- -- Dumping data for table `jos_messages` --


    -- --------------------------------------------------------

    -- -- Table structure for table `jos_messages_cfg` --


    CREATE TABLE IF NOT EXISTS `jos_messages_cfg` (

     `user_id` int(10) unsigned NOT NULL DEFAULT '0',
     `cfg_name` varchar(100) NOT NULL DEFAULT ,
     `cfg_value` varchar(255) NOT NULL DEFAULT ,
     UNIQUE KEY `idx_user_var_name` (`user_id`,`cfg_name`)
    

    ) ENGINE=MyISAM DEFAULT CHARSET=utf8;

    -- -- Dumping data for table `jos_messages_cfg` --


    -- --------------------------------------------------------

    -- -- Table structure for table `jos_modules` --


    CREATE TABLE IF NOT EXISTS `jos_modules` (

     `id` int(11) NOT NULL AUTO_INCREMENT,
     `title` varchar(100) NOT NULL DEFAULT ,
     `note` varchar(255) NOT NULL DEFAULT ,
     `content` text NOT NULL,
     `ordering` int(11) NOT NULL DEFAULT '0',
     `position` varchar(50) DEFAULT NULL,
     `checked_out` int(10) 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',
     `published` tinyint(1) NOT NULL DEFAULT '0',
     `module` varchar(50) DEFAULT NULL,
     `access` tinyint(3) unsigned NOT NULL DEFAULT '0',
     `showtitle` tinyint(3) unsigned NOT NULL DEFAULT '1',
     `params` varchar(5120) NOT NULL DEFAULT ,
     `client_id` tinyint(4) NOT NULL DEFAULT '0',
     `language` char(7) NOT NULL,
     PRIMARY KEY (`id`),
     KEY `published` (`published`,`access`),
     KEY `newsfeeds` (`module`,`published`),
     KEY `idx_language` (`language`)
    

    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=69 ;

    -- -- Dumping data for table `jos_modules` --

    INSERT INTO `jos_modules` (`id`, `title`, `note`, `content`, `ordering`, `position`, `checked_out`, `checked_out_time`, `publish_up`, `publish_down`, `published`, `module`, `access`, `showtitle`, `params`, `client_id`, `language`) VALUES (1, 'Main Menu', , , 1, 'position-7', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_menu', 1, 1, '{"menutype":"mainmenu","startLevel":"0","endLevel":"0","showAllChildren":"0","tag_id":"","class_sfx":"","window_open":"","layout":"","moduleclass_sfx":"_menu","cache":"1","cache_time":"900","cachemode":"itemid"}', 0, '*'), (2, 'Login', , , 1, 'login', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_login', 1, 1, , 1, '*'), (3, 'Popular Articles', , , 3, 'cpanel', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_popular', 3, 1, '{"count":"5","catid":"","user_id":"0","layout":"","moduleclass_sfx":"","cache":"0"}', 1, '*'), (4, 'Recently Added Articles', , , 4, 'cpanel', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_latest', 3, 1, '{"count":"5","ordering":"c_dsc","catid":"","user_id":"0","layout":"","moduleclass_sfx":"","cache":"0"}', 1, '*'), (6, 'Unread Messages', , , 1, 'header', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_unread', 3, 1, , 1, '*'), (7, 'Online Users', , , 2, 'header', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_online', 3, 1, , 1, '*'), (8, 'Toolbar', , , 1, 'toolbar', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_toolbar', 3, 1, , 1, '*'), (9, 'Quick Icons', , , 1, 'icon', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_quickicon', 3, 1, , 1, '*'), (10, 'Logged-in Users', , , 2, 'cpanel', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_logged', 3, 1, , 1, '*'), (12, 'Admin Menu', , , 1, 'menu', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_menu', 3, 1, , 1, '*'), (13, 'Admin Submenu', , , 1, 'submenu', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_submenu', 3, 1, , 1, '*'), (14, 'User Status', , , 1, 'status', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_status', 3, 1, , 1, '*'), (15, 'Title', , , 1, 'title', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_title', 3, 1, , 1, '*'), (16, 'User Menu', , , 2, 'position-7', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_menu', 2, 1, '{"menutype":"usermenu","startLevel":"0","endLevel":"0","showAllChildren":"0","tag_id":"","class_sfx":"","window_open":"","layout":"","moduleclass_sfx":"_menu","cache":"1","cache_time":"900","cachemode":"itemid"}', 0, '*'), (17, 'Login Form', , , 8, 'position-7', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_login', 1, 1, '{"greeting":"1","name":"0"}', 0, '*'), (18, 'Breadcrumbs', , , 1, 'position-2', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_breadcrumbs', 1, 1, '{"moduleclass_sfx":"","showHome":"1","homeText":"Home","showComponent":"1","separator":"","cache":"1","cache_time":"900","cachemode":"itemid"}', 0, '*'), (19, 'Banners', , , 1, 'position-5', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 'mod_banners', 1, 1, '{"target":"1","count":"1","cid":"1","catid":"27","tag_search":"0","ordering":"0","header_text":"","footer_text":"","layout":"","moduleclass_sfx":"","cache":"1","cache_time":"900"}', 0, '*'), (20, 'Top', , , 1, 'position-1', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_menu', 1, 1, '{"menutype":"top","startLevel":"0","endLevel":"0","showAllChildren":"0","tag_id":"","class_sfx":"","maxdepth":"10","window_open":"","layout":"","moduleclass_sfx":"","cache":"0"}', 0, '*'), (22, 'Australian Parks ', , , 1, 'position-5', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_menu', 1, 1, '{"menutype":"parks","startLevel":"0","endLevel":"0","showAllChildren":"0","tag_id":"","class_sfx":"","window_open":"","layout":"","moduleclass_sfx":"","cache":"0","cache_time":"900","cachemode":"itemid"}', 0, 'en-GB'), (23, 'About Joomla!', , , 4, 'position-7', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_menu', 1, 1, '{"menutype":"aboutjoomla","startLevel":"0","endLevel":"0","showAllChildren":"0","tag_id":"","class_sfx":"","window_open":"","layout":"","moduleclass_sfx":"_menu","cache":"0","cache_time":"900","cachemode":"itemid"}', 0, '*'),

    (68, 'About Parks', , '

    The Parks sample site is designed as a simple site that can be routinely updated from the front end of Joomla!.

    \r\n

    As a site, it is largely focused on a blog which can be updated using the front end article submission.

    \r\n

    New weblinks can also be added through the front end.

    \r\n

    A simple image gallery uses com_content with thumbnails displayed in a blog layout and full size images shown in article layout.

    \r\n

    The Parks site features the language switch module. All of the content and modules are tagged as English (en-GB). If a second language pack is added with sample data this can be filtered using the language switch.

    \r\n

    Parks uses HTML5 which is a major web standard (along with XHTML which is used in other areas of sample data).

    ', 1, 'position-4', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_custom', 1, 1, '{"prepare_content":"1","layout":"","moduleclass_sfx":"","cache":"1","cache_time":"900","cachemode":"static"}', 0, '*'),

    (67, 'Extensions', , , 1, 'position-7', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 'mod_menu', 1, 1, '{"menutype":"aboutjoomla","startLevel":"0","endLevel":"6","showAllChildren":"0","tag_id":"","class_sfx":"-menu","window_open":"","layout":"","moduleclass_sfx":"","cache":"0","cache_time":"900","cachemode":"itemid"}', 0, '*'), (25, 'Site Map', , , 1, 'sitemapload', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_menu', 1, 0, '{"menutype":"mainmenu","startLevel":"2","endLevel":"3","showAllChildren":"1","tag_id":"","class_sfx":"sitemap","window_open":"","layout":"","moduleclass_sfx":"","cache":"0","cache_time":"900","cachemode":"itemid"}', 0, '*'), (26, 'This Site', , , 5, 'position-7', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_menu', 1, 1, '{"menutype":"mainmenu","startLevel":"0","endLevel":"1","showAllChildren":"0","tag_id":"","class_sfx":"","window_open":"","layout":"","moduleclass_sfx":"_menu","cache":"0","cache_time":"900","cachemode":"itemid"}', 0, '*'), (27, 'Archived Articles', , , 1, 'archiveload', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_articles_archive', 1, 1, '{"count":"10","layout":"","moduleclass_sfx":"","cache":"1","cache_time":"900","cachemode":"static"}', 0, '*'), (28, 'Latest News', , , 1, 'articleslatestload', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_articles_latest', 1, 1, '{"count":"5","ordering":"c_dsc","user_id":"0","show_front":"1","catid":"40","layout":"","moduleclass_sfx":"","cache":"1","cache_time":"900","cachemode":"static"}', 0, '*'), (29, 'Most Read Content', , , 1, 'articlespopularload', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_articles_popular', 1, 1, '{"show_front":"1","count":"5","catid":"29","layout":"","moduleclass_sfx":"","cache":"1","cache_time":"900","cachemode":"static"}', 0, '*'), (30, 'Feed Display', , , 1, 'feeddisplayload', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_feed', 1, 1, '{"rssurl":"http:\\/\\/community.joomla.org\\/blogs\\/community.feed?type=rss","rssrtl":"0","rsstitle":"1","rssdesc":"1","rssimage":"1","rssitems":"3","rssitemdesc":"1","word_count":"0","layout":"","moduleclass_sfx":"","cache":"1","cache_time":"900"}', 0, '*'), (31, 'News Flash: Latest', , , 1, 'newsflashload', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_articles_news', 1, 1, '{"catid":"32","image":"0","item_title":"0","link_titles":"","item_heading":"h4","showLastSeparator":"1","readmore":"1","count":"","layout":"","moduleclass_sfx":"","cache":"1","cache_time":"900","cachemode":"static"}', 0, '*'), (32, 'News Flash: Random', , , 1, 'newsflashload', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_articles_news', 1, 1, '{"catid":"32","image":"0","item_title":"0","link_titles":"","showLastSeparator":"1","readmore":"0","count":"","layout":"","moduleclass_sfx":"","cache":"1","cache_time":"900"}', 0, '*'), (33, 'Mod_Random_Image', , , 1, 'randomimageload', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_random_image', 1, 1, '{"type":"jpg","folder":"images\\/sampledata\\/parks\\/animals","link":"","width":"180","height":"","layout":"","moduleclass_sfx":"","cache":"0"}', 0, '*'), (34, 'Articles Related Items', , , 1, 'relateditemsload', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_related_items', 1, 1, '{"showDate":"0","layout":"","moduleclass_sfx":"","owncache":"1"}', 0, '*'), (35, 'Mod_Search', , , 1, 'searchload', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_search', 1, 1, '{"width":"20","text":"","button":"","button_pos":"right","imagebutton":"","button_text":"","set_itemid":"","layout":"","moduleclass_sfx":"","cache":"1","cache_time":"900"}', 0, '*'), (36, 'Statistics', , , 1, 'statisticsload', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_stats', 1, 1, '{"serverinfo":"1","siteinfo":"1","counter":"1","increase":"0","layout":"","moduleclass_sfx":"","cache":"1","cache_time":"900","cachemode":"static"}', 0, '*'), (37, 'Mod_Syndicate', , , 1, 'syndicateload', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_syndicate', 1, 1, '{"text":"Feed Entries","format":"rss","layout":"","moduleclass_sfx":"","cache":"0"}', 0, '*'), (38, 'Users Latest', , , 1, 'userslatestload', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_users_latest', 1, 1, '{"shownumber":"5","linknames":"0","linktowhat":"0","layout":"","moduleclass_sfx":"","cache":"0","cache_time":"900","cachemode":"static"}', 0, '*'), (39, 'Whos Online', , , 1, 'whosonlineload', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_whosonline', 1, 1, '{"showmode":"2","linknames":"0","linktowhat":"0","layout":"","moduleclass_sfx":"","cache":"0"}', 0, '*'), (40, 'Wrapper', , , 1, 'wrapperload', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_wrapper', 1, 1, '{"url":"http:\\/\\/fsf.org","add":"1","scrolling":"auto","width":"100%","height":"200","height_auto":"1","target":"","layout":"","moduleclass_sfx":"","cache":"1","cache_time":"900","cachemode":"static"}', 0, '*'), (41, 'Footer', , , 1, 'footerload', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_footer', 1, 1, '{"layout":"","moduleclass_sfx":"","cache":"1","cache_time":"900","cachemode":"static"}', 0, '*'), (44, 'Login', , , 1, 'loginload', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_login', 1, 1, '{"pretext":"","posttext":"","login":"280","logout":"280","greeting":"1","name":"0","usesecure":"0","layout":"","moduleclass_sfx":"","cache":"0"}', 0, '*'), (45, 'Menu', , , 1, 'menuload', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_menu', 1, 1, '{"menutype":"mainmenu","startLevel":"0","endLevel":"0","showAllChildren":"0","tag_id":"","class_sfx":"","window_open":"","layout":"","moduleclass_sfx":"","cache":"0","cache_time":"900","cachemode":"itemid"}', 0, '*'), (47, 'Latest Park Blogs', , , 6, 'position-7', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_articles_latest', 1, 1, '{"count":"5","ordering":"c_dsc","user_id":"0","show_front":"1","catid":"35","layout":"","moduleclass_sfx":"","cache":"1","cache_time":"900"}', 0, 'en-GB'),

    (48, 'Custom HTML', , '

    This is a custom html module. That means you can enter whatever content you want.

    ', 1, 'customload', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_custom', 1, 1, '{"prepare_content":"1","layout":"","moduleclass_sfx":"","cache":"1","cache_time":"900","cachemode":"static"}', 0, '*'),

    (49, 'mod_Weblinks', , , 1, 'weblinksload', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_weblinks', 1, 1, '{"catid":"21","count":"5","ordering":"title","direction":"asc","target":"3","description":"0","hits":"0","count_clicks":"0","layout":"","moduleclass_sfx":"","cache":"1","cache_time":"900"}', 0, '*'), (52, 'Breadcrumbs', , , 1, 'breadcrumbsload', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_breadcrumbs', 1, 1, '{"showHome":"1","homeText":"Home","showLast":"1","separator":"","layout":"","moduleclass_sfx":"","cache":"0","cache_time":"900","cachemode":"itemid"}', 0, '*'), (61, 'Articles Categories', , , 1, 'articlescategoriesload', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_articles_categories', 1, 1, '{"parent":"29","show_description":"0","show_children":"0","maxlevel":"0","count":"0","layout":"","moduleclass_sfx":"","owncache":"1","cache_time":"900"}', 0, '*'), (56, 'Banners', , , 1, 'bannersload', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_banners', 1, 1, '{"target":"1","count":"1","cid":"1","catid":"30","tag_search":"0","ordering":"0","header_text":"","footer_text":"","layout":"","moduleclass_sfx":"","cache":"1","cache_time":"900"}', 0, '*'), (57, 'Fruit Shop', , , 1, 'position-5', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_menu', 1, 1, '{"menutype":"fruitshop","startLevel":"0","endLevel":"0","showAllChildren":"0","tag_id":"","class_sfx":"","window_open":"","layout":"","moduleclass_sfx":"","cache":"0","cache_time":"900","cachemode":"itemid"}', 0, '*'),

    (58, 'Special!', , '

    This week we have a special, half price on delicious oranges!

    \r\n
    Only for our special customers!
    \r\n
    Use the code: Joomla! when ordering
    \r\n

    This module can only be seen by people in the customers group or higher.

    ', 1, 'position-12', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_custom', 4, 1, '{"prepare_content":"1","layout":"","moduleclass_sfx":"","cache":"1","cache_time":"900","cachemode":"static"}', 0, '*'),

    (62, 'Language Switcher', , , 1, 'position-4', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 'mod_languages', 1, 1, '{"header_text":"","footer_text":"","image":"1","layout":"","moduleclass_sfx":"","cache":"1","cache_time":"900","cachemode":"static"}', 0, '*'), (63, 'Search', , , 0, 'position-0', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_search', 1, 1, '{"width":"20","text":"","button":"","button_pos":"right","imagebutton":"","button_text":"","set_itemid":"","layout":"","moduleclass_sfx":"","cache":"1","cache_time":"900","cachemode":"itemid"}', 0, '*'), (64, 'Language Switcher', , , 1, 'languageswitcherload', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_languages', 1, 1, '{"header_text":"","footer_text":"","image":"1","layout":"","moduleclass_sfx":"","cache":"1","cache_time":"900","cachemode":"static"}', 0, '*'),

    (65, 'About Fruit Shop', , '

    The Fruit Shop site shows a number of Joomla! features.

    \r\n

    The template uses classes in cascading style sheets to change the layout of items, such as creating the horizontal alphabetical list in the Fruit Encyclopedia.

    \r\n

    ', 1, 'position-4', 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, 'mod_custom', 1, 1, '{"prepare_content":"1","layout":"","moduleclass_sfx":"","cache":"1","cache_time":"900","cachemode":"static"}', 0, '*');

    -- --------------------------------------------------------

    -- -- Table structure for table `jos_modules_menu` --


    CREATE TABLE IF NOT EXISTS `jos_modules_menu` (

     `moduleid` int(11) NOT NULL DEFAULT '0',
     `menuid` int(11) NOT NULL DEFAULT '0',
     PRIMARY KEY (`moduleid`,`menuid`)
    

    ) ENGINE=MyISAM DEFAULT CHARSET=utf8;

    -- -- Dumping data for table `jos_modules_menu` --

    INSERT INTO `jos_modules_menu` (`moduleid`, `menuid`) VALUES (1, 101), (2, 0), (3, 0), (4, 0), (5, 0), (6, 0), (7, 0), (8, 0), (9, 0), (10, 0), (11, 0), (12, 0), (13, 0), (14, 0), (15, 0), (16, -433), (16, -432), (16, -431), (16, -430), (16, -429), (16, -427), (16, -400), (16, -399), (16, -296), (16, -244), (16, -243), (16, -242), (16, -234), (16, -231), (17, 205), (17, 435), (18, 0), (19, 0), (20, 0), (22, 231), (22, 234), (22, 238), (22, 242), (22, 243), (22, 244), (22, 296), (22, 399), (22, 400), (23, -433), (23, -432), (23, -431), (23, -430), (23, -429), (23, -427), (23, -400), (23, -399), (23, -296), (23, -244), (23, -243), (23, -242), (23, -238), (23, -234), (23, -231), (25, 294), (26, -433), (26, -432), (26, -431), (26, -430), (26, -429), (26, -427), (26, -400), (26, -399), (26, -296), (26, -244), (26, -243), (26, -242), (26, -238), (26, -234), (26, -231), (26, -205), (27, 325), (28, 310), (29, 302), (30, 410), (31, 309), (32, 309), (33, 307), (34, 326), (35, 306), (36, 304), (37, 311), (38, 300), (39, 301), (40, 313), (41, 324), (44, 312), (45, 303), (47, 231), (47, 234), (47, 242), (47, 243), (47, 244), (47, 296), (47, 399), (47, 400), (48, 418), (49, 417), (52, 294), (52, 416), (56, 0), (57, 238), (57, 427), (57, 429), (57, 430), (57, 431), (57, 432), (57, 433), (58, 427), (58, 429), (58, 430), (58, 431), (58, 432), (58, 433), (60, 227), (60, 229), (60, 249), (60, 251), (60, 252), (60, 253), (60, 254), (60, 255), (60, 256), (60, 257), (60, 259), (60, 260), (60, 262), (60, 263), (60, 265), (60, 266), (60, 267), (60, 270), (60, 271), (60, 272), (60, 273), (60, 274), (60, 275), (60, 276), (60, 281), (60, 282), (60, 283), (60, 284), (60, 285), (60, 286), (60, 300), (60, 301), (60, 302), (60, 303), (60, 304), (60, 305), (60, 306), (60, 307), (60, 309), (60, 310), (60, 311), (60, 312), (60, 313), (60, 314), (60, 316), (60, 317), (60, 318), (60, 319), (60, 320), (60, 321), (60, 322), (60, 323), (60, 324), (60, 325), (60, 326), (60, 402), (60, 403), (60, 404), (60, 405), (60, 406), (60, 409), (60, 410), (60, 411), (60, 412), (60, 413), (60, 414), (60, 415), (60, 416), (60, 417), (60, 418), (60, 419), (60, 420), (60, 421), (60, 422), (60, 423), (60, 424), (60, 425), (60, 426), (61, 443), (62, 231), (62, 234), (62, 242), (62, 243), (62, 244), (62, 296), (62, 399), (62, 400), (63, 0), (64, 447), (65, 427), (65, 429), (65, 430), (65, 431), (65, 432), (65, 433), (67, 227), (67, 229), (67, 249), (67, 251), (67, 252), (67, 253), (67, 254), (67, 255), (67, 256), (67, 257), (67, 259), (67, 260), (67, 262), (67, 263), (67, 265), (67, 266), (67, 267), (67, 268), (67, 270), (67, 271), (67, 272), (67, 273), (67, 274), (67, 275), (67, 276), (67, 277), (67, 281), (67, 282), (67, 283), (67, 284), (67, 285), (67, 286), (67, 300), (67, 301), (67, 302), (67, 303), (67, 304), (67, 305), (67, 306), (67, 307), (67, 309), (67, 310), (67, 311), (67, 312), (67, 313), (67, 316), (67, 317), (67, 318), (67, 319), (67, 320), (67, 321), (67, 322), (67, 323), (67, 324), (67, 325), (67, 326), (67, 402), (67, 403), (67, 404), (67, 405), (67, 406), (67, 409), (67, 410), (67, 411), (67, 412), (67, 413), (67, 414), (67, 415), (67, 416), (67, 417), (67, 418), (67, 419), (67, 421), (67, 422), (67, 423), (67, 424), (68, 231), (68, 234), (68, 242), (68, 243), (68, 244), (68, 296), (68, 399), (68, 400);

    -- --------------------------------------------------------

    -- -- Table structure for table `jos_newsfeeds` --


    CREATE TABLE IF NOT EXISTS `jos_newsfeeds` (

     `catid` int(11) NOT NULL DEFAULT '0',
     `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
     `name` varchar(100) NOT NULL DEFAULT ,
     `alias` varchar(100) NOT NULL DEFAULT ,
     `link` varchar(200) NOT NULL DEFAULT ,
     `filename` varchar(200) DEFAULT NULL,
     `published` tinyint(1) NOT NULL DEFAULT '0',
     `numarticles` int(10) unsigned NOT NULL DEFAULT '1',
     `cache_time` int(10) unsigned NOT NULL DEFAULT '3600',
     `checked_out` int(10) 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',
     `rtl` tinyint(4) NOT NULL DEFAULT '0',
     `access` tinyint(3) unsigned NOT NULL DEFAULT '0',
     `language` char(7) NOT NULL DEFAULT ,
     `params` text NOT NULL,
     `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
     `created_by` int(10) unsigned NOT NULL DEFAULT '0',
     `created_by_alias` varchar(255) NOT NULL DEFAULT ,
     `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
     `modified_by` int(10) unsigned NOT NULL DEFAULT '0',
     `metakey` text NOT NULL,
     `metadesc` text NOT NULL,
     `metadata` text NOT NULL,
     `xreference` varchar(50) NOT NULL COMMENT 'A reference to enable linkages to external data sets.',
     `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
     `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
     PRIMARY KEY (`id`),
     KEY `idx_access` (`access`),
     KEY `idx_checkout` (`checked_out`),
     KEY `idx_state` (`published`),
     KEY `idx_catid` (`catid`),
     KEY `idx_createdby` (`created_by`),
     KEY `idx_language` (`language`),
     KEY `idx_xreference` (`xreference`)
    

    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;

    -- -- Dumping data for table `jos_newsfeeds` --

    INSERT INTO `jos_newsfeeds` (`catid`, `id`, `name`, `alias`, `link`, `filename`, `published`, `numarticles`, `cache_time`, `checked_out`, `checked_out_time`, `ordering`, `rtl`, `access`, `language`, `params`, `created`, `created_by`, `created_by_alias`, `modified`, `modified_by`, `metakey`, `metadesc`, `metadata`, `xreference`, `publish_up`, `publish_down`) VALUES (28, 1, 'Joomla! Announcements', 'joomla-announcements', 'http://www.joomla.org/announcements.feed?type=rss', NULL, 1, 5, 3600, 0, '0000-00-00 00:00:00', 1, 0, 1, 'en-GB', '{"show_headings":"","show_name":"","show_articles":"","show_link":"","show_cat_description":"","show_cat_items":"","show_feed_image":"","show_feed_description":"","show_item_description":"","feed_word_count":"0"}', '0000-00-00 00:00:00', 0, , '0000-00-00 00:00:00', 0, , , , , '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (28, 2, 'New Joomla! Extensions', 'new-joomla-extensions', 'http://feeds.joomla.org/JoomlaExtensions', NULL, 1, 5, 3600, 0, '0000-00-00 00:00:00', 1, 0, 1, 'en-GB', '{"show_headings":"","show_name":"","show_articles":"","show_link":"","show_cat_description":"","show_cat_items":"","show_feed_image":"","show_feed_description":"","show_item_description":"","feed_word_count":"0"}', '0000-00-00 00:00:00', 0, , '0000-00-00 00:00:00', 0, , , , , '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (28, 3, 'Joomla! Security News', 'joomla-security-news', 'http://feeds.joomla.org/JoomlaSecurityNews', NULL, 1, 5, 3600, 0, '0000-00-00 00:00:00', 1, 0, 1, 'en-GB', '{"show_headings":"","show_name":"","show_articles":"","show_link":"","show_cat_description":"","show_cat_items":"","show_feed_image":"","show_feed_description":"","show_item_description":"","feed_word_count":"0"}', '0000-00-00 00:00:00', 0, , '0000-00-00 00:00:00', 0, , , , , '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (28, 4, 'Joomla! Connect', 'joomla-connect', 'http://feeds.joomla.org/JoomlaConnect', NULL, 1, 5, 3600, 0, '0000-00-00 00:00:00', 1, 0, 1, 'en-GB', '{"show_headings":"","show_name":"","show_articles":"","show_link":"","show_cat_description":"","show_cat_items":"","show_feed_image":"","show_feed_description":"","show_item_description":"","feed_word_count":"0"}', '0000-00-00 00:00:00', 0, , '0000-00-00 00:00:00', 0, , , , , '0000-00-00 00:00:00', '0000-00-00 00:00:00');

    -- --------------------------------------------------------

    -- -- Table structure for table `jos_redirect_links` --


    CREATE TABLE IF NOT EXISTS `jos_redirect_links` (

     `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
     `old_url` varchar(150) NOT NULL,
     `new_url` varchar(150) NOT NULL,
     `referer` varchar(150) NOT NULL,
     `comment` varchar(255) NOT NULL,
     `published` tinyint(4) NOT NULL,
     `created_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
     `modified_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
     PRIMARY KEY (`id`),
     UNIQUE KEY `idx_link_old` (`old_url`),
     KEY `idx_link_modifed` (`modified_date`)
    

    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

    -- -- Dumping data for table `jos_redirect_links` --


    -- --------------------------------------------------------

    -- -- Table structure for table `jos_schemas` --


    CREATE TABLE IF NOT EXISTS `jos_schemas` (

     `extension_id` int(11) NOT NULL,
     `version_id` varchar(20) NOT NULL,
     PRIMARY KEY (`extension_id`,`version_id`)
    

    ) ENGINE=MyISAM DEFAULT CHARSET=utf8;

    -- -- Dumping data for table `jos_schemas` --


    -- --------------------------------------------------------

    -- -- Table structure for table `jos_session` --


    CREATE TABLE IF NOT EXISTS `jos_session` (

     `session_id` varchar(32) NOT NULL DEFAULT ,
     `client_id` tinyint(3) unsigned NOT NULL DEFAULT '0',
     `guest` tinyint(4) unsigned DEFAULT '1',
     `time` varchar(14) DEFAULT ,
     `data` varchar(20480) DEFAULT NULL,
     `userid` int(11) DEFAULT '0',
     `username` varchar(150) DEFAULT ,
     `usertype` varchar(50) DEFAULT ,
     PRIMARY KEY (`session_id`),
     KEY `whosonline` (`guest`,`usertype`),
     KEY `userid` (`userid`),
     KEY `time` (`time`)
    

    ) ENGINE=MyISAM DEFAULT CHARSET=utf8;

    -- -- Dumping data for table `jos_session` --

    INSERT INTO `jos_session` (`session_id`, `client_id`, `guest`, `time`, `data`, `userid`, `username`, `usertype`) VALUES ('5qc839dfagra395vodivo7c5o1', 1, 0, '1277309238', '__default|a:8:{s:15:"session.counter";i:14;s:19:"session.timer.start";i:1277307728;s:18:"session.timer.last";i:1277309237;s:17:"session.timer.now";i:1277309238;s:22:"session.client.browser";s:88:"Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3";s:8:"registry";O:9:"JRegistry":1:{s:7:"\0*\0data";O:8:"stdClass":2:{s:11:"application";O:8:"stdClass":1:{s:4:"lang";s:0:"";}s:13:"com_installer";O:8:"stdClass":3:{s:7:"message";s:0:"";s:17:"extension_message";s:0:"";s:12:"redirect_url";N;}}}s:4:"user";O:5:"JUser":21:{s:2:"id";s:2:"42";s:4:"name";s:10:"Super User";s:8:"username";s:6:"joomla";s:5:"email";s:30:"webmaster@alterego-of-pwi.info";s:8:"password";s:65:"2f9855d7a7b552dd33978ded01f2fb43:EtuBUsaMYI3RzH0cjI8gfGmwLzRwoWlW";s:14:"password_clear";s:0:"";s:8:"usertype";s:10:"deprecated";s:5:"block";s:1:"0";s:9:"sendEmail";s:1:"1";s:12:"registerDate";s:19:"2010-06-23 15:42:05";s:13:"lastvisitDate";s:19:"0000-00-00 00:00:00";s:10:"activation";s:0:"";s:6:"params";s:0:"";s:6:"groups";a:1:{i:8;s:11:"Super Users";}s:5:"guest";i:0;s:10:"\0*\0_params";O:9:"JRegistry":1:{s:7:"\0*\0data";O:8:"stdClass":0:{}}s:14:"\0*\0_authLevels";a:4:{i:0;i:1;i:1;i:2;i:2;i:3;i:3;i:4;}s:15:"\0*\0_authActions";N;s:12:"\0*\0_errorMsg";N;s:10:"\0*\0_errors";a:0:{}s:3:"aid";i:0;}s:13:"session.token";s:32:"84f875deeecafdedc0daa72be1dbebb5";}', 42, 'joomla', ), ('ou2bcphobut73kmmkka8ah8mo6', 0, 1, '1277312617', '__default|a:8:{s:15:"session.counter";i:2;s:19:"session.timer.start";i:1277308746;s:18:"session.timer.last";i:1277308746;s:17:"session.timer.now";i:1277312617;s:22:"session.client.browser";s:88:"Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3";s:8:"registry";O:9:"JRegistry":1:{s:7:"\0*\0data";O:8:"stdClass":0:{}}s:4:"user";O:5:"JUser":21:{s:2:"id";i:0;s:4:"name";N;s:8:"username";N;s:5:"email";N;s:8:"password";N;s:14:"password_clear";s:0:"";s:8:"usertype";N;s:5:"block";N;s:9:"sendEmail";i:0;s:12:"registerDate";N;s:13:"lastvisitDate";N;s:10:"activation";N;s:6:"params";N;s:6:"groups";a:0:{}s:5:"guest";i:1;s:10:"\0*\0_params";O:9:"JRegistry":1:{s:7:"\0*\0data";O:8:"stdClass":0:{}}s:14:"\0*\0_authLevels";a:1:{i:0;i:1;}s:15:"\0*\0_authActions";N;s:12:"\0*\0_errorMsg";N;s:10:"\0*\0_errors";a:0:{}s:3:"aid";i:0;}s:13:"session.token";s:32:"6dc4a2e1ff9f4520747023b963810e96";}', 0, , ), ('j555k8b7tai1tmu88qi9uroos5', 1, 0, '1277404416', '__default|a:8:{s:15:"session.counter";i:68;s:19:"session.timer.start";i:1277397883;s:18:"session.timer.last";i:1277404408;s:17:"session.timer.now";i:1277404415;s:22:"session.client.browser";s:88:"Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.4) Gecko/20100611 Firefox/3.6.4";s:8:"registry";O:9:"JRegistry":1:{s:7:"\0*\0data";O:8:"stdClass":3:{s:11:"application";O:8:"stdClass":1:{s:4:"lang";s:0:"";}s:13:"com_installer";O:8:"stdClass":4:{s:7:"message";s:0:"";s:17:"extension_message";s:0:"";s:12:"redirect_url";N;s:6:"manage";O:8:"stdClass":4:{s:4:"data";a:1:{s:7:"filters";a:5:{s:6:"search";s:0:"";s:13:"hideprotected";s:1:"1";s:4:"type";s:9:"component";s:5:"group";s:0:"";s:9:"client_id";s:0:"";}}s:10:"limitstart";s:1:"0";s:8:"ordercol";s:4:"name";s:9:"orderdirn";s:3:"asc";}}s:6:"global";O:8:"stdClass":1:{s:4:"list";O:8:"stdClass":1:{s:5:"limit";s:2:"20";}}}}s:4:"user";O:5:"JUser":21:{s:2:"id";s:2:"42";s:4:"name";s:10:"Super User";s:8:"username";s:6:"joomla";s:5:"email";s:30:"webmaster@alterego-of-pwi.info";s:8:"password";s:65:"2f9855d7a7b552dd33978ded01f2fb43:EtuBUsaMYI3RzH0cjI8gfGmwLzRwoWlW";s:14:"password_clear";s:0:"";s:8:"usertype";s:10:"deprecated";s:5:"block";s:1:"0";s:9:"sendEmail";s:1:"1";s:12:"registerDate";s:19:"2010-06-23 15:42:05";s:13:"lastvisitDate";s:19:"2010-06-23 15:42:10";s:10:"activation";s:0:"";s:6:"params";s:0:"";s:6:"groups";a:1:{i:8;s:11:"Super Users";}s:5:"guest";i:0;s:10:"\0*\0_params";O:9:"JRegistry":1:{s:7:"\0*\0data";O:8:"stdClass":0:{}}s:14:"\0*\0_authLevels";a:4:{i:0;i:1;i:1;i:2;i:2;i:3;i:3;i:4;}s:15:"\0*\0_authActions";N;s:12:"\0*\0_errorMsg";N;s:10:"\0*\0_errors";a:0:{}s:3:"aid";i:0;}s:13:"session.token";s:32:"e24f2558376c94d0f5d92bb21c4c1c42";}', 42, 'joomla', );

    -- --------------------------------------------------------

    -- -- Table structure for table `jos_template_styles` --


    CREATE TABLE IF NOT EXISTS `jos_template_styles` (

     `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
     `template` varchar(50) NOT NULL DEFAULT ,
     `client_id` tinyint(1) unsigned NOT NULL DEFAULT '0',
     `home` tinyint(1) unsigned NOT NULL DEFAULT '0',
     `title` varchar(255) NOT NULL DEFAULT ,
     `params` varchar(2048) NOT NULL DEFAULT ,
     PRIMARY KEY (`id`),
     KEY `idx_template` (`template`),
     KEY `idx_home` (`home`)
    

    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=115 ;

    -- -- Dumping data for table `jos_template_styles` --

    INSERT INTO `jos_template_styles` (`id`, `template`, `client_id`, `home`, `title`, `params`) VALUES (1, 'rhuk_milkyway', 0, 0, 'Milkyway - Default', '{"colorVariation":"blue","backgroundVariation":"blue","widthStyle":"fmax"}'), (2, 'bluestork', 1, 1, 'Bluestork - Default', '{"useRoundedCorners":"1","showSiteName":"0"}'), (3, 'atomic', 0, 0, 'Atomic - Default', '{}'), (4, 'beez_20', 0, 1, 'Beez2 - Default', '{"wrapperSmall":"53","wrapperLarge":"72","logo":"images\\/joomla_black.gif","sitetitle":"Joomla!","sitedescription":"Open Source Content Management Beta","navposition":"left","templatecolor":"personal","html5":"0"}'), (5, 'hathor', 1, 0, 'Hathor - Default', '{"showSiteName":"0","highContrast":"0","boldText":"0","altMenu":"0"}'), (6, 'beez5', 0, 0, 'Beez5 - Default-Fruit Shop', '{"wrapperSmall":"53","wrapperLarge":"72","logo":"images\\/sampledata\\/fruitshop\\/fruits.gif","sitetitle":"Matuna Market ","sitedescription":"Fruit Shop Sample Site","navposition":"left","html5":"0"}'), (100, 'rhuk_milkyway', 0, 0, 'rhuk_milkyway Green', '{"colorVariation":"green","backgroundVariation":"green","widthStyle":"fmax"}'), (111, 'rhuk_milkyway', 0, 0, 'rhuk_milkyway Red', '{"colorVariation":"orange","backgroundVariation":"orange","widthStyle":"small"}'), (114, 'beez_20', 0, 0, 'Beez2 - Parks Site', '{"wrapperSmall":"53","wrapperLarge":"72","logo":"images\\/sampledata\\/parks\\/banner_cradle.jpg","sitetitle":"Australian Parks","sitedescription":"Parks Sample Site","navposition":"center","templatecolor":"nature","html5":"1"}');

    -- --------------------------------------------------------

    -- -- Table structure for table `jos_updates` --


    CREATE TABLE IF NOT EXISTS `jos_updates` (

     `update_id` int(11) NOT NULL AUTO_INCREMENT,
     `update_site_id` int(11) DEFAULT '0',
     `extension_id` int(11) DEFAULT '0',
     `categoryid` int(11) DEFAULT '0',
     `name` varchar(100) DEFAULT ,
     `description` text NOT NULL,
     `element` varchar(100) DEFAULT ,
     `type` varchar(20) DEFAULT ,
     `folder` varchar(20) DEFAULT ,
     `client_id` tinyint(3) DEFAULT '0',
     `version` varchar(10) DEFAULT ,
     `data` text NOT NULL,
     `detailsurl` text NOT NULL,
     PRIMARY KEY (`update_id`)
    

    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Available Updates' AUTO_INCREMENT=1 ;

    -- -- Dumping data for table `jos_updates` --


    -- --------------------------------------------------------

    -- -- Table structure for table `jos_update_categories` --


    CREATE TABLE IF NOT EXISTS `jos_update_categories` (

     `categoryid` int(11) NOT NULL AUTO_INCREMENT,
     `name` varchar(20) DEFAULT ,
     `description` text NOT NULL,
     `parent` int(11) DEFAULT '0',
     `updatesite` int(11) DEFAULT '0',
     PRIMARY KEY (`categoryid`)
    

    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Update Categories' AUTO_INCREMENT=1 ;

    -- -- Dumping data for table `jos_update_categories` --


    -- --------------------------------------------------------

    -- -- Table structure for table `jos_update_sites` --


    CREATE TABLE IF NOT EXISTS `jos_update_sites` (

     `update_site_id` int(11) NOT NULL AUTO_INCREMENT,
     `name` varchar(100) DEFAULT ,
     `type` varchar(20) DEFAULT ,
     `location` text NOT NULL,
     `enabled` int(11) DEFAULT '0',
     PRIMARY KEY (`update_site_id`)
    

    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Update Sites' AUTO_INCREMENT=3 ;

    -- -- Dumping data for table `jos_update_sites` --


    -- --------------------------------------------------------

    -- -- Table structure for table `jos_update_sites_extensions` --


    CREATE TABLE IF NOT EXISTS `jos_update_sites_extensions` (

     `update_site_id` int(11) DEFAULT '0',
     `extension_id` int(11) DEFAULT '0',
     KEY `newindex` (`update_site_id`,`extension_id`)
    

    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Links extensions to update sites';

    -- -- Dumping data for table `jos_update_sites_extensions` --


    -- --------------------------------------------------------

    -- -- Table structure for table `jos_usergroups` --


    CREATE TABLE IF NOT EXISTS `jos_usergroups` (

     `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
     `parent_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Adjacency List Reference Id',
     `lft` int(11) NOT NULL DEFAULT '0' COMMENT 'Nested set lft.',
     `rgt` int(11) NOT NULL DEFAULT '0' COMMENT 'Nested set rgt.',
     `title` varchar(100) NOT NULL DEFAULT ,
     PRIMARY KEY (`id`),
     UNIQUE KEY `idx_usergroup_title_lookup` (`title`),
     KEY `idx_usergroup_adjacency_lookup` (`parent_id`),
     KEY `idx_usergroup_nested_set_lookup` (`lft`,`rgt`) USING BTREE
    

    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=13 ;

    -- -- Dumping data for table `jos_usergroups` --

    INSERT INTO `jos_usergroups` (`id`, `parent_id`, `lft`, `rgt`, `title`) VALUES (1, 0, 1, 20, 'Public'), (2, 1, 8, 19, 'Registered'), (3, 2, 11, 16, 'Author'), (4, 3, 12, 15, 'Editor'), (5, 4, 13, 14, 'Publisher'), (6, 1, 2, 7, 'Manager'), (7, 6, 3, 6, 'Administrator'), (8, 7, 4, 5, 'Super Users'), (12, 2, 17, 18, 'Customer Group'), (10, 3, 14, 15, 'Shop Suppliers');

    -- --------------------------------------------------------

    -- -- Table structure for table `jos_users` --


    CREATE TABLE IF NOT EXISTS `jos_users` (

     `id` int(11) NOT NULL AUTO_INCREMENT,
     `name` varchar(255) NOT NULL DEFAULT ,
     `username` varchar(150) NOT NULL DEFAULT ,
     `email` varchar(100) NOT NULL DEFAULT ,
     `password` varchar(100) NOT NULL DEFAULT ,
     `usertype` varchar(25) NOT NULL DEFAULT ,
     `block` tinyint(4) NOT NULL DEFAULT '0',
     `sendEmail` tinyint(4) DEFAULT '0',
     `registerDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
     `lastvisitDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
     `activation` varchar(100) NOT NULL DEFAULT ,
     `params` text NOT NULL,
     PRIMARY KEY (`id`),
     KEY `usertype` (`usertype`),
     KEY `idx_name` (`name`),
     KEY `idx_block` (`block`),
     KEY `username` (`username`),
     KEY `email` (`email`)
    

    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=43 ;

    -- -- Dumping data for table `jos_users` --

    INSERT INTO `jos_users` (`id`, `name`, `username`, `email`, `password`, `usertype`, `block`, `sendEmail`, `registerDate`, `lastvisitDate`, `activation`, `params`) VALUES (42, 'Super User', 'joomla', 'webmaster@alterego-of-pwi.info', '2f9855d7a7b552dd33978ded01f2fb43:EtuBUsaMYI3RzH0cjI8gfGmwLzRwoWlW', 'deprecated', 0, 1, '2010-06-23 15:42:05', '2010-06-24 16:44:59', , );

    -- --------------------------------------------------------

    -- -- Table structure for table `jos_user_profiles` --


    CREATE TABLE IF NOT EXISTS `jos_user_profiles` (

     `user_id` int(11) NOT NULL,
     `profile_key` varchar(100) NOT NULL,
     `profile_value` varchar(255) NOT NULL,
     `ordering` int(11) NOT NULL DEFAULT '0',
     UNIQUE KEY `idx_user_id_profile_key` (`user_id`,`profile_key`)
    

    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Simple user profile storage table';

    -- -- Dumping data for table `jos_user_profiles` --


    -- --------------------------------------------------------

    -- -- Table structure for table `jos_user_usergroup_map` --


    CREATE TABLE IF NOT EXISTS `jos_user_usergroup_map` (

     `user_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Foreign Key to #__users.id',
     `group_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Foreign Key to #__usergroups.id',
     PRIMARY KEY (`user_id`,`group_id`)
    

    ) ENGINE=MyISAM DEFAULT CHARSET=utf8;

    -- -- Dumping data for table `jos_user_usergroup_map` --

    INSERT INTO `jos_user_usergroup_map` (`user_id`, `group_id`) VALUES (42, 8);

    -- --------------------------------------------------------

    -- -- Table structure for table `jos_viewlevels` --


    CREATE TABLE IF NOT EXISTS `jos_viewlevels` (

     `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
     `title` varchar(100) NOT NULL DEFAULT ,
     `ordering` int(11) NOT NULL DEFAULT '0',
     `rules` varchar(5120) NOT NULL COMMENT 'JSON encoded access control.',
     PRIMARY KEY (`id`),
     UNIQUE KEY `idx_assetgroup_title_lookup` (`title`)
    

    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;

    -- -- Dumping data for table `jos_viewlevels` --

    INSERT INTO `jos_viewlevels` (`id`, `title`, `ordering`, `rules`) VALUES (1, 'Public', 0, '[]'), (2, 'Registered', 1, '[6,2]'), (3, 'Special', 2, '[6,7,8]'), (4, 'Customer Access Level', 3, '[6,3,12]');

    -- --------------------------------------------------------

    -- -- Table structure for table `jos_weblinks` --


    CREATE TABLE IF NOT EXISTS `jos_weblinks` (

     `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
     `catid` int(11) NOT NULL DEFAULT '0',
     `sid` int(11) NOT NULL DEFAULT '0',
     `title` varchar(250) NOT NULL DEFAULT ,
     `alias` varchar(255) NOT NULL DEFAULT ,
     `url` varchar(250) NOT NULL DEFAULT ,
     `description` text NOT NULL,
     `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
     `hits` int(11) NOT NULL DEFAULT '0',
     `state` tinyint(1) 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',
     `ordering` int(11) NOT NULL DEFAULT '0',
     `archived` tinyint(1) NOT NULL DEFAULT '0',
     `approved` tinyint(1) NOT NULL DEFAULT '1',
     `access` int(11) NOT NULL DEFAULT '1',
     `params` text NOT NULL,
     `language` char(7) NOT NULL DEFAULT ,
     `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
     `created_by` int(10) unsigned NOT NULL DEFAULT '0',
     `created_by_alias` varchar(255) NOT NULL DEFAULT ,
     `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
     `modified_by` int(10) unsigned NOT NULL DEFAULT '0',
     `metakey` text NOT NULL,
     `metadesc` text NOT NULL,
     `metadata` text NOT NULL,
     `featured` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Set if link is featured.',
     `xreference` varchar(50) NOT NULL COMMENT 'A reference to enable linkages to external data sets.',
     `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
     `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
     PRIMARY KEY (`id`),
     KEY `idx_access` (`access`),
     KEY `idx_checkout` (`checked_out`),
     KEY `idx_state` (`state`),
     KEY `idx_catid` (`catid`),
     KEY `idx_createdby` (`created_by`),
     KEY `idx_featured_catid` (`featured`,`catid`),
     KEY `idx_language` (`language`),
     KEY `idx_xreference` (`xreference`)
    

    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=10 ;

    -- -- Dumping data for table `jos_weblinks` --

    INSERT INTO `jos_weblinks` (`id`, `catid`, `sid`, `title`, `alias`, `url`, `description`, `date`, `hits`, `state`, `checked_out`, `checked_out_time`, `ordering`, `archived`, `approved`, `access`, `params`, `language`, `created`, `created_by`, `created_by_alias`, `modified`, `modified_by`, `metakey`, `metadesc`, `metadata`, `featured`, `xreference`, `publish_up`, `publish_down`) VALUES (1, 20, 0, 'Joomla!', 'joomla', 'http://www.joomla.org', 'Home of Joomla!', '2005-02-14 15:19:02', 3, 1, 0, '0000-00-00 00:00:00', 1, 0, 1, 1, '{"target":"0"}', 'en-GB', '0000-00-00 00:00:00', 0, , '0000-00-00 00:00:00', 0, , , , 0, , '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (2, 21, 0, 'php.net', 'php', 'http://www.php.net', 'The language that Joomla! is developed in', '2004-07-07 11:33:24', 6, 1, 0, '0000-00-00 00:00:00', 3, 0, 1, 1, '{}', 'en-GB', '0000-00-00 00:00:00', 0, , '0000-00-00 00:00:00', 0, , , , 0, , '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (3, 21, 0, 'MySQL', 'mysql', 'http://www.mysql.com', 'The database that Joomla! uses', '2004-07-07 10:18:31', 1, 1, 0, '0000-00-00 00:00:00', 5, 0, 1, 1, '{}', 'en-GB', '0000-00-00 00:00:00', 0, , '0000-00-00 00:00:00', 0, , , , 0, , '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (4, 20, 0, 'OpenSourceMatters', 'opensourcematters', 'http://www.opensourcematters.org', 'Home of OSM', '2005-02-14 15:19:02', 11, 1, 0, '0000-00-00 00:00:00', 2, 0, 1, 1, '{"target":"0"}', 'en-GB', '0000-00-00 00:00:00', 0, , '0000-00-00 00:00:00', 0, , , , 0, , '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (5, 21, 0, 'Joomla! - Forums', 'joomla-forums', 'http://forum.joomla.org', 'Joomla! Forums', '2005-02-14 15:19:02', 4, 1, 0, '0000-00-00 00:00:00', 4, 0, 1, 1, '{"target":"0"}', 'en-GB', '0000-00-00 00:00:00', 0, , '0000-00-00 00:00:00', 0, , , , 0, , '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (6, 21, 0, 'Ohloh Tracking of Joomla!', 'ohloh-tracking-of-joomla', 'http://www.ohloh.net/projects/20', 'Objective reports from Ohloh about Joomlas development activity. Joomla! has some star developers with serious kudos.', '2007-07-19 09:28:31', 1, 1, 0, '0000-00-00 00:00:00', 6, 0, 1, 1, '{"target":"0"}', 'en-GB', '0000-00-00 00:00:00', 0, , '0000-00-00 00:00:00', 0, , , , 0, , '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (7, 44, 0, 'Baw Baw National Park', 'baw-baw-national-park', 'http://www.parkweb.vic.gov.au/1park_display.cfm?park=44', 'Park of the Austalian Alps National Parks system, Baw Baw features sub alpine vegetation, beautiful views, and opportunities for hiking, skiing and other outdoor activities.', '0000-00-00 00:00:00', 0, 1, 0, '0000-00-00 00:00:00', 7, 0, 1, 1, '{"target":"0"}', 'en-GB', '0000-00-00 00:00:00', 0, , '0000-00-00 00:00:00', 0, , , , 0, , '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (8, 44, 0, 'Kakadu', 'kakadu', 'http://www.environment.gov.au/parks/kakadu/index.html', 'Kakadu is known for both its cultural heritage and its natural features. It is one of a small number of places listed as World Heritage Places for both reasons. Extensive rock art is found there.', '0000-00-00 00:00:00', 0, 1, 0, '0000-00-00 00:00:00', 8, 0, 1, 1, '{"target":"0"}', 'en-GB', '0000-00-00 00:00:00', 0, , '0000-00-00 00:00:00', 0, , , , 0, , '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (9, 44, 0, 'Pulu Keeling', 'pulu-keeling', 'http://www.environment.gov.au/parks/cocos/index.html', 'Located on an atoll 2000 kilometers north of Perth, Pulu Keeling is Australias smallest national park.', '0000-00-00 00:00:00', 0, 1, 0, '0000-00-00 00:00:00', 9, 0, 1, 1, '{"target":"0"}', 'en-GB', '0000-00-00 00:00:00', 0, , '0000-00-00 00:00:00', 0, , , , 0, , '0000-00-00 00:00:00', '0000-00-00 00:00:00');

    DROP TABLE IF EXISTS `bak_weblinks`; DROP TABLE IF EXISTS `bak_viewlevels`; DROP TABLE IF EXISTS `bak_user_usergroup_map`; DROP TABLE IF EXISTS `bak_user_profiles`; DROP TABLE IF EXISTS `bak_users`; DROP TABLE IF EXISTS `bak_usergroups`; DROP TABLE IF EXISTS `bak_update_sites_extensions`; DROP TABLE IF EXISTS `bak_update_sites`; DROP TABLE IF EXISTS `bak_update_categories`; DROP TABLE IF EXISTS `bak_updates`; DROP TABLE IF EXISTS `bak_template_styles`; DROP TABLE IF EXISTS `bak_session`; DROP TABLE IF EXISTS `bak_schemas`; DROP TABLE IF EXISTS `bak_redirect_links`; DROP TABLE IF EXISTS `bak_newsfeeds`; DROP TABLE IF EXISTS `bak_modules_menu`; DROP TABLE IF EXISTS `bak_modules`; DROP TABLE IF EXISTS `bak_messages_cfg`; DROP TABLE IF EXISTS `bak_messages`; DROP TABLE IF EXISTS `bak_menu_types`; DROP TABLE IF EXISTS `bak_menu`; DROP TABLE IF EXISTS `bak_languages`; DROP TABLE IF EXISTS `bak_extensions`; DROP TABLE IF EXISTS `bak_core_log_searches`; DROP TABLE IF EXISTS `bak_content_rating`; DROP TABLE IF EXISTS `bak_content_frontpage`; DROP TABLE IF EXISTS `bak_content`; DROP TABLE IF EXISTS `bak_contact_details`; DROP TABLE IF EXISTS `bak_categories`; DROP TABLE IF EXISTS `bak_assets`; DROP TABLE IF EXISTS `bak_banners`; DROP TABLE IF EXISTS `bak_banner_clients`; DROP TABLE IF EXISTS `bak_banner_tracks`; </source