/* MySQL Data Transfer Source Host: alohahawaiistore.com Source Database: alohahaw_progressive Target Host: alohahawaiistore.com Target Database: alohahaw_progressive Date: 09.02.2009 21:28:43 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for jos_banner -- ---------------------------- CREATE TABLE `jos_banner` ( `bid` int(11) NOT NULL auto_increment, `cid` int(11) NOT NULL default '0', `type` varchar(30) NOT NULL default 'banner', `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', `imageurl` varchar(100) NOT NULL default '', `clickurl` varchar(200) NOT NULL default '', `date` datetime default NULL, `showBanner` tinyint(1) NOT NULL default '0', `checked_out` tinyint(1) NOT NULL default '0', `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00', `editor` varchar(50) default NULL, `custombannercode` text, `catid` int(10) unsigned NOT NULL default '0', `description` text NOT NULL, `sticky` tinyint(1) unsigned NOT NULL default '0', `ordering` int(11) NOT NULL default '0', `publish_up` datetime NOT NULL default '0000-00-00 00:00:00', `publish_down` datetime NOT NULL default '0000-00-00 00:00:00', `tags` text NOT NULL, `params` text NOT NULL, PRIMARY KEY (`bid`), KEY `viewbanner` (`showBanner`), KEY `idx_banner_catid` (`catid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_bannerclient -- ---------------------------- CREATE TABLE `jos_bannerclient` ( `cid` 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, `checked_out` tinyint(1) NOT NULL default '0', `checked_out_time` time default NULL, `editor` varchar(50) default NULL, PRIMARY KEY (`cid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_bannertrack -- ---------------------------- CREATE TABLE `jos_bannertrack` ( `track_date` date NOT NULL, `track_type` int(10) unsigned NOT NULL, `banner_id` int(10) unsigned NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_categories -- ---------------------------- CREATE TABLE `jos_categories` ( `id` int(11) NOT NULL auto_increment, `parent_id` int(11) NOT NULL default '0', `title` varchar(255) NOT NULL default '', `name` varchar(255) NOT NULL default '', `alias` varchar(255) NOT NULL default '', `image` varchar(255) NOT NULL default '', `section` varchar(50) NOT NULL default '', `image_position` varchar(30) NOT NULL default '', `description` text NOT NULL, `published` tinyint(1) NOT NULL default '0', `checked_out` int(11) unsigned NOT NULL default '0', `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00', `editor` varchar(50) default NULL, `ordering` int(11) NOT NULL default '0', `access` tinyint(3) unsigned NOT NULL default '0', `count` int(11) NOT NULL default '0', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `cat_idx` (`section`,`published`,`access`), KEY `idx_access` (`access`), KEY `idx_checkout` (`checked_out`) ) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_components -- ---------------------------- CREATE TABLE `jos_components` ( `id` int(11) NOT NULL auto_increment, `name` varchar(50) NOT NULL default '', `link` varchar(255) NOT NULL default '', `menuid` int(11) unsigned NOT NULL default '0', `parent` int(11) unsigned NOT NULL default '0', `admin_menu_link` varchar(255) NOT NULL default '', `admin_menu_alt` varchar(255) NOT NULL default '', `option` varchar(50) NOT NULL default '', `ordering` int(11) NOT NULL default '0', `admin_menu_img` varchar(255) NOT NULL default '', `iscore` tinyint(4) NOT NULL default '0', `params` text NOT NULL, `enabled` tinyint(4) NOT NULL default '1', PRIMARY KEY (`id`), KEY `parent_option` (`parent`,`option`(32)) ) ENGINE=MyISAM AUTO_INCREMENT=48 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_contact_details -- ---------------------------- CREATE TABLE `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) unsigned NOT NULL default '0', `checked_out` int(11) unsigned NOT NULL default '0', `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00', `ordering` int(11) NOT NULL default '0', `params` text 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 '', PRIMARY KEY (`id`), KEY `catid` (`catid`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_content -- ---------------------------- CREATE TABLE `jos_content` ( `id` int(11) unsigned NOT NULL auto_increment, `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(11) unsigned NOT NULL default '0', `mask` int(11) unsigned NOT NULL default '0', `catid` int(11) unsigned NOT NULL default '0', `created` datetime NOT NULL default '0000-00-00 00:00:00', `created_by` int(11) unsigned NOT NULL default '0', `created_by_alias` varchar(255) NOT NULL default '', `modified` datetime NOT NULL default '0000-00-00 00:00:00', `modified_by` int(11) unsigned NOT NULL default '0', `checked_out` int(11) unsigned NOT NULL default '0', `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00', `publish_up` datetime NOT NULL default '0000-00-00 00:00:00', `publish_down` datetime NOT NULL default '0000-00-00 00:00:00', `images` text NOT NULL, `urls` text NOT NULL, `attribs` text NOT NULL, `version` int(11) unsigned NOT NULL default '1', `parentid` int(11) unsigned NOT NULL default '0', `ordering` int(11) NOT NULL default '0', `metakey` text NOT NULL, `metadesc` text NOT NULL, `access` int(11) unsigned NOT NULL default '0', `hits` int(11) unsigned NOT NULL default '0', `metadata` text NOT NULL, PRIMARY KEY (`id`), KEY `idx_section` (`sectionid`), KEY `idx_access` (`access`), KEY `idx_checkout` (`checked_out`), KEY `idx_state` (`state`), KEY `idx_catid` (`catid`), KEY `idx_createdby` (`created_by`) ) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_content_frontpage -- ---------------------------- CREATE TABLE `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; -- ---------------------------- -- Table structure for jos_content_rating -- ---------------------------- CREATE TABLE `jos_content_rating` ( `content_id` int(11) NOT NULL default '0', `rating_sum` int(11) unsigned NOT NULL default '0', `rating_count` int(11) unsigned NOT NULL default '0', `lastip` varchar(50) NOT NULL default '', PRIMARY KEY (`content_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_core_acl_aro -- ---------------------------- CREATE TABLE `jos_core_acl_aro` ( `id` int(11) NOT NULL auto_increment, `section_value` varchar(240) NOT NULL default '0', `value` varchar(240) NOT NULL default '', `order_value` int(11) NOT NULL default '0', `name` varchar(255) NOT NULL default '', `hidden` int(11) NOT NULL default '0', PRIMARY KEY (`id`), UNIQUE KEY `jos_section_value_value_aro` (`section_value`(100),`value`(100)), KEY `jos_gacl_hidden_aro` (`hidden`) ) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_core_acl_aro_groups -- ---------------------------- CREATE TABLE `jos_core_acl_aro_groups` ( `id` int(11) NOT NULL auto_increment, `parent_id` int(11) NOT NULL default '0', `name` varchar(255) NOT NULL default '', `lft` int(11) NOT NULL default '0', `rgt` int(11) NOT NULL default '0', `value` varchar(255) NOT NULL default '', PRIMARY KEY (`id`), KEY `jos_gacl_parent_id_aro_groups` (`parent_id`), KEY `jos_gacl_lft_rgt_aro_groups` (`lft`,`rgt`) ) ENGINE=MyISAM AUTO_INCREMENT=31 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_core_acl_aro_map -- ---------------------------- CREATE TABLE `jos_core_acl_aro_map` ( `acl_id` int(11) NOT NULL default '0', `section_value` varchar(230) NOT NULL default '0', `value` varchar(100) NOT NULL, PRIMARY KEY (`acl_id`,`section_value`,`value`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_core_acl_aro_sections -- ---------------------------- CREATE TABLE `jos_core_acl_aro_sections` ( `id` int(11) NOT NULL auto_increment, `value` varchar(230) NOT NULL default '', `order_value` int(11) NOT NULL default '0', `name` varchar(230) NOT NULL default '', `hidden` int(11) NOT NULL default '0', PRIMARY KEY (`id`), UNIQUE KEY `jos_gacl_value_aro_sections` (`value`), KEY `jos_gacl_hidden_aro_sections` (`hidden`) ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_core_acl_groups_aro_map -- ---------------------------- CREATE TABLE `jos_core_acl_groups_aro_map` ( `group_id` int(11) NOT NULL default '0', `section_value` varchar(240) NOT NULL default '', `aro_id` int(11) NOT NULL default '0', UNIQUE KEY `group_id_aro_id_groups_aro_map` (`group_id`,`section_value`,`aro_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_core_log_items -- ---------------------------- CREATE TABLE `jos_core_log_items` ( `time_stamp` date NOT NULL default '0000-00-00', `item_table` varchar(50) NOT NULL default '', `item_id` int(11) unsigned NOT NULL default '0', `hits` int(11) unsigned NOT NULL default '0' ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_core_log_searches -- ---------------------------- CREATE TABLE `jos_core_log_searches` ( `search_term` varchar(128) NOT NULL default '', `hits` int(11) unsigned NOT NULL default '0' ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_gk_tabsman_groups -- ---------------------------- CREATE TABLE `jos_gk_tabsman_groups` ( `id` int(11) NOT NULL auto_increment, `name` varchar(110) NOT NULL default '', `desc` mediumtext NOT NULL, `module` varchar(110) NOT NULL default '', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_gk_tabsman_tabs -- ---------------------------- CREATE TABLE `jos_gk_tabsman_tabs` ( `id` int(11) unsigned NOT NULL auto_increment, `group_id` int(11) unsigned NOT NULL, `name` varchar(110) NOT NULL default '', `content` varchar(110) NOT NULL default '', `order` int(4) unsigned NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_gk2_photoslide_extensions -- ---------------------------- CREATE TABLE `jos_gk2_photoslide_extensions` ( `id` int(11) NOT NULL auto_increment, `name` varchar(128) NOT NULL, `status` int(11) NOT NULL, `type` varchar(128) NOT NULL, `filename` varchar(255) NOT NULL, `phpclassfile` varchar(255) NOT NULL, `version` varchar(128) NOT NULL, `author` varchar(128) NOT NULL, `desc` mediumtext NOT NULL, `storage` mediumtext NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_gk2_photoslide_groups -- ---------------------------- CREATE TABLE `jos_gk2_photoslide_groups` ( `id` int(11) NOT NULL auto_increment, `name` varchar(128) NOT NULL, `plugin` varchar(255) NOT NULL, `mediumThumbX` int(11) NOT NULL default '0', `mediumThumbY` int(11) NOT NULL default '0', `smallThumbX` int(11) NOT NULL default '0', `smallThumbY` int(11) NOT NULL default '0', `bgcolor` varchar(7) NOT NULL default '0', `titlecolor` varchar(7) NOT NULL default '0', `textcolor` varchar(7) NOT NULL default '0', `linkcolor` varchar(7) NOT NULL default '0', `hlinkcolor` varchar(7) NOT NULL default '0', `quality` int(3) NOT NULL default '75', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_gk2_photoslide_plugins -- ---------------------------- CREATE TABLE `jos_gk2_photoslide_plugins` ( `id` int(11) NOT NULL auto_increment, `name` varchar(128) NOT NULL, `status` int(11) NOT NULL, `type` varchar(128) NOT NULL, `filename` varchar(255) NOT NULL, `phpclassfile` varchar(255) NOT NULL, `version` varchar(128) NOT NULL, `author` varchar(128) NOT NULL, `desc` mediumtext NOT NULL, `gfields` mediumtext NOT NULL, `sfields` mediumtext NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_gk2_photoslide_slides -- ---------------------------- CREATE TABLE `jos_gk2_photoslide_slides` ( `id` int(11) NOT NULL auto_increment, `group_id` int(11) NOT NULL, `name` varchar(128) NOT NULL, `published` int(1) NOT NULL, `access` int(1) NOT NULL, `file` varchar(255) NOT NULL, `order` int(11) NOT NULL, `title` varchar(255) NOT NULL default '', `text` varchar(255) NOT NULL default '0', `linktype` int(1) NOT NULL default '0', `linkvalue` varchar(255) NOT NULL default '0', `article` int(11) NOT NULL default '0', `wordcount` int(4) NOT NULL default '0', `stretch` int(4) NOT NULL default '0', `mediumThumbX` int(11) NOT NULL default '0', `mediumThumbY` int(11) NOT NULL default '0', `smallThumbX` int(11) NOT NULL default '0', `smallThumbY` int(11) NOT NULL default '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_groups -- ---------------------------- CREATE TABLE `jos_groups` ( `id` tinyint(3) unsigned NOT NULL default '0', `name` varchar(50) NOT NULL default '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_menu -- ---------------------------- CREATE TABLE `jos_menu` ( `id` int(11) NOT NULL auto_increment, `menutype` varchar(75) default NULL, `name` varchar(255) default NULL, `alias` varchar(255) NOT NULL default '', `link` text, `type` varchar(50) NOT NULL default '', `published` tinyint(1) NOT NULL default '0', `parent` int(11) unsigned NOT NULL default '0', `componentid` int(11) unsigned NOT NULL default '0', `sublevel` int(11) default '0', `ordering` int(11) default '0', `checked_out` int(11) unsigned NOT NULL default '0', `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00', `pollid` int(11) NOT NULL default '0', `browserNav` tinyint(4) default '0', `access` tinyint(3) unsigned NOT NULL default '0', `utaccess` tinyint(3) unsigned NOT NULL default '0', `params` text NOT NULL, `lft` int(11) unsigned NOT NULL default '0', `rgt` int(11) unsigned NOT NULL default '0', `home` int(1) unsigned NOT NULL default '0', PRIMARY KEY (`id`), KEY `componentid` (`componentid`,`menutype`,`published`,`access`), KEY `menutype` (`menutype`) ) ENGINE=MyISAM AUTO_INCREMENT=47 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_menu_types -- ---------------------------- CREATE TABLE `jos_menu_types` ( `id` int(10) unsigned NOT NULL auto_increment, `menutype` varchar(75) NOT NULL default '', `title` varchar(255) NOT NULL default '', `description` varchar(255) NOT NULL default '', PRIMARY KEY (`id`), UNIQUE KEY `menutype` (`menutype`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_messages -- ---------------------------- CREATE TABLE `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` int(10) unsigned NOT NULL default '0', `date_time` datetime NOT NULL default '0000-00-00 00:00:00', `state` int(11) NOT NULL default '0', `priority` int(1) unsigned NOT NULL default '0', `subject` text NOT NULL, `message` text NOT NULL, PRIMARY KEY (`message_id`), KEY `useridto_state` (`user_id_to`,`state`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_messages_cfg -- ---------------------------- CREATE TABLE `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; -- ---------------------------- -- Table structure for jos_migration_backlinks -- ---------------------------- CREATE TABLE `jos_migration_backlinks` ( `itemid` int(11) NOT NULL, `name` varchar(100) NOT NULL, `url` text NOT NULL, `sefurl` text NOT NULL, `newurl` text NOT NULL, PRIMARY KEY (`itemid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_modules -- ---------------------------- CREATE TABLE `jos_modules` ( `id` int(11) NOT NULL auto_increment, `title` text NOT NULL, `content` text NOT NULL, `ordering` int(11) NOT NULL default '0', `position` varchar(50) default NULL, `checked_out` int(11) unsigned NOT NULL default '0', `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00', `published` tinyint(1) NOT NULL default '0', `module` varchar(50) default NULL, `numnews` int(11) NOT NULL default '0', `access` tinyint(3) unsigned NOT NULL default '0', `showtitle` tinyint(3) unsigned NOT NULL default '1', `params` text NOT NULL, `iscore` tinyint(4) NOT NULL default '0', `client_id` tinyint(4) NOT NULL default '0', `control` text NOT NULL, PRIMARY KEY (`id`), KEY `published` (`published`,`access`), KEY `newsfeeds` (`module`,`published`) ) ENGINE=MyISAM AUTO_INCREMENT=44 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_modules_menu -- ---------------------------- CREATE TABLE `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; -- ---------------------------- -- Table structure for jos_newsfeeds -- ---------------------------- CREATE TABLE `jos_newsfeeds` ( `catid` int(11) NOT NULL default '0', `id` int(11) NOT NULL auto_increment, `name` text NOT NULL, `alias` varchar(255) NOT NULL default '', `link` text NOT NULL, `filename` varchar(200) default NULL, `published` tinyint(1) NOT NULL default '0', `numarticles` int(11) unsigned NOT NULL default '1', `cache_time` int(11) unsigned NOT NULL default '3600', `checked_out` tinyint(3) 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', PRIMARY KEY (`id`), KEY `published` (`published`), KEY `catid` (`catid`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_pf_access_flags -- ---------------------------- CREATE TABLE `jos_pf_access_flags` ( `id` int(11) NOT NULL auto_increment, `name` varchar(124) NOT NULL, `title` varchar(124) NOT NULL, `project` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `project` (`project`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_pf_access_levels -- ---------------------------- CREATE TABLE `jos_pf_access_levels` ( `id` int(11) NOT NULL auto_increment, `title` varchar(124) NOT NULL, `score` int(11) NOT NULL, `project` int(11) NOT NULL, `flag` varchar(124) NOT NULL, PRIMARY KEY (`id`), KEY `project` (`project`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_pf_documents -- ---------------------------- CREATE TABLE `jos_pf_documents` ( `id` int(11) NOT NULL auto_increment, `title` varchar(56) NOT NULL, `description` varchar(128) NOT NULL, `content` text NOT NULL, `author` int(11) NOT NULL, `project` int(11) NOT NULL, `dir` int(11) NOT NULL, `cdate` int(11) NOT NULL, `edate` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `project` (`project`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_pf_events -- ---------------------------- CREATE TABLE `jos_pf_events` ( `id` int(11) NOT NULL auto_increment, `title` varchar(56) NOT NULL, `content` text NOT NULL, `author` int(11) NOT NULL, `project` int(11) NOT NULL, `cdate` int(11) NOT NULL, `sdate` int(11) NOT NULL, `edate` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `project` (`project`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_pf_files -- ---------------------------- CREATE TABLE `jos_pf_files` ( `id` int(11) NOT NULL auto_increment, `name` varchar(255) NOT NULL, `description` varchar(128) NOT NULL, `author` int(11) NOT NULL, `project` int(11) NOT NULL, `dir` int(11) NOT NULL, `filesize` int(11) NOT NULL, `cdate` int(11) NOT NULL, `edate` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `project` (`project`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_pf_folder_tree -- ---------------------------- CREATE TABLE `jos_pf_folder_tree` ( `id` int(11) NOT NULL auto_increment, `folder_id` int(11) NOT NULL, `parent_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `parent_id` (`parent_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_pf_folders -- ---------------------------- CREATE TABLE `jos_pf_folders` ( `id` int(11) NOT NULL auto_increment, `title` varchar(56) NOT NULL, `description` varchar(128) NOT NULL, `author` int(11) NOT NULL, `project` int(11) NOT NULL, `cdate` int(11) NOT NULL, `edate` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `project` (`project`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_pf_group_permissions -- ---------------------------- CREATE TABLE `jos_pf_group_permissions` ( `id` int(11) NOT NULL auto_increment, `group_id` int(11) NOT NULL, `task` varchar(56) NOT NULL, PRIMARY KEY (`id`), KEY `group_id` (`group_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_pf_group_users -- ---------------------------- CREATE TABLE `jos_pf_group_users` ( `id` int(11) NOT NULL auto_increment, `group_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `group_id` (`group_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_pf_groups -- ---------------------------- CREATE TABLE `jos_pf_groups` ( `id` int(11) NOT NULL auto_increment, `title` varchar(124) NOT NULL, `description` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_pf_languages -- ---------------------------- CREATE TABLE `jos_pf_languages` ( `id` int(11) NOT NULL auto_increment, `name` varchar(255) NOT NULL, `title` varchar(255) NOT NULL, `published` int(1) NOT NULL, `is_default` int(1) NOT NULL, `author` varchar(56) NOT NULL, `email` varchar(124) NOT NULL, `website` varchar(255) NOT NULL, `update_website` varchar(255) NOT NULL, `version` varchar(24) NOT NULL, `license` varchar(255) NOT NULL, `copyright` varchar(255) NOT NULL, `create_date` varchar(56) NOT NULL, `install_date` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `published` (`published`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_pf_mod_data -- ---------------------------- CREATE TABLE `jos_pf_mod_data` ( `id` int(11) NOT NULL auto_increment, `mod_name` varchar(255) NOT NULL, `section` varchar(255) NOT NULL, `filename` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_pf_mods -- ---------------------------- CREATE TABLE `jos_pf_mods` ( `id` int(11) NOT NULL auto_increment, `title` varchar(255) NOT NULL, `name` varchar(255) NOT NULL, `published` int(1) NOT NULL, `author` varchar(56) NOT NULL, `email` varchar(124) NOT NULL, `website` varchar(255) NOT NULL, `update_website` varchar(255) NOT NULL, `version` varchar(24) NOT NULL, `license` varchar(255) NOT NULL, `copyright` varchar(255) NOT NULL, `create_date` varchar(56) NOT NULL, `install_date` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `published` (`published`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_pf_panels -- ---------------------------- CREATE TABLE `jos_pf_panels` ( `id` int(11) NOT NULL auto_increment, `name` varchar(255) NOT NULL, `title` varchar(255) NOT NULL, `accesslevel` int(1) NOT NULL, `published` int(1) NOT NULL, `position` varchar(255) NOT NULL, `ordering` int(11) NOT NULL, `author` varchar(56) NOT NULL, `email` varchar(124) NOT NULL, `website` varchar(255) NOT NULL, `update_website` varchar(255) NOT NULL, `version` varchar(24) NOT NULL, `license` varchar(255) NOT NULL, `copyright` varchar(255) NOT NULL, `create_date` varchar(56) NOT NULL, `install_date` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_pf_processes -- ---------------------------- CREATE TABLE `jos_pf_processes` ( `id` int(11) NOT NULL auto_increment, `name` varchar(255) NOT NULL, `title` varchar(255) NOT NULL, `accesslevel` int(1) NOT NULL, `published` int(1) NOT NULL, `position` varchar(255) NOT NULL, `ordering` int(11) NOT NULL, `author` varchar(56) NOT NULL, `email` varchar(124) NOT NULL, `website` varchar(255) NOT NULL, `update_website` varchar(255) NOT NULL, `version` varchar(24) NOT NULL, `license` varchar(255) NOT NULL, `copyright` varchar(255) NOT NULL, `create_date` varchar(56) NOT NULL, `install_date` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_pf_project_groups -- ---------------------------- CREATE TABLE `jos_pf_project_groups` ( `id` int(11) NOT NULL auto_increment, `project_id` int(11) NOT NULL, `group_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `project_id` (`project_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_pf_projects -- ---------------------------- CREATE TABLE `jos_pf_projects` ( `id` int(11) NOT NULL auto_increment, `title` varchar(124) NOT NULL, `content` text NOT NULL, `author` int(11) NOT NULL, `cdate` int(11) NOT NULL, `edate` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_pf_section_tasks -- ---------------------------- CREATE TABLE `jos_pf_section_tasks` ( `id` int(11) NOT NULL auto_increment, `section` varchar(255) NOT NULL, `name` varchar(255) NOT NULL, `title` varchar(255) NOT NULL, `description` text NOT NULL, `accesslevel` int(11) NOT NULL, `parent` varchar(255) NOT NULL, `ordering` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_pf_sections -- ---------------------------- CREATE TABLE `jos_pf_sections` ( `id` int(11) NOT NULL auto_increment, `name` varchar(255) NOT NULL, `title` varchar(255) NOT NULL, `published` int(1) NOT NULL, `accesslevel` int(11) NOT NULL, `is_default` int(1) NOT NULL, `ordering` int(11) NOT NULL, `author` varchar(56) NOT NULL, `email` varchar(124) NOT NULL, `website` varchar(255) NOT NULL, `update_website` varchar(255) NOT NULL, `version` varchar(24) NOT NULL, `license` varchar(255) NOT NULL, `copyright` varchar(255) NOT NULL, `create_date` varchar(56) NOT NULL, `install_date` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `is_default` (`is_default`) ) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_pf_settings -- ---------------------------- CREATE TABLE `jos_pf_settings` ( `id` int(11) NOT NULL auto_increment, `parameter` varchar(255) NOT NULL, `value` text NOT NULL, `scope` varchar(124) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_pf_task_users -- ---------------------------- CREATE TABLE `jos_pf_task_users` ( `id` int(11) NOT NULL auto_increment, `task_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `task_id` (`task_id`,`user_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_pf_tasks -- ---------------------------- CREATE TABLE `jos_pf_tasks` ( `id` int(11) NOT NULL auto_increment, `title` varchar(124) NOT NULL, `content` text NOT NULL, `author` int(11) NOT NULL, `project` int(11) NOT NULL, `cdate` int(11) NOT NULL, `mdate` int(11) NOT NULL, `sdate` int(11) NOT NULL, `edate` int(11) NOT NULL, `progress` int(11) NOT NULL, `priority` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `project` (`project`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_pf_themes -- ---------------------------- CREATE TABLE `jos_pf_themes` ( `id` int(11) NOT NULL auto_increment, `name` varchar(255) NOT NULL, `title` varchar(255) NOT NULL, `published` int(1) NOT NULL, `is_default` int(1) NOT NULL, `author` varchar(56) NOT NULL, `email` varchar(124) NOT NULL, `website` varchar(255) NOT NULL, `update_website` varchar(255) NOT NULL, `version` varchar(24) NOT NULL, `license` varchar(255) NOT NULL, `copyright` varchar(255) NOT NULL, `create_date` varchar(56) NOT NULL, `install_date` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_pf_user_profile -- ---------------------------- CREATE TABLE `jos_pf_user_profile` ( `id` int(11) NOT NULL auto_increment, `user_id` int(11) NOT NULL, `parameter` varchar(255) NOT NULL, `value` varchar(255) NOT NULL, PRIMARY KEY (`id`), KEY `user_id` (`user_id`) ) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_pf_users -- ---------------------------- CREATE TABLE `jos_pf_users` ( `id` int(11) NOT NULL auto_increment, `jid` int(11) NOT NULL, `accesslevel` int(11) NOT NULL, `first_name` varchar(255) NOT NULL, `last_name` varchar(255) NOT NULL, `username` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, PRIMARY KEY (`id`), KEY `jid` (`jid`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_plugins -- ---------------------------- CREATE TABLE `jos_plugins` ( `id` int(11) NOT NULL auto_increment, `name` varchar(100) NOT NULL default '', `element` varchar(100) NOT NULL default '', `folder` varchar(100) NOT NULL default '', `access` tinyint(3) unsigned NOT NULL default '0', `ordering` int(11) NOT NULL default '0', `published` tinyint(3) NOT NULL default '0', `iscore` tinyint(3) NOT NULL default '0', `client_id` tinyint(3) 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', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `idx_folder` (`published`,`client_id`,`access`,`folder`) ) ENGINE=MyISAM AUTO_INCREMENT=35 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_poll_data -- ---------------------------- CREATE TABLE `jos_poll_data` ( `id` int(11) NOT NULL auto_increment, `pollid` int(11) NOT NULL default '0', `text` text NOT NULL, `hits` int(11) NOT NULL default '0', PRIMARY KEY (`id`), KEY `pollid` (`pollid`,`text`(1)) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_poll_date -- ---------------------------- CREATE TABLE `jos_poll_date` ( `id` bigint(20) NOT NULL auto_increment, `date` datetime NOT NULL default '0000-00-00 00:00:00', `vote_id` int(11) NOT NULL default '0', `poll_id` int(11) NOT NULL default '0', PRIMARY KEY (`id`), KEY `poll_id` (`poll_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_poll_menu -- ---------------------------- CREATE TABLE `jos_poll_menu` ( `pollid` int(11) NOT NULL default '0', `menuid` int(11) NOT NULL default '0', PRIMARY KEY (`pollid`,`menuid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_polls -- ---------------------------- CREATE TABLE `jos_polls` ( `id` int(11) unsigned NOT NULL auto_increment, `title` varchar(255) NOT NULL default '', `alias` varchar(255) NOT NULL default '', `voters` int(9) 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', `published` tinyint(1) NOT NULL default '0', `access` int(11) NOT NULL default '0', `lag` int(11) NOT NULL default '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_qcontacts_config -- ---------------------------- CREATE TABLE `jos_qcontacts_config` ( `id` int(11) NOT NULL auto_increment, `params` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_qcontacts_details -- ---------------------------- CREATE TABLE `jos_qcontacts_details` ( `id` int(11) NOT NULL auto_increment, `name` text NOT NULL, `alias` varchar(255) NOT NULL default '', `con_position` text, `address` text, `suburb` text, `state` text, `country` text, `postcode` varchar(255) default NULL, `telephone` varchar(255) default NULL, `fax` varchar(255) default NULL, `misc` mediumtext, `image` varchar(255) default NULL, `imagepos` varchar(60) default NULL, `email_to` varchar(255) default NULL, `default_con` tinyint(1) unsigned NOT NULL default '0', `published` tinyint(1) unsigned NOT NULL default '0', `checked_out` int(11) unsigned NOT NULL default '0', `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00', `ordering` int(11) NOT NULL default '0', `params` text 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 '', `skype` varchar(255) NOT NULL default '', `yahoo_msg` varchar(255) NOT NULL default '', PRIMARY KEY (`id`), KEY `catid` (`catid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_redirection -- ---------------------------- CREATE TABLE `jos_redirection` ( `id` int(11) NOT NULL auto_increment, `cpt` int(11) NOT NULL default '0', `rank` int(11) NOT NULL default '0', `oldurl` varchar(255) NOT NULL default '', `newurl` varchar(255) NOT NULL default '', `dateadd` date NOT NULL default '0000-00-00', PRIMARY KEY (`id`), KEY `newurl` (`newurl`), KEY `rank` (`rank`), KEY `oldurl` (`oldurl`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_sections -- ---------------------------- CREATE TABLE `jos_sections` ( `id` int(11) NOT NULL auto_increment, `title` varchar(255) NOT NULL default '', `name` varchar(255) NOT NULL default '', `alias` varchar(255) NOT NULL default '', `image` text NOT NULL, `scope` varchar(50) NOT NULL default '', `image_position` varchar(30) NOT NULL default '', `description` text NOT NULL, `published` tinyint(1) NOT NULL default '0', `checked_out` int(11) unsigned NOT NULL default '0', `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00', `ordering` int(11) NOT NULL default '0', `access` tinyint(3) unsigned NOT NULL default '0', `count` int(11) NOT NULL default '0', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `idx_scope` (`scope`) ) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_session -- ---------------------------- CREATE TABLE `jos_session` ( `username` varchar(150) default '', `time` varchar(14) default '', `session_id` varchar(200) NOT NULL default '0', `guest` tinyint(4) default '1', `userid` int(11) default '0', `usertype` varchar(50) default '', `gid` tinyint(3) unsigned NOT NULL default '0', `client_id` tinyint(3) unsigned NOT NULL default '0', `data` longtext, PRIMARY KEY (`session_id`(64)), KEY `whosonline` (`guest`,`usertype`), KEY `userid` (`userid`), KEY `time` (`time`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_sh404sef_aliases -- ---------------------------- CREATE TABLE `jos_sh404sef_aliases` ( `id` int(11) NOT NULL auto_increment, `newurl` varchar(255) NOT NULL default '', `alias` varchar(255) NOT NULL default '', PRIMARY KEY (`id`), KEY `newurl` (`newurl`), KEY `alias` (`alias`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_sh404SEF_meta -- ---------------------------- CREATE TABLE `jos_sh404SEF_meta` ( `id` int(11) NOT NULL auto_increment, `newurl` varchar(255) NOT NULL default '', `metadesc` varchar(255) default '', `metakey` varchar(255) default '', `metatitle` varchar(255) default '', `metalang` varchar(30) default '', `metarobots` varchar(30) default '', PRIMARY KEY (`id`), KEY `newurl` (`newurl`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_stats_agents -- ---------------------------- CREATE TABLE `jos_stats_agents` ( `agent` varchar(255) NOT NULL default '', `type` tinyint(1) unsigned NOT NULL default '0', `hits` int(11) unsigned NOT NULL default '1' ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_templates_menu -- ---------------------------- CREATE TABLE `jos_templates_menu` ( `template` varchar(255) NOT NULL default '', `menuid` int(11) NOT NULL default '0', `client_id` tinyint(4) NOT NULL default '0', PRIMARY KEY (`menuid`,`client_id`,`template`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_users -- ---------------------------- CREATE TABLE `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', `gid` tinyint(3) unsigned NOT NULL default '1', `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 `gid_block` (`gid`,`block`), KEY `username` (`username`), KEY `email` (`email`) ) ENGINE=MyISAM AUTO_INCREMENT=67 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for jos_weblinks -- ---------------------------- CREATE TABLE `jos_weblinks` ( `id` int(11) 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', `published` 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', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `catid` (`catid`,`published`,`archived`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Records -- ---------------------------- INSERT INTO `jos_categories` VALUES ('1', '0', 'Web Design and Programming', '', 'web-design-and-programming', '', '1', 'left', '

\"HonoluluWeb Design and Programming Services.

Web development is our main stream. We have \'In-House\' PHP and ASP.NET development teams

Our technological expertise includes years of working with ASP.NET, PHP, RoR and other technologies. We are experts in using DotNetNuke, Joomla and OsCommerce frameworks as a platforms, which allows to decrease customers expenses and development time.

', '1', '0', '0000-00-00 00:00:00', null, '1', '0', '0', ''); INSERT INTO `jos_categories` VALUES ('2', '0', 'Animation and Graphic Design', '', 'animation-and-graphic-design', '', '1', 'left', '', '1', '0', '0000-00-00 00:00:00', null, '2', '0', '0', ''); INSERT INTO `jos_categories` VALUES ('3', '0', 'Web Hosting', '', 'web-hosting', '', '1', 'left', '

We host most of applications we do. For Windows based applications have 4 Quad Core Intel E7340 production servers with 8GB of RAM and 3000GB of monthly bandwidth limit that will work fine for almost any size of business either it is just a static website or large enterprise level solution with high daily requests number. For Linux based applications we use Intel DUAL CORE E2140 servers with 4GB of RAM. We don\'t limit our customers in bandwidth or server space usage.

By having control panel software on our servers, we provide our customers with full control over their applications. Plesk 7.6 completely responds to our Windows customers and CPanel works fine on Linux platform.

Main advantage of being hosted with us or moving your solution to our servers is in having support you always can reach and people you can always talk to locally in Hawaii. For our existent web development clients it also makes budget lower if you want to upgrade your solution since it is easier for us to work on applications that live in our environment.

', '1', '0', '0000-00-00 00:00:00', null, '3', '0', '0', ''); INSERT INTO `jos_categories` VALUES ('4', '0', 'Help Desk and IT Consulting', '', 'help-desc-and-it-consulting', '', '1', 'left', '

', '1', '62', '2009-01-16 08:06:16', null, '4', '0', '0', ''); INSERT INTO `jos_categories` VALUES ('5', '0', 'Contacts', '', 'contacts', '', 'com_contact_details', 'left', 'Contact Details for this Web site', '1', '62', '2008-12-19 00:54:27', null, '1', '0', '0', ''); INSERT INTO `jos_categories` VALUES ('6', '0', 'E-Commerce Solutions', '', 'e-commerce-solutions', '', '5', 'left', '', '1', '0', '0000-00-00 00:00:00', null, '1', '0', '0', ''); INSERT INTO `jos_categories` VALUES ('7', '0', 'Staff Augmentation', '', 'staff-augmentation', '', '1', 'left', '

\"Staff Staff Augmentation and Projects Outsourcing

Finding reliable resources with the right expertise can be challenging and costly regardless of the size of your company. If you take on a project that is outside of your core expertise, the cost and time to train existing staff can be prohibitive. Projects typically have fluctuating resource needs that are best handled through staff augmentation.

Let the Honolulu Progressive team augment your staff and free up internal resources, lower operating costs, and increase operating efficiency. We can help you to deliver projects on time and budget. 

Our flexible consultative approach includes assignment of multiple resources with varying skills within one resource budget. Short term or long term, offshore or locally in Hawaii we can provide the professional resources you need including:

  • System Architects
  • Project Managers & Technical Leads
  • Graphic & Web Designers
  • Software Engineers
  • 3D modelers
  • Web Marketing Experts

 

At Honolulu Progressive, we constantly strive to build strong long-term relationships with partner IT companies. We look for partners who can outsource projects to Honolulu Progressive on a continuous basis. A partnership with Honolulu Progressive is a mutually beneficial relationship. We have several teams of skilled developers, led by highly qualified project managers with extensive experience in managing diverse IT development projects. With Honolulu Progressive you can:

Providing outsourcing development service, we guarantee full anonymity. Opportunities to explore new partnerships are more than welcome.', '1', '62', '2008-12-23 14:04:52', null, '5', '0', '0', ''); INSERT INTO `jos_categories` VALUES ('8', '0', 'oahu', '', 'oahu', 'small_bussiness.png', 'com_newsfeeds', 'right', 'description of category \"oahu\"', '1', '62', '2009-01-16 08:16:48', null, '1', '0', '0', ''); INSERT INTO `jos_categories` VALUES ('9', '0', 'IT Consulting', '', 'it-consulting', '', 'com_contact_details', 'left', '', '1', '0', '0000-00-00 00:00:00', null, '2', '0', '0', ''); INSERT INTO `jos_components` VALUES ('1', 'Banners', '', '0', '0', '', 'Banner Management', 'com_banners', '0', 'js/ThemeOffice/component.png', '0', 'track_impressions=0\ntrack_clicks=0\ntag_prefix=\n\n', '1'); INSERT INTO `jos_components` VALUES ('2', 'Banners', '', '0', '1', 'option=com_banners', 'Active Banners', 'com_banners', '1', 'js/ThemeOffice/edit.png', '0', '', '1'); INSERT INTO `jos_components` VALUES ('3', 'Clients', '', '0', '1', 'option=com_banners&c=client', 'Manage Clients', 'com_banners', '2', 'js/ThemeOffice/categories.png', '0', '', '1'); INSERT INTO `jos_components` VALUES ('4', 'Web Links', 'option=com_weblinks', '0', '0', '', 'Manage Weblinks', 'com_weblinks', '0', 'js/ThemeOffice/component.png', '0', 'show_comp_description=1\ncomp_description=\nshow_link_hits=1\nshow_link_description=1\nshow_other_cats=1\nshow_headings=1\nshow_page_title=1\nlink_target=0\nlink_icons=\n\n', '1'); INSERT INTO `jos_components` VALUES ('5', 'Links', '', '0', '4', 'option=com_weblinks', 'View existing weblinks', 'com_weblinks', '1', 'js/ThemeOffice/edit.png', '0', '', '1'); INSERT INTO `jos_components` VALUES ('6', 'Categories', '', '0', '4', 'option=com_categories§ion=com_weblinks', 'Manage weblink categories', '', '2', 'js/ThemeOffice/categories.png', '0', '', '1'); INSERT INTO `jos_components` VALUES ('7', 'Contacts', 'option=com_contact', '0', '0', '', 'Edit contact details', 'com_contact', '0', 'js/ThemeOffice/component.png', '1', 'contact_icons=0\nicon_address=\nicon_email=\nicon_telephone=\nicon_fax=\nicon_misc=\nshow_headings=1\nshow_position=1\nshow_email=0\nshow_telephone=1\nshow_mobile=1\nshow_fax=1\nbannedEmail=\nbannedSubject=\nbannedText=\nsession=1\ncustomReply=0\n\n', '1'); INSERT INTO `jos_components` VALUES ('8', 'Contacts', '', '0', '7', 'option=com_contact', 'Edit contact details', 'com_contact', '0', 'js/ThemeOffice/edit.png', '1', '', '1'); INSERT INTO `jos_components` VALUES ('9', 'Categories', '', '0', '7', 'option=com_categories§ion=com_contact_details', 'Manage contact categories', '', '2', 'js/ThemeOffice/categories.png', '1', 'contact_icons=0\nicon_address=\nicon_email=\nicon_telephone=\nicon_fax=\nicon_misc=\nshow_headings=1\nshow_position=1\nshow_email=0\nshow_telephone=1\nshow_mobile=1\nshow_fax=1\nbannedEmail=\nbannedSubject=\nbannedText=\nsession=1\ncustomReply=0\n\n', '1'); INSERT INTO `jos_components` VALUES ('10', 'Polls', 'option=com_poll', '0', '0', 'option=com_poll', 'Manage Polls', 'com_poll', '0', 'js/ThemeOffice/component.png', '0', '', '1'); INSERT INTO `jos_components` VALUES ('11', 'News Feeds', 'option=com_newsfeeds', '0', '0', '', 'News Feeds Management', 'com_newsfeeds', '0', 'js/ThemeOffice/component.png', '0', '', '1'); INSERT INTO `jos_components` VALUES ('12', 'Feeds', '', '0', '11', 'option=com_newsfeeds', 'Manage News Feeds', 'com_newsfeeds', '1', 'js/ThemeOffice/edit.png', '0', 'show_headings=1\nshow_name=1\nshow_articles=1\nshow_link=1\nshow_cat_description=1\nshow_cat_items=1\nshow_feed_image=1\nshow_feed_description=1\nshow_item_description=1\nfeed_word_count=0\n\n', '1'); INSERT INTO `jos_components` VALUES ('13', 'Categories', '', '0', '11', 'option=com_categories§ion=com_newsfeeds', 'Manage Categories', '', '2', 'js/ThemeOffice/categories.png', '0', '', '1'); INSERT INTO `jos_components` VALUES ('14', 'User', 'option=com_user', '0', '0', '', '', 'com_user', '0', '', '1', '', '1'); INSERT INTO `jos_components` VALUES ('15', 'Search', 'option=com_search', '0', '0', 'option=com_search', 'Search Statistics', 'com_search', '0', 'js/ThemeOffice/component.png', '1', 'enabled=0\n\n', '1'); INSERT INTO `jos_components` VALUES ('16', 'Categories', '', '0', '1', 'option=com_categories§ion=com_banner', 'Categories', '', '3', '', '1', '', '1'); INSERT INTO `jos_components` VALUES ('17', 'Wrapper', 'option=com_wrapper', '0', '0', '', 'Wrapper', 'com_wrapper', '0', '', '1', '', '1'); INSERT INTO `jos_components` VALUES ('18', 'Mail To', '', '0', '0', '', '', 'com_mailto', '0', '', '1', '', '1'); INSERT INTO `jos_components` VALUES ('19', 'Media Manager', '', '0', '0', 'option=com_media', 'Media Manager', 'com_media', '0', '', '1', 'upload_extensions=bmp,csv,doc,epg,gif,ico,jpg,odg,odp,ods,odt,pdf,png,ppt,swf,txt,xcf,xls,BMP,CSV,DOC,EPG,GIF,ICO,JPG,ODG,ODP,ODS,ODT,PDF,PNG,PPT,SWF,TXT,XCF,XLS\nupload_maxsize=10000000\nfile_path=images\nimage_path=images/stories\nrestrict_uploads=1\ncheck_mime=1\nimage_extensions=bmp,gif,jpg,png\nignore_extensions=\nupload_mime=image/jpeg,image/gif,image/png,image/bmp,application/x-shockwave-flash,application/msword,application/excel,application/pdf,application/powerpoint,text/plain,application/x-zip\nupload_mime_illegal=text/html\nenable_flash=1\n\n', '1'); INSERT INTO `jos_components` VALUES ('20', 'Articles', 'option=com_content', '0', '0', '', '', 'com_content', '0', '', '1', 'show_noauth=0\nshow_title=0\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=0\nshow_pdf_icon=0\nshow_print_icon=0\nshow_email_icon=0\nshow_hits=0\nfeed_summary=1\nfilter_tags=\nfilter_attritbutes=\n\n', '1'); INSERT INTO `jos_components` VALUES ('21', 'Configuration Manager', '', '0', '0', '', 'Configuration', 'com_config', '0', '', '1', '', '1'); INSERT INTO `jos_components` VALUES ('22', 'Installation Manager', '', '0', '0', '', 'Installer', 'com_installer', '0', '', '1', '', '1'); INSERT INTO `jos_components` VALUES ('23', 'Language Manager', '', '0', '0', '', 'Languages', 'com_languages', '0', '', '1', 'administrator=en-GB\n\n', '1'); INSERT INTO `jos_components` VALUES ('24', 'Mass mail', '', '0', '0', '', 'Mass Mail', 'com_massmail', '0', '', '1', 'mailSubjectPrefix=\nmailBodySuffix=\n\n', '1'); INSERT INTO `jos_components` VALUES ('25', 'Menu Editor', '', '0', '0', '', 'Menu Editor', 'com_menus', '0', '', '1', '', '1'); INSERT INTO `jos_components` VALUES ('27', 'Messaging', '', '0', '0', '', 'Messages', 'com_messages', '0', '', '1', '', '1'); INSERT INTO `jos_components` VALUES ('28', 'Modules Manager', '', '0', '0', '', 'Modules', 'com_modules', '0', '', '1', '', '1'); INSERT INTO `jos_components` VALUES ('29', 'Plugin Manager', '', '0', '0', '', 'Plugins', 'com_plugins', '0', '', '1', '', '1'); INSERT INTO `jos_components` VALUES ('30', 'Template Manager', '', '0', '0', '', 'Templates', 'com_templates', '0', '', '1', '', '1'); INSERT INTO `jos_components` VALUES ('31', 'User Manager', '', '0', '0', '', 'Users', 'com_users', '0', '', '1', 'allowUserRegistration=1\nnew_usertype=Registered\nuseractivation=1\nfrontend_userparams=1\n\n', '1'); INSERT INTO `jos_components` VALUES ('32', 'Cache Manager', '', '0', '0', '', 'Cache', 'com_cache', '0', '', '1', '', '1'); INSERT INTO `jos_components` VALUES ('33', 'Control Panel', '', '0', '0', '', 'Control Panel', 'com_cpanel', '0', '', '1', '', '1'); INSERT INTO `jos_components` VALUES ('34', 'sh404SEF', 'option=com_sh404sef', '0', '0', 'option=com_sh404sef', 'sh404SEF', 'com_sh404sef', '0', 'js/ThemeOffice/component.png', '0', '', '1'); INSERT INTO `jos_components` VALUES ('35', 'Gavick PhotoSlide GK2', 'option=com_gk2_photoslide', '0', '0', 'option=com_gk2_photoslide', 'Gavick PhotoSlide GK2', 'com_gk2_photoslide', '0', 'components/com_gk2_photoslide/interface/images/com_logo_gk2.png', '0', '', '1'); INSERT INTO `jos_components` VALUES ('36', 'Gavick Tabs Manager', 'option=com_gk_tabsman', '0', '0', 'option=com_gk_tabsman', 'Gavick Tabs Manager', 'com_gk_tabsman', '0', '../administrator/components/com_gk_tabsman/com_icon.png', '0', '', '1'); INSERT INTO `jos_components` VALUES ('37', 'Expose', 'option=com_expose', '0', '0', '', 'Expose', 'com_expose', '0', '../administrator/components/com_expose/expose_icon.png', '0', '', '1'); INSERT INTO `jos_components` VALUES ('38', 'Manage Albums', '', '0', '37', 'option=com_expose&task=manage', 'Manage Albums', 'com_expose', '0', '../administrator/components/com_expose/manage.png', '0', '', '1'); INSERT INTO `jos_components` VALUES ('39', 'Configuration', '', '0', '37', 'option=com_expose&task=config', 'Configuration', 'com_expose', '1', '../administrator/components/com_expose/config.png', '0', '', '1'); INSERT INTO `jos_components` VALUES ('40', 'Check System', '', '0', '37', 'option=com_expose&task=check', 'Check System', 'com_expose', '2', '../administrator/components/com_expose/config.png', '0', '', '1'); INSERT INTO `jos_components` VALUES ('41', 'Wiki', '', '0', '37', 'option=com_expose&task=wiki', 'Wiki', 'com_expose', '3', '../administrator/components/com_expose/docs.png', '0', '', '1'); INSERT INTO `jos_components` VALUES ('42', 'Downloads & Manual', '', '0', '37', 'option=com_expose&task=manual', 'Downloads & Manual', 'com_expose', '4', '../administrator/components/com_expose/docs.png', '0', '', '1'); INSERT INTO `jos_components` VALUES ('43', 'QContacts', 'option=com_qcontacts', '0', '0', 'option=com_qcontacts', 'QContacts', 'com_qcontacts', '0', 'js/ThemeOffice/component.png', '0', '', '1'); INSERT INTO `jos_components` VALUES ('44', 'Contacts', '', '0', '43', 'option=com_qcontacts', 'Contacts', 'com_qcontacts', '0', 'js/ThemeOffice/component.png', '0', '', '1'); INSERT INTO `jos_components` VALUES ('45', 'Categories', '', '0', '43', 'option=com_categories§ion=com_qcontacts_details', 'Categories', 'com_qcontacts', '1', 'js/ThemeOffice/component.png', '0', '', '1'); INSERT INTO `jos_components` VALUES ('46', 'Tools', '', '0', '43', 'option=com_qcontacts&controller=tools', 'Tools', 'com_qcontacts', '2', 'js/ThemeOffice/component.png', '0', '', '1'); INSERT INTO `jos_components` VALUES ('47', 'ProjectFork', 'option=com_projectfork', '0', '0', 'option=com_projectfork', 'ProjectFork', 'com_projectfork', '0', 'components/com_projectfork/_core/images/16_projectfork.png', '0', '', '1'); INSERT INTO `jos_contact_details` VALUES ('1', 'Contact Us', 'contact-us', 'Project Manager', '', '', '', '', '', '808-779-9264', '', '', '', null, 'info@hawaiiwebdevelopment.com', '0', '1', '0', '0000-00-00 00:00:00', '1', 'show_name=1\nshow_position=0\nshow_email=0\nshow_street_address=0\nshow_suburb=0\nshow_state=0\nshow_postcode=0\nshow_country=0\nshow_telephone=1\nshow_mobile=0\nshow_fax=0\nshow_webpage=0\nshow_misc=0\nshow_image=0\nallow_vcard=0\ncontact_icons=1\nicon_address=\nicon_email=\nicon_telephone=\nicon_mobile=\nicon_fax=\nicon_misc=\nshow_email_form=1\nemail_description=\nshow_email_copy=1\nbanned_email=\nbanned_subject=\nbanned_text=', '62', '5', '0', '', ''); INSERT INTO `jos_contact_details` VALUES ('2', 'IT Consulting', 'it-consulting', '', '', '', '', '', '', '', '', '', '', null, '', '0', '1', '62', '2008-12-23 14:10:41', '1', 'show_name=1\nshow_position=1\nshow_email=0\nshow_street_address=1\nshow_suburb=1\nshow_state=1\nshow_postcode=1\nshow_country=1\nshow_telephone=1\nshow_mobile=1\nshow_fax=1\nshow_webpage=1\nshow_misc=1\nshow_image=1\nallow_vcard=0\ncontact_icons=0\nicon_address=\nicon_email=\nicon_telephone=\nicon_mobile=\nicon_fax=\nicon_misc=\nshow_email_form=1\nemail_description=\nshow_email_copy=1\nbanned_email=\nbanned_subject=\nbanned_text=', '62', '9', '0', '', ''); INSERT INTO `jos_content` VALUES ('1', 'DotNetNuke Development', 'dotnetnuke-development', '', '

\"DotNetNuke DotNetNuke

Honolulu Progressive is a leader in DotNetNuke (DNN) Development on Hawaiian islands. As a full service software company with a staff of experienced developers, our team has skills to help you with custom DNN Modules development, DNN Portal installations, DNN Skinning and DNN Solutions Hosting locally on the islands.  

We have custom modules we have built to help growing DNN community and Skin packages that could respond your needs. All our DNN clients were happy and impressed by the Framework functionality and our implementation of it.

What is DotNetNuke?

DotNetNuke is an open-source Web Application Framework ideal for creating and deploying projects such as commercial websites, corporate intranets and extranets, online publishing portals, and custom vertical applications. It is a great Content Management System for corporate and government clients, non profit organizations and large news portals. 

DotNetNuke is built on a Microsoft ASP.NET (VB.NET) platform. DNN solutions are AJAX extensible and upgradeable to WEB 2.0 standarts.  With a growing community of over 440,000 users, and a dedicated base of programming professionals, support for DotNetNuke is always close at hand.

 

 

', '', '1', '1', '0', '1', '2008-08-26 18:06:20', '62', '', '2008-09-12 07:00:04', '62', '62', '2008-12-19 00:36:31', '2008-08-26 18:06:20', '0000-00-00 00:00:00', '', '', 'show_title=0\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=0\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=0\nshow_print_icon=0\nshow_email_icon=0\nlanguage=en-GB\nkeyref=\nreadmore=', '13', '0', '6', '', '', '0', '280', 'robots=\nauthor='); INSERT INTO `jos_content` VALUES ('2', 'PHP development. Joomla, Drupal, Symfony in Hawaii.', 'web-solutions-on-cms', '', '

PHP development. Joomla, Drupal, Symfony

80% of the web is made with PHP. Of course, PHP community is bigger than any other development community and there are way more frameworks and solutions on PHP than on any other technology. In Honolulu Progressive we have choosen the best PHP frameworks for small, medium and corporate business to provide our clients with solid and creative solutions. Our PHP team handles several platforms to respond our clients needs - Joomla, Drupal, Symfony and our own HNL Progressive CMS.

Joomla!

Joomla is the most popular CMS over the web. It is one of the most popular frameworks on the web which makes it easier to find modules and skins that you could need. Here are just some of examples where Joomla could be used:

  • Corporate Web sites or portals
  • Online magazines, newspapers, and publications
  • E-commerce and online reservations
  • Non-profit and organizational Web sites
  • Community-based portals
  • School and church Web sites
  • Multilingual websites
\"Drupal

Drupal

Drupal is a software package that allows an individual or a community of users to easily publish, manage and organize a wide variety of content on a website. Tens of thousands of people and organizations are using Drupal to power scores of different web sites, including

  • Community web portals
  • Discussion sites
  • Corporate web sites
  • Intranet applications
  • Personal web sites or blogs
  • E-commerce applications
  • Resource directories
  • Social Networking portals
  • Multilingual websites

\"SymfonySymfony

This framework is aimed at building robust applications in an enterprise context. Great choice for corporate solutions that require some customization. The framework is compliant with most of the web \"bests pratices\" and with web \"design patterns\". More over, it has very readable code with easy maintenance. All that makes Symfony the best choice if you need custom functionality

 

\"HonoluluHonolulu Progressive CMS

This framework is our \'little baby\' we have developed in our shop to provide simple and easy to use CMS solution. Content Management System has TinyMCE editor which provides administrator with a bit of flexibility working with the content. Websites, based on Honolulu Progressive CMS are very affordable and quick to build which makes it as a perfect choice for small business.



', '', '1', '1', '0', '1', '2008-08-26 18:21:31', '62', '', '2009-01-16 08:45:12', '62', '0', '0000-00-00 00:00:00', '2008-08-26 18:21:31', '0000-00-00 00:00:00', '', '', 'show_title=0\nlink_titles=0\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=0\nshow_print_icon=0\nshow_email_icon=0\nlanguage=\nkeyref=\nreadmore=', '17', '0', '5', '', '', '0', '332', 'robots=\nauthor='); INSERT INTO `jos_content` VALUES ('3', 'Small Business Web Solutions', 'small-business-web-solutions', '', '

\"SmallSmall Business Web Solutions

A professionally designed Web site gives your potential customers the confidence to buy from you. It\'s easy, affordable and makes a great impression. Potential customers make a snap decision about whether to work with you based on your site. Moreover, there are a lot of visitors in Hawaii who prefer to look for information about local services and businesses online.

In Honolulu Progressive we offer 2 packages for our Small Business clients. Both of them are probably the cheapest and quickest quality solutions you can find in Hawaii. \'Small Business Static Website\' costs as low as $399 for a website and is being made within 6 business days. \'Small Business Dynamic Website\' or \'Small Business E-Commerce\' are just $699 for a solution. It will take less 15 business days to run them live.

Please feel free to Contact Us if you have any questions.

 

 


 

 

', '', '1', '1', '0', '1', '2008-08-26 18:22:48', '62', '', '2008-09-12 10:05:02', '62', '62', '2008-12-19 00:36:18', '2008-08-26 18:22:48', '0000-00-00 00:00:00', '', '', 'show_title=0\nlink_titles=0\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=0\nshow_print_icon=0\nshow_email_icon=0\nlanguage=en-GB\nkeyref=\nreadmore=', '5', '0', '4', '', '', '0', '213', 'robots=\nauthor='); INSERT INTO `jos_content` VALUES ('4', 'RIA. Flex Applications. Flash websites in Hawaii', 'flex-solutions-and-flash-websites', '', '

\"Flex RIA. Flex Applications. Flash Websites.

If you want to impress your visitors with animation and special effects, Flash is what exactly what you need for the front. But, say, what if you want to have strong back end, CMS or eCommerce solution in the back? Then you need to have Flex.

From the stables of Adobe systems, Adobe Flex precisely, is a collection of technologies for the development and deployment of cross platform, Rich Internet Applications based on the proprietary Adobe Flash platform. Interestingly, flash content and applications have emerged as principal requirements for rich web experiences.

Over the years, developers at Honolulu Progressive have achieved great amount of proficiency in delivering Adobe Flex solutions. Our core expertise lies at creating Rich Internet Applications and desktop applications.

Defining Flex

Flex is a free, open source framework for building highly interactive web applications that deploy consistently on all major browsers, desktops, and operating systems. Flex creates SWF files that are played by Flash Player.

When integrating Flex with other technologies, the most important points to remember are:

Honolulu Progressive flex expertise

At Honolulu Progressive, through constant learning and hands-on practicing, the development team possesses expertise at developing flex shopping carts, flex e-commerce applications, flex content management system, flex garment and accessories designer, flex text/audio/video chat and flex enterprise applications.We can integrate flex front-end with:

On server-side technologies we support:

How does it going to look like?

It is going to look awesome. That is the bold statement, but this is why we have professional award-winning designers in state that you can work with locally in Hawaii. Imagine yourself extremely interactive Flash animated website that has strong back end and great functionality - That is what our Flex solutions about.



', '', '1', '1', '0', '1', '2008-08-26 18:23:53', '62', '', '2008-09-13 00:45:39', '62', '62', '2008-12-19 00:36:10', '2008-08-26 18:23:53', '0000-00-00 00:00:00', '', '', 'show_title=0\nlink_titles=0\nshow_intro=1\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=0\nshow_print_icon=0\nshow_email_icon=0\nlanguage=\nkeyref=\nreadmore=', '20', '0', '3', '', '', '0', '312', 'robots=\nauthor='); INSERT INTO `jos_content` VALUES ('5', 'Honolulu Progressive CRM', 'honolulu-progressive-crm', '', '

Web sites really work. No matter what your business or profession, a good web site can generate business, promote goodwill among customers and prospects, and deliver strong marketing messages — whether your business is small, large or in-between, well-established or brand-new.

 

 

 

 

 

', '', '1', '1', '0', '1', '2008-08-26 18:24:49', '62', '', '2008-12-19 00:33:31', '62', '62', '2008-12-19 00:36:05', '2008-08-26 18:24:49', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', '4', '0', '2', '', '', '0', '18', 'robots=\nauthor='); INSERT INTO `jos_content` VALUES ('6', 'Custom Applications Development', 'custom-applications-development', '', '

\"CustomCustom Web and Software Development

Custom web or software development could be a complex, costly and lengthy process for businesses that operate in Hawaii. There are just few companies around that actually do that. For solid software or web product you need a team of high skilled professionals that are so demanded in Hawaii and, as a result, hard to find in Hawaii. 

One of our key competitive advantages in custom software and web development approach we have in Hawaii Web Development are our onshore and offshore resources. Our onshore technology experts work in tandem with a talented pool of offshore designers/developers to ensure successful completion of your project on time and budget. This means you get all the quality, face-to-face, locally in Hawaii, personal service that your project demands while taking advantage of a global resource model.

Our range of custom solutions includes:



 

', '', '1', '1', '0', '1', '2008-08-26 18:25:42', '62', '', '2008-12-19 00:32:48', '62', '62', '2008-12-19 00:35:58', '2008-08-26 18:25:42', '0000-00-00 00:00:00', '', '', 'show_title=0\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=0\nshow_print_icon=0\nshow_email_icon=0\nlanguage=\nkeyref=\nreadmore=', '6', '0', '1', '', '', '0', '227', 'robots=\nauthor='); INSERT INTO `jos_content` VALUES ('7', 'Flash and Motion Graphics', 'flash-and-motion-graphics-in-hawaii', '', '

Flash has become a popular method for adding animation and interactivity to web pages; Flash is commonly used to create animation, advertisements, and various web page components, to integrate video into web pages, and more recently, to develop rich Internet applications. We have onshore flash animators, programmers and designers that can assist you with:

  • flash web sites development
  • flash Web sites shopping cart or CMS binding
  • flash animation and cartoons
  • flash educational movies and programs
  • flash banners and presentations
  • flash modules for your Web Applications
  • flash games

 

', '', '1', '1', '0', '2', '2008-08-26 18:26:36', '62', '', '2008-09-16 11:36:37', '62', '62', '2008-12-19 00:35:53', '2008-08-26 18:26:36', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', '6', '0', '4', '', '', '0', '190', 'robots=\nauthor='); INSERT INTO `jos_content` VALUES ('8', 'Branding and Graphics', 'branding-and-graphic-design-hawaii', '', '

Hawaii Web Development specializes in world class branding and creative marketing solutions. By having a team of professional designers and marketing specialists we are enable to offer clients comprehensive brand management that integrates all marketing media around a unified image.

Whether you need a logo, print collateral, or even a branding book or branding strategy, Hawaii WD\'s creative staff will make you stand above the rest. Our services include but not limited to:

  • corporate identity
  • logos
  • letterhead
  • brochures
  • mailers
  • magazine ads
  • marketing kits
  • large format print
  • trade show displays
  • products design

 

', '', '1', '1', '0', '2', '2008-08-26 18:27:43', '62', '', '2008-12-19 00:29:55', '62', '62', '2008-12-19 00:35:39', '2008-08-26 18:27:43', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', '5', '0', '3', '', '', '0', '189', 'robots=\nauthor='); INSERT INTO `jos_content` VALUES ('9', 'Two Dimensional Design', 'two-dimensional-design', '', 'Two Dimensional Design', '', '-2', '1', '0', '2', '2008-08-26 18:29:43', '62', '', '0000-00-00 00:00:00', '0', '0', '0000-00-00 00:00:00', '2008-08-26 18:29:43', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', '1', '0', '0', '', '', '0', '5', 'robots=\nauthor='); INSERT INTO `jos_content` VALUES ('10', 'Three Dimensional Design and Animation', 'three-dimensional-design-and-animation', '', '

In Honolulu Progressive we are committed to providing low-cost, high-power products that allow you to integrate 3D content into your new or existing applications with ease. Our exclusive 3D design method has proven to produce presentations that leave a lasting impression on the investor, and consequently reach the ultimate goal of raising, sustaining, and securing capital investment. In Honolulu Progressive we are able to provide services locally in Hawaii and at affordable rates in

  • high-def (HD) video effects production
  • custom 3D graphics design
  • product visualization
  • digital architectural rendering
  • virtual set design
  • virtual news sets
  • custom design
  • hdtv resolution clips and stock footage.
  • 3D modeling
  • digital content creation
  • high-definition resolution graphics
  • motion clip creation
  • digital backgrounds
  • ad footage
  • high definition animated film
  • animated characters and avatars
', '', '1', '1', '0', '2', '2008-08-26 18:30:43', '62', '', '2008-09-16 11:03:46', '62', '62', '2008-12-19 00:35:28', '2008-08-26 18:30:43', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', '5', '0', '1', '', '', '0', '229', 'robots=\nauthor='); INSERT INTO `jos_content` VALUES ('11', 'E-Commerce Services in Hawaii', 'e-commerce-solutions', '', '\"ECommerce

eCommerce

After speeding past the $100-billion mark in 2002, online sales will top $520 billion this year. And we believe that it is far from the limit. More than that, location of Hawaii obligate local business to have online representation for taking a peace of the global market. Add to it that products from Hawaii you sell online are actually \'Products From Paradise\', which is a great marketing tool by itself.

Our eCommerce solutions combine the best practices in technology, operations, marketing and branding. It provides the flexibility to pick, choose and create custom functionality to meet your unique business needs. We are people to go if you are looking for CRE Loaded, OsCommerce, ASPDotNetStorefront, DashCommerce, Zen Cart solution in Hawaii. Moreover, we would be happy to provide you with custom E-commerce applications development.

Having ecommerce Consulting, Marketing, Developing, Optimizing and Hosting in house we could be your local Hawaiian \'one stop shop\' for eCommerce.

 

', '', '1', '0', '0', '0', '2008-08-26 18:59:03', '62', '', '2008-09-08 21:34:27', '62', '62', '2008-12-19 00:35:22', '2008-08-26 18:59:03', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=0\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=0\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=0\nshow_print_icon=0\nshow_email_icon=0\nlanguage=en-GB\nkeyref=\nreadmore=', '10', '0', '2', '', '', '0', '267', 'robots=\nauthor='); INSERT INTO `jos_content` VALUES ('15', 'IT Consulting', 'it-consulting', '', '

info@HawaiiWebDevelopment.com

', '', '1', '1', '0', '4', '2008-12-23 14:06:50', '62', '', '2008-12-23 14:15:09', '62', '0', '0000-00-00 00:00:00', '2008-12-23 14:06:50', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', '8', '0', '1', '', '', '0', '35', 'robots=\nauthor='); INSERT INTO `jos_content` VALUES ('12', 'Hawaii Web Development', 'hawaii-web-development', '', '

Hawaii Web Development is Oahu based company specializing in Software Development, Web Development, Web Design, 3D development, Graphic Design and Interactive Media Services. We are one stop company for implementing your business idea as a web solution, software or digital media product. Our main goal is to provide local Hawaiian businesses with quality and affordable world class products and solutions.

 

 

 

 

 

', '', '1', '0', '0', '0', '2008-09-17 08:20:50', '62', '', '2009-01-16 08:19:29', '62', '0', '0000-00-00 00:00:00', '2008-09-17 08:20:50', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', '10', '0', '1', 'Webdesign in Oahu web design honolulu oahu web design', 'Web Design in Oahu', '0', '10', 'robots=\nauthor='); INSERT INTO `jos_content` VALUES ('13', 'art1', 'art1', '', 'tak, test art1', '', '-2', '0', '0', '0', '2008-12-18 18:43:02', '62', '', '2008-12-18 18:45:55', '62', '0', '0000-00-00 00:00:00', '2008-12-18 18:43:02', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', '2', '0', '0', '', '', '0', '0', 'robots=\nauthor='); INSERT INTO `jos_content` VALUES ('14', 'article1', 'article1', '', 'Testing news article', '', '0', '1', '0', '2', '2008-12-18 23:59:47', '62', '', '2008-12-19 00:38:41', '62', '0', '0000-00-00 00:00:00', '2008-12-18 23:59:47', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', '7', '0', '2', '', '', '0', '2', 'robots=\nauthor='); INSERT INTO `jos_content_frontpage` VALUES ('12', '2'); INSERT INTO `jos_content_frontpage` VALUES ('13', '1'); INSERT INTO `jos_content_rating` VALUES ('2', '4', '1', '212.98.163.230'); INSERT INTO `jos_core_acl_aro` VALUES ('10', 'users', '62', '0', 'Mikita Mikado', '0'); INSERT INTO `jos_core_acl_aro` VALUES ('11', 'users', '63', '0', 'Yuri', '0'); INSERT INTO `jos_core_acl_aro` VALUES ('12', 'users', '64', '0', 'Mikita', '0'); INSERT INTO `jos_core_acl_aro` VALUES ('13', 'users', '65', '0', 'asdf', '0'); INSERT INTO `jos_core_acl_aro` VALUES ('14', 'users', '66', '0', 'Name', '0'); INSERT INTO `jos_core_acl_aro_groups` VALUES ('17', '0', 'ROOT', '1', '22', 'ROOT'); INSERT INTO `jos_core_acl_aro_groups` VALUES ('28', '17', 'USERS', '2', '21', 'USERS'); INSERT INTO `jos_core_acl_aro_groups` VALUES ('29', '28', 'Public Frontend', '3', '12', 'Public Frontend'); INSERT INTO `jos_core_acl_aro_groups` VALUES ('18', '29', 'Registered', '4', '11', 'Registered'); INSERT INTO `jos_core_acl_aro_groups` VALUES ('19', '18', 'Author', '5', '10', 'Author'); INSERT INTO `jos_core_acl_aro_groups` VALUES ('20', '19', 'Editor', '6', '9', 'Editor'); INSERT INTO `jos_core_acl_aro_groups` VALUES ('21', '20', 'Publisher', '7', '8', 'Publisher'); INSERT INTO `jos_core_acl_aro_groups` VALUES ('30', '28', 'Public Backend', '13', '20', 'Public Backend'); INSERT INTO `jos_core_acl_aro_groups` VALUES ('23', '30', 'Manager', '14', '19', 'Manager'); INSERT INTO `jos_core_acl_aro_groups` VALUES ('24', '23', 'Administrator', '15', '18', 'Administrator'); INSERT INTO `jos_core_acl_aro_groups` VALUES ('25', '24', 'Super Administrator', '16', '17', 'Super Administrator'); INSERT INTO `jos_core_acl_aro_sections` VALUES ('10', 'users', '1', 'Users', '0'); INSERT INTO `jos_core_acl_groups_aro_map` VALUES ('18', '', '11'); INSERT INTO `jos_core_acl_groups_aro_map` VALUES ('18', '', '12'); INSERT INTO `jos_core_acl_groups_aro_map` VALUES ('18', '', '13'); INSERT INTO `jos_core_acl_groups_aro_map` VALUES ('18', '', '14'); INSERT INTO `jos_core_acl_groups_aro_map` VALUES ('25', '', '10'); INSERT INTO `jos_gk_tabsman_groups` VALUES ('1', 'Services', 'Honolulu Progressive services', 'tabmods'); INSERT INTO `jos_gk_tabsman_groups` VALUES ('2', 'Portfolio', 'Honolulu Progressive Portfolio', 'tabarts'); INSERT INTO `jos_gk_tabsman_tabs` VALUES ('1', '1', 'right', 'footer', '1'); INSERT INTO `jos_gk_tabsman_tabs` VALUES ('2', '1', 'content', 'top', '2'); INSERT INTO `jos_gk_tabsman_tabs` VALUES ('3', '2', 'dnn development', '1', '1'); INSERT INTO `jos_gk_tabsman_tabs` VALUES ('4', '2', 'custom apps development', '6', '2'); INSERT INTO `jos_gk2_photoslide_extensions` VALUES ('1', 'GK Rainbow', '1', 'extension', 'ext_rainbow.xml', 'ext_rainbow.php', '1.0', 'GavickPro', 'Interface extension to add easy way of selecting colors', ''); INSERT INTO `jos_gk2_photoslide_groups` VALUES ('1', 'Slides Demo', 'GK News Image I', '611', '351', '58', '58', '#000000', '#FFFFFF', '#AAAAAA', '#CCCCCC', '#EEEEEE', '100'); INSERT INTO `jos_gk2_photoslide_groups` VALUES ('2', 'Home page', 'GK News Image I', '690', '250', '28', '28', '#000000', '#ffffff', '#Fefefe', '#00b0db', '#00b0db', '100'); INSERT INTO `jos_gk2_photoslide_plugins` VALUES ('1', 'GK Rainbow', '0', 'extension', 'ext_rainbow.xml', 'ext_rainbow.php', '1.0', 'GavickPro', 'Interface extension to add easy way of selecting colors', '', ''); INSERT INTO `jos_gk2_photoslide_plugins` VALUES ('2', 'GK News Image I', '1', 'module', 'plg_gk_news_image_1.xml', 'plg_gk_news_image_1.php', '2.0', 'GavickPro', 'XML file for module Gavick News Image I', 'mediumThumbX,mediumThumbY,smallThumbX,smallThumbY,bgcolor,titlecolor,textcolor,linkcolor,hlinkcolor,quality', 'title,text,linktype,linkvalue,article,wordcount,stretch'); INSERT INTO `jos_gk2_photoslide_plugins` VALUES ('3', 'News Show GK3', '1', 'module', 'plg_news_show_gk3.xml', 'plg_news_show_gk3.php', '1.0', 'GavickPro', 'XML file for module News Show GK3', 'mediumThumbX,mediumThumbY,smallThumbX,smallThumbY,bgcolor,quality', 'article,mediumThumbX,mediumThumbY,smallThumbX,smallThumbY,stretch'); INSERT INTO `jos_gk2_photoslide_slides` VALUES ('1', '1', 'Test slide', '1', '0', '899675olympic_80.jpg', '1', 'TEst slide', 'test test test test test test test', '1', 'http://www.mikitadesign.com', '11', '30', '0', '0', '0', '0', '0'); INSERT INTO `jos_gk2_photoslide_slides` VALUES ('2', '1', 'test test', '1', '0', '20866811.jpg', '2', 'sadfasdf;alsjf', 'asdfjka;dsfkjad;sfkj', '1', 'aslfkjas;dlfkj', '7', '30', '0', '0', '0', '0', '0'); INSERT INTO `jos_gk2_photoslide_slides` VALUES ('3', '2', 'Honolulu Progressive', '1', '0', '787333night.jpg', '1', 'Honolulu Progressive', 'At Hawaii Web Development we bring innovative ideas and cutting-edge technologies into the business of our customers.', '0', 'http://honoluluprogressive.com/services.html', '11', '30', '0', '0', '0', '0', '0'); INSERT INTO `jos_gk2_photoslide_slides` VALUES ('4', '2', 'Relax, Bro', '1', '0', '374035rest.jpg', '2', 'Relax', 'What would you spend your time to while your website is making money for you?
Last year online sales jumped over 500 billion mark...', '1', '', '11', '30', '0', '0', '0', '0', '0'); INSERT INTO `jos_gk2_photoslide_slides` VALUES ('5', '2', 'project management', '1', '0', '965360projectCom.jpg', '3', 'Projects Management', 'By using high-end project management, time tracking and communicational tools we keep our clients well informed about their project status', '1', 'http://honoluluprogressive.com/services/staff-augmentation.html', '11', '30', '0', '0', '0', '0', '0'); INSERT INTO `jos_gk2_photoslide_slides` VALUES ('6', '2', 'Hosting', '1', '0', '807689servers.jpg', '4', 'Yes, we will host it', 'We host application we build and support them life long. There is no way your website will run slowly on 4 Quad Core Intel E7340 servers with 8GB of RAM.', '1', '', '11', '36', '0', '0', '0', '0', '0'); INSERT INTO `jos_gk2_photoslide_slides` VALUES ('7', '2', 'dedicated team', '1', '0', '826213people.jpg', '5', 'Dedicated Resources', 'Let us augment your staff and free up internal resources, lower operating costs, and increase performing efficiency. ', '0', 'http://honoluluprogressive.com/services/staff-augmentation.html', '11', '30', '0', '0', '0', '0', '0'); INSERT INTO `jos_gk2_photoslide_slides` VALUES ('8', '2', 'bridge', '1', '0', '925937bridge.jpg', '6', 'Go Globally', 'Web Solutions by Hawaii Web Development, will help you to build quality representation of your business for entire world.', '0', 'http://honoluluprogressive.com/', '11', '30', '0', '0', '0', '0', '0'); INSERT INTO `jos_groups` VALUES ('0', 'Public'); INSERT INTO `jos_groups` VALUES ('1', 'Registered'); INSERT INTO `jos_groups` VALUES ('2', 'Special'); INSERT INTO `jos_menu` VALUES ('1', 'mainmenu', 'Home', 'home', 'index.php?option=com_content&view=frontpage', 'component', '1', '0', '20', '0', '2', '0', '0000-00-00 00:00:00', '0', '0', '0', '3', 'num_leading_articles=1\nnum_intro_articles=4\nnum_columns=2\nnum_links=4\norderby_pri=\norderby_sec=front\nshow_pagination=2\nshow_pagination_results=1\nshow_feed_link=1\nshow_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '1'); INSERT INTO `jos_menu` VALUES ('2', 'mainmenu', 'Services', 'services', 'index.php?option=com_content&view=section&id=1', 'component', '1', '0', '20', '0', '3', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_description=1\nshow_description_image=1\nshow_categories=0\nshow_empty_categories=0\nshow_cat_num_articles=0\nshow_category_description=0\norderby=order\norderby_sec=order\nshow_feed_link=1\nshow_noauth=\nshow_title=0\nlink_titles=0\nshow_intro=0\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_item_navigation=1\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=0\nfeed_summary=\npage_title=Web Design and Programming Services in Hawaii\nshow_page_title=0\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('3', 'mainmenu', 'Web Design and Programming', 'web-design-and-programming', 'index.php?option=com_content&view=category&layout=blog&id=1', 'component', '1', '2', '20', '1', '1', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_description=1\nshow_description_image=1\nnum_leading_articles=0\nnum_intro_articles=0\nnum_columns=0\nnum_links=0\norderby_pri=\norderby_sec=alpha\nshow_pagination=0\nshow_pagination_results=0\nshow_feed_link=0\nshow_noauth=0\nshow_title=0\nlink_titles=0\nshow_intro=0\nshow_section=0\nlink_section=1\nshow_category=1\nlink_category=0\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=1\nshow_readmore=1\nshow_vote=0\nshow_icons=\nshow_pdf_icon=0\nshow_print_icon=0\nshow_email_icon=0\nshow_hits=0\nfeed_summary=0\npage_title=\nshow_page_title=0\npageclass_sfx=\nmenu_image=programming_sm.jpg\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('4', 'mainmenu', 'Animation and Graphic Design', 'animation-and-graphic-design', 'index.php?option=com_content&view=category&layout=blog&id=2', 'component', '1', '2', '20', '1', '2', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_description=0\nshow_description_image=0\nnum_leading_articles=1\nnum_intro_articles=4\nnum_columns=2\nnum_links=4\norderby_pri=\norderby_sec=\nshow_pagination=2\nshow_pagination_results=1\nshow_feed_link=1\nshow_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('5', 'mainmenu', 'Web Hosting', 'web-hosting', 'index.php?option=com_content&view=category&layout=blog&id=3', 'component', '1', '2', '20', '1', '3', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_description=1\nshow_description_image=1\nnum_leading_articles=6\nnum_intro_articles=6\nnum_columns=0\nnum_links=6\norderby_pri=order\norderby_sec=date\nshow_pagination=2\nshow_pagination_results=1\nshow_feed_link=1\nshow_noauth=\nshow_title=\nlink_titles=1\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=1\nshow_readmore=1\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('6', 'mainmenu', 'IT Consulting', 'it-consulting', 'index.php?option=com_content&view=category&layout=blog&id=4', 'component', '1', '2', '20', '1', '4', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_description=0\nshow_description_image=0\nnum_leading_articles=1\nnum_intro_articles=4\nnum_columns=2\nnum_links=4\norderby_pri=\norderby_sec=\nshow_pagination=2\nshow_pagination_results=1\nshow_feed_link=1\nshow_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('7', 'mainmenu', 'Portfolio', 'portfolio', 'index.php?option=com_content&view=section&id=2', 'component', '1', '0', '20', '0', '4', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_description=1\nshow_description_image=1\nshow_categories=1\nshow_empty_categories=0\nshow_cat_num_articles=1\nshow_category_description=1\norderby=\norderby_sec=\nshow_feed_link=1\nshow_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('8', 'mainmenu', 'Contact Us', 'contact-us', 'index.php?option=com_contact&view=contact&id=1', 'component', '1', '0', '7', '0', '7', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_contact_list=0\nshow_category_crumb=0\ncontact_icons=\nicon_address=\nicon_email=\nicon_telephone=\nicon_mobile=\nicon_fax=\nicon_misc=\nshow_headings=\nshow_position=\nshow_email=\nshow_telephone=\nshow_mobile=\nshow_fax=\nallow_vcard=\nbanned_email=\nbanned_subject=\nbanned_text=\nvalidate_session=\ncustom_reply=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('9', 'mainmenu', 'E-Commerce Solutions', 'e-commerce-solutions', 'index.php?option=com_content&view=article&id=11', 'component', '0', '0', '20', '0', '6', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('10', 'mainmenu', 'DotNetNuke Development', 'dotnetnuke-development', 'index.php?option=com_content&view=article&id=1', 'component', '1', '3', '20', '2', '1', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('11', 'mainmenu', 'Joomla, Symfony and Drupal Development', 'joomla-symfony-and-drupal-development', 'index.php?option=com_content&view=article&id=2', 'component', '1', '3', '20', '2', '2', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('12', 'mainmenu', 'Small Business Web Solutions', 'small-business-web-solutions', 'index.php?option=com_content&view=article&id=3', 'component', '1', '3', '20', '2', '3', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('13', 'mainmenu', 'Flex Solutions and Flash Websites', 'flex-solutions-and-flash-websites', 'index.php?option=com_content&view=article&id=4', 'component', '1', '3', '20', '2', '5', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('14', 'mainmenu', 'Honolulu Progressive CRM', 'honolulu-progressive-crm', 'index.php?option=com_content&view=article&id=5', 'component', '0', '3', '20', '2', '6', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('15', 'mainmenu', 'Custom Applications Development', 'custom-applications-development', 'index.php?option=com_content&view=article&id=6', 'component', '1', '3', '20', '2', '7', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('16', 'mainmenu', 'Flash and Motion Graphics', 'flash-and-motion-graphics', 'index.php?option=com_content&view=article&id=7', 'component', '1', '4', '20', '2', '1', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('17', 'mainmenu', 'Branding and Graphic Design', 'branding-and-graphic-design-hawaii', 'index.php?option=com_content&view=article&id=8', 'component', '1', '4', '20', '2', '2', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('18', 'mainmenu', 'Two Dimensional Design', 'two-dimensional-design', 'index.php?option=com_content&view=article&id=9', 'component', '-2', '0', '20', '2', '1', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('19', 'mainmenu', 'Three Dimensional Design and Animation', 'three-dimensional-design-and-animation', 'index.php?option=com_content&view=article&id=10', 'component', '1', '4', '20', '2', '3', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('23', 'mainmenu', 'ECommerce', 'ecommerce', 'index.php?option=com_content&view=article&id=11', 'component', '1', '3', '20', '2', '4', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_noauth=\nshow_title=0\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=0\nshow_create_date=0\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=0\nfeed_summary=\npage_title=\nshow_page_title=0\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('20', 'mainmenu', 'Specials', 'case-studies', 'index.php?option=com_content&view=section&layout=blog&id=6', 'component', '1', '0', '20', '0', '5', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_description=1\nshow_description_image=1\nnum_leading_articles=1\nnum_intro_articles=4\nnum_columns=2\nnum_links=4\norderby_pri=\norderby_sec=\nshow_pagination=2\nshow_pagination_results=1\nshow_feed_link=1\nshow_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('21', 'services', 'Animation and Graphic Design', 'animation-and-graphic-design', 'index.php?option=com_content&view=category&layout=blog&id=2', 'component', '-2', '0', '20', '0', '1', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_description=0\nshow_description_image=0\nnum_leading_articles=1\nnum_intro_articles=4\nnum_columns=2\nnum_links=4\norderby_pri=\norderby_sec=\nshow_pagination=2\nshow_pagination_results=1\nshow_feed_link=1\nshow_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('22', 'services', 'Help Desc and IT Consulting', 'help-desc-and-it-consulting', 'index.php?option=com_content&view=category&layout=blog&id=4', 'component', '-2', '0', '20', '0', '2', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_description=0\nshow_description_image=0\nnum_leading_articles=1\nnum_intro_articles=4\nnum_columns=2\nnum_links=4\norderby_pri=\norderby_sec=\nshow_pagination=2\nshow_pagination_results=1\nshow_feed_link=1\nshow_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('24', 'web-development', 'Custom Applications Development', 'custom-applications-development', 'index.php?option=com_content&view=article&id=6', 'component', '-2', '0', '20', '0', '1', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('25', 'web-development', 'RIA. Flex. Flash.', 'ria-flex-flash', 'index.php?option=com_content&view=article&id=4', 'component', '-2', '0', '20', '0', '2', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('26', 'web-development', 'Small Business', 'small-business-web-solutions', 'index.php?option=com_content&view=article&id=3', 'component', '-2', '0', '20', '0', '3', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('27', 'web-development', 'DotNetNuke development', 'dotnetnuke-development', 'index.php?option=com_content&view=article&id=1', 'component', '-2', '0', '20', '0', '4', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('28', 'web-development', 'Joomla, Symfony and Drupal Development', 'joomla-symfony-and-drupal-development', 'index.php?option=com_content&view=article&id=2', 'component', '-2', '0', '20', '0', '5', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('29', 'web-development', 'ECommerce', 'ecommerce', 'index.php?option=com_content&view=article&id=11', 'component', '-2', '0', '20', '0', '6', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_noauth=\nshow_title=0\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=0\nshow_create_date=0\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=0\nfeed_summary=\npage_title=\nshow_page_title=0\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('30', 'web-development', 'DotNetNuke Web Development', 'dotnetnuke-development', 'index.php?option=com_content&view=article&id=1', 'component', '1', '0', '20', '0', '7', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('31', 'web-development', 'Joomla, Symfony and Drupal Development', 'joomla-symfony-and-drupal-development', 'index.php?option=com_content&view=article&id=2', 'component', '1', '0', '20', '0', '8', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('32', 'web-development', 'Small Business Web Solutions', 'small-business-web-solutions', 'index.php?option=com_content&view=article&id=3', 'component', '1', '0', '20', '0', '9', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('33', 'web-development', 'Flex Solutions and Flash Websites', 'flex-solutions-and-flash-websites', 'index.php?option=com_content&view=article&id=4', 'component', '1', '0', '20', '0', '10', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('34', 'web-development', 'Honolulu Progressive CRM', 'honolulu-progressive-crm', 'index.php?option=com_content&view=article&id=5', 'component', '0', '0', '20', '0', '11', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('35', 'web-development', 'Custom Applications Development', 'custom-applications-development', 'index.php?option=com_content&view=article&id=6', 'component', '1', '0', '20', '0', '12', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('36', 'web-development', 'ECommerce', 'ecommerce', 'index.php?option=com_content&view=article&id=11', 'component', '1', '0', '20', '0', '13', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_noauth=\nshow_title=0\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=0\nshow_create_date=0\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=0\nfeed_summary=\npage_title=\nshow_page_title=0\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('37', 'mainmenu', 'Staff Augmentation', 'staff-augmentation', 'index.php?option=com_content&view=category&layout=blog&id=7', 'component', '1', '2', '20', '1', '5', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_description=1\nshow_description_image=1\nnum_leading_articles=1\nnum_intro_articles=4\nnum_columns=2\nnum_links=4\norderby_pri=\norderby_sec=\nshow_pagination=2\nshow_pagination_results=0\nshow_feed_link=0\nshow_noauth=0\nshow_title=0\nlink_titles=0\nshow_intro=\nshow_section=\nlink_section=\nshow_category=0\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=0\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('38', 'services', 'Web Design and Programming', 'web-design-and-programming', 'index.php?option=com_content&view=category&layout=blog&id=1', 'component', '1', '0', '20', '0', '3', '62', '2008-12-23 13:26:53', '0', '0', '0', '0', 'show_description=1\nshow_description_image=1\nnum_leading_articles=0\nnum_intro_articles=0\nnum_columns=0\nnum_links=0\norderby_pri=\norderby_sec=alpha\nshow_pagination=0\nshow_pagination_results=0\nshow_feed_link=0\nshow_noauth=0\nshow_title=0\nlink_titles=0\nshow_intro=0\nshow_section=0\nlink_section=1\nshow_category=1\nlink_category=0\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=1\nshow_readmore=1\nshow_vote=0\nshow_icons=\nshow_pdf_icon=0\nshow_print_icon=0\nshow_email_icon=0\nshow_hits=0\nfeed_summary=0\npage_title=\nshow_page_title=0\npageclass_sfx=\nmenu_image=programming_sm.jpg\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('39', 'services', 'Animation and Graphic Design', 'animation-and-graphic-design', 'index.php?option=com_content&view=category&layout=blog&id=2', 'component', '1', '0', '20', '0', '4', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_description=0\nshow_description_image=0\nnum_leading_articles=6\nnum_intro_articles=6\nnum_columns=0\nnum_links=6\norderby_pri=order\norderby_sec=date\nshow_pagination=2\nshow_pagination_results=1\nshow_feed_link=1\nshow_noauth=\nshow_title=\nlink_titles=1\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=1\nshow_readmore=1\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('40', 'services', 'Web Hosting', 'web-hosting', 'index.php?option=com_content&view=category&layout=blog&id=3', 'component', '1', '0', '20', '0', '5', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_description=0\nshow_description_image=0\nnum_leading_articles=6\nnum_intro_articles=6\nnum_columns=0\nnum_links=6\norderby_pri=order\norderby_sec=date\nshow_pagination=2\nshow_pagination_results=1\nshow_feed_link=1\nshow_noauth=\nshow_title=\nlink_titles=1\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=1\nshow_readmore=1\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('41', 'services', 'IT Consulting', 'it-consulting', 'index.php?option=com_content&view=category&layout=blog&id=4', 'component', '1', '0', '20', '0', '6', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_description=0\nshow_description_image=0\nnum_leading_articles=1\nnum_intro_articles=4\nnum_columns=2\nnum_links=4\norderby_pri=\norderby_sec=\nshow_pagination=2\nshow_pagination_results=1\nshow_feed_link=1\nshow_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('42', 'services', 'Staff Augmentation', 'staff-augmentation', 'index.php?option=com_content&view=category&layout=blog&id=7', 'component', '1', '0', '20', '0', '7', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_description=1\nshow_description_image=1\nnum_leading_articles=1\nnum_intro_articles=4\nnum_columns=2\nnum_links=4\norderby_pri=\norderby_sec=\nshow_pagination=2\nshow_pagination_results=0\nshow_feed_link=0\nshow_noauth=0\nshow_title=0\nlink_titles=0\nshow_intro=\nshow_section=\nlink_section=\nshow_category=0\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=0\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('43', 'animation-and-gr-des', 'Flash & Motion Graphics', 'flash-and-motion-graphics', 'index.php?option=com_content&view=article&id=7', 'component', '1', '0', '20', '0', '2', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('44', 'animation-and-gr-des', 'Branding and Graphic Design', 'branding-and-corporate-identity-design', 'index.php?option=com_content&view=article&id=8', 'component', '1', '0', '20', '0', '3', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('45', 'animation-and-gr-des', '2D Design', 'two-dimensional-design', 'index.php?option=com_content&view=article&id=9', 'component', '-2', '0', '20', '0', '1', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu` VALUES ('46', 'animation-and-gr-des', '3D Modeling and Animation', 'three-dimensional-design-and-animation', 'index.php?option=com_content&view=article&id=10', 'component', '1', '0', '20', '0', '4', '0', '0000-00-00 00:00:00', '0', '0', '0', '0', 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', '0', '0', '0'); INSERT INTO `jos_menu_types` VALUES ('1', 'mainmenu', 'Main Menu', 'The main menu for the site'); INSERT INTO `jos_menu_types` VALUES ('2', 'services', 'Services', 'Services'); INSERT INTO `jos_menu_types` VALUES ('3', 'web-development', 'Web Development', 'Web Development in Hawaii Menu'); INSERT INTO `jos_menu_types` VALUES ('4', 'animation-and-gr-des', 'Animation and Graphic Design', 'Animation and Graphic Design Services'); INSERT INTO `jos_modules` VALUES ('1', 'Main Menu', '', '3', 'left', '0', '0000-00-00 00:00:00', '0', 'mod_mainmenu', '0', '0', '1', 'menutype=mainmenu\nmoduleclass_sfx=_menu\n', '1', '0', ''); INSERT INTO `jos_modules` VALUES ('2', 'Login', '', '1', 'login', '0', '0000-00-00 00:00:00', '1', 'mod_login', '0', '0', '1', '', '1', '1', ''); INSERT INTO `jos_modules` VALUES ('3', 'Popular', '', '3', 'cpanel', '0', '0000-00-00 00:00:00', '1', 'mod_popular', '0', '2', '1', '', '0', '1', ''); INSERT INTO `jos_modules` VALUES ('4', 'Recent added Articles', '', '4', 'cpanel', '0', '0000-00-00 00:00:00', '1', 'mod_latest', '0', '2', '1', 'ordering=c_dsc\nuser_id=0\ncache=0\n\n', '0', '1', ''); INSERT INTO `jos_modules` VALUES ('5', 'Menu Stats', '', '5', 'cpanel', '0', '0000-00-00 00:00:00', '1', 'mod_stats', '0', '2', '1', '', '0', '1', ''); INSERT INTO `jos_modules` VALUES ('6', 'Unread Messages', '', '1', 'header', '0', '0000-00-00 00:00:00', '1', 'mod_unread', '0', '2', '1', '', '1', '1', ''); INSERT INTO `jos_modules` VALUES ('7', 'Online Users', '', '2', 'header', '0', '0000-00-00 00:00:00', '1', 'mod_online', '0', '2', '1', '', '1', '1', ''); INSERT INTO `jos_modules` VALUES ('8', 'Toolbar', '', '1', 'toolbar', '0', '0000-00-00 00:00:00', '1', 'mod_toolbar', '0', '2', '1', '', '1', '1', ''); INSERT INTO `jos_modules` VALUES ('9', 'Quick Icons', '', '1', 'icon', '0', '0000-00-00 00:00:00', '1', 'mod_quickicon', '0', '2', '1', '', '1', '1', ''); INSERT INTO `jos_modules` VALUES ('10', 'Logged in Users', '', '2', 'cpanel', '0', '0000-00-00 00:00:00', '1', 'mod_logged', '0', '2', '1', '', '0', '1', ''); INSERT INTO `jos_modules` VALUES ('11', 'Footer', '', '0', 'footer', '0', '0000-00-00 00:00:00', '1', 'mod_footer', '0', '0', '1', '', '1', '1', ''); INSERT INTO `jos_modules` VALUES ('12', 'Admin Menu', '', '1', 'menu', '0', '0000-00-00 00:00:00', '1', 'mod_menu', '0', '2', '1', '', '0', '1', ''); INSERT INTO `jos_modules` VALUES ('13', 'Admin SubMenu', '', '1', 'submenu', '0', '0000-00-00 00:00:00', '1', 'mod_submenu', '0', '2', '1', '', '0', '1', ''); INSERT INTO `jos_modules` VALUES ('14', 'User Status', '', '1', 'status', '0', '0000-00-00 00:00:00', '1', 'mod_status', '0', '2', '1', '', '0', '1', ''); INSERT INTO `jos_modules` VALUES ('15', 'Title', '', '1', 'title', '0', '0000-00-00 00:00:00', '1', 'mod_title', '0', '2', '1', '', '0', '1', ''); INSERT INTO `jos_modules` VALUES ('26', 'Main Banner', '', '0', 'user5', '0', '0000-00-00 00:00:00', '0', 'mod_custom', '0', '0', '0', 'moduleclass_sfx=\n\n', '0', '0', ''); INSERT INTO `jos_modules` VALUES ('27', 'Breadcrumbs', '', '0', 'breadcrumbs', '0', '0000-00-00 00:00:00', '1', 'mod_breadcrumbs', '0', '0', '1', 'showHome=1\nhomeText=Home\nshowLast=0\nseparator=\nmoduleclass_sfx=\ncache=0\n\n', '0', '0', ''); INSERT INTO `jos_modules` VALUES ('17', 'Archive', '', '5', 'left', '0', '0000-00-00 00:00:00', '0', 'mod_archive', '0', '0', '1', 'count=10\nmoduleclass_sfx=\ncache=1\n\n', '0', '0', ''); INSERT INTO `jos_modules` VALUES ('18', 'Wrapper', '', '6', 'left', '0', '0000-00-00 00:00:00', '0', 'mod_wrapper', '0', '0', '1', 'moduleclass_sfx=\nurl=\nscrolling=auto\nwidth=100%\nheight=200\nheight_auto=1\nadd=1\ntarget=\ncache=0\ncache_time=900\n\n', '0', '0', ''); INSERT INTO `jos_modules` VALUES ('19', 'Who\'s Online', '', '0', 'right', '0', '0000-00-00 00:00:00', '0', 'mod_whosonline', '0', '0', '1', 'cache=0\nshowmode=0\nmoduleclass_sfx=\n\n', '0', '0', ''); INSERT INTO `jos_modules` VALUES ('20', 'Syndication', '', '0', 'syndicate', '0', '0000-00-00 00:00:00', '1', 'mod_syndicate', '0', '0', '0', 'cache=0\ntext=Feed Entries\nformat=rss\nmoduleclass_sfx=\n\n', '0', '0', ''); INSERT INTO `jos_modules` VALUES ('21', 'Search', '', '1', 'user4', '0', '0000-00-00 00:00:00', '1', 'mod_search', '0', '0', '0', 'moduleclass_sfx=\nwidth=20\ntext=\nbutton=\nbutton_pos=right\nimagebutton=\nbutton_text=\ncache=1\ncache_time=900\n\n', '0', '0', ''); INSERT INTO `jos_modules` VALUES ('22', 'Footer', '', '0', 'footer', '0', '0000-00-00 00:00:00', '0', 'mod_footer', '0', '0', '0', 'cache=1\n\n', '0', '0', ''); INSERT INTO `jos_modules` VALUES ('23', 'Login Form', '', '1', 'top', '0', '0000-00-00 00:00:00', '1', 'mod_login', '0', '0', '1', 'cache=0\nmoduleclass_sfx=\npretext=\nposttext=\nlogin=\nlogout=\ngreeting=1\nname=0\nusesecure=0\n\n', '0', '0', ''); INSERT INTO `jos_modules` VALUES ('25', 'JA SlideShow', '', '0', 'user5', '0', '0000-00-00 00:00:00', '0', 'mod_jaslideshow', '0', '0', '0', 'moduleclass_sfx=\nmootools=0\nplay=play\nswidth=690\nsheight=250\nfolder=images/stories/slideshow\naltimage=JA slide show\norderby=0\nsort=\nsetimagearray=\nstartwith=\nautoresize=0\ntimedisplay=5\ntimeanimation=2\nanimation=fade\nppercent=10\nzpercent=10\neffect=bounceOut\nnavigation=thumbnails fast\nshowDescription=1\ndescription=\n\n', '0', '0', ''); INSERT INTO `jos_modules` VALUES ('28', 'Statistics', '', '2', 'right', '0', '0000-00-00 00:00:00', '0', 'mod_stats', '0', '0', '1', 'serverinfo=0\nsiteinfo=1\ncounter=1\nincrease=0\nmoduleclass_sfx=_light\ncache=0\ncache_time=900\n\n', '0', '0', ''); INSERT INTO `jos_modules` VALUES ('32', 'Web Design and Programming', '', '7', 'left', '0', '0000-00-00 00:00:00', '0', 'mod_mainmenu', '0', '0', '1', 'menutype=\nmenu_style=list\nstartLevel=0\nendLevel=0\nshowAllChildren=0\nwindow_open=\nshow_whitespace=0\ncache=1\ntag_id=\nclass_sfx=\nmoduleclass_sfx=\nmaxdepth=10\nmenu_images=0\nmenu_images_align=0\nmenu_images_link=0\nexpand_menu=0\nactivate_parent=0\nfull_active_id=0\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=\nspacer=\nend_spacer=\n\n', '0', '0', ''); INSERT INTO `jos_modules` VALUES ('30', 'Top Services', '', '5', 'right', '0', '0000-00-00 00:00:00', '0', 'mod_janewsmoo', '0', '0', '1', 'moduleclass_sfx=\ncatid=1\nmode=vir\nanimAttr=bottom\nnumofchars=80\nnumber=3\nopenWidth=200\nopenHeight=190\nsmallSize=60\nopen=-1\nduration=400\nlink_titles=1\nreadmore=1\n\n', '0', '0', ''); INSERT INTO `jos_modules` VALUES ('31', 'Company News', '', '5', 'right', '62', '2009-01-16 08:52:46', '1', 'mod_globalnews', '0', '0', '1', 'global=s\nmode=0\ncols=1\nmargin=2px\ncat_order=1\nempty=0\nfilter=0\ncurcat=1\ncatids=\nsecids=\ncatexc=\nsecexc=\nshow_cat=0\ncat_title=0\ncat_img=0\ncat_img_width=\ncat_img_height=\ncat_img_margin=3px\ncount=5\nordering=h_dsc\nuser_id=0\nshow_front=1\ncurrent=1\nwidth=auto\nborder=1px solid #EFEFEF\nheader_color=#EFEFEF\nheader_padding=5px\nheight=240px\ncolor=#FFFFFF\npadding=5px\ndelay=2000\nnext=\nsl_more=\nshow_title=1\nshow_text=1\nlimittext=150\nmore=\nshow_date=0\ndate_format=\nitem_img=0\nitem_img_width=\nitem_img_height=\nitem_img_margin=3px\ncache=1\ncache_time=900\nmoduleclass_sfx=\n\n', '0', '0', ''); INSERT INTO `jos_modules` VALUES ('33', 'Web Development bottom', '', '0', 'banner', '0', '0000-00-00 00:00:00', '0', 'mod_mainmenu', '0', '0', '1', 'menutype=web-development\nmenu_style=list_flat\nstartLevel=0\nendLevel=0\nshowAllChildren=0\nwindow_open=\nshow_whitespace=0\ncache=1\ntag_id=\nclass_sfx=\nmoduleclass_sfx=\nmaxdepth=10\nmenu_images=0\nmenu_images_align=0\nmenu_images_link=0\nexpand_menu=0\nactivate_parent=0\nfull_active_id=0\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=\nspacer=\nend_spacer=\n\n', '0', '0', ''); INSERT INTO `jos_modules` VALUES ('34', 'Web Development', '', '0', 'left', '0', '0000-00-00 00:00:00', '1', 'mod_mainmenu', '0', '0', '1', 'menutype=web-development\nmenu_style=list\nstartLevel=0\nendLevel=0\nshowAllChildren=0\nwindow_open=\nshow_whitespace=0\ncache=1\ntag_id=\nclass_sfx=\nmoduleclass_sfx=\nmaxdepth=10\nmenu_images=0\nmenu_images_align=0\nmenu_images_link=0\nexpand_menu=0\nactivate_parent=0\nfull_active_id=0\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=\nspacer=\nend_spacer=\n\n', '0', '0', ''); INSERT INTO `jos_modules` VALUES ('35', 'Services', '', '4', 'left', '0', '0000-00-00 00:00:00', '1', 'mod_mainmenu', '0', '0', '1', 'menutype=services\nmenu_style=list\nstartLevel=0\nendLevel=0\nshowAllChildren=0\nwindow_open=\nshow_whitespace=0\ncache=1\ntag_id=\nclass_sfx=\nmoduleclass_sfx=\nmaxdepth=10\nmenu_images=0\nmenu_images_align=0\nmenu_images_link=0\nexpand_menu=0\nactivate_parent=0\nfull_active_id=0\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=\nspacer=\nend_spacer=\n\n', '0', '0', ''); INSERT INTO `jos_modules` VALUES ('36', 'mfDockMenu', '', '0', 'banner', '0', '0000-00-00 00:00:00', '0', 'mod_mfdockmenu', '0', '0', '0', 'nritems=10\nmaxwidth=25\nitemwidth=20\nproximity=45\nmenutype=0\nitem1name=Calendar\nitem1img=calendar.png\nitem1url=http://calendar.google.com\nitem2name=Email\nitem2img=email.png\nitem2url=http://mail.google.com\nitem3name=History\nitem3img=history.png\nitem3url=http://archive.org/web/web.php\nitem4name=Home\nitem4img=home.png\nitem4url=http://www.marcofolio.net\nitem5name=Link\nitem5img=link.png\nitem5url=http://www.ndesign-studio.com/blog/design/css-dock-menu/\nitem6name=Music\nitem6img=music.png\nitem6url=http://www.apple.com/itunes/\nitem7name=Portfolio\nitem7img=portfolio.png\nitem7url=http://www.marcofolio.net/portfolio.html\nitem8name=RSS\nitem8img=rss2.png\nitem8url=http://feeds.feedburner.com/marcofolio\nitem9name=RSS\nitem9img=rss.png\nitem9url=http://feeds.feedburner.com/ndesign-studio\nitem10name=Video\nitem10img=video.png\nitem10url=http://youtube.com/\n\n', '0', '0', ''); INSERT INTO `jos_modules` VALUES ('37', 'Simple Icons', '', '0', 'banner', '0', '0000-00-00 00:00:00', '1', 'mod_nj_simple_icon', '0', '0', '1', 'moduleclass_sfx=\nicon_orientation=0\nforceValid=1\nincCSS=1\nicon_height=64px\nicon_width=64px\nicon1_status=1\nicon1_img=dnn.png\nicon1_title=DotNetNuke Development\nicon1_link=http://honoluluprogressive.com/services/web-design-and-programming/dotnetnuke-development.html\nicon1_alt=DotNetNuke Development\nicon2_status=1\nicon2_img=php.png\nicon2_title=PHP Development\nicon2_link=http://honoluluprogressive.com/services/web-design-and-programming/joomla-symfony-and-drupal-development.html\nicon2_alt=PHP Development\nicon3_status=1\nicon3_img=smallbusiness.png\nicon3_title=Small Business Solutions\nicon3_link=http://honoluluprogressive.com/services/web-design-and-programming/small-business-web-solutions.html\nicon3_alt=Small Business\nicon4_status=1\nicon4_img=ecommerce.png\nicon4_title=ECommerce\nicon4_link=http://honoluluprogressive.com/services/web-design-and-programming/ecommerce.html\nicon4_alt=Ecommerce services\nicon5_status=1\nicon5_img=flex.png\nicon5_title=Flex Development\nicon5_link=http://honoluluprogressive.com/services/web-design-and-programming/flex-solutions-and-flash-websites.html\nicon5_alt=Flex Development\nicon6_status=1\nicon6_img=software.png\nicon6_title=Custom Applications
Development\nicon6_link=http://honoluluprogressive.com/services/web-design-and-programming/custom-applications-development.html\nicon6_alt=Custom Applications Development\nicon7_status=0\nicon7_img=-1\nicon7_title=Icon seven\nicon7_link=http://www.ninjoomla.com\nicon7_alt=Icon seven\nicon8_status=0\nicon8_img=-1\nicon8_title=Icon eight\nicon8_link=http://www.ninjoomla.com\nicon8_alt=Icon eight\nicon9_status=0\nicon9_img=-1\nicon9_title=Icon nine\nicon9_link=http://www.ninjoomla.com\nicon9_alt=Icon nine\nicon10_status=0\nicon10_img=-1\nicon10_title=Icon ten\nicon10_link=http://www.ninjoomla.com\nicon10_alt=Icon Ten\n\n', '0', '0', ''); INSERT INTO `jos_modules` VALUES ('40', 'Gavick News Image I', '', '0', 'user5', '62', '2009-01-16 08:48:42', '1', 'mod_gk_news_image_1', '0', '0', '0', 'moduleclass_sfx=topBannerSlider\nmodule_id=newsimage1\ngroup_id=2\nmodule_width=690\nmodule_height=250\nimage_x=0\nimage_y=0\nshow_text_block=1\ntext_block_width=200\ntext_block_margin=50\ntext_block_opacity=0.45\ntext_block_background=1\ntext_block_bgcolor=#000000\nclean_xhtml=1\nreadmore_button=1\nreadmore_text=Read more\ntitle_link=1\nprev_button=1\nnext_button=1\nplay_button=1\ninterface_x=20\ninterface_y=20\nslidelinks=1\nthumbnail_bar=0\nthumbnail_margin=4\nthumbnail_border=1\nthumbnail_border_color_inactive=#000000\nthumbnail_border_color=#FFFFFF\nthumbnail_bar_position=1\nshow_ticks=0\ntick_x=20\ntick_y=20\npreloading=1\nanimation_slide_speed=2000\nanimation_interval=10000\nautoanimation=1\nanimation_slide_type=0\nanimation_text_type=0\nclean_code=1\nuseMoo=2\nuseScript=2\ncompress_js=1\n\n', '0', '0', ''); INSERT INTO `jos_modules` VALUES ('39', 'Design Services', '', '2', 'left', '0', '0000-00-00 00:00:00', '1', 'mod_mainmenu', '0', '0', '1', 'menutype=animation-and-gr-des\nmenu_style=list\nstartLevel=0\nendLevel=0\nshowAllChildren=0\nwindow_open=\nshow_whitespace=0\ncache=1\ntag_id=\nclass_sfx=\nmoduleclass_sfx=\nmaxdepth=10\nmenu_images=0\nmenu_images_align=0\nmenu_images_link=0\nexpand_menu=0\nactivate_parent=0\nfull_active_id=0\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=\nspacer=\nend_spacer=\n\n', '0', '0', ''); INSERT INTO `jos_modules` VALUES ('41', 'Gavick TabArts', '', '0', 'right', '0', '0000-00-00 00:00:00', '0', 'mod_tabarts', '0', '0', '0', 'moduleclass_sfx=\nmodule_id=-mod\nmoduleHeight=250px\nmoduleWidth=0\ntabsGroupID=1\nactivator=click\nanimation=1\nanimationType=1\nanimationSpeed=1000\nanimationInterval=5000\nanimationFun=33\nbuttons=0\nstyleCSS=style1\nstyleType=0\nstyleFile=\nshowTitle=1\ntextLimit=1\ntextLimitValue=0\nuseMoo=0\nuseScript=1\n\n', '0', '0', ''); INSERT INTO `jos_modules` VALUES ('42', 'Gavick TabMods', '', '9', 'left', '0', '0000-00-00 00:00:00', '0', 'mod_tabmods', '0', '0', '1', '@spacer=If you already use mootools switch off options Use MooTools, if you copy the module switch off in him options Use script. \nmodule_id=-mod\nmoduleHeight=100px\n@spacer= \n@spacer= \nactivator=click\nanimationType=1\nanimationSpeed=1000\nanimationInterval=5000\nanimationFun=33\n@spacer= \nbuttons=1\nstyleCSS=style1\n', '0', '0', ''); INSERT INTO `jos_modules` VALUES ('43', 'Ultimate Content Display', '', '0', 'syndicate', '0', '0000-00-00 00:00:00', '0', 'mod_jw_ucd', '0', '0', '0', 'moduleclass_sfx=\ndisablecss=0\ncache=0\nucd_displaytype=jqueryfader\nuniqueid=ucd-instance\nwhere=content\nwhere_id=2\nordering=rdate\ncount=5\nshow_front=1\ndisplay=2\nlinked=1\ndatecreated=1\nshow_section_title=1\nshow_category_title=1\nseperator=>>\nwords=\nchars=\nmore=1\nplugins=1\nhideimages=0\ncleanupimages=0\nstriptags=0\nucd_ajf_width=100%\nucd_ajf_height=300px\nucd_ajf_delay=6000\nucd_ajf_bgcolor=#ffffff\nucd_ajf_bottomfade=0\nucd_ajf_cache=10\nucd_jqf_cheight=300px\nucd_jqf_anim=slide\nucd_jqf_speed=750\nucd_jqf_timeout=6000\nucd_jqf_bgcolor=#ffffff\nucd_jqf_bottomfade=1\n\n', '0', '0', ''); INSERT INTO `jos_modules_menu` VALUES ('1', '0'); INSERT INTO `jos_modules_menu` VALUES ('17', '0'); INSERT INTO `jos_modules_menu` VALUES ('18', '0'); INSERT INTO `jos_modules_menu` VALUES ('19', '0'); INSERT INTO `jos_modules_menu` VALUES ('20', '0'); INSERT INTO `jos_modules_menu` VALUES ('21', '0'); INSERT INTO `jos_modules_menu` VALUES ('22', '0'); INSERT INTO `jos_modules_menu` VALUES ('23', '0'); INSERT INTO `jos_modules_menu` VALUES ('25', '0'); INSERT INTO `jos_modules_menu` VALUES ('26', '0'); INSERT INTO `jos_modules_menu` VALUES ('27', '0'); INSERT INTO `jos_modules_menu` VALUES ('30', '0'); INSERT INTO `jos_modules_menu` VALUES ('31', '0'); INSERT INTO `jos_modules_menu` VALUES ('32', '10'); INSERT INTO `jos_modules_menu` VALUES ('32', '11'); INSERT INTO `jos_modules_menu` VALUES ('32', '12'); INSERT INTO `jos_modules_menu` VALUES ('32', '13'); INSERT INTO `jos_modules_menu` VALUES ('32', '14'); INSERT INTO `jos_modules_menu` VALUES ('32', '15'); INSERT INTO `jos_modules_menu` VALUES ('33', '3'); INSERT INTO `jos_modules_menu` VALUES ('34', '10'); INSERT INTO `jos_modules_menu` VALUES ('34', '11'); INSERT INTO `jos_modules_menu` VALUES ('34', '12'); INSERT INTO `jos_modules_menu` VALUES ('34', '13'); INSERT INTO `jos_modules_menu` VALUES ('34', '15'); INSERT INTO `jos_modules_menu` VALUES ('34', '23'); INSERT INTO `jos_modules_menu` VALUES ('34', '30'); INSERT INTO `jos_modules_menu` VALUES ('34', '31'); INSERT INTO `jos_modules_menu` VALUES ('34', '32'); INSERT INTO `jos_modules_menu` VALUES ('34', '33'); INSERT INTO `jos_modules_menu` VALUES ('34', '35'); INSERT INTO `jos_modules_menu` VALUES ('34', '36'); INSERT INTO `jos_modules_menu` VALUES ('35', '3'); INSERT INTO `jos_modules_menu` VALUES ('35', '4'); INSERT INTO `jos_modules_menu` VALUES ('35', '5'); INSERT INTO `jos_modules_menu` VALUES ('35', '6'); INSERT INTO `jos_modules_menu` VALUES ('35', '37'); INSERT INTO `jos_modules_menu` VALUES ('36', '3'); INSERT INTO `jos_modules_menu` VALUES ('36', '7'); INSERT INTO `jos_modules_menu` VALUES ('37', '3'); INSERT INTO `jos_modules_menu` VALUES ('37', '7'); INSERT INTO `jos_modules_menu` VALUES ('39', '16'); INSERT INTO `jos_modules_menu` VALUES ('39', '17'); INSERT INTO `jos_modules_menu` VALUES ('39', '18'); INSERT INTO `jos_modules_menu` VALUES ('39', '19'); INSERT INTO `jos_modules_menu` VALUES ('39', '43'); INSERT INTO `jos_modules_menu` VALUES ('39', '44'); INSERT INTO `jos_modules_menu` VALUES ('39', '45'); INSERT INTO `jos_modules_menu` VALUES ('39', '46'); INSERT INTO `jos_modules_menu` VALUES ('40', '0'); INSERT INTO `jos_modules_menu` VALUES ('41', '0'); INSERT INTO `jos_modules_menu` VALUES ('42', '0'); INSERT INTO `jos_modules_menu` VALUES ('43', '0'); INSERT INTO `jos_newsfeeds` VALUES ('8', '1', 'feed1', 'feed1', 'http://news.google.com/news?hl=en&tab=wn&ned=us&q=php&ie=UTF-8&nolr=1&output=rss', null, '1', '5', '3600', '62', '2009-01-16 08:15:22', '1', '0'); INSERT INTO `jos_pf_access_flags` VALUES ('1', 'project_administrator', 'PFL_PROJECT_ADMIN', '0'); INSERT INTO `jos_pf_access_flags` VALUES ('2', 'system_administrator', 'PFL_SYSTEM_ADMIN', '0'); INSERT INTO `jos_pf_access_levels` VALUES ('1', 'PFL_CLIENT', '1', '0', ''); INSERT INTO `jos_pf_access_levels` VALUES ('2', 'PFL_MEMBER', '2', '0', ''); INSERT INTO `jos_pf_access_levels` VALUES ('3', 'PFL_PROJECT_ADMIN', '3', '0', 'project_administrator'); INSERT INTO `jos_pf_access_levels` VALUES ('4', 'PFL_SYSTEM_ADMIN', '999', '0', 'system_administrator'); INSERT INTO `jos_pf_groups` VALUES ('1', 'PHP development team', 'PHP development team'); INSERT INTO `jos_pf_languages` VALUES ('1', 'english', 'PFL_ENGLISH', '1', '1', 'Tobias Kuhn', 'support@projectfork.net', 'http://www.projectfork.net', 'http://update.projectfork.net', '2.0', 'LGPL', 'Copyright (C) 2006-2008 Tobias Kuhn', '2008', '0'); INSERT INTO `jos_pf_panels` VALUES ('1', 'nav_section', 'PFL_SECTION_NAV', '0', '1', 'top_1', '1', 'Tobias Kuhn', 'support@projectfork.net', 'http://www.projectfork.net', 'http://update.projectfork.net', '2.0', 'LGPL', 'Copyright (C) 2006-2008 Tobias Kuhn', '2008', '0'); INSERT INTO `jos_pf_panels` VALUES ('2', 'system_console', 'PFL_DEBUG_CONSOLE', '0', '0', 'debug', '6', 'Tobias Kuhn', 'support@projectfork.net', 'http://www.projectfork.net', 'http://update.projectfork.net', '2.0', 'LGPL', 'Copyright (C) 2006-2008 Tobias Kuhn', '2008', '0'); INSERT INTO `jos_pf_panels` VALUES ('3', 'system_messages', 'PFL_MESSAGES', '0', '1', 'top_2', '4', 'Tobias Kuhn', 'support@projectfork.net', 'http://www.projectfork.net', 'http://update.projectfork.net', '2.0', 'LGPL', 'Copyright (C) 2006-2008 Tobias Kuhn', '2008', '0'); INSERT INTO `jos_pf_panels` VALUES ('4', 'nav_config', 'PFL_CONFIG_NAV', '0', '1', 'config_nav', '1', 'Tobias Kuhn', 'support@projectfork.net', 'http://www.projectfork.net', 'http://update.projectfork.net', '2.0', 'LGPL', 'Copyright (C) 2006-2008 Tobias Kuhn', '2008', '0'); INSERT INTO `jos_pf_panels` VALUES ('5', 'nav_calendar', 'PFL_CALENDAR_NAV', '0', '1', 'calendar_nav', '1', 'Tobias Kuhn', 'support@projectfork.net', 'http://www.projectfork.net', 'http://update.projectfork.net', '2.0', 'LGPL', 'Copyright (C) 2006-2008 Tobias Kuhn', '2008', '0'); INSERT INTO `jos_pf_panels` VALUES ('6', 'nav_filemanager', 'PFL_FILEMANAGER_NAV', '0', '1', 'filemanager_nav', '1', 'Tobias Kuhn', 'support@projectfork.net', 'http://www.projectfork.net', 'http://update.projectfork.net', '2.0', 'LGPL', 'Copyright (C) 2006-2008 Tobias Kuhn', '2008', '0'); INSERT INTO `jos_pf_panels` VALUES ('7', 'nav_groups', 'PFL_GROUPS_NAV', '0', '1', 'groups_nav', '1', 'Tobias Kuhn', 'support@projectfork.net', 'http://www.projectfork.net', 'http://update.projectfork.net', '2.0', 'LGPL', 'Copyright (C) 2006-2008 Tobias Kuhn', '2008', '0'); INSERT INTO `jos_pf_panels` VALUES ('8', 'nav_profile', 'PFL_PROFILE_NAV', '0', '1', 'profile_nav', '1', 'Tobias Kuhn', 'support@projectfork.net', 'http://www.projectfork.net', 'http://update.projectfork.net', '2.0', 'LGPL', 'Copyright (C) 2006-2008 Tobias Kuhn', '2008', '0'); INSERT INTO `jos_pf_panels` VALUES ('9', 'nav_projects', 'PFL_PROJECTS_NAV', '0', '1', 'projects_nav', '1', 'Tobias Kuhn', 'support@projectfork.net', 'http://www.projectfork.net', 'http://update.projectfork.net', '2.0', 'LGPL', 'Copyright (C) 2006-2008 Tobias Kuhn', '2008', '0'); INSERT INTO `jos_pf_panels` VALUES ('10', 'nav_tasks', 'PFL_TASKS_NAV', '0', '1', 'tasks_nav', '1', 'Tobias Kuhn', 'support@projectfork.net', 'http://www.projectfork.net', 'http://update.projectfork.net', '2.0', 'LGPL', 'Copyright (C) 2006-2008 Tobias Kuhn', '2008', '0'); INSERT INTO `jos_pf_panels` VALUES ('11', 'nav_users', 'PFL_USERS_NAV', '0', '1', 'users_nav', '1', 'Tobias Kuhn', 'support@projectfork.net', 'http://www.projectfork.net', 'http://update.projectfork.net', '2.0', 'LGPL', 'Copyright (C) 2006-2008 Tobias Kuhn', '2008', '0'); INSERT INTO `jos_pf_panels` VALUES ('12', 'theme_logo', 'PFL_LOGO', '0', '1', 'logo', '1', 'Tobias Kuhn', 'support@projectfork.net', 'http://www.projectfork.net', 'http://update.projectfork.net', '2.0', 'LGPL', 'Copyright (C) 2006-2008 Tobias Kuhn', '2008', '0'); INSERT INTO `jos_pf_panels` VALUES ('13', 'system_project', 'PFL_SYSTEM_PROJECT', '0', '1', 'misc', '1', 'Tobias Kuhn', 'support@projectfork.net', 'http://www.projectfork.net', 'http://update.projectfork.net', '2.0', 'LGPL', 'Copyright (C) 2006-2008 Tobias Kuhn', '2008', '0'); INSERT INTO `jos_pf_project_groups` VALUES ('1', '1', '1'); INSERT INTO `jos_pf_projects` VALUES ('1', 'David Murphey Photography', 'Joomla based website', '1', '1221871129', '1221804000'); INSERT INTO `jos_pf_sections` VALUES ('1', 'controlpanel', 'PFL_CONTROLPANEL', '1', '0', '1', '1', 'Tobias Kuhn', 'support@projectfork.net', 'http://www.projectfork.net', 'http://update.projectfork.net', '2.0', 'LGPL', 'Copyright (C) 2006-2008 Tobias Kuhn', '2008', '0'); INSERT INTO `jos_pf_sections` VALUES ('2', 'projects', 'PFL_PROJECTS', '1', '0', '0', '2', 'Tobias Kuhn', 'support@projectfork.net', 'http://www.projectfork.net', 'http://update.projectfork.net', '2.0', 'LGPL', 'Copyright (C) 2006-2008 Tobias Kuhn', '2008', '0'); INSERT INTO `jos_pf_sections` VALUES ('3', 'tasks', 'PFL_TASKS', '1', '0', '0', '3', 'Tobias Kuhn', 'support@projectfork.net', 'http://www.projectfork.net', 'http://update.projectfork.net', '2.0', 'LGPL', 'Copyright (C) 2006-2008 Tobias Kuhn', '2008', '0'); INSERT INTO `jos_pf_sections` VALUES ('4', 'filemanager', 'PFL_FILEMANAGER', '1', '0', '0', '4', 'Tobias Kuhn', 'support@projectfork.net', 'http://www.projectfork.net', 'http://update.projectfork.net', '2.0', 'LGPL', 'Copyright (C) 2006-2008 Tobias Kuhn', '2008', '0'); INSERT INTO `jos_pf_sections` VALUES ('5', 'calendar', 'PFL_CALENDAR', '1', '0', '0', '5', 'Tobias Kuhn', 'support@projectfork.net', 'http://www.projectfork.net', 'http://update.projectfork.net', '2.0', 'LGPL', 'Copyright (C) 2006-2008 Tobias Kuhn', '2008', '0'); INSERT INTO `jos_pf_sections` VALUES ('6', 'profile', 'PFL_PROFILE', '1', '0', '0', '6', 'Tobias Kuhn', 'support@projectfork.net', 'http://www.projectfork.net', 'http://update.projectfork.net', '2.0', 'LGPL', 'Copyright (C) 2006-2008 Tobias Kuhn', '2008', '0'); INSERT INTO `jos_pf_sections` VALUES ('7', 'groups', 'PFL_GROUPS', '1', '0', '0', '7', 'Tobias Kuhn', 'support@projectfork.net', 'http://www.projectfork.net', 'http://update.projectfork.net', '2.0', 'LGPL', 'Copyright (C) 2006-2008 Tobias Kuhn', '2008', '0'); INSERT INTO `jos_pf_sections` VALUES ('8', 'users', 'PFL_USERS', '1', '0', '0', '8', 'Tobias Kuhn', 'support@projectfork.net', 'http://www.projectfork.net', 'http://update.projectfork.net', '2.0', 'LGPL', 'Copyright (C) 2006-2008 Tobias Kuhn', '2008', '0'); INSERT INTO `jos_pf_sections` VALUES ('9', 'config', 'PFL_CONFIG', '1', '0', '0', '9', 'Tobias Kuhn', 'support@projectfork.net', 'http://www.projectfork.net', 'http://update.projectfork.net', '2.0', 'LGPL', 'Copyright (C) 2006-2008 Tobias Kuhn', '2008', '0'); INSERT INTO `jos_pf_settings` VALUES ('1', 'debug', '0', 'system'); INSERT INTO `jos_pf_settings` VALUES ('2', 'debug_panels', '0', 'system'); INSERT INTO `jos_pf_settings` VALUES ('3', 'upload_path', '/images/com_projectfork', 'filemanager'); INSERT INTO `jos_pf_themes` VALUES ('1', 'default', 'Default Theme', '1', '1', 'Tobias Kuhn', 'support@projectfork.net', 'http://www.projectfork.net', 'http://update.projectfork.net', '2.0', 'LGPL', 'Copyright (C) 2006-2008 Tobias Kuhn', '2008', '0'); INSERT INTO `jos_pf_user_profile` VALUES ('1', '1', 'workspace', '1'); INSERT INTO `jos_pf_user_profile` VALUES ('2', '1', 'theme', 'default'); INSERT INTO `jos_pf_user_profile` VALUES ('3', '1', 'language', 'english'); INSERT INTO `jos_pf_user_profile` VALUES ('4', '1', 'accesslevel', '4'); INSERT INTO `jos_pf_user_profile` VALUES ('5', '1', 'timezone', '-0'); INSERT INTO `jos_pf_user_profile` VALUES ('6', '1', 'phone', '808-222-8422'); INSERT INTO `jos_pf_user_profile` VALUES ('7', '1', 'mobile_phone', '808-222-8422'); INSERT INTO `jos_pf_user_profile` VALUES ('8', '1', 'skype', 'mikita_belarus'); INSERT INTO `jos_pf_user_profile` VALUES ('9', '1', 'msn', ''); INSERT INTO `jos_pf_user_profile` VALUES ('10', '1', 'icq', ''); INSERT INTO `jos_pf_user_profile` VALUES ('11', '1', 'street', ''); INSERT INTO `jos_pf_user_profile` VALUES ('12', '1', 'city', ''); INSERT INTO `jos_pf_user_profile` VALUES ('13', '1', 'zip', ''); INSERT INTO `jos_pf_user_profile` VALUES ('14', '1', 'groups', ''); INSERT INTO `jos_pf_users` VALUES ('1', '62', '4', 'Mikita', 'Mikado', 'fly_fuzz', 'mikita@mikitadesign.com'); INSERT INTO `jos_plugins` VALUES ('1', 'Authentication - Joomla', 'joomla', 'authentication', '0', '1', '1', '1', '0', '0', '0000-00-00 00:00:00', ''); INSERT INTO `jos_plugins` VALUES ('2', 'Authentication - LDAP', 'ldap', 'authentication', '0', '2', '0', '1', '0', '0', '0000-00-00 00:00:00', 'host=\nport=389\nuse_ldapV3=0\nnegotiate_tls=0\nno_referrals=0\nauth_method=bind\nbase_dn=\nsearch_string=\nusers_dn=\nusername=\npassword=\nldap_fullname=fullName\nldap_email=mail\nldap_uid=uid\n\n'); INSERT INTO `jos_plugins` VALUES ('3', 'Authentication - GMail', 'gmail', 'authentication', '0', '4', '0', '0', '0', '0', '0000-00-00 00:00:00', ''); INSERT INTO `jos_plugins` VALUES ('4', 'Authentication - OpenID', 'openid', 'authentication', '0', '3', '0', '0', '0', '0', '0000-00-00 00:00:00', ''); INSERT INTO `jos_plugins` VALUES ('5', 'User - Joomla!', 'joomla', 'user', '0', '0', '1', '0', '0', '0', '0000-00-00 00:00:00', 'autoregister=1\n\n'); INSERT INTO `jos_plugins` VALUES ('6', 'Search - Content', 'content', 'search', '0', '1', '1', '1', '0', '0', '0000-00-00 00:00:00', 'search_limit=50\nsearch_content=1\nsearch_uncategorised=1\nsearch_archived=1\n\n'); INSERT INTO `jos_plugins` VALUES ('7', 'Search - Contacts', 'contacts', 'search', '0', '3', '1', '1', '0', '62', '2008-12-19 00:57:48', 'search_limit=50\n\n'); INSERT INTO `jos_plugins` VALUES ('8', 'Search - Categories', 'categories', 'search', '0', '4', '1', '0', '0', '0', '0000-00-00 00:00:00', 'search_limit=50\n\n'); INSERT INTO `jos_plugins` VALUES ('9', 'Search - Sections', 'sections', 'search', '0', '5', '1', '0', '0', '0', '0000-00-00 00:00:00', 'search_limit=50\n\n'); INSERT INTO `jos_plugins` VALUES ('10', 'Search - Newsfeeds', 'newsfeeds', 'search', '0', '6', '1', '0', '0', '0', '0000-00-00 00:00:00', 'search_limit=50\n\n'); INSERT INTO `jos_plugins` VALUES ('11', 'Search - Weblinks', 'weblinks', 'search', '0', '2', '1', '1', '0', '0', '0000-00-00 00:00:00', 'search_limit=50\n\n'); INSERT INTO `jos_plugins` VALUES ('12', 'Content - Pagebreak', 'pagebreak', 'content', '0', '10000', '1', '1', '0', '0', '0000-00-00 00:00:00', 'enabled=1\ntitle=1\nmultipage_toc=1\nshowall=1\n\n'); INSERT INTO `jos_plugins` VALUES ('13', 'Content - Rating', 'vote', 'content', '0', '4', '1', '1', '0', '0', '0000-00-00 00:00:00', ''); INSERT INTO `jos_plugins` VALUES ('14', 'Content - Email Cloaking', 'emailcloak', 'content', '0', '5', '1', '0', '0', '0', '0000-00-00 00:00:00', 'mode=1\n\n'); INSERT INTO `jos_plugins` VALUES ('15', 'Content - Code Hightlighter (GeSHi)', 'geshi', 'content', '0', '5', '0', '0', '0', '0', '0000-00-00 00:00:00', ''); INSERT INTO `jos_plugins` VALUES ('16', 'Content - Load Module', 'loadmodule', 'content', '0', '6', '1', '0', '0', '0', '0000-00-00 00:00:00', 'enabled=1\nstyle=0\n\n'); INSERT INTO `jos_plugins` VALUES ('17', 'Content - Page Navigation', 'pagenavigation', 'content', '0', '2', '1', '1', '0', '0', '0000-00-00 00:00:00', 'position=1\n\n'); INSERT INTO `jos_plugins` VALUES ('18', 'Editor - No Editor', 'none', 'editors', '0', '0', '1', '1', '0', '0', '0000-00-00 00:00:00', ''); INSERT INTO `jos_plugins` VALUES ('19', 'Editor - TinyMCE 2.0', 'tinymce', 'editors', '0', '0', '1', '1', '0', '0', '0000-00-00 00:00:00', 'theme=advanced\ncleanup=1\ncleanup_startup=0\nautosave=0\ncompressed=0\nrelative_urls=1\ntext_direction=ltr\nlang_mode=0\nlang_code=en\ninvalid_elements=applet\ncontent_css=1\ncontent_css_custom=\nnewlines=0\ntoolbar=top\nhr=1\nsmilies=1\ntable=1\nstyle=1\nlayer=1\nxhtmlxtras=0\ntemplate=0\ndirectionality=1\nfullscreen=1\nhtml_height=550\nhtml_width=750\npreview=1\ninsertdate=1\nformat_date=%Y-%m-%d\ninserttime=1\nformat_time=%H:%M:%S\n\n'); INSERT INTO `jos_plugins` VALUES ('20', 'Editor - XStandard Lite 2.0', 'xstandard', 'editors', '0', '0', '0', '1', '0', '0', '0000-00-00 00:00:00', ''); INSERT INTO `jos_plugins` VALUES ('21', 'Editor Button - Image', 'image', 'editors-xtd', '0', '0', '1', '0', '0', '0', '0000-00-00 00:00:00', ''); INSERT INTO `jos_plugins` VALUES ('22', 'Editor Button - Pagebreak', 'pagebreak', 'editors-xtd', '0', '0', '1', '0', '0', '0', '0000-00-00 00:00:00', ''); INSERT INTO `jos_plugins` VALUES ('23', 'Editor Button - Readmore', 'readmore', 'editors-xtd', '0', '0', '1', '0', '0', '0', '0000-00-00 00:00:00', ''); INSERT INTO `jos_plugins` VALUES ('24', 'XML-RPC - Joomla', 'joomla', 'xmlrpc', '0', '7', '0', '1', '0', '0', '0000-00-00 00:00:00', ''); INSERT INTO `jos_plugins` VALUES ('25', 'XML-RPC - Blogger API', 'blogger', 'xmlrpc', '0', '7', '0', '1', '0', '0', '0000-00-00 00:00:00', 'catid=1\nsectionid=0\n\n'); INSERT INTO `jos_plugins` VALUES ('27', 'System - SEF', 'sef', 'system', '0', '1', '1', '0', '0', '0', '0000-00-00 00:00:00', ''); INSERT INTO `jos_plugins` VALUES ('28', 'System - Debug', 'debug', 'system', '0', '2', '1', '0', '0', '0', '0000-00-00 00:00:00', 'queries=1\nmemory=1\nlangauge=1\n\n'); INSERT INTO `jos_plugins` VALUES ('29', 'System - Legacy', 'legacy', 'system', '0', '3', '0', '1', '0', '0', '0000-00-00 00:00:00', 'route=0\n\n'); INSERT INTO `jos_plugins` VALUES ('30', 'System - Cache', 'cache', 'system', '0', '4', '0', '1', '0', '0', '0000-00-00 00:00:00', 'browsercache=0\ncachetime=15\n\n'); INSERT INTO `jos_plugins` VALUES ('31', 'System - Log', 'log', 'system', '0', '5', '0', '1', '0', '0', '0000-00-00 00:00:00', ''); INSERT INTO `jos_plugins` VALUES ('32', 'System - Remember Me', 'remember', 'system', '0', '6', '1', '1', '0', '0', '0000-00-00 00:00:00', ''); INSERT INTO `jos_plugins` VALUES ('33', 'System - Backlink', 'backlink', 'system', '0', '7', '0', '1', '0', '0', '0000-00-00 00:00:00', ''); INSERT INTO `jos_plugins` VALUES ('34', 'System - sh404sef', 'shsef', 'system', '0', '7', '1', '0', '0', '0', '0000-00-00 00:00:00', ''); INSERT INTO `jos_sections` VALUES ('1', 'Services', '', 'services', '', 'content', 'right', '\"Services

Services

Honolulu Progressive is one of few companies in Hawaii (if not the only one) that could serve a client as \'one stop shop\' when it comes to interactive implementation of marketing needs. We cover more than 50% of new media needs including web design, programming, search engine optimization, graphic design, animation and even interactive video. The rest 50% could be done in collaboration with our partners on US mainland, Europe, and Russia. Our products listing includes informational web sites, internet shops, brochures, cd covers, billboards designs, 3D modeles for construction companies, educational software, 3D cartoons, video commercials and even more. 

We are proud of making local Hawaiian business globally competitive. 

 

 

', '1', '62', '2008-12-23 13:56:33', '1', '0', '36', ''); INSERT INTO `jos_sections` VALUES ('2', 'Portfolio', '', 'portfolio', '', 'content', 'left', '
    

 Travel Mob. Travel Portal for hawaii based web 2.0 startup

 

 Imp Pac. Website for trade and marketing company

 

 Dive Fiji. Travel Portal for all Fiji Diving spots and accommodations. Technologies: Flash+PHP+MySQL

 

 ShareCAD Pro. Presentation web site for a software package. Technologies: CSS/DHTML

 

    

 Mopeds Plus. Presentation web site for the largest mopeds retailer in Hawaii. #1 in Google by major related key words requests. Technologies: CSS/DHTML

 

 Dream Home Builders. Programming for Construction Company Website (Back end and Coding part)

 

 Crane Media. Website for new video production company. Technologies: Flash/xHTML/PHP/AJAX

 

 Spec 10: Content management system driven portfolio for art community. Technologies: CSS/DHTML+PHP+MySQL

 

More of our work:

Real Estate Portal. Technologies: ASP.NET/DotNetNuke/MSSQLHawaiiFRE
Corporation Portal. Technologies: ASP.NET/DotNetNuke/MSSQLKamakura Corporation
Travel Portal for all Fiji Diving spots and accommodations. Technologies: Flash+PHP+MySQL: Dive Fiji  
Content management system driven portfolio for art community. Technologies: CSS/DHTML+PHP+MySQL: Spec10  
Presentation web site for the largest mopeds retailer in Hawaii. #1 in Google by major related key words requests. Technologies: CSS/DHTML:Mopeds Plus  
Website for new video production company. Technologies: Flash/xHTML/PHP/AJAX. Crane Media  
Website for new multimedia product. Technologies: Flash. Screen Booth  
Website recoding for one of the best Honolulu Photographers. Technologies: CSS/DHTML: David Murphey Photography  
Programming for Construction Company Website (Back end and Coding part) Dream Home Builders  
Website for trade and marketing company Imp-Pac Group  
Website for cosmetic productBurnBGone  
Programming for Accounting Company Website (Back end and Coding part). PHP/AJAX/xHTML Pro Accounting Hawaii  
Project website. Sep 22 - first release. WEB 2.0 social networking website: CSS/DHTML/PHP: Programming Hawaii  
Informational web site for real estate company. Technologies: CSS/DHTML:SaveYouFromForeclosure.Net  
Presentation web site for a software package. Technologies: CSS/DHTML:ShareCAD Pro  
Presentational and informational web site for Microsoft Project hosting services. Technologies: CSS/DHTML:MS Project Hosting  
Custom designed and programmed E-commerce solution. Technologies: CSS/DHTML/PHP/MySQLTropical Shades Sunglasses
Budget e-commerce solution. Technologies: CSS/DHTML/PHP/MySQLHawaiian Hydroponics
Budget informational web site. Technologies: CSS/DHTMLNgata Stone Krete
Company informational web site with CMS. Technologies: CSS/DHTML/PHP/MySQLPro Accounting Hawaii
Budget e-commerce solution. Technologies: CSS/DHTML/PHP/MySQLSelf Taught Clothing Company
Online resume for Japanese-English interpreter. Technologies: CSS/DHTML/JSSohbi Reynolds
Budget e-commerce solution (Client\'s design implemented). Technologies: CSS/DHTML/PHP/MySQLBonzer Front Surfboards
Budget e-commerce solution. Technologies: CSS/DHTML/PHP/MySQLThe Mini Food Storage Company
Budget E-commerce solution (Template).Good Hawaiian Shirts
Budget E-commerce solution (Template)Aloha Shirts Market
Travel business web site with content management system. Technologies: CSS/DHTML/PHP/MySQL Russia Hawaii Tours

', '1', '0', '0000-00-00 00:00:00', '2', '0', '0', ''); INSERT INTO `jos_sections` VALUES ('3', 'Contact Us', '', 'contact-us', 'key.jpg', 'content', 'center', '', '1', '0', '0000-00-00 00:00:00', '4', '0', '0', ''); INSERT INTO `jos_sections` VALUES ('4', 'News', '', 'news', 'articles.jpg', 'content', 'left', '', '0', '0', '0000-00-00 00:00:00', '5', '0', '0', ''); INSERT INTO `jos_sections` VALUES ('5', 'E-Commerce Solutions', '', 'e-commerce-solutions', '', 'content', 'left', '', '0', '0', '0000-00-00 00:00:00', '6', '0', '1', ''); INSERT INTO `jos_sections` VALUES ('6', 'Specials', '', 'case-studies', '', 'content', 'left', '

\"Free

', '1', '0', '0000-00-00 00:00:00', '3', '0', '0', ''); INSERT INTO `jos_session` VALUES ('', '1234206926', '0c6397aff8dd762e76194e40589be613', '1', '0', '', '0', '0', '__default|a:8:{s:15:\"session.counter\";i:1;s:19:\"session.timer.start\";i:1234206926;s:18:\"session.timer.last\";i:1234206926;s:17:\"session.timer.now\";i:1234206926;s:22:\"session.client.browser\";s:83:\"Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)\";s:8:\"registry\";O:9:\"JRegistry\":3:{s:17:\"_defaultNameSpace\";s:7:\"session\";s:9:\"_registry\";a:1:{s:7:\"session\";a:1:{s:4:\"data\";O:8:\"stdClass\":0:{}}}s:7:\"_errors\";a:0:{}}s:4:\"user\";O:5:\"JUser\":19:{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:3:\"gid\";i:0;s:12:\"registerDate\";N;s:13:\"lastvisitDate\";N;s:10:\"activation\";N;s:6:\"params\";N;s:3:\"aid\";i:0;s:5:\"guest\";i:1;s:7:\"_params\";O:10:\"JParameter\":7:{s:4:\"_raw\";s:0:\"\";s:4:\"_xml\";N;s:9:\"_elements\";a:0:{}s:12:\"_elementPath\";a:1:{i:0;s:78:\"/home/alohahaw/public_html/progressive/libraries/joomla/html/parameter/element\";}s:17:\"_defaultNameSpace\";s:8:\"_default\";s:9:\"_registry\";a:1:{s:8:\"_default\";a:1:{s:4:\"data\";O:8:\"stdClass\":0:{}}}s:7:\"_errors\";a:0:{}}s:9:\"_errorMsg\";N;s:7:\"_errors\";a:0:{}}s:13:\"session.token\";s:32:\"390c0ac1fc2334ce0c119f4cacd6e920\";}'); INSERT INTO `jos_templates_menu` VALUES ('ja_helio', '0', '0'); INSERT INTO `jos_templates_menu` VALUES ('khepri', '0', '1'); INSERT INTO `jos_users` VALUES ('62', 'Mikita Mikado', 'fly_fuzz', 'mikita@mikitadesign.com', '2caa735122334b0f14bae48f8912f783:ZQ9yXd1anl8gaD36tokhM5824ilqJ2VY', 'Super Administrator', '0', '1', '25', '2008-08-26 10:37:54', '2009-01-16 07:58:36', '', 'timezone=-0\n\n'); INSERT INTO `jos_users` VALUES ('63', 'Yuri', 'balloon', 'balloon555@gmail.com', 'dcb0abec17c93bec19b40d6ef1975148:EbhC1k8bVQcAQCvONzSRZQiZLdb7riG1', '', '0', '0', '18', '2008-08-29 11:36:59', '2008-08-29 11:37:31', '', '\n'); INSERT INTO `jos_users` VALUES ('64', 'Mikita', 'nikitateployhov', 'nikitateployhov@gmail.com', '67d623471cb18e596d4999bc9bc72c63:XqtUcuL8xei7I3qlEOUjCfpmOY8X0D8y', '', '0', '0', '18', '2008-09-20 00:47:16', '2008-09-20 01:05:37', 'fb270ae3d661f225fb5143a62f26a55c', '\n'); INSERT INTO `jos_users` VALUES ('65', 'asdf', 'asdf', 'asdf@asdf.asdf', '7e6a34ee4a6c9dae42d98ee2c01c8ad3:UjyZHiEoj0j00tj0jnLGQC4Qi9yNMYP1', '', '1', '0', '18', '2008-10-07 20:06:58', '0000-00-00 00:00:00', 'd0aa609e1783fe8a000f0a9235e59393', '\n'); INSERT INTO `jos_users` VALUES ('66', 'Name', 'Username', 'paladinm@mail.ru', '20328aa96269fbc0f477c88d37d00623:dGJL7aLoLlKqlHwE6cevi9Z5E9dfRnMV', '', '1', '0', '18', '2008-12-12 12:16:54', '0000-00-00 00:00:00', '10755574e7d7599cbdae482fa3669da2', '\n');