Link to home
Start Free TrialLog in
Avatar of dsellers99
dsellers99

asked on

Newby help editing MYSQL Database

I have a mysql database file I need to edit. It's for a Zen Cart database. The original file, before I altered it, is listed as the First Code in the included code block.

I ran am additional  query though my Zen Cart SQL Query Executor (code is listed as the Second Code in the included code block).

The query was fine, but I need to undo what I did because I don't want to use that feature. I tried opening the original file (First Code in the included code block) in a text editor and I took out the three lines of code that I found referencing the code of the new query (code is listed as the Second Code in the included code block). But then when I uploaded it using phpmyadmin but I got this error message:

SQL query:
INSERT INTO `configuration` (`configuration_id`, `configuration_title`, `configuration_key`, `configuration_value`, `configuration_description`, `configuration_group_id`, `sort_order`, `last_modified`, `date_added`, `use_function`, `set_function`) VALUES (565, 'Closed Status - "Cancelled"', 'STATUS_ORDER_CANCELLED', '0', 'Insert the order status ID # you would like to assign to an order when you press the special "Cancelled!" button on super_orders.php.
If you do not have a "cancel" status, or do not want assign one automatically, choose default and this option will be ignored.
You cannot attach comments or notify the customer using this option.', 28, 30, '2009-06-26 00:22:55', '2009-06-26 00:22:55', 'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses('), (566, 'Closed Status - "Completed"', 'STATUS_ORDER_COMPLETED', '0', 'Insert the order status ID # you would like to assign to an order when you press the special "Completed!" button on super_ord[...]
MySQL said: Documentation
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'CREATE TABLE IF NOT EXISTS `configuration_group` (
  `configuration_group_id` in' at line 14

Any suggestions to edit this file would be greatly appreciated.
First Code
 
 
-- phpMyAdmin SQL Dump
-- version 2.11.9.5
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jul 19, 2009 at 09:14 AM
-- Server version: 5.0.81
-- PHP Version: 5.2.9
 
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
 
 
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
 
--
-- Database: `sarasou1_zc01`
--
 
-- --------------------------------------------------------
 
--
-- Table structure for table `address_book`
--
 
CREATE TABLE IF NOT EXISTS `address_book` (
  `address_book_id` int(11) NOT NULL auto_increment,
  `customers_id` int(11) NOT NULL default '0',
  `entry_gender` char(1) NOT NULL default '',
  `entry_company` varchar(64) default NULL,
  `entry_firstname` varchar(32) NOT NULL default '',
  `entry_lastname` varchar(32) NOT NULL default '',
  `entry_street_address` varchar(64) NOT NULL default '',
  `entry_suburb` varchar(32) default NULL,
  `entry_postcode` varchar(10) NOT NULL default '',
  `entry_city` varchar(32) NOT NULL default '',
  `entry_state` varchar(32) default NULL,
  `entry_country_id` int(11) NOT NULL default '0',
  `entry_zone_id` int(11) NOT NULL default '0',
  PRIMARY KEY  (`address_book_id`),
  KEY `idx_address_book_customers_id_zen` (`customers_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
 
--
-- Dumping data for table `address_book`
--
 
INSERT INTO `address_book` (`address_book_id`, `customers_id`, `entry_gender`, `entry_company`, `entry_firstname`, `entry_lastname`, `entry_street_address`, `entry_suburb`, `entry_postcode`, `entry_city`, `entry_state`, `entry_country_id`, `entry_zone_id`) VALUES
(1, 1, 'm', 'JustaDemo', 'Bill', 'Smith', '123 Any Avenue', '', '12345', 'Here', '', 223, 12),
(2, 2, 'm', '', 'DAle', 'Sellers', 'sdfsfas dfasdfds', '', '34240', 'Sarasota', '', 223, 18),
(3, 3, 'm', '', 'Andrew', 'Test', '444 fsdfsdfsd', '', '34240', 'Saraosta', '', 223, 18);
 
-- --------------------------------------------------------
 
--
-- Table structure for table `address_format`
--
 
CREATE TABLE IF NOT EXISTS `address_format` (
  `address_format_id` int(11) NOT NULL auto_increment,
  `address_format` varchar(128) NOT NULL default '',
  `address_summary` varchar(48) NOT NULL default '',
  PRIMARY KEY  (`address_format_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;
 
--
-- Dumping data for table `address_format`
--
 
INSERT INTO `address_format` (`address_format_id`, `address_format`, `address_summary`) VALUES
(1, '$firstname $lastname$cr$streets$cr$city, $postcode$cr$statecomma$country', '$city / $country'),
(2, '$firstname $lastname$cr$streets$cr$city, $state    $postcode$cr$country', '$city, $state / $country'),
(3, '$firstname $lastname$cr$streets$cr$city$cr$postcode - $statecomma$country', '$state / $country'),
(4, '$firstname $lastname$cr$streets$cr$city ($postcode)$cr$country', '$postcode / $country'),
(5, '$firstname $lastname$cr$streets$cr$postcode $city$cr$country', '$city / $country'),
(6, '$firstname $lastname$cr$streets$cr$city$cr$state$cr$postcode$cr$country', '$postcode / $country');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `admin`
--
 
CREATE TABLE IF NOT EXISTS `admin` (
  `admin_id` int(11) NOT NULL auto_increment,
  `admin_name` varchar(32) NOT NULL default '',
  `admin_email` varchar(96) NOT NULL default '',
  `admin_pass` varchar(40) NOT NULL default '',
  `admin_level` tinyint(1) NOT NULL default '1',
  PRIMARY KEY  (`admin_id`),
  KEY `idx_admin_name_zen` (`admin_name`),
  KEY `idx_admin_email_zen` (`admin_email`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
 
--
-- Dumping data for table `admin`
--
 
INSERT INTO `admin` (`admin_id`, `admin_name`, `admin_email`, `admin_pass`, `admin_level`) VALUES
(1, 'admin', 'dale@lifeleap.org', '025df69a2687ebaafc194e5a31f134ec:f3', 0),
(2, 'dale', 'info@lifeleap.org', '351683ea4e19efe34874b501fdbf9792:9b', 1);
 
-- --------------------------------------------------------
 
--
-- Table structure for table `admin_activity_log`
--
 
CREATE TABLE IF NOT EXISTS `admin_activity_log` (
  `log_id` int(15) NOT NULL auto_increment,
  `access_date` datetime NOT NULL default '0001-01-01 00:00:00',
  `admin_id` int(11) NOT NULL default '0',
  `page_accessed` varchar(80) NOT NULL default '',
  `page_parameters` text,
  `ip_address` varchar(15) NOT NULL default '',
  PRIMARY KEY  (`log_id`),
  KEY `idx_page_accessed_zen` (`page_accessed`),
  KEY `idx_access_date_zen` (`access_date`),
  KEY `idx_ip_zen` (`ip_address`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1820 ;
 
--
-- Dumping data for table `admin_activity_log`
--
 
INSERT INTO `admin_activity_log` (`log_id`, `access_date`, `admin_id`, `page_accessed`, `page_parameters`, `ip_address`) VALUES
(1, '2009-06-18 23:26:56', 0, 'login.php ', '', '68.56.168.23'),
(2, '2009-06-18 23:27:11', 0, 'login.php admin', '', '68.56.168.23'),
(3, '2009-06-18 23:27:20', 1, 'alt_nav.php', '', '68.56.168.23'),
(4, '2009-06-18 23:27:24', 1, 'configuration.php', 'gID=1&', '68.56.168.23'),
(5, '2009-06-18 23:28:08', 1, 'configuration.php', 'gID=1&cID=10&action=edit&', '68.56.168.23'),
(6, '2009-06-18 23:28:12', 1, 'configuration.php', 'gID=1&cID=10&action=save&', '68.56.168.23'),
(7, '2009-06-18 23:28:12', 1, 'configuration.php', 'gID=1&cID=10&', '68.56.168.23'),
(8, '2009-06-18 23:28:29', 1, 'configuration.php', 'gID=1&cID=7&action=edit&', '68.56.168.23'),
(9, '2009-06-18 23:28:32', 1, 'configuration.php', 'gID=1&cID=7&action=save&', '68.56.168.23'),
(10, '2009-06-18 23:28:32', 1, 'configuration.php', 'gID=1&cID=7&', '68.56.168.23'),
(11, '2009-06-18 23:28:39', 1, 'configuration.php', 'gID=1&cID=4&action=edit&', '68.56.168.23'),
(12, '2009-06-18 23:28:44', 1, 'configuration.php', 'gID=1&cID=4&action=save&', '68.56.168.23'),
(13, '2009-06-18 23:28:45', 1, 'configuration.php', 'gID=1&cID=4&', '68.56.168.23'),
(14, '2009-06-18 23:28:59', 1, 'configuration.php', 'gID=19&', '68.56.168.23'),
(15, '2009-06-18 23:29:08', 1, 'configuration.php', 'gID=19&cID=398&action=edit&', '68.56.168.23'),
(16, '2009-06-18 23:29:24', 1, 'configuration.php', 'gID=19&cID=407&action=edit&', '68.56.168.23'),
(17, '2009-06-18 23:29:35', 1, 'configuration.php', 'gID=19&cID=407&action=save&', '68.56.168.23'),
(18, '2009-06-18 23:29:35', 1, 'configuration.php', 'gID=19&cID=407&', '68.56.168.23'),
(19, '2009-06-18 23:29:47', 1, 'configuration.php', 'gID=19&cID=410&action=edit&', '68.56.168.23'),
(20, '2009-06-18 23:30:06', 1, 'configuration.php', 'gID=19&cID=411&action=edit&', '68.56.168.23'),
(21, '2009-06-18 23:30:12', 1, 'configuration.php', 'gID=19&cID=411&action=save&', '68.56.168.23'),
(22, '2009-06-18 23:30:12', 1, 'configuration.php', 'gID=19&cID=411&', '68.56.168.23'),
(23, '2009-06-18 23:31:02', 1, 'configuration.php', 'gID=19&cID=425&action=edit&', '68.56.168.23'),
(24, '2009-06-18 23:31:24', 1, 'configuration.php', 'gID=19&cID=439&action=edit&', '68.56.168.23'),
(25, '2009-06-18 23:32:12', 1, 'configuration.php', 'gID=19&cID=444&action=edit&', '68.56.168.23'),
(26, '2009-06-18 23:33:11', 1, 'configuration.php', 'gID=8&', '68.56.168.23'),
(27, '2009-06-18 23:33:20', 1, 'configuration.php', 'gID=8&cID=213&action=edit&', '68.56.168.23'),
(28, '2009-06-18 23:33:41', 1, 'configuration.php', 'gID=8&cID=217&action=edit&', '68.56.168.23'),
(29, '2009-06-18 23:33:56', 1, 'configuration.php', 'gID=8&cID=219&action=edit&', '68.56.168.23'),
(30, '2009-06-18 23:34:07', 1, 'configuration.php', 'gID=8&cID=221&action=edit&', '68.56.168.23'),
(31, '2009-06-18 23:34:17', 1, 'configuration.php', 'gID=8&cID=222&action=edit&', '68.56.168.23'),
(32, '2009-06-18 23:34:23', 1, 'configuration.php', 'gID=8&cID=224&action=edit&', '68.56.168.23'),
(33, '2009-06-18 23:35:33', 1, 'configuration.php', 'gID=19&', '68.56.168.23'),
(34, '2009-06-18 23:35:48', 1, 'configuration.php', 'gID=19&cID=405&action=edit&', '68.56.168.23'),
(35, '2009-06-18 23:35:55', 1, 'configuration.php', 'gID=19&cID=427&action=edit&', '68.56.168.23'),
(36, '2009-06-18 23:36:10', 1, 'configuration.php', 'gID=22&', '68.56.168.23'),
(37, '2009-06-18 23:36:23', 1, 'configuration.php', 'gID=22&cID=484&action=edit&', '68.56.168.23'),
(38, '2009-06-18 23:36:42', 1, 'configuration.php', 'gID=22&cID=487&action=edit&', '68.56.168.23'),
(39, '2009-06-18 23:37:57', 1, 'configuration.php', 'gID=22&cID=485&action=edit&', '68.56.168.23'),
(40, '2009-06-18 23:38:17', 1, 'configuration.php', 'gID=22&', '68.56.168.23'),
(41, '2009-06-18 23:38:51', 1, 'configuration.php', 'gID=24&', '68.56.168.23'),
(42, '2009-06-18 23:38:58', 1, 'configuration.php', 'gID=24&cID=501&action=edit&', '68.56.168.23'),
(43, '2009-06-18 23:39:02', 1, 'configuration.php', 'gID=24&cID=501&action=save&', '68.56.168.23'),
(44, '2009-06-18 23:39:03', 1, 'configuration.php', 'gID=24&cID=501&', '68.56.168.23'),
(45, '2009-06-18 23:39:07', 1, 'configuration.php', 'gID=24&cID=503&action=edit&', '68.56.168.23'),
(46, '2009-06-18 23:39:10', 1, 'configuration.php', 'gID=24&cID=503&action=save&', '68.56.168.23'),
(47, '2009-06-18 23:39:10', 1, 'configuration.php', 'gID=24&cID=503&', '68.56.168.23'),
(48, '2009-06-18 23:39:14', 1, 'configuration.php', 'gID=24&cID=504&action=edit&', '68.56.168.23'),
(49, '2009-06-18 23:39:20', 1, 'configuration.php', 'gID=24&cID=504&action=save&', '68.56.168.23'),
(50, '2009-06-18 23:39:20', 1, 'configuration.php', 'gID=24&cID=504&', '68.56.168.23'),
(51, '2009-06-18 23:39:24', 1, 'configuration.php', 'gID=24&cID=505&action=edit&', '68.56.168.23'),
(52, '2009-06-18 23:39:38', 1, 'configuration.php', 'gID=24&cID=505&action=save&', '68.56.168.23'),
(53, '2009-06-18 23:39:38', 1, 'configuration.php', 'gID=24&cID=505&', '68.56.168.23'),
(54, '2009-06-18 23:40:13', 1, 'configuration.php', 'gID=24&cID=506&action=edit&', '68.56.168.23'),
(55, '2009-06-18 23:40:19', 1, 'configuration.php', 'gID=24&cID=506&action=save&', '68.56.168.23'),
(56, '2009-06-18 23:40:19', 1, 'configuration.php', 'gID=24&cID=506&', '68.56.168.23'),
(57, '2009-06-18 23:40:24', 1, 'configuration.php', 'gID=24&cID=507&action=edit&', '68.56.168.23'),
(58, '2009-06-18 23:40:27', 1, 'configuration.php', 'gID=24&cID=507&action=save&', '68.56.168.23'),
(59, '2009-06-18 23:40:27', 1, 'configuration.php', 'gID=24&cID=507&', '68.56.168.23'),
(60, '2009-06-18 23:40:29', 1, 'configuration.php', 'gID=24&cID=508&action=edit&', '68.56.168.23'),
(61, '2009-06-18 23:40:32', 1, 'configuration.php', 'gID=24&cID=508&action=save&', '68.56.168.23'),
(62, '2009-06-18 23:40:32', 1, 'configuration.php', 'gID=24&cID=508&', '68.56.168.23'),
(63, '2009-06-18 23:40:35', 1, 'configuration.php', 'gID=24&cID=509&action=edit&', '68.56.168.23'),
(64, '2009-06-18 23:40:42', 1, 'configuration.php', 'gID=24&cID=509&action=save&', '68.56.168.23'),
(65, '2009-06-18 23:40:42', 1, 'configuration.php', 'gID=24&cID=509&', '68.56.168.23'),
(66, '2009-06-18 23:40:45', 1, 'configuration.php', 'gID=24&cID=510&action=edit&', '68.56.168.23'),
(67, '2009-06-18 23:40:48', 1, 'configuration.php', 'gID=24&cID=510&action=save&', '68.56.168.23'),
(68, '2009-06-18 23:40:50', 1, 'configuration.php', 'gID=24&cID=510&', '68.56.168.23'),
(69, '2009-06-18 23:40:52', 1, 'configuration.php', 'gID=24&cID=511&action=edit&', '68.56.168.23'),
(70, '2009-06-18 23:40:55', 1, 'configuration.php', 'gID=24&cID=511&action=save&', '68.56.168.23'),
(71, '2009-06-18 23:40:55', 1, 'configuration.php', 'gID=24&cID=511&', '68.56.168.23'),
(72, '2009-06-18 23:41:02', 1, 'configuration.php', 'gID=24&cID=510&action=edit&', '68.56.168.23'),
(73, '2009-06-18 23:41:05', 1, 'configuration.php', 'gID=24&cID=510&action=save&', '68.56.168.23'),
(74, '2009-06-18 23:41:06', 1, 'configuration.php', 'gID=24&cID=510&', '68.56.168.23'),
(75, '2009-06-18 23:41:18', 1, 'configuration.php', 'gID=24&cID=506&action=edit&', '68.56.168.23'),
(76, '2009-06-18 23:41:25', 1, 'configuration.php', 'gID=24&cID=506&action=save&', '68.56.168.23'),
(77, '2009-06-18 23:41:26', 1, 'configuration.php', 'gID=24&cID=506&', '68.56.168.23'),
(78, '2009-06-18 23:41:34', 1, 'configuration.php', 'gID=24&cID=512&action=edit&', '68.56.168.23'),
(79, '2009-06-18 23:41:36', 1, 'configuration.php', 'gID=24&cID=512&action=save&', '68.56.168.23'),
(80, '2009-06-18 23:41:36', 1, 'configuration.php', 'gID=24&cID=512&', '68.56.168.23'),
(81, '2009-06-18 23:41:40', 1, 'configuration.php', 'gID=24&cID=513&action=edit&', '68.56.168.23'),
(82, '2009-06-18 23:41:43', 1, 'configuration.php', 'gID=24&cID=513&action=save&', '68.56.168.23'),
(83, '2009-06-18 23:41:43', 1, 'configuration.php', 'gID=24&cID=513&', '68.56.168.23'),
(84, '2009-06-18 23:41:52', 1, 'configuration.php', 'gID=24&cID=515&action=edit&', '68.56.168.23'),
(85, '2009-06-18 23:41:56', 1, 'configuration.php', 'gID=24&cID=515&action=save&', '68.56.168.23'),
(86, '2009-06-18 23:41:56', 1, 'configuration.php', 'gID=24&cID=515&', '68.56.168.23'),
(87, '2009-06-18 23:41:59', 1, 'configuration.php', 'gID=24&cID=516&action=edit&', '68.56.168.23'),
(88, '2009-06-18 23:42:02', 1, 'configuration.php', 'gID=24&cID=516&action=save&', '68.56.168.23'),
(89, '2009-06-18 23:42:02', 1, 'configuration.php', 'gID=24&cID=516&', '68.56.168.23'),
(90, '2009-06-18 23:42:06', 1, 'configuration.php', 'gID=24&cID=517&action=edit&', '68.56.168.23'),
(91, '2009-06-18 23:42:13', 1, 'configuration.php', 'gID=24&cID=518&action=edit&', '68.56.168.23'),
(92, '2009-06-18 23:42:35', 1, 'configuration.php', 'gID=24&cID=520&action=edit&', '68.56.168.23'),
(93, '2009-06-18 23:42:51', 1, 'configuration.php', 'gID=25&', '68.56.168.23'),
(94, '2009-06-18 23:43:09', 1, 'configuration.php', 'gID=13&', '68.56.168.23'),
(95, '2009-06-18 23:43:16', 1, 'configuration.php', 'gID=11&', '68.56.168.23'),
(96, '2009-06-18 23:43:24', 1, 'configuration.php', 'gID=11&cID=459&action=edit&', '68.56.168.23'),
(97, '2009-06-18 23:43:27', 1, 'configuration.php', 'gID=11&cID=459&action=save&', '68.56.168.23'),
(98, '2009-06-18 23:43:28', 1, 'configuration.php', 'gID=11&cID=459&', '68.56.168.23'),
(99, '2009-06-18 23:43:31', 1, 'configuration.php', 'gID=17&', '68.56.168.23'),
(100, '2009-06-18 23:43:51', 1, 'modules.php', 'set=payment&', '68.56.168.23'),
(101, '2009-06-18 23:44:18', 1, 'languages.php', '', '68.56.168.23'),
(102, '2009-06-18 23:44:34', 1, 'template_select.php', '', '68.56.168.23'),
(103, '2009-06-18 23:44:43', 1, 'layout_controller.php', '', '68.56.168.23'),
(104, '2009-06-18 23:45:05', 1, 'layout_controller.php', 'page=&cID=62&', '68.56.168.23'),
(105, '2009-06-18 23:45:08', 1, 'layout_controller.php', 'page=&cID=62&action=edit&', '68.56.168.23'),
(106, '2009-06-18 23:45:26', 1, 'layout_controller.php', 'page=&cID=62&action=save&layout_box_name=manufacturers.php&', '68.56.168.23'),
(107, '2009-06-18 23:45:26', 1, 'layout_controller.php', 'page=&cID=62&', '68.56.168.23'),
(108, '2009-06-18 23:45:36', 1, 'layout_controller.php', 'page=&cID=59&', '68.56.168.23'),
(109, '2009-06-18 23:45:38', 1, 'layout_controller.php', 'page=&cID=59&action=edit&', '68.56.168.23'),
(110, '2009-06-18 23:45:43', 1, 'layout_controller.php', 'page=&cID=59&action=save&layout_box_name=featured.php&', '68.56.168.23'),
(111, '2009-06-18 23:45:44', 1, 'layout_controller.php', 'page=&cID=59&', '68.56.168.23'),
(112, '2009-06-18 23:45:50', 1, 'layout_controller.php', 'page=&cID=64&', '68.56.168.23'),
(113, '2009-06-18 23:45:57', 1, 'configuration.php', 'gID=1&', '68.56.168.23'),
(114, '2009-06-18 23:46:19', 1, 'layout_controller.php', '', '68.56.168.23'),
(115, '2009-06-18 23:46:28', 1, 'layout_controller.php', 'page=&cID=51&', '68.56.168.23'),
(116, '2009-06-18 23:46:53', 1, 'layout_controller.php', 'page=&cID=65&', '68.56.168.23'),
(117, '2009-06-18 23:46:56', 1, 'layout_controller.php', 'page=&cID=65&action=edit&', '68.56.168.23'),
(118, '2009-06-18 23:47:00', 1, 'layout_controller.php', 'page=&cID=65&action=save&layout_box_name=music_genres.php&', '68.56.168.23'),
(119, '2009-06-18 23:47:01', 1, 'layout_controller.php', 'page=&cID=65&', '68.56.168.23'),
(120, '2009-06-18 23:47:07', 1, 'layout_controller.php', 'page=&cID=73&', '68.56.168.23'),
(121, '2009-06-18 23:47:09', 1, 'layout_controller.php', 'page=&cID=73&action=edit&', '68.56.168.23'),
(122, '2009-06-18 23:47:13', 1, 'layout_controller.php', 'page=&cID=73&action=save&layout_box_name=specials.php&', '68.56.168.23'),
(123, '2009-06-18 23:47:14', 1, 'layout_controller.php', 'page=&cID=73&', '68.56.168.23'),
(124, '2009-06-18 23:47:21', 1, 'layout_controller.php', 'page=&cID=61&', '68.56.168.23'),
(125, '2009-06-18 23:47:23', 1, 'layout_controller.php', 'page=&cID=61&action=edit&', '68.56.168.23'),
(126, '2009-06-18 23:47:27', 1, 'layout_controller.php', 'page=&cID=61&action=save&layout_box_name=languages.php&', '68.56.168.23'),
(127, '2009-06-18 23:47:28', 1, 'layout_controller.php', 'page=&cID=61&', '68.56.168.23'),
(128, '2009-06-18 23:47:39', 1, 'layout_controller.php', 'page=&cID=76&', '68.56.168.23'),
(129, '2009-06-18 23:47:42', 1, 'layout_controller.php', 'page=&cID=76&action=edit&', '68.56.168.23'),
(130, '2009-06-18 23:47:46', 1, 'layout_controller.php', 'page=&cID=76&action=save&layout_box_name=whos_online.php&', '68.56.168.23'),
(131, '2009-06-18 23:47:46', 1, 'layout_controller.php', 'page=&cID=76&', '68.56.168.23'),
(132, '2009-06-18 23:48:04', 1, 'layout_controller.php', 'page=&cID=57&', '68.56.168.23'),
(133, '2009-06-18 23:48:07', 1, 'layout_controller.php', 'page=&cID=57&action=edit&', '68.56.168.23'),
(134, '2009-06-18 23:48:11', 1, 'layout_controller.php', 'page=&cID=57&action=save&layout_box_name=document_categories.php&', '68.56.168.23'),
(135, '2009-06-18 23:48:11', 1, 'layout_controller.php', 'page=&cID=57&', '68.56.168.23'),
(136, '2009-06-18 23:49:14', 1, 'layout_controller.php', 'page=&cID=56&', '68.56.168.23'),
(137, '2009-06-18 23:49:16', 1, 'layout_controller.php', 'page=&cID=56&action=edit&', '68.56.168.23'),
(138, '2009-06-18 23:49:20', 1, 'layout_controller.php', 'page=&cID=56&action=save&layout_box_name=currencies.php&', '68.56.168.23'),
(139, '2009-06-18 23:49:20', 1, 'layout_controller.php', 'page=&cID=56&', '68.56.168.23'),
(140, '2009-06-18 23:49:39', 1, 'layout_controller.php', 'page=&cID=58&', '68.56.168.23'),
(141, '2009-06-18 23:49:42', 1, 'layout_controller.php', 'page=&cID=58&action=edit&', '68.56.168.23'),
(142, '2009-06-18 23:49:45', 1, 'layout_controller.php', 'page=&cID=58&action=save&layout_box_name=ezpages.php&', '68.56.168.23'),
(143, '2009-06-18 23:49:46', 1, 'layout_controller.php', 'page=&cID=58&', '68.56.168.23'),
(144, '2009-06-18 23:50:08', 1, 'layout_controller.php', 'page=&cID=58&action=edit&', '68.56.168.23'),
(145, '2009-06-18 23:50:14', 1, 'layout_controller.php', 'page=&cID=58&action=save&layout_box_name=ezpages.php&', '68.56.168.23'),
(146, '2009-06-18 23:50:14', 1, 'layout_controller.php', 'page=&cID=58&', '68.56.168.23'),
(147, '2009-06-18 23:50:18', 1, 'layout_controller.php', 'page=&cID=68&', '68.56.168.23'),
(148, '2009-06-18 23:50:20', 1, 'layout_controller.php', 'page=&cID=68&action=edit&', '68.56.168.23'),
(149, '2009-06-18 23:50:24', 1, 'layout_controller.php', 'page=&cID=68&action=save&layout_box_name=record_companies.php&', '68.56.168.23'),
(150, '2009-06-18 23:50:25', 1, 'layout_controller.php', 'page=&cID=68&', '68.56.168.23'),
(151, '2009-06-18 23:50:29', 1, 'layout_controller.php', 'page=&cID=53&', '68.56.168.23'),
(152, '2009-06-18 23:50:32', 1, 'layout_controller.php', 'page=&cID=53&action=edit&', '68.56.168.23'),
(153, '2009-06-18 23:50:35', 1, 'layout_controller.php', 'page=&cID=53&action=save&layout_box_name=banner_box_all.php&', '68.56.168.23'),
(154, '2009-06-18 23:50:35', 1, 'layout_controller.php', 'page=&cID=53&', '68.56.168.23'),
(155, '2009-06-18 23:50:44', 1, 'layout_controller.php', 'page=&cID=52&', '68.56.168.23'),
(156, '2009-06-18 23:50:47', 1, 'layout_controller.php', 'page=&cID=52&action=edit&', '68.56.168.23'),
(157, '2009-06-18 23:50:51', 1, 'layout_controller.php', 'page=&cID=52&action=save&layout_box_name=banner_box2.php&', '68.56.168.23'),
(158, '2009-06-18 23:50:52', 1, 'layout_controller.php', 'page=&cID=52&', '68.56.168.23'),
(159, '2009-06-18 23:50:56', 1, 'layout_controller.php', 'page=&cID=52&action=edit&', '68.56.168.23'),
(160, '2009-06-18 23:51:01', 1, 'layout_controller.php', 'page=&cID=52&action=save&layout_box_name=banner_box2.php&', '68.56.168.23'),
(161, '2009-06-18 23:51:02', 1, 'layout_controller.php', 'page=&cID=52&', '68.56.168.23'),
(162, '2009-06-18 23:51:19', 1, 'layout_controller.php', 'page=&cID=63&', '68.56.168.23'),
(163, '2009-06-18 23:51:21', 1, 'layout_controller.php', 'page=&cID=63&action=edit&', '68.56.168.23'),
(164, '2009-06-18 23:51:25', 1, 'layout_controller.php', 'page=&cID=63&action=save&layout_box_name=manufacturer_info.php&', '68.56.168.23'),
(165, '2009-06-18 23:51:26', 1, 'layout_controller.php', 'page=&cID=63&', '68.56.168.23'),
(166, '2009-06-18 23:51:41', 1, 'layout_controller.php', 'page=&cID=66&', '68.56.168.23'),
(167, '2009-06-18 23:51:43', 1, 'layout_controller.php', 'page=&cID=66&action=edit&', '68.56.168.23'),
(168, '2009-06-18 23:52:38', 1, 'layout_controller.php', 'page=&cID=75&', '68.56.168.23'),
(169, '2009-06-18 23:52:40', 1, 'layout_controller.php', 'page=&cID=75&action=edit&', '68.56.168.23'),
(170, '2009-06-18 23:52:44', 1, 'layout_controller.php', 'page=&cID=75&action=save&layout_box_name=whats_new.php&', '68.56.168.23'),
(171, '2009-06-18 23:52:44', 1, 'layout_controller.php', 'page=&cID=75&', '68.56.168.23'),
(172, '2009-06-18 23:52:57', 1, 'layout_controller.php', 'page=&cID=69&', '68.56.168.23'),
(173, '2009-06-18 23:52:59', 1, 'layout_controller.php', 'page=&cID=69&action=edit&', '68.56.168.23'),
(174, '2009-06-18 23:53:03', 1, 'layout_controller.php', 'page=&cID=69&action=save&layout_box_name=reviews.php&', '68.56.168.23'),
(175, '2009-06-18 23:53:04', 1, 'layout_controller.php', 'page=&cID=69&', '68.56.168.23'),
(176, '2009-06-19 00:02:00', 1, 'layout_controller.php', 'page=&cID=54&', '68.56.168.23'),
(177, '2009-06-19 00:02:02', 1, 'layout_controller.php', 'page=&cID=54&action=edit&', '68.56.168.23'),
(178, '2009-06-19 00:05:01', 1, 'layout_controller.php', 'page=&cID=51&', '68.56.168.23'),
(179, '2009-06-19 00:05:03', 1, 'layout_controller.php', 'page=&cID=51&action=edit&', '68.56.168.23'),
(180, '2009-06-19 00:05:09', 1, 'layout_controller.php', 'page=&cID=51&action=save&layout_box_name=banner_box.php&', '68.56.168.23'),
(181, '2009-06-19 00:05:10', 1, 'layout_controller.php', 'page=&cID=51&', '68.56.168.23'),
(182, '2009-06-19 00:05:21', 1, 'layout_controller.php', 'page=&cID=58&', '68.56.168.23'),
(183, '2009-06-19 00:05:29', 1, 'layout_controller.php', 'page=&cID=58&action=edit&', '68.56.168.23'),
(184, '2009-06-19 00:05:45', 1, 'layout_controller.php', 'page=&cID=58&action=save&layout_box_name=ezpages.php&', '68.56.168.23'),
(185, '2009-06-19 00:05:45', 1, 'layout_controller.php', 'page=&cID=58&', '68.56.168.23'),
(186, '2009-06-19 00:08:04', 1, 'layout_controller.php', 'page=&cID=71&', '68.56.168.23'),
(187, '2009-06-19 00:08:05', 1, 'layout_controller.php', 'page=&cID=71&', '68.56.168.23'),
(188, '2009-06-19 00:08:13', 1, 'layout_controller.php', 'page=&cID=71&action=edit&', '68.56.168.23'),
(189, '2009-06-19 00:08:25', 1, 'layout_controller.php', 'page=&cID=71&action=save&layout_box_name=search_header.php&', '68.56.168.23'),
(190, '2009-06-19 00:08:25', 1, 'layout_controller.php', 'page=&cID=71&', '68.56.168.23'),
(191, '2009-06-19 00:08:51', 1, 'layout_controller.php', 'page=&cID=57&', '68.56.168.23'),
(192, '2009-06-19 00:08:54', 1, 'layout_controller.php', 'page=&cID=57&action=edit&', '68.56.168.23'),
(193, '2009-06-19 00:09:22', 1, 'layout_controller.php', 'page=&cID=57&action=save&layout_box_name=document_categories.php&', '68.56.168.23'),
(194, '2009-06-19 00:09:23', 1, 'layout_controller.php', 'page=&cID=57&', '68.56.168.23'),
(195, '2009-06-19 00:09:43', 1, 'layout_controller.php', 'page=&cID=57&action=edit&', '68.56.168.23'),
(196, '2009-06-19 00:10:36', 1, 'layout_controller.php', 'page=&cID=70&', '68.56.168.23'),
(197, '2009-06-19 00:10:41', 1, 'layout_controller.php', 'page=&cID=70&action=edit&', '68.56.168.23'),
(198, '2009-06-19 00:11:45', 1, 'layout_controller.php', 'page=&cID=70&action=save&layout_box_name=search.php&', '68.56.168.23'),
(199, '2009-06-19 00:11:45', 1, 'layout_controller.php', 'page=&cID=70&', '68.56.168.23'),
(200, '2009-06-19 00:14:00', 1, 'stats_customers_referrals.php', '', '68.56.168.23'),
(201, '2009-06-19 00:14:14', 1, 'banner_manager.php', '', '68.56.168.23'),
(202, '2009-06-19 00:14:21', 1, 'alt_nav.php', '', '68.56.168.23'),
(203, '2009-06-19 00:14:29', 1, 'newsletters.php', '', '68.56.168.23'),
(204, '2009-06-19 00:14:36', 1, 'newsletters.php', 'action=new&', '68.56.168.23'),
(205, '2009-06-19 00:14:46', 1, 'whos_online.php', '', '68.56.168.23'),
(206, '2009-06-19 00:14:59', 1, 'ezpages.php', '', '68.56.168.23'),
(207, '2009-06-19 00:17:12', 1, 'configuration.php', 'gID=1&', '68.56.168.23'),
(208, '2009-06-19 00:17:26', 1, 'configuration.php', 'gID=19&', '68.56.168.23'),
(209, '2009-06-19 00:18:26', 1, 'configuration.php', 'gID=21&', '68.56.168.23'),
(210, '2009-06-19 00:18:31', 1, 'configuration.php', 'gID=30&', '68.56.168.23'),
(211, '2009-06-19 00:18:40', 1, 'configuration.php', 'gID=30&cID=533&action=edit&', '68.56.168.23'),
(212, '2009-06-19 00:18:45', 1, 'configuration.php', 'gID=30&cID=533&action=save&', '68.56.168.23'),
(213, '2009-06-19 00:18:45', 1, 'configuration.php', 'gID=30&cID=533&', '68.56.168.23'),
(214, '2009-06-19 00:19:21', 1, 'configuration.php', 'gID=30&cID=534&action=edit&', '68.56.168.23'),
(215, '2009-06-19 00:19:24', 1, 'configuration.php', 'gID=30&cID=534&action=save&', '68.56.168.23'),
(216, '2009-06-19 00:19:25', 1, 'configuration.php', 'gID=30&cID=534&', '68.56.168.23'),
(217, '2009-06-19 00:19:41', 1, 'configuration.php', 'gID=30&cID=535&action=edit&', '68.56.168.23'),
(218, '2009-06-19 00:19:44', 1, 'configuration.php', 'gID=30&cID=535&action=save&', '68.56.168.23'),
(219, '2009-06-19 00:19:45', 1, 'configuration.php', 'gID=30&cID=535&', '68.56.168.23'),
(220, '2009-06-19 00:19:56', 1, 'configuration.php', 'gID=30&cID=535&action=edit&', '68.56.168.23'),
(221, '2009-06-19 00:20:02', 1, 'configuration.php', 'gID=30&cID=539&action=edit&', '68.56.168.23'),
(222, '2009-06-19 00:22:26', 1, 'banner_manager.php', '', '68.56.168.23'),
(223, '2009-06-19 00:22:42', 1, 'banner_manager.php', 'page=1&bID=9&action=delete&', '68.56.168.23'),
(224, '2009-06-19 00:22:50', 1, 'banner_manager.php', 'page=1&bID=9&action=deleteconfirm&', '68.56.168.23'),
(225, '2009-06-19 00:22:50', 1, 'banner_manager.php', 'page=1&', '68.56.168.23'),
(226, '2009-06-19 00:22:53', 1, 'banner_manager.php', 'page=1&bID=8&action=delete&', '68.56.168.23'),
(227, '2009-06-19 00:22:55', 1, 'banner_manager.php', 'page=1&bID=8&action=deleteconfirm&', '68.56.168.23'),
(228, '2009-06-19 00:22:56', 1, 'banner_manager.php', 'page=1&', '68.56.168.23'),
(229, '2009-06-19 00:22:59', 1, 'banner_manager.php', 'page=1&bID=7&action=delete&', '68.56.168.23'),
(230, '2009-06-19 00:23:01', 1, 'banner_manager.php', 'page=1&bID=7&action=deleteconfirm&', '68.56.168.23'),
(231, '2009-06-19 00:23:01', 1, 'banner_manager.php', 'page=1&', '68.56.168.23'),
(232, '2009-06-19 00:23:03', 1, 'banner_manager.php', 'page=1&bID=4&action=delete&', '68.56.168.23'),
(233, '2009-06-19 00:23:06', 1, 'banner_manager.php', 'page=1&bID=4&action=deleteconfirm&', '68.56.168.23'),
(234, '2009-06-19 00:23:06', 1, 'banner_manager.php', 'page=1&', '68.56.168.23'),
(235, '2009-06-19 00:23:08', 1, 'banner_manager.php', 'page=1&bID=6&action=delete&', '68.56.168.23'),
(236, '2009-06-19 00:23:09', 1, 'banner_manager.php', 'page=1&bID=6&action=deleteconfirm&', '68.56.168.23'),
(237, '2009-06-19 00:23:10', 1, 'banner_manager.php', 'page=1&', '68.56.168.23'),
(238, '2009-06-19 00:23:12', 1, 'banner_manager.php', 'page=1&bID=1&action=delete&', '68.56.168.23'),
(239, '2009-06-19 00:23:14', 1, 'banner_manager.php', 'page=1&bID=1&action=deleteconfirm&', '68.56.168.23'),
(240, '2009-06-19 00:23:14', 1, 'banner_manager.php', 'page=1&', '68.56.168.23'),
(241, '2009-06-19 00:23:16', 1, 'banner_manager.php', 'page=1&bID=5&action=delete&', '68.56.168.23'),
(242, '2009-06-19 00:23:20', 1, 'banner_manager.php', 'page=1&bID=5&action=deleteconfirm&', '68.56.168.23'),
(243, '2009-06-19 00:23:20', 1, 'banner_manager.php', 'page=1&', '68.56.168.23'),
(244, '2009-06-19 00:23:22', 1, 'banner_manager.php', 'page=1&bID=2&action=delete&', '68.56.168.23'),
(245, '2009-06-19 00:23:24', 1, 'banner_manager.php', 'page=1&bID=2&action=deleteconfirm&', '68.56.168.23'),
(246, '2009-06-19 00:23:25', 1, 'banner_manager.php', 'page=1&', '68.56.168.23'),
(247, '2009-06-19 00:23:29', 1, 'banner_manager.php', 'page=1&bID=3&action=delete&', '68.56.168.23'),
(248, '2009-06-19 00:23:31', 1, 'banner_manager.php', 'page=1&bID=3&action=deleteconfirm&', '68.56.168.23'),
(249, '2009-06-19 00:23:31', 1, 'banner_manager.php', 'page=1&', '68.56.168.23'),
(250, '2009-06-19 10:08:22', 0, 'login.php ', '', '68.56.168.23'),
(251, '2009-06-19 10:08:30', 0, 'login.php admin', '', '68.56.168.23'),
(252, '2009-06-19 10:08:40', 1, 'configuration.php', 'gID=1&', '68.56.168.23'),
(253, '2009-06-19 10:09:07', 1, 'server_info.php', '', '68.56.168.23'),
(254, '2009-06-19 10:18:37', 1, 'alt_nav.php', '', '68.56.168.23'),
(255, '2009-06-19 10:26:39', 1, 'configuration.php', 'gID=1&', '68.56.168.23'),
(256, '2009-06-19 10:26:50', 1, 'admin.php', '', '68.56.168.23'),
(257, '2009-06-19 10:27:01', 1, 'admin.php', 'page=1&adminID=1&action=edit&', '68.56.168.23'),
(258, '2009-06-19 10:27:22', 1, 'admin.php', 'page=1&adminID=1&action=save&', '68.56.168.23'),
(259, '2009-06-19 10:27:22', 1, 'admin.php', 'page=1&adminID=1&', '68.56.168.23'),
(260, '2009-06-19 10:27:36', 1, 'admin.php', 'page=1&adminID=1&action=new&', '68.56.168.23'),
(261, '2009-06-19 10:28:01', 1, 'admin.php', 'action=insert&', '68.56.168.23'),
(262, '2009-06-19 10:28:02', 1, 'admin.php', 'adminID=2&', '68.56.168.23'),
(263, '2009-06-19 10:29:56', 1, 'configuration.php', 'gID=19&', '68.56.168.23'),
(264, '2009-06-19 10:30:02', 1, 'configuration.php', 'gID=19&cID=401&action=edit&', '68.56.168.23'),
(265, '2009-06-19 10:30:55', 1, 'configuration.php', 'gID=19&cID=427&action=edit&', '68.56.168.23'),
(266, '2009-06-19 10:31:28', 1, 'configuration.php', 'gID=19&cID=445&action=edit&', '68.56.168.23'),
(267, '2009-06-19 10:33:42', 1, 'configuration.php', 'gID=25&', '68.56.168.23'),
(268, '2009-06-19 10:59:10', 1, 'configuration.php', 'gID=1&', '68.56.168.23'),
(269, '2009-06-19 10:59:25', 1, 'configuration.php', 'gID=1&cID=8&action=edit&', '68.56.168.23'),
(270, '2009-06-19 10:59:40', 1, 'configuration.php', 'gID=1&cID=11&action=edit&', '68.56.168.23'),
(271, '2009-06-19 11:00:12', 1, 'configuration.php', 'gID=1&cID=28&action=edit&', '68.56.168.23'),
(272, '2009-06-19 11:00:30', 1, 'configuration.php', 'gID=1&cID=29&action=edit&', '68.56.168.23'),
(273, '2009-06-19 11:01:27', 1, 'template_select.php', '', '68.56.168.23'),
(274, '2009-06-19 11:01:45', 1, 'template_select.php', 'page=1&tID=1&action=edit&', '68.56.168.23'),
(275, '2009-06-19 11:36:24', 1, 'template_select.php', 'page=1&tID=1&action=edit&', '68.56.168.23'),
(276, '2009-06-19 11:36:33', 1, 'template_select.php', 'page=1&tID=1&action=edit&', '68.56.168.23'),
(277, '2009-06-19 11:42:10', 1, 'alt_nav.php', '', '68.56.168.23'),
(278, '2009-06-19 11:42:22', 1, 'configuration.php', 'gID=19&', '68.56.168.23'),
(279, '2009-06-19 11:42:23', 1, 'configuration.php', 'gID=19&', '68.56.168.23'),
(280, '2009-06-19 11:43:15', 1, 'template_select.php', '', '68.56.168.23'),
(281, '2009-06-19 11:43:19', 1, 'template_select.php', 'page=1&tID=1&action=edit&', '68.56.168.23'),
(282, '2009-06-19 11:43:26', 1, 'template_select.php', 'page=1&tID=1&action=edit&', '68.56.168.23'),
(283, '2009-06-19 11:44:13', 1, 'template_select.php', 'page=1&tID=1&action=edit&', '68.56.168.23'),
(284, '2009-06-19 11:44:19', 1, 'template_select.php', 'page=1&tID=1&action=edit&', '68.56.168.23'),
(285, '2009-06-19 12:01:59', 1, 'template_select.php', 'page=1&tID=1&action=edit&', '68.56.168.23'),
(286, '2009-06-19 12:02:04', 1, 'template_select.php', 'page=1&tID=1&action=save&', '68.56.168.23'),
(287, '2009-06-19 12:04:47', 1, 'template_select.php', 'page=1&tID=1&action=edit&', '68.56.168.23'),
(288, '2009-06-19 12:04:57', 1, 'configuration.php', 'gID=19&', '68.56.168.23'),
(289, '2009-06-19 14:45:05', 0, 'login.php ', '', '68.56.168.23'),
(290, '2009-06-19 14:45:14', 0, 'login.php dale', '', '68.56.168.23'),
(291, '2009-06-19 14:45:23', 2, 'tax_rates.php', '', '68.56.168.23'),
(292, '2009-06-19 14:45:31', 2, 'tax_rates.php', 'page=1&tID=1&action=delete&', '68.56.168.23'),
(293, '2009-06-19 14:45:34', 2, 'tax_rates.php', 'page=1&tID=1&action=deleteconfirm&', '68.56.168.23'),
(294, '2009-06-19 14:45:35', 2, 'tax_rates.php', 'page=1&', '68.56.168.23'),
(295, '2009-06-19 14:45:38', 2, 'tax_rates.php', 'page=0&action=new&', '68.56.168.23'),
(296, '2009-06-19 14:45:46', 2, 'countries.php', '', '68.56.168.23'),
(297, '2009-06-19 14:45:58', 2, 'tax_classes.php', '', '68.56.168.23'),
(298, '2009-06-19 14:46:04', 2, 'tax_classes.php', 'page=1&tID=1&action=edit&', '68.56.168.23'),
(299, '2009-06-19 14:46:16', 2, 'zones.php', '', '68.56.168.23'),
(300, '2009-06-19 14:46:17', 2, 'alt_nav.php', '', '68.56.168.23'),
(301, '2009-06-19 14:46:29', 2, 'template_select.php', '', '68.56.168.23'),
(302, '2009-06-19 14:57:46', 0, 'login.php ', '', '68.56.168.23'),
(303, '2009-06-19 14:57:48', 0, 'login.php admin', '', '68.56.168.23'),
(304, '2009-06-19 14:58:11', 1, 'template_select.php', '', '68.56.168.23'),
(305, '2009-06-19 14:58:15', 1, 'template_select.php', 'page=1&tID=1&action=edit&', '68.56.168.23'),
(306, '2009-06-19 14:58:18', 1, 'template_select.php', 'page=1&tID=1&action=save&', '68.56.168.23'),
(307, '2009-06-19 14:58:36', 1, 'template_select.php', 'page=1&tID=1&action=edit&', '68.56.168.23'),
(308, '2009-06-19 14:58:40', 1, 'template_select.php', 'page=1&tID=1&action=save&', '68.56.168.23'),
(309, '2009-06-19 15:42:47', 0, 'login.php ', '', '68.56.168.23'),
(310, '2009-06-19 15:42:50', 0, 'login.php admin', '', '68.56.168.23'),
(311, '2009-06-19 15:42:59', 1, 'configuration.php', 'gID=19&', '68.56.168.23'),
(312, '2009-06-19 15:46:13', 1, 'layout_controller.php', '', '68.56.168.23'),
(313, '2009-06-19 15:46:55', 1, 'layout_controller.php', 'page=&cID=96&', '68.56.168.23'),
(314, '2009-06-19 15:46:58', 1, 'layout_controller.php', 'page=&cID=96&action=edit&', '68.56.168.23'),
(315, '2009-06-19 16:08:54', 0, 'login.php ', '', '68.56.168.23'),
(316, '2009-06-19 16:09:00', 0, 'login.php admin', '', '68.56.168.23'),
(317, '2009-06-19 16:09:10', 0, 'login.php dale', '', '68.56.168.23'),
(318, '2009-06-19 16:09:17', 2, 'layout_controller.php', '', '68.56.168.23'),
(319, '2009-06-19 16:09:32', 2, 'layout_controller.php', 'page=&cID=90&', '68.56.168.23'),
(320, '2009-06-19 16:09:36', 2, 'layout_controller.php', 'page=&cID=90&action=edit&', '68.56.168.23'),
(321, '2009-06-19 16:11:10', 2, 'layout_controller.php', 'page=&cID=90&action=save&layout_box_name=more_information.php&', '68.56.168.23'),
(322, '2009-06-19 16:11:11', 2, 'layout_controller.php', 'page=&cID=90&', '68.56.168.23'),
(323, '2009-06-19 16:11:27', 2, 'alt_nav.php', '', '68.56.168.23'),
(324, '2009-06-19 16:11:45', 2, 'layout_controller.php', '', '68.56.168.23'),
(325, '2009-06-19 16:11:53', 2, 'layout_controller.php', 'page=&cID=80&', '68.56.168.23'),
(326, '2009-06-19 16:11:55', 2, 'layout_controller.php', 'page=&cID=80&action=edit&', '68.56.168.23'),
(327, '2009-06-19 16:11:59', 2, 'layout_controller.php', 'page=&cID=80&action=save&layout_box_name=best_sellers.php&', '68.56.168.23'),
(328, '2009-06-19 16:12:00', 2, 'layout_controller.php', 'page=&cID=80&', '68.56.168.23'),
(329, '2009-06-19 16:12:04', 2, 'layout_controller.php', 'page=&cID=81&', '68.56.168.23'),
(330, '2009-06-19 16:12:11', 2, 'layout_controller.php', 'page=&cID=81&action=edit&', '68.56.168.23'),
(331, '2009-06-19 16:12:16', 2, 'layout_controller.php', 'page=&cID=81&action=save&layout_box_name=categories.php&', '68.56.168.23'),
(332, '2009-06-19 16:12:16', 2, 'layout_controller.php', 'page=&cID=81&', '68.56.168.23'),
(333, '2009-06-19 16:12:31', 2, 'layout_controller.php', 'page=&cID=100&', '68.56.168.23'),
(334, '2009-06-19 16:12:33', 2, 'layout_controller.php', 'page=&cID=100&action=edit&', '68.56.168.23'),
(335, '2009-06-19 16:12:39', 2, 'layout_controller.php', 'page=&cID=100&action=save&layout_box_name=tell_a_friend.php&', '68.56.168.23'),
(336, '2009-06-19 16:12:40', 2, 'layout_controller.php', 'page=&cID=100&', '68.56.168.23'),
(337, '2009-06-19 16:13:03', 2, 'layout_controller.php', 'page=&cID=96&', '68.56.168.23'),
(338, '2009-06-19 16:13:05', 2, 'layout_controller.php', 'page=&cID=96&action=edit&', '68.56.168.23'),
(339, '2009-06-19 16:13:09', 2, 'layout_controller.php', 'page=&cID=96&action=save&layout_box_name=search.php&', '68.56.168.23'),
(340, '2009-06-19 16:13:10', 2, 'layout_controller.php', 'page=&cID=96&', '68.56.168.23'),
(341, '2009-06-19 16:13:29', 2, 'layout_controller.php', 'page=&cID=86&', '68.56.168.23'),
(342, '2009-06-19 16:13:31', 2, 'layout_controller.php', 'page=&cID=86&action=edit&', '68.56.168.23'),
(343, '2009-06-19 16:13:35', 2, 'layout_controller.php', 'page=&cID=86&action=save&layout_box_name=information.php&', '68.56.168.23'),
(344, '2009-06-19 16:13:35', 2, 'layout_controller.php', 'page=&cID=86&', '68.56.168.23'),
(345, '2009-06-19 16:14:11', 2, 'layout_controller.php', 'page=&cID=86&action=edit&', '68.56.168.23'),
(346, '2009-06-19 16:14:11', 2, 'layout_controller.php', 'page=&cID=86&action=edit&', '68.56.168.23'),
(347, '2009-06-19 16:14:12', 2, 'layout_controller.php', 'page=&cID=86&action=edit&', '68.56.168.23'),
(348, '2009-06-19 16:14:16', 2, 'layout_controller.php', 'page=&cID=86&action=save&layout_box_name=information.php&', '68.56.168.23'),
(349, '2009-06-19 16:14:17', 2, 'layout_controller.php', 'page=&cID=86&', '68.56.168.23'),
(350, '2009-06-19 16:14:38', 2, 'layout_controller.php', 'page=&cID=81&', '68.56.168.23'),
(351, '2009-06-19 16:14:39', 2, 'layout_controller.php', 'page=&cID=81&action=edit&', '68.56.168.23'),
(352, '2009-06-19 16:14:55', 2, 'layout_controller.php', 'page=&cID=81&action=save&layout_box_name=categories.php&', '68.56.168.23'),
(353, '2009-06-19 16:14:56', 2, 'layout_controller.php', 'page=&cID=81&', '68.56.168.23'),
(354, '2009-06-19 16:15:40', 2, 'layout_controller.php', 'page=&cID=98&', '68.56.168.23'),
(355, '2009-06-19 16:15:44', 2, 'layout_controller.php', 'page=&cID=98&action=edit&', '68.56.168.23'),
(356, '2009-06-19 16:15:52', 2, 'layout_controller.php', 'page=&cID=98&action=save&layout_box_name=shopping_cart.php&', '68.56.168.23'),
(357, '2009-06-19 16:15:53', 2, 'layout_controller.php', 'page=&cID=98&', '68.56.168.23'),
(358, '2009-06-19 16:16:14', 2, 'layout_controller.php', 'page=&cID=96&', '68.56.168.23'),
(359, '2009-06-19 16:16:16', 2, 'layout_controller.php', 'page=&cID=96&action=edit&', '68.56.168.23'),
(360, '2009-06-19 16:16:21', 2, 'layout_controller.php', 'page=&cID=96&action=save&layout_box_name=search.php&', '68.56.168.23'),
(361, '2009-06-19 16:16:21', 2, 'layout_controller.php', 'page=&cID=96&', '68.56.168.23'),
(362, '2009-06-19 16:16:40', 2, 'layout_controller.php', 'page=&cID=90&', '68.56.168.23'),
(363, '2009-06-19 16:16:43', 2, 'layout_controller.php', 'page=&cID=90&action=edit&', '68.56.168.23'),
(364, '2009-06-19 16:16:48', 2, 'layout_controller.php', 'page=&cID=90&action=save&layout_box_name=more_information.php&', '68.56.168.23'),
(365, '2009-06-19 16:16:48', 2, 'layout_controller.php', 'page=&cID=90&', '68.56.168.23'),
(366, '2009-06-19 16:30:43', 1, 'configuration.php', 'gID=19&', '68.56.168.23'),
(367, '2009-06-19 16:30:58', 1, 'configuration.php', 'gID=19&cID=441&action=edit&', '68.56.168.23'),
(368, '2009-06-19 16:31:02', 1, 'configuration.php', 'gID=19&cID=441&action=save&', '68.56.168.23'),
(369, '2009-06-19 16:31:02', 1, 'configuration.php', 'gID=19&cID=441&', '68.56.168.23'),
(370, '2009-06-19 16:34:26', 1, 'layout_controller.php', '', '68.56.168.23'),
(371, '2009-06-19 16:34:33', 1, 'layout_controller.php', 'page=&cID=97&', '68.56.168.23'),
(372, '2009-06-19 16:34:36', 1, 'layout_controller.php', 'page=&cID=97&action=edit&', '68.56.168.23'),
(373, '2009-06-19 16:34:42', 1, 'layout_controller.php', 'page=&cID=97&action=save&layout_box_name=search_header.php&', '68.56.168.23'),
(374, '2009-06-19 16:34:43', 1, 'layout_controller.php', 'page=&cID=97&', '68.56.168.23'),
(375, '2009-06-19 16:35:23', 1, 'configuration.php', 'gID=19&', '68.56.168.23'),
(376, '2009-06-19 16:35:28', 1, 'configuration.php', 'gID=19&cID=398&action=edit&', '68.56.168.23'),
(377, '2009-06-19 16:35:35', 1, 'configuration.php', 'gID=19&cID=398&action=save&', '68.56.168.23'),
(378, '2009-06-19 16:35:35', 1, 'configuration.php', 'gID=19&cID=398&', '68.56.168.23'),
(379, '2009-06-19 16:37:06', 1, 'configuration.php', 'gID=19&cID=412&action=edit&', '68.56.168.23'),
(380, '2009-06-19 16:37:11', 1, 'configuration.php', 'gID=19&cID=412&action=save&', '68.56.168.23'),
(381, '2009-06-19 16:37:12', 1, 'configuration.php', 'gID=19&cID=412&', '68.56.168.23'),
(382, '2009-06-19 16:43:49', 1, 'layout_controller.php', '', '68.56.168.23'),
(383, '2009-06-19 16:44:01', 1, 'layout_controller.php', 'page=&cID=81&', '68.56.168.23'),
(384, '2009-06-19 16:44:04', 1, 'layout_controller.php', 'page=&cID=81&action=edit&', '68.56.168.23'),
(385, '2009-06-19 16:44:21', 1, 'layout_controller.php', 'page=&cID=81&action=save&layout_box_name=categories.php&', '68.56.168.23'),
(386, '2009-06-19 16:44:22', 1, 'layout_controller.php', 'page=&cID=81&', '68.56.168.23'),
(387, '2009-06-19 16:44:24', 1, 'layout_controller.php', 'page=&cID=81&action=edit&', '68.56.168.23'),
(388, '2009-06-19 16:44:30', 1, 'layout_controller.php', 'page=&cID=81&action=save&layout_box_name=categories.php&', '68.56.168.23'),
(389, '2009-06-19 16:44:30', 1, 'layout_controller.php', 'page=&cID=81&', '68.56.168.23'),
(390, '2009-06-19 16:45:13', 1, 'layout_controller.php', 'page=&cID=86&', '68.56.168.23'),
(391, '2009-06-19 16:45:15', 1, 'layout_controller.php', 'page=&cID=86&action=edit&', '68.56.168.23'),
(392, '2009-06-19 16:45:24', 1, 'layout_controller.php', 'page=&cID=86&action=save&layout_box_name=information.php&', '68.56.168.23'),
(393, '2009-06-19 16:45:25', 1, 'layout_controller.php', 'page=&cID=86&', '68.56.168.23'),
(394, '2009-06-19 16:45:59', 1, 'layout_controller.php', 'page=&cID=86&action=edit&', '68.56.168.23'),
(395, '2009-06-19 16:46:09', 1, 'layout_controller.php', 'page=&cID=90&', '68.56.168.23'),
(396, '2009-06-19 16:46:11', 1, 'layout_controller.php', 'page=&cID=90&action=edit&', '68.56.168.23'),
(397, '2009-06-19 16:46:19', 1, 'layout_controller.php', 'page=&cID=90&action=save&layout_box_name=more_information.php&', '68.56.168.23'),
(398, '2009-06-19 16:46:20', 1, 'layout_controller.php', 'page=&cID=90&', '68.56.168.23'),
(399, '2009-06-19 16:48:49', 1, 'layout_controller.php', 'page=&cID=98&', '68.56.168.23'),
(400, '2009-06-19 16:48:52', 1, 'layout_controller.php', 'page=&cID=98&action=edit&', '68.56.168.23'),
(401, '2009-06-19 16:49:03', 1, 'layout_controller.php', 'page=&cID=98&action=save&layout_box_name=shopping_cart.php&', '68.56.168.23'),
(402, '2009-06-19 16:49:03', 1, 'layout_controller.php', 'page=&cID=98&', '68.56.168.23'),
(403, '2009-06-19 16:49:43', 1, 'layout_controller.php', 'page=&cID=96&', '68.56.168.23'),
(404, '2009-06-19 16:49:51', 1, 'layout_controller.php', 'page=&cID=96&action=edit&', '68.56.168.23'),
(405, '2009-06-19 16:50:01', 1, 'layout_controller.php', 'page=&cID=96&action=save&layout_box_name=search.php&', '68.56.168.23'),
(406, '2009-06-19 16:50:02', 1, 'layout_controller.php', 'page=&cID=96&', '68.56.168.23'),
(407, '2009-06-19 16:50:14', 1, 'layout_controller.php', 'page=&cID=86&', '68.56.168.23'),
(408, '2009-06-19 16:50:17', 1, 'layout_controller.php', 'page=&cID=86&action=edit&', '68.56.168.23'),
(409, '2009-06-19 16:50:24', 1, 'layout_controller.php', 'page=&cID=86&action=save&layout_box_name=information.php&', '68.56.168.23'),
(410, '2009-06-19 16:50:24', 1, 'layout_controller.php', 'page=&cID=86&', '68.56.168.23'),
(411, '2009-06-19 16:50:35', 1, 'layout_controller.php', 'page=&cID=100&', '68.56.168.23'),
(412, '2009-06-19 16:50:38', 1, 'layout_controller.php', 'page=&cID=100&action=edit&', '68.56.168.23'),
(413, '2009-06-19 16:50:44', 1, 'layout_controller.php', 'page=&cID=100&action=save&layout_box_name=tell_a_friend.php&', '68.56.168.23'),
(414, '2009-06-19 16:50:44', 1, 'layout_controller.php', 'page=&cID=100&', '68.56.168.23'),
(415, '2009-06-19 16:51:05', 1, 'layout_controller.php', 'page=&cID=80&', '68.56.168.23'),
(416, '2009-06-19 16:51:07', 1, 'layout_controller.php', 'page=&cID=80&action=edit&', '68.56.168.23'),
(417, '2009-06-19 16:51:12', 1, 'layout_controller.php', 'page=&cID=80&action=save&layout_box_name=best_sellers.php&', '68.56.168.23'),
(418, '2009-06-19 16:51:12', 1, 'layout_controller.php', 'page=&cID=80&', '68.56.168.23'),
(419, '2009-06-19 22:04:47', 0, 'login.php ', '', '68.56.168.23'),
(420, '2009-06-19 22:04:50', 0, 'login.php dale', '', '68.56.168.23'),
(421, '2009-06-19 22:04:57', 2, 'configuration.php', 'gID=19&', '68.56.168.23'),
(422, '2009-06-19 22:05:01', 2, 'configuration.php', 'gID=19&cID=398&action=edit&', '68.56.168.23'),
(423, '2009-06-19 22:05:11', 2, 'configuration.php', 'gID=19&cID=398&action=save&', '68.56.168.23'),
(424, '2009-06-19 22:05:12', 2, 'configuration.php', 'gID=19&cID=398&', '68.56.168.23'),
(425, '2009-06-19 22:05:20', 2, 'configuration.php', 'gID=19&cID=398&action=edit&', '68.56.168.23'),
(426, '2009-06-19 22:05:27', 2, 'configuration.php', 'gID=19&cID=398&action=save&', '68.56.168.23'),
(427, '2009-06-19 22:05:27', 2, 'configuration.php', 'gID=19&cID=398&', '68.56.168.23'),
(428, '2009-06-19 22:06:29', 2, 'configuration.php', 'gID=19&cID=398&action=edit&', '68.56.168.23'),
(429, '2009-06-19 22:06:34', 2, 'configuration.php', 'gID=19&cID=398&action=save&', '68.56.168.23'),
(430, '2009-06-19 22:06:35', 2, 'configuration.php', 'gID=19&cID=398&', '68.56.168.23'),
(431, '2009-06-19 22:06:53', 2, 'configuration.php', 'gID=19&cID=398&action=edit&', '68.56.168.23'),
(432, '2009-06-19 22:06:59', 2, 'configuration.php', 'gID=19&cID=398&action=save&', '68.56.168.23'),
(433, '2009-06-19 22:07:00', 2, 'configuration.php', 'gID=19&cID=398&', '68.56.168.23'),
(434, '2009-06-19 22:07:37', 2, 'define_pages_editor.php', '', '68.56.168.23'),
(435, '2009-06-19 22:07:44', 2, 'define_pages_editor.php', 'define_it=2&action=new_page&', '68.56.168.23'),
(436, '2009-06-19 22:08:28', 2, 'define_pages_editor.php', 'reset_editor=2&action=set_editor&', '68.56.168.23'),
(437, '2009-06-19 22:08:28', 2, 'define_pages_editor.php', '', '68.56.168.23'),
(438, '2009-06-19 22:08:39', 2, 'define_pages_editor.php', 'define_it=2&action=new_page&', '68.56.168.23'),
(439, '2009-06-19 22:10:28', 2, 'template_select.php', '', '68.56.168.23'),
(440, '2009-06-19 22:10:44', 2, 'configuration.php', 'gID=19&', '68.56.168.23'),
(441, '2009-06-19 22:11:42', 2, 'configuration.php', 'gID=19&cID=407&action=edit&', '68.56.168.23'),
(442, '2009-06-19 22:11:57', 2, 'configuration.php', 'gID=19&cID=414&action=edit&', '68.56.168.23'),
(443, '2009-06-19 22:12:28', 2, 'configuration.php', 'gID=19&cID=421&action=edit&', '68.56.168.23'),
(444, '2009-06-19 22:12:40', 2, 'configuration.php', 'gID=19&cID=421&action=save&', '68.56.168.23'),
(445, '2009-06-19 22:12:40', 2, 'configuration.php', 'gID=19&cID=421&', '68.56.168.23'),
(446, '2009-06-19 22:12:53', 2, 'configuration.php', 'gID=19&cID=421&action=edit&', '68.56.168.23'),
(447, '2009-06-19 22:12:55', 2, 'configuration.php', 'gID=19&cID=421&action=save&', '68.56.168.23'),
(448, '2009-06-19 22:12:56', 2, 'configuration.php', 'gID=19&cID=421&', '68.56.168.23'),
(449, '2009-06-19 22:13:03', 2, 'configuration.php', 'gID=19&cID=420&action=edit&', '68.56.168.23'),
(450, '2009-06-19 22:13:08', 2, 'configuration.php', 'gID=19&cID=419&action=edit&', '68.56.168.23'),
(451, '2009-06-19 22:13:26', 2, 'configuration.php', 'gID=19&cID=424&action=edit&', '68.56.168.23'),
(452, '2009-06-19 22:13:49', 2, 'configuration.php', 'gID=19&cID=426&action=edit&', '68.56.168.23'),
(453, '2009-06-19 22:14:19', 2, 'configuration.php', 'gID=19&cID=441&action=edit&', '68.56.168.23'),
(454, '2009-06-19 22:14:25', 2, 'configuration.php', 'gID=19&cID=441&action=save&', '68.56.168.23'),
(455, '2009-06-19 22:14:25', 2, 'configuration.php', 'gID=19&cID=441&', '68.56.168.23'),
(456, '2009-06-19 22:14:47', 2, 'configuration.php', 'gID=19&cID=441&action=edit&', '68.56.168.23'),
(457, '2009-06-19 22:14:50', 2, 'configuration.php', 'gID=19&cID=441&action=save&', '68.56.168.23'),
(458, '2009-06-19 22:14:50', 2, 'configuration.php', 'gID=19&cID=441&', '68.56.168.23'),
(459, '2009-06-19 22:15:09', 2, 'configuration.php', 'gID=19&cID=443&action=edit&', '68.56.168.23'),
(460, '2009-06-19 22:15:28', 2, 'configuration.php', 'gID=19&cID=405&action=edit&', '68.56.168.23'),
(461, '2009-06-19 22:15:33', 2, 'configuration.php', 'gID=19&cID=405&action=save&', '68.56.168.23'),
(462, '2009-06-19 22:15:33', 2, 'configuration.php', 'gID=19&cID=405&', '68.56.168.23'),
(463, '2009-06-19 22:15:36', 2, 'configuration.php', 'gID=19&cID=408&action=edit&', '68.56.168.23'),
(464, '2009-06-19 22:17:01', 2, 'configuration.php', 'gID=19&cID=406&action=edit&', '68.56.168.23'),
(465, '2009-06-19 22:17:04', 2, 'configuration.php', 'gID=19&cID=406&action=save&', '68.56.168.23'),
(466, '2009-06-19 22:17:04', 2, 'configuration.php', 'gID=19&cID=406&', '68.56.168.23'),
(467, '2009-06-19 23:16:33', 2, 'configuration.php', 'gID=19&cID=406&', '68.56.168.23'),
(468, '2009-06-19 23:42:06', 2, 'configuration.php', 'gID=19&cID=406&', '68.56.168.23'),
(469, '2009-06-20 02:43:59', 0, 'login.php ', '', '68.56.168.23'),
(470, '2009-06-20 02:44:10', 0, 'login.php dale', '', '68.56.168.23'),
(471, '2009-06-20 02:44:22', 2, 'configuration.php', 'gID=18&', '68.56.168.23'),
(472, '2009-06-20 02:44:34', 2, 'configuration.php', 'gID=18&cID=392&action=edit&', '68.56.168.23'),
(473, '2009-06-20 02:44:43', 2, 'configuration.php', 'gID=18&cID=392&action=save&', '68.56.168.23'),
(474, '2009-06-20 02:44:43', 2, 'configuration.php', 'gID=18&cID=392&', '68.56.168.23'),
(475, '2009-06-20 02:44:56', 2, 'configuration.php', 'gID=18&cID=393&action=edit&', '68.56.168.23'),
(476, '2009-06-20 02:45:07', 2, 'configuration.php', 'gID=18&cID=392&action=edit&', '68.56.168.23'),
(477, '2009-06-20 02:45:19', 2, 'configuration.php', 'gID=18&cID=392&action=save&', '68.56.168.23'),
(478, '2009-06-20 02:45:19', 2, 'configuration.php', 'gID=18&cID=392&', '68.56.168.23'),
(479, '2009-06-20 02:45:40', 2, 'configuration.php', 'gID=18&cID=384&action=edit&', '68.56.168.23'),
(480, '2009-06-20 02:46:17', 2, 'configuration.php', 'gID=19&', '68.56.168.23'),
(481, '2009-06-20 02:46:39', 2, 'configuration.php', 'gID=23&', '68.56.168.23'),
(482, '2009-06-20 02:46:50', 2, 'configuration.php', 'gID=23&cID=489&action=edit&', '68.56.168.23'),
(483, '2009-06-20 02:48:50', 2, 'configuration.php', 'gID=23&cID=489&action=save&', '68.56.168.23'),
(484, '2009-06-20 02:48:50', 2, 'configuration.php', 'gID=23&cID=489&', '68.56.168.23'),
(485, '2009-06-20 02:49:17', 2, 'configuration.php', 'gID=23&cID=489&action=edit&', '68.56.168.23'),
(486, '2009-06-20 02:49:28', 2, 'configuration.php', 'gID=23&cID=489&action=save&', '68.56.168.23'),
(487, '2009-06-20 02:49:29', 2, 'configuration.php', 'gID=23&cID=489&', '68.56.168.23'),
(488, '2009-06-20 02:50:13', 2, 'configuration.php', 'gID=23&cID=489&action=edit&', '68.56.168.23'),
(489, '2009-06-20 02:50:20', 2, 'configuration.php', 'gID=23&cID=489&action=save&', '68.56.168.23'),
(490, '2009-06-20 02:50:20', 2, 'configuration.php', 'gID=23&cID=489&', '68.56.168.23'),
(491, '2009-06-20 02:50:38', 2, 'configuration.php', 'gID=23&cID=489&action=edit&', '68.56.168.23'),
(492, '2009-06-20 02:50:43', 2, 'configuration.php', 'gID=23&cID=489&action=save&', '68.56.168.23'),
(493, '2009-06-20 02:50:43', 2, 'configuration.php', 'gID=23&cID=489&', '68.56.168.23'),
(494, '2009-06-20 02:50:52', 2, 'configuration.php', 'gID=23&cID=489&', '68.56.168.23'),
(495, '2009-06-20 02:51:19', 2, 'configuration.php', 'gID=23&cID=496&action=edit&', '68.56.168.23'),
(496, '2009-06-20 02:51:24', 2, 'configuration.php', 'gID=23&cID=496&action=save&', '68.56.168.23'),
(497, '2009-06-20 02:51:24', 2, 'configuration.php', 'gID=23&cID=496&', '68.56.168.23'),
(498, '2009-06-20 02:59:31', 2, 'template_select.php', '', '68.56.168.23'),
(499, '2009-06-20 02:59:35', 2, 'template_select.php', 'page=1&tID=1&action=edit&', '68.56.168.23'),
(500, '2009-06-20 02:59:40', 2, 'template_select.php', '', '68.56.168.23'),
(501, '2009-06-20 03:00:03', 2, 'template_select.php', 'page=1&tID=1&action=edit&', '68.56.168.23'),
(502, '2009-06-20 03:00:08', 2, 'template_select.php', 'page=1&tID=1&action=save&', '68.56.168.23'),
(503, '2009-06-20 03:00:26', 2, 'layout_controller.php', '', '68.56.168.23'),
(504, '2009-06-20 03:00:33', 2, 'layout_controller.php', 'page=&cID=107&', '68.56.168.23'),
(505, '2009-06-20 03:00:35', 2, 'layout_controller.php', 'page=&cID=107&action=edit&', '68.56.168.23'),
(506, '2009-06-20 03:00:45', 2, 'layout_controller.php', 'page=&cID=107&action=save&layout_box_name=categories.php&', '68.56.168.23'),
(507, '2009-06-20 03:00:45', 2, 'layout_controller.php', 'page=&cID=107&', '68.56.168.23'),
(508, '2009-06-20 03:21:08', 2, 'template_select.php', '', '68.56.168.23'),
(509, '2009-06-20 03:21:13', 2, 'template_select.php', 'page=1&tID=1&action=edit&', '68.56.168.23'),
(510, '2009-06-20 03:21:17', 2, 'template_select.php', 'page=1&tID=1&action=save&', '68.56.168.23'),
(511, '2009-06-20 03:21:26', 2, 'layout_controller.php', '', '68.56.168.23'),
(512, '2009-06-20 03:28:20', 2, 'configuration.php', 'gID=19&', '68.56.168.23'),
(513, '2009-06-20 03:28:24', 2, 'configuration.php', 'gID=19&cID=398&action=edit&', '68.56.168.23'),
(514, '2009-06-20 03:28:31', 2, 'configuration.php', 'gID=19&cID=398&action=save&', '68.56.168.23'),
(515, '2009-06-20 03:28:31', 2, 'configuration.php', 'gID=19&cID=398&', '68.56.168.23'),
(516, '2009-06-20 03:28:35', 2, 'configuration.php', 'gID=19&cID=412&action=edit&', '68.56.168.23'),
(517, '2009-06-20 03:28:43', 2, 'configuration.php', 'gID=19&cID=412&action=save&', '68.56.168.23'),
(518, '2009-06-20 03:28:44', 2, 'configuration.php', 'gID=19&cID=412&', '68.56.168.23'),
(519, '2009-06-20 12:35:05', 0, 'login.php ', '', '68.56.168.23'),
(520, '2009-06-20 12:35:13', 0, 'login.php dale', '', '68.56.168.23'),
(521, '2009-06-20 12:35:33', 2, 'categories.php', '', '68.56.168.23'),
(522, '2009-06-20 12:35:40', 2, 'categories.php', 'cPath=&action=new_category&', '68.56.168.23'),
(523, '2009-06-20 12:36:23', 2, 'categories.php', 'action=insert_category&cPath=&', '68.56.168.23'),
(524, '2009-06-20 12:36:23', 2, 'categories.php', 'cPath=&cID=65&', '68.56.168.23'),
(525, '2009-06-20 12:36:30', 2, 'categories.php', 'cPath=65&', '68.56.168.23'),
(526, '2009-06-20 12:36:47', 2, 'categories.php', 'cPath=65&action=new_category&', '68.56.168.23'),
(527, '2009-06-20 12:36:55', 2, 'categories.php', 'action=insert_category&cPath=65&', '68.56.168.23'),
(528, '2009-06-20 12:36:55', 2, 'categories.php', 'cPath=65&cID=66&', '68.56.168.23'),
(529, '2009-06-20 12:38:07', 2, 'categories.php', '', '68.56.168.23'),
(530, '2009-06-20 12:38:15', 2, 'product_types.php', '', '68.56.168.23'),
(531, '2009-06-20 12:38:38', 2, 'categories.php', '', '68.56.168.23');
INSERT INTO `admin_activity_log` (`log_id`, `access_date`, `admin_id`, `page_accessed`, `page_parameters`, `ip_address`) VALUES
(532, '2009-06-20 12:38:52', 2, 'categories.php', 'cPath=65&', '68.56.168.23'),
(533, '2009-06-20 12:40:09', 2, 'categories.php', 'cPath=65_66&', '68.56.168.23'),
(534, '2009-06-20 12:40:13', 2, 'categories.php', 'x=67&y=9&product_type=1&cPath=65_66&action=new_product&', '68.56.168.23'),
(535, '2009-06-20 12:40:13', 2, 'product.php', 'x=67&y=9&product_type=1&cPath=65_66&action=new_product&', '68.56.168.23'),
(536, '2009-06-20 12:40:58', 2, 'product.php', 'cPath=65_66&product_type=1&action=new_product_preview&', '68.56.168.23'),
(537, '2009-06-20 12:41:10', 2, 'categories.php', '', '68.56.168.23'),
(538, '2009-06-20 12:41:29', 2, 'categories.php', 'cPath=65&', '68.56.168.23'),
(539, '2009-06-20 12:41:30', 2, 'categories.php', 'action=setflag_categories&flag=0&cID=65&cPath=&', '68.56.168.23'),
(540, '2009-06-20 12:41:32', 2, 'categories.php', 'action=update_category_status&cPath=&cID=65&', '68.56.168.23'),
(541, '2009-06-20 12:41:33', 2, 'categories.php', 'cPath=&cID=65&', '68.56.168.23'),
(542, '2009-06-20 12:41:48', 2, 'categories.php', 'cPath=65&', '68.56.168.23'),
(543, '2009-06-20 12:41:50', 2, 'categories.php', 'cPath=65_66&', '68.56.168.23'),
(544, '2009-06-20 12:42:06', 2, 'categories.php', 'x=53&y=8&product_type=1&cPath=65_66&action=new_product&', '68.56.168.23'),
(545, '2009-06-20 12:42:07', 2, 'product.php', 'x=53&y=8&product_type=1&cPath=65_66&action=new_product&', '68.56.168.23'),
(546, '2009-06-20 12:42:14', 2, 'categories.php', 'cPath=65_66&', '68.56.168.23'),
(547, '2009-06-20 12:42:16', 2, 'categories.php', 'cPath=65&', '68.56.168.23'),
(548, '2009-06-20 12:42:19', 2, 'categories.php', 'cPath=&cID=65&', '68.56.168.23'),
(549, '2009-06-20 12:42:22', 2, 'categories.php', 'cPath=65&', '68.56.168.23'),
(550, '2009-06-20 12:42:23', 2, 'categories.php', 'action=setflag_categories&flag=1&cID=65&cPath=&', '68.56.168.23'),
(551, '2009-06-20 12:42:26', 2, 'categories.php', 'action=update_category_status&cPath=&cID=65&', '68.56.168.23'),
(552, '2009-06-20 12:42:26', 2, 'categories.php', 'cPath=&cID=65&', '68.56.168.23'),
(553, '2009-06-20 12:42:36', 2, 'categories.php', 'cPath=65&', '68.56.168.23'),
(554, '2009-06-20 12:42:37', 2, 'categories.php', 'cPath=65_66&', '68.56.168.23'),
(555, '2009-06-20 12:42:40', 2, 'categories.php', 'x=32&y=11&product_type=1&cPath=65_66&action=new_product&', '68.56.168.23'),
(556, '2009-06-20 12:42:40', 2, 'product.php', 'x=32&y=11&product_type=1&cPath=65_66&action=new_product&', '68.56.168.23'),
(557, '2009-06-20 12:44:14', 2, 'product.php', 'cPath=65_66&product_type=1&action=new_product_preview&', '68.56.168.23'),
(558, '2009-06-20 12:44:26', 2, 'product.php', 'cPath=65_66&product_type=1&action=insert_product&', '68.56.168.23'),
(559, '2009-06-20 12:44:36', 2, 'product.php', 'cPath=65_66&product_type=1&action=new_product_preview&', '68.56.168.23'),
(560, '2009-06-20 12:44:42', 2, 'product.php', 'cPath=65_66&product_type=1&action=insert_product&', '68.56.168.23'),
(561, '2009-06-20 12:44:42', 2, 'categories.php', 'cPath=65_66&pID=180&', '68.56.168.23'),
(562, '2009-06-20 12:44:54', 2, 'categories.php', '', '68.56.168.23'),
(563, '2009-06-20 12:44:57', 2, 'categories.php', 'cPath=65&', '68.56.168.23'),
(564, '2009-06-20 12:44:58', 2, 'categories.php', 'action=setflag_categories&flag=0&cID=65&cPath=&', '68.56.168.23'),
(565, '2009-06-20 12:45:00', 2, 'categories.php', 'action=update_category_status&cPath=&cID=65&', '68.56.168.23'),
(566, '2009-06-20 12:45:00', 2, 'categories.php', 'cPath=&cID=65&', '68.56.168.23'),
(567, '2009-06-20 12:45:03', 2, 'categories.php', 'cPath=65&', '68.56.168.23'),
(568, '2009-06-20 12:45:05', 2, 'categories.php', 'cPath=65_66&', '68.56.168.23'),
(569, '2009-06-20 12:45:07', 2, 'product.php', 'page=1&product_type=1&cPath=65_66&pID=180&action=new_product&', '68.56.168.23'),
(570, '2009-06-20 12:45:08', 2, 'categories.php', 'action=setflag&flag=1&pID=180&cPath=65_66&page=1&', '68.56.168.23'),
(571, '2009-06-20 12:45:08', 2, 'categories.php', 'cPath=65_66&pID=180&page=1&', '68.56.168.23'),
(572, '2009-06-20 13:05:16', 2, 'stats_customers.php', '', '68.56.168.23'),
(573, '2009-06-20 13:05:20', 2, 'customers.php', 'cID=2&', '68.56.168.23'),
(574, '2009-06-20 13:05:20', 2, 'customers.php', 'cID=2&', '68.56.168.23'),
(575, '2009-06-20 13:05:36', 2, 'customers.php', 'page=1&cID=2&action=edit&', '68.56.168.23'),
(576, '2009-06-20 13:05:56', 2, 'stats_customers.php', '', '68.56.168.23'),
(577, '2009-06-20 13:06:00', 2, 'customers.php', 'cID=2&', '68.56.168.23'),
(578, '2009-06-20 13:06:00', 2, 'customers.php', 'cID=2&', '68.56.168.23'),
(579, '2009-06-20 13:06:16', 2, 'customers.php', 'page=1&cID=2&action=edit&', '68.56.168.23'),
(580, '2009-06-20 13:06:21', 2, 'customers.php', 'cID=2&', '68.56.168.23'),
(581, '2009-06-20 13:06:38', 2, 'stats_customers.php', '', '68.56.168.23'),
(582, '2009-06-20 13:06:44', 2, 'customers.php', 'cID=2&', '68.56.168.23'),
(583, '2009-06-20 13:06:44', 2, 'customers.php', 'cID=2&', '68.56.168.23'),
(584, '2009-06-20 13:06:51', 2, 'customers.php', 'page=1&cID=2&action=edit&', '68.56.168.23'),
(585, '2009-06-20 13:17:01', 2, 'configuration.php', 'gID=19&', '68.56.168.23'),
(586, '2009-06-20 13:20:21', 2, 'configuration.php', 'gID=22&', '68.56.168.23'),
(587, '2009-06-20 13:25:53', 2, 'sqlpatch.php', '', '68.56.168.23'),
(588, '2009-06-20 13:26:01', 2, 'sqlpatch.php', 'action=execute&', '68.56.168.23'),
(589, '2009-06-20 13:28:48', 2, 'configuration.php', 'gID=2&', '68.56.168.23'),
(590, '2009-06-20 13:28:51', 2, 'configuration.php', 'gID=2&cID=544&action=edit&', '68.56.168.23'),
(591, '2009-06-20 13:28:59', 2, 'configuration.php', 'gID=2&cID=544&action=save&', '68.56.168.23'),
(592, '2009-06-20 13:28:59', 2, 'configuration.php', 'gID=2&cID=544&', '68.56.168.23'),
(593, '2009-06-20 19:16:22', 0, 'login.php ', '', '68.56.168.23'),
(594, '2009-06-20 19:16:31', 0, 'login.php dale', '', '68.56.168.23'),
(595, '2009-06-20 19:16:38', 2, 'configuration.php', 'gID=2&', '68.56.168.23'),
(596, '2009-06-20 19:16:45', 2, 'configuration.php', 'gID=3&', '68.56.168.23'),
(597, '2009-06-20 19:17:23', 2, 'configuration.php', 'gID=3&cID=67&action=edit&', '68.56.168.23'),
(598, '2009-06-20 19:18:17', 2, 'configuration.php', 'gID=3&cID=82&action=edit&', '68.56.168.23'),
(599, '2009-06-20 19:19:12', 2, 'configuration.php', 'gID=19&', '68.56.168.23'),
(600, '2009-06-20 20:08:07', 2, 'configuration.php', 'gID=3&', '68.56.168.23'),
(601, '2009-06-20 20:08:21', 2, 'configuration.php', 'gID=3&cID=67&action=edit&', '68.56.168.23'),
(602, '2009-06-20 20:08:26', 2, 'configuration.php', 'gID=3&cID=67&action=save&', '68.56.168.23'),
(603, '2009-06-20 20:08:27', 2, 'configuration.php', 'gID=3&cID=67&', '68.56.168.23'),
(604, '2009-06-20 20:08:36', 2, 'configuration.php', 'gID=3&cID=67&action=edit&', '68.56.168.23'),
(605, '2009-06-20 20:08:40', 2, 'configuration.php', 'gID=3&cID=67&action=save&', '68.56.168.23'),
(606, '2009-06-20 20:08:40', 2, 'configuration.php', 'gID=3&cID=67&', '68.56.168.23'),
(607, '2009-06-20 20:08:57', 2, 'configuration.php', 'gID=3&cID=93&action=edit&', '68.56.168.23'),
(608, '2009-06-20 20:09:04', 2, 'configuration.php', 'gID=3&cID=93&action=save&', '68.56.168.23'),
(609, '2009-06-20 20:09:04', 2, 'configuration.php', 'gID=3&cID=93&', '68.56.168.23'),
(610, '2009-06-20 20:09:12', 2, 'configuration.php', 'gID=3&cID=93&action=edit&', '68.56.168.23'),
(611, '2009-06-20 20:09:16', 2, 'configuration.php', 'gID=3&cID=93&action=save&', '68.56.168.23'),
(612, '2009-06-20 20:09:16', 2, 'configuration.php', 'gID=3&cID=93&', '68.56.168.23'),
(613, '2009-06-20 20:09:27', 2, 'configuration.php', 'gID=22&', '68.56.168.23'),
(614, '2009-06-20 20:09:43', 2, 'configuration.php', 'gID=22&cID=487&action=edit&', '68.56.168.23'),
(615, '2009-06-20 20:09:54', 2, 'configuration.php', 'gID=22&cID=486&action=edit&', '68.56.168.23'),
(616, '2009-06-20 20:10:01', 2, 'configuration.php', 'gID=22&cID=485&action=edit&', '68.56.168.23'),
(617, '2009-06-20 20:10:08', 2, 'configuration.php', 'gID=22&cID=484&action=edit&', '68.56.168.23'),
(618, '2009-06-20 20:11:45', 2, 'configuration.php', 'gID=22&cID=484&action=edit&', '68.56.168.23'),
(619, '2009-06-20 20:19:31', 2, 'configuration.php', 'gID=19&', '68.56.168.23'),
(620, '2009-06-20 20:20:51', 2, 'configuration.php', 'gID=24&', '68.56.168.23'),
(621, '2009-06-20 20:21:19', 2, 'configuration.php', 'gID=1&', '68.56.168.23'),
(622, '2009-06-20 21:22:33', 2, 'salemaker.php', '', '68.56.168.23'),
(623, '2009-06-20 21:25:15', 2, 'store_manager.php', '', '68.56.168.23'),
(624, '2009-06-20 21:27:58', 2, 'configuration.php', 'gID=1&', '68.56.168.23'),
(625, '2009-06-20 21:29:54', 2, 'configuration.php', 'gID=1&cID=28&action=edit&', '68.56.168.23'),
(626, '2009-06-20 21:30:32', 2, 'configuration.php', 'gID=1&cID=28&action=save&', '68.56.168.23'),
(627, '2009-06-20 21:30:32', 2, 'configuration.php', 'gID=1&cID=28&', '68.56.168.23'),
(628, '2009-06-20 21:31:23', 2, 'configuration.php', 'gID=17&', '68.56.168.23'),
(629, '2009-06-20 21:31:41', 2, 'configuration.php', 'gID=4&', '68.56.168.23'),
(630, '2009-06-20 21:34:12', 2, 'layout_controller.php', '', '68.56.168.23'),
(631, '2009-06-20 21:36:28', 2, 'template_select.php', '', '68.56.168.23'),
(632, '2009-06-20 21:50:08', 2, 'ezpages.php', '', '68.56.168.23'),
(633, '2009-06-20 22:15:18', 0, 'login.php ', '', '68.56.168.23'),
(634, '2009-06-20 22:15:30', 0, 'login.php dale', '', '68.56.168.23'),
(635, '2009-06-20 22:17:55', 2, 'configuration.php', 'gID=1&', '68.56.168.23'),
(636, '2009-06-20 22:18:11', 2, 'configuration.php', 'gID=2&', '68.56.168.23'),
(637, '2009-06-20 22:18:20', 2, 'configuration.php', 'gID=4&', '68.56.168.23'),
(638, '2009-06-20 22:18:40', 2, 'configuration.php', 'gID=5&', '68.56.168.23'),
(639, '2009-06-20 22:18:50', 2, 'configuration.php', 'gID=7&', '68.56.168.23'),
(640, '2009-06-20 22:18:59', 2, 'configuration.php', 'gID=7&cID=204&action=edit&', '68.56.168.23'),
(641, '2009-06-20 22:19:14', 2, 'configuration.php', 'gID=7&cID=204&action=save&', '68.56.168.23'),
(642, '2009-06-20 22:19:14', 2, 'configuration.php', 'gID=7&cID=204&', '68.56.168.23'),
(643, '2009-06-20 22:19:25', 2, 'configuration.php', 'gID=8&', '68.56.168.23'),
(644, '2009-06-20 22:19:51', 2, 'configuration.php', 'gID=18&', '68.56.168.23'),
(645, '2009-06-20 22:20:04', 2, 'configuration.php', 'gID=18&cID=384&action=edit&', '68.56.168.23'),
(646, '2009-06-20 22:20:20', 2, 'configuration.php', 'gID=19&', '68.56.168.23'),
(647, '2009-06-20 22:24:03', 2, 'configuration.php', 'gID=19&cID=444&action=edit&', '68.56.168.23'),
(648, '2009-06-20 22:24:42', 2, 'configuration.php', 'gID=19&cID=440&action=edit&', '68.56.168.23'),
(649, '2009-06-20 22:32:27', 0, 'login.php ', '', '68.56.168.23'),
(650, '2009-06-20 22:32:36', 0, 'login.php dale', '', '68.56.168.23'),
(651, '2009-06-21 03:19:55', 0, 'login.php ', '', '68.56.168.23'),
(652, '2009-06-21 03:20:06', 0, 'login.php dale', '', '68.56.168.23'),
(653, '2009-06-21 03:20:12', 2, 'configuration.php', 'gID=2&', '68.56.168.23'),
(654, '2009-06-21 03:20:17', 2, 'configuration.php', 'gID=3&', '68.56.168.23'),
(655, '2009-06-21 03:20:33', 2, 'layout_controller.php', '', '68.56.168.23'),
(656, '2009-06-21 03:21:02', 2, 'layout_controller.php', 'page=&cID=96&', '68.56.168.23'),
(657, '2009-06-21 03:21:23', 2, 'configuration.php', 'gID=19&', '68.56.168.23'),
(658, '2009-06-21 03:29:34', 2, 'configuration.php', 'gID=19&cID=398&action=edit&', '68.56.168.23'),
(659, '2009-06-21 03:29:40', 2, 'configuration.php', 'gID=19&cID=398&action=save&', '68.56.168.23'),
(660, '2009-06-21 03:29:41', 2, 'configuration.php', 'gID=19&cID=398&', '68.56.168.23'),
(661, '2009-06-21 03:29:45', 2, 'configuration.php', 'gID=19&cID=412&action=edit&', '68.56.168.23'),
(662, '2009-06-21 03:29:52', 2, 'configuration.php', 'gID=19&cID=412&action=save&', '68.56.168.23'),
(663, '2009-06-21 03:29:52', 2, 'configuration.php', 'gID=19&cID=412&', '68.56.168.23'),
(664, '2009-06-21 03:30:36', 2, 'configuration.php', 'gID=19&cID=398&action=edit&', '68.56.168.23'),
(665, '2009-06-21 03:30:44', 2, 'configuration.php', 'gID=19&cID=398&action=save&', '68.56.168.23'),
(666, '2009-06-21 03:30:44', 2, 'configuration.php', 'gID=19&cID=398&', '68.56.168.23'),
(667, '2009-06-21 03:30:48', 2, 'configuration.php', 'gID=19&cID=412&action=edit&', '68.56.168.23'),
(668, '2009-06-21 03:30:53', 2, 'configuration.php', 'gID=19&cID=412&action=save&', '68.56.168.23'),
(669, '2009-06-21 03:30:53', 2, 'configuration.php', 'gID=19&cID=412&', '68.56.168.23'),
(670, '2009-06-21 03:34:51', 2, 'configuration.php', 'gID=19&cID=398&action=edit&', '68.56.168.23'),
(671, '2009-06-21 03:34:58', 2, 'configuration.php', 'gID=19&cID=398&action=save&', '68.56.168.23'),
(672, '2009-06-21 03:34:58', 2, 'configuration.php', 'gID=19&cID=398&', '68.56.168.23'),
(673, '2009-06-21 03:35:02', 2, 'configuration.php', 'gID=19&cID=412&action=edit&', '68.56.168.23'),
(674, '2009-06-21 03:35:08', 2, 'configuration.php', 'gID=19&cID=412&action=save&', '68.56.168.23'),
(675, '2009-06-21 03:35:08', 2, 'configuration.php', 'gID=19&cID=412&', '68.56.168.23'),
(676, '2009-06-21 03:37:34', 2, 'configuration.php', 'gID=22&', '68.56.168.23'),
(677, '2009-06-21 03:37:50', 2, 'configuration.php', 'gID=24&', '68.56.168.23'),
(678, '2009-06-21 03:37:55', 2, 'configuration.php', 'gID=24&cID=502&action=edit&', '68.56.168.23'),
(679, '2009-06-21 03:38:02', 2, 'configuration.php', 'gID=24&cID=502&action=save&', '68.56.168.23'),
(680, '2009-06-21 03:38:02', 2, 'configuration.php', 'gID=24&cID=502&', '68.56.168.23'),
(681, '2009-06-21 03:38:36', 2, 'configuration.php', 'gID=24&cID=502&action=edit&', '68.56.168.23'),
(682, '2009-06-21 03:38:40', 2, 'configuration.php', 'gID=24&cID=502&action=save&', '68.56.168.23'),
(683, '2009-06-21 03:38:40', 2, 'configuration.php', 'gID=24&cID=502&', '68.56.168.23'),
(684, '2009-06-21 03:48:01', 0, 'login.php ', '', '68.56.168.23'),
(685, '2009-06-21 03:48:07', 0, 'login.php dale', '', '68.56.168.23'),
(686, '2009-06-21 03:48:20', 2, 'configuration.php', 'gID=19&', '68.56.168.23'),
(687, '2009-06-21 03:48:39', 2, 'layout_controller.php', '', '68.56.168.23'),
(688, '2009-06-21 03:48:47', 2, 'layout_controller.php', 'page=&cID=97&', '68.56.168.23'),
(689, '2009-06-21 03:48:49', 2, 'layout_controller.php', 'page=&cID=97&action=edit&', '68.56.168.23'),
(690, '2009-06-21 03:49:13', 2, 'layout_controller.php', 'page=&cID=97&action=save&layout_box_name=search_header.php&', '68.56.168.23'),
(691, '2009-06-21 03:49:13', 2, 'layout_controller.php', 'page=&cID=97&', '68.56.168.23'),
(692, '2009-06-21 03:53:08', 2, 'layout_controller.php', '', '68.56.168.23'),
(693, '2009-06-21 03:53:21', 2, 'layout_controller.php', 'page=&cID=90&', '68.56.168.23'),
(694, '2009-06-21 03:53:23', 2, 'layout_controller.php', 'page=&cID=90&action=edit&', '68.56.168.23'),
(695, '2009-06-21 03:53:28', 2, 'layout_controller.php', 'page=&cID=90&action=save&layout_box_name=more_information.php&', '68.56.168.23'),
(696, '2009-06-21 03:53:28', 2, 'layout_controller.php', 'page=&cID=90&', '68.56.168.23'),
(697, '2009-06-21 03:53:33', 2, 'layout_controller.php', 'page=&cID=80&', '68.56.168.23'),
(698, '2009-06-21 03:53:36', 2, 'layout_controller.php', 'page=&cID=80&action=edit&', '68.56.168.23'),
(699, '2009-06-21 03:53:40', 2, 'layout_controller.php', 'page=&cID=80&action=save&layout_box_name=best_sellers.php&', '68.56.168.23'),
(700, '2009-06-21 03:53:41', 2, 'layout_controller.php', 'page=&cID=80&', '68.56.168.23'),
(701, '2009-06-21 03:53:49', 2, 'layout_controller.php', 'page=&cID=96&', '68.56.168.23'),
(702, '2009-06-21 03:53:52', 2, 'layout_controller.php', 'page=&cID=96&action=edit&', '68.56.168.23'),
(703, '2009-06-21 03:53:55', 2, 'layout_controller.php', 'page=&cID=96&action=save&layout_box_name=search.php&', '68.56.168.23'),
(704, '2009-06-21 03:53:56', 2, 'layout_controller.php', 'page=&cID=96&', '68.56.168.23'),
(705, '2009-06-21 05:07:12', 0, 'login.php ', '', '68.56.168.23'),
(706, '2009-06-21 05:07:19', 0, 'login.php dale', '', '68.56.168.23'),
(707, '2009-06-21 05:07:42', 2, 'layout_controller.php', '', '68.56.168.23'),
(708, '2009-06-21 05:07:56', 2, 'layout_controller.php', 'page=&cID=129&', '68.56.168.23'),
(709, '2009-06-21 05:07:59', 2, 'layout_controller.php', 'page=&cID=129&action=edit&', '68.56.168.23'),
(710, '2009-06-21 05:08:31', 2, 'layout_controller.php', 'page=&cID=129&action=save&layout_box_name=login_header.php&', '68.56.168.23'),
(711, '2009-06-21 05:08:31', 2, 'layout_controller.php', 'page=&cID=129&', '68.56.168.23'),
(712, '2009-06-22 15:55:46', 0, 'login.php ', '', '68.56.168.23'),
(713, '2009-06-22 15:56:26', 0, 'login.php ', '', '68.56.168.23'),
(714, '2009-06-22 16:58:30', 0, 'login.php ', '', '68.56.168.23'),
(715, '2009-06-22 19:47:17', 0, 'login.php ', '', '68.56.168.23'),
(716, '2009-06-22 19:47:26', 0, 'login.php dale', '', '68.56.168.23'),
(717, '2009-06-22 19:47:29', 2, 'login.php', '', '68.56.168.23'),
(718, '2009-06-22 19:47:54', 2, 'configuration.php', 'gID=22&', '68.56.168.23'),
(719, '2009-06-22 19:48:01', 2, 'configuration.php', 'gID=22&cID=477&action=edit&', '68.56.168.23'),
(720, '2009-06-22 19:49:50', 2, 'configuration.php', 'gID=22&cID=476&action=edit&', '68.56.168.23'),
(721, '2009-06-22 19:50:06', 2, 'configuration.php', 'gID=22&cID=477&action=edit&', '68.56.168.23'),
(722, '2009-06-22 20:08:54', 2, 'configuration.php', 'gID=8&', '68.56.168.23'),
(723, '2009-06-22 20:09:52', 2, 'configuration.php', 'gID=24&', '68.56.168.23'),
(724, '2009-06-22 20:10:01', 2, 'configuration.php', 'gID=24&cID=502&action=edit&', '68.56.168.23'),
(725, '2009-06-22 20:10:22', 2, 'configuration.php', 'gID=24&cID=506&action=edit&', '68.56.168.23'),
(726, '2009-06-22 20:10:43', 2, 'configuration.php', 'gID=24&cID=514&action=edit&', '68.56.168.23'),
(727, '2009-06-22 20:11:21', 2, 'configuration.php', 'gID=24&cID=514&action=save&', '68.56.168.23'),
(728, '2009-06-22 20:11:21', 2, 'configuration.php', 'gID=24&cID=514&', '68.56.168.23'),
(729, '2009-06-22 20:12:23', 2, 'featured.php', '', '68.56.168.23'),
(730, '2009-06-22 20:12:50', 2, 'featured.php', 'page=1&fID=4&action=edit&', '68.56.168.23'),
(731, '2009-06-22 20:12:51', 2, 'featured.php', 'page=1&fID=4&action=edit&', '68.56.168.23'),
(732, '2009-06-22 20:13:42', 2, 'featured.php', 'page=1&action=update&go_back=&', '68.56.168.23'),
(733, '2009-06-22 20:13:42', 2, 'featured.php', 'page=1&fID=4&', '68.56.168.23'),
(734, '2009-06-22 20:14:09', 2, 'configuration.php', 'gID=3&', '68.56.168.23'),
(735, '2009-06-22 20:14:15', 2, 'configuration.php', 'gID=2&', '68.56.168.23'),
(736, '2009-06-22 20:14:32', 2, 'layout_controller.php', '', '68.56.168.23'),
(737, '2009-06-22 20:14:55', 2, 'template_select.php', '', '68.56.168.23'),
(738, '2009-06-22 20:15:03', 2, 'template_select.php', 'page=1&tID=1&action=edit&', '68.56.168.23'),
(739, '2009-06-22 20:15:10', 2, 'template_select.php', 'page=1&tID=1&action=save&', '68.56.168.23'),
(740, '2009-06-22 20:15:56', 2, 'configuration.php', 'gID=19&', '68.56.168.23'),
(741, '2009-06-22 20:16:02', 2, 'configuration.php', 'gID=19&cID=398&action=edit&', '68.56.168.23'),
(742, '2009-06-22 20:16:11', 2, 'configuration.php', 'gID=19&cID=398&action=save&', '68.56.168.23'),
(743, '2009-06-22 20:16:11', 2, 'configuration.php', 'gID=19&cID=398&', '68.56.168.23'),
(744, '2009-06-22 20:16:15', 2, 'configuration.php', 'gID=19&cID=412&action=edit&', '68.56.168.23'),
(745, '2009-06-22 20:16:23', 2, 'configuration.php', 'gID=19&cID=412&action=save&', '68.56.168.23'),
(746, '2009-06-22 20:16:23', 2, 'configuration.php', 'gID=19&cID=412&', '68.56.168.23'),
(747, '2009-06-22 21:56:37', 0, 'login.php ', '', '68.56.168.23'),
(748, '2009-06-22 21:56:46', 0, 'login.php admin', '', '68.56.168.23'),
(749, '2009-06-22 21:56:53', 0, 'login.php dale', '', '68.56.168.23'),
(750, '2009-06-22 21:57:14', 2, 'configuration.php', 'gID=15&', '68.56.168.23'),
(751, '2009-06-22 21:57:29', 2, 'configuration.php', 'gID=15&cID=305&action=edit&', '68.56.168.23'),
(752, '2009-06-22 22:05:29', 2, 'alt_nav.php', '', '68.56.168.23'),
(753, '2009-06-22 22:05:36', 2, 'alt_nav.php', '', '68.56.168.23'),
(754, '2009-06-22 22:05:46', 2, 'configuration.php', 'gID=1&', '68.56.168.23'),
(755, '2009-06-22 22:06:01', 2, 'configuration.php', 'gID=15&', '68.56.168.23'),
(756, '2009-06-22 22:06:06', 2, 'configuration.php', 'gID=15&cID=305&action=edit&', '68.56.168.23'),
(757, '2009-06-22 22:06:31', 2, 'configuration.php', 'gID=15&cID=305&action=save&', '68.56.168.23'),
(758, '2009-06-22 22:06:31', 2, 'configuration.php', 'gID=15&cID=305&', '68.56.168.23'),
(759, '2009-06-22 22:08:37', 2, 'configuration.php', 'gID=19&cID=412&', '68.56.168.23'),
(760, '2009-06-22 22:08:53', 2, 'configuration.php', 'gID=1&', '68.56.168.23'),
(761, '2009-06-22 23:07:52', 0, 'login.php ', '', '68.56.168.23'),
(762, '2009-06-22 23:08:00', 0, 'login.php dale', '', '68.56.168.23'),
(763, '2009-06-22 23:08:08', 2, 'configuration.php', 'gID=19&', '68.56.168.23'),
(764, '2009-06-22 23:14:32', 2, 'configuration.php', 'gID=21&', '68.56.168.23'),
(765, '2009-06-22 23:14:36', 2, 'configuration.php', 'gID=21&cID=463&action=edit&', '68.56.168.23'),
(766, '2009-06-23 00:02:46', 0, 'login.php ', '', '68.56.168.23'),
(767, '2009-06-23 00:02:54', 0, 'login.php dale', '', '68.56.168.23'),
(768, '2009-06-23 00:03:02', 2, 'template_select.php', '', '68.56.168.23'),
(769, '2009-06-23 00:03:07', 2, 'template_select.php', 'page=1&tID=1&action=edit&', '68.56.168.23'),
(770, '2009-06-23 00:03:12', 2, 'template_select.php', 'page=1&tID=1&action=save&', '68.56.168.23'),
(771, '2009-06-23 00:03:44', 2, 'layout_controller.php', '', '68.56.168.23'),
(772, '2009-06-23 00:04:16', 2, 'configuration.php', 'gID=19&', '68.56.168.23'),
(773, '2009-06-23 00:04:20', 2, 'configuration.php', 'gID=19&cID=398&action=edit&', '68.56.168.23'),
(774, '2009-06-23 00:04:28', 2, 'configuration.php', 'gID=19&cID=398&action=save&', '68.56.168.23'),
(775, '2009-06-23 00:04:28', 2, 'configuration.php', 'gID=19&cID=398&', '68.56.168.23'),
(776, '2009-06-23 00:04:32', 2, 'configuration.php', 'gID=19&cID=412&action=edit&', '68.56.168.23'),
(777, '2009-06-23 00:04:44', 2, 'configuration.php', 'gID=19&cID=412&action=save&', '68.56.168.23'),
(778, '2009-06-23 00:04:44', 2, 'configuration.php', 'gID=19&cID=412&', '68.56.168.23'),
(779, '2009-06-23 11:25:39', 0, 'login.php ', '', '68.56.168.23'),
(780, '2009-06-23 11:25:51', 0, 'login.php dale', '', '68.56.168.23'),
(781, '2009-06-23 15:15:43', 0, 'login.php ', '', '68.56.168.23'),
(782, '2009-06-23 15:15:53', 0, 'login.php dale', '', '68.56.168.23'),
(783, '2009-06-23 15:16:04', 2, 'configuration.php', 'gID=22&', '68.56.168.23'),
(784, '2009-06-23 15:16:26', 2, 'configuration.php', 'gID=24&', '68.56.168.23'),
(785, '2009-06-23 15:16:39', 2, 'configuration.php', 'gID=24&cID=518&action=edit&', '68.56.168.23'),
(786, '2009-06-23 15:16:44', 2, 'configuration.php', 'gID=24&cID=518&action=save&', '68.56.168.23'),
(787, '2009-06-23 15:16:44', 2, 'configuration.php', 'gID=24&cID=518&', '68.56.168.23'),
(788, '2009-06-23 16:52:23', 0, 'login.php ', '', '68.56.168.23'),
(789, '2009-06-23 16:52:32', 0, 'login.php dale', '', '68.56.168.23'),
(790, '2009-06-23 16:52:37', 2, 'configuration.php', 'gID=22&', '68.56.168.23'),
(791, '2009-06-23 16:52:57', 2, 'configuration.php', 'gID=24&', '68.56.168.23'),
(792, '2009-06-23 16:53:05', 2, 'configuration.php', 'gID=24&cID=518&action=edit&', '68.56.168.23'),
(793, '2009-06-23 16:53:10', 2, 'configuration.php', 'gID=24&cID=518&action=save&', '68.56.168.23'),
(794, '2009-06-23 16:53:10', 2, 'configuration.php', 'gID=24&cID=518&', '68.56.168.23'),
(795, '2009-06-23 17:20:21', 2, 'configuration.php', 'gID=24&cID=520&action=edit&', '68.56.168.23'),
(796, '2009-06-23 17:20:41', 2, 'configuration.php', 'gID=1&', '68.56.168.23'),
(797, '2009-06-23 17:20:58', 2, 'configuration.php', 'gID=22&', '68.56.168.23'),
(798, '2009-06-23 17:21:15', 2, 'configuration.php', 'gID=22&cID=487&action=edit&', '68.56.168.23'),
(799, '2009-06-23 17:21:25', 2, 'configuration.php', 'gID=22&cID=487&action=save&', '68.56.168.23'),
(800, '2009-06-23 17:21:26', 2, 'configuration.php', 'gID=22&cID=487&', '68.56.168.23'),
(801, '2009-06-23 18:19:49', 0, 'login.php ', '', '68.56.168.23'),
(802, '2009-06-23 18:20:08', 0, 'login.php dale', '', '68.56.168.23'),
(803, '2009-06-23 18:20:32', 2, 'configuration.php', 'gID=23&', '68.56.168.23'),
(804, '2009-06-23 18:20:41', 2, 'configuration.php', 'gID=22&', '68.56.168.23'),
(805, '2009-06-23 18:20:55', 2, 'configuration.php', 'gID=23&', '68.56.168.23'),
(806, '2009-06-23 18:21:09', 2, 'configuration.php', 'gID=19&', '68.56.168.23'),
(807, '2009-06-23 18:21:43', 2, 'configuration.php', 'gID=19&', '68.56.168.23'),
(808, '2009-06-23 18:22:01', 2, 'configuration.php', 'gID=24&', '68.56.168.23'),
(809, '2009-06-23 18:22:08', 2, 'configuration.php', 'gID=24&cID=518&action=edit&', '68.56.168.23'),
(810, '2009-06-23 18:22:13', 2, 'configuration.php', 'gID=24&cID=518&action=save&', '68.56.168.23'),
(811, '2009-06-23 18:22:14', 2, 'configuration.php', 'gID=24&cID=518&', '68.56.168.23'),
(812, '2009-06-23 18:58:29', 2, 'configuration.php', 'gID=18&', '68.56.168.23'),
(813, '2009-06-23 18:58:55', 2, 'configuration.php', 'gID=19&', '68.56.168.23'),
(814, '2009-06-23 18:59:12', 2, 'configuration.php', 'gID=8&', '68.56.168.23'),
(815, '2009-06-23 18:59:32', 2, 'configuration.php', 'gID=8&cID=216&action=edit&', '68.56.168.23'),
(816, '2009-06-23 18:59:45', 2, 'configuration.php', 'gID=8&cID=216&action=save&', '68.56.168.23'),
(817, '2009-06-23 18:59:45', 2, 'configuration.php', 'gID=8&cID=216&', '68.56.168.23'),
(818, '2009-06-23 19:00:10', 2, 'configuration.php', 'gID=8&cID=216&action=edit&', '68.56.168.23'),
(819, '2009-06-23 19:00:16', 2, 'configuration.php', 'gID=8&cID=216&action=save&', '68.56.168.23'),
(820, '2009-06-23 19:00:17', 2, 'configuration.php', 'gID=8&cID=216&', '68.56.168.23'),
(821, '2009-06-23 19:00:42', 2, 'configuration.php', 'gID=8&cID=223&action=edit&', '68.56.168.23'),
(822, '2009-06-23 19:01:19', 2, 'configuration.php', 'gID=8&cID=223&action=save&', '68.56.168.23'),
(823, '2009-06-23 19:01:19', 2, 'configuration.php', 'gID=8&cID=223&', '68.56.168.23'),
(824, '2009-06-23 19:01:25', 2, 'configuration.php', 'gID=8&cID=222&action=edit&', '68.56.168.23'),
(825, '2009-06-23 19:01:36', 2, 'configuration.php', 'gID=8&cID=221&action=edit&', '68.56.168.23'),
(826, '2009-06-23 19:01:55', 2, 'configuration.php', 'gID=8&cID=219&action=edit&', '68.56.168.23'),
(827, '2009-06-23 19:02:08', 2, 'configuration.php', 'gID=8&cID=219&action=save&', '68.56.168.23'),
(828, '2009-06-23 19:02:08', 2, 'configuration.php', 'gID=8&cID=219&', '68.56.168.23'),
(829, '2009-06-23 19:02:24', 2, 'configuration.php', 'gID=8&cID=219&action=edit&', '68.56.168.23'),
(830, '2009-06-23 19:02:33', 2, 'configuration.php', 'gID=8&cID=219&action=save&', '68.56.168.23'),
(831, '2009-06-23 19:02:33', 2, 'configuration.php', 'gID=8&cID=219&', '68.56.168.23'),
(832, '2009-06-23 19:39:26', 0, 'login.php ', '', '68.56.168.23'),
(833, '2009-06-23 19:39:36', 0, 'login.php dale', '', '68.56.168.23'),
(834, '2009-06-23 19:39:57', 2, 'orders.php', 'oID=1&origin=index&', '68.56.168.23'),
(835, '2009-06-23 19:40:03', 2, 'orders.php', 'origin=index&page=1&oID=1&action=edit&', '68.56.168.23'),
(836, '2009-06-23 19:40:18', 2, 'orders.php', 'origin=index&page=1&oID=1&action=update_order&', '68.56.168.23'),
(837, '2009-06-23 19:40:19', 2, 'orders.php', 'origin=index&page=1&oID=1&action=edit&', '68.56.168.23'),
(838, '2009-06-23 19:41:11', 2, 'stats_customers.php', '', '68.56.168.23'),
(839, '2009-06-23 19:41:19', 2, 'customers.php', 'cID=2&', '68.56.168.23'),
(840, '2009-06-23 19:41:20', 2, 'customers.php', 'cID=2&', '68.56.168.23'),
(841, '2009-06-23 19:41:59', 2, 'coupon_admin.php', '', '68.56.168.23'),
(842, '2009-06-23 19:42:13', 2, 'configuration.php', 'gID=18&', '68.56.168.23'),
(843, '2009-06-23 19:42:20', 2, 'configuration.php', 'gID=18&cID=392&action=edit&', '68.56.168.23'),
(844, '2009-06-23 19:42:45', 2, 'configuration.php', 'gID=18&cID=393&action=edit&', '68.56.168.23'),
(845, '2009-06-23 19:42:52', 2, 'configuration.php', 'gID=18&cID=391&action=edit&', '68.56.168.23'),
(846, '2009-06-23 19:43:22', 2, 'configuration.php', 'gID=18&cID=378&action=edit&', '68.56.168.23'),
(847, '2009-06-23 19:44:28', 2, 'configuration.php', 'gID=18&cID=389&action=edit&', '68.56.168.23'),
(848, '2009-06-23 19:49:14', 2, 'categories.php', '', '68.56.168.23'),
(849, '2009-06-23 19:49:24', 2, 'categories.php', 'cPath=&action=new_category&', '68.56.168.23'),
(850, '2009-06-23 19:50:02', 2, 'categories.php', 'action=insert_category&cPath=&', '68.56.168.23'),
(851, '2009-06-23 19:50:03', 2, 'categories.php', 'cPath=&cID=67&', '68.56.168.23'),
(852, '2009-06-23 19:50:21', 2, 'categories.php', 'cPath=67&', '68.56.168.23'),
(853, '2009-06-23 19:50:30', 2, 'categories.php', 'cPath=67&action=new_category&', '68.56.168.23'),
(854, '2009-06-23 19:50:51', 2, 'categories.php', 'action=insert_category&cPath=67&', '68.56.168.23'),
(855, '2009-06-23 19:50:51', 2, 'categories.php', 'cPath=67&cID=68&', '68.56.168.23'),
(856, '2009-06-23 19:51:30', 2, 'categories.php', 'cPath=0&', '68.56.168.23'),
(857, '2009-06-23 19:51:42', 2, 'categories.php', 'cPath=0_67&', '68.56.168.23'),
(858, '2009-06-23 19:51:42', 2, 'categories.php', 'cPath=0_67&', '68.56.168.23'),
(859, '2009-06-23 19:51:49', 2, 'categories.php', 'cPath=0_67_68&', '68.56.168.23'),
(860, '2009-06-23 19:51:53', 2, 'categories.php', 'x=36&y=8&product_type=1&cPath=0_67_68&action=new_product&', '68.56.168.23'),
(861, '2009-06-23 19:51:53', 2, 'product.php', 'x=36&y=8&product_type=1&cPath=0_67_68&action=new_product&', '68.56.168.23'),
(862, '2009-06-23 19:54:09', 2, 'product.php', 'cPath=0_67_68&product_type=1&action=new_product_preview&', '68.56.168.23'),
(863, '2009-06-23 19:54:15', 2, 'product.php', 'cPath=0_67_68&product_type=1&action=insert_product&', '68.56.168.23'),
(864, '2009-06-23 19:54:22', 2, 'product.php', 'cPath=0_67_68&product_type=1&action=new_product_preview&', '68.56.168.23'),
(865, '2009-06-23 19:54:26', 2, 'product.php', 'cPath=0_67_68&product_type=1&action=insert_product&', '68.56.168.23'),
(866, '2009-06-23 19:54:36', 2, 'product.php', 'cPath=0_67_68&product_type=1&action=new_product_preview&', '68.56.168.23'),
(867, '2009-06-23 19:54:38', 2, 'product.php', 'cPath=0_67_68&product_type=1&action=insert_product&', '68.56.168.23'),
(868, '2009-06-23 19:54:39', 2, 'categories.php', 'cPath=0_67_68&pID=181&', '68.56.168.23'),
(869, '2009-06-23 19:55:30', 2, 'product.php', 'page=1&product_type=1&cPath=0_67_68&pID=181&action=new_product&', '68.56.168.23'),
(870, '2009-06-23 19:55:38', 2, 'product.php', 'cPath=0_67_68&product_type=1&pID=181&action=new_product&', '68.56.168.23'),
(871, '2009-06-23 19:56:07', 2, 'product.php', 'cPath=0_67_68&product_type=1&pID=181&action=new_product_preview&', '68.56.168.23'),
(872, '2009-06-23 19:56:10', 2, 'product.php', 'cPath=0_67_68&product_type=1&pID=181&action=update_product&', '68.56.168.23'),
(873, '2009-06-23 19:56:11', 2, 'categories.php', 'cPath=0_67_68&pID=181&', '68.56.168.23'),
(874, '2009-06-23 19:58:28', 2, 'categories.php', 'cPath=0&', '68.56.168.23'),
(875, '2009-06-23 19:58:37', 2, 'categories.php', 'cPath=0_1&', '68.56.168.23'),
(876, '2009-06-23 19:58:39', 2, 'categories.php', 'cPath=0&cID=1&action=delete_category&', '68.56.168.23'),
(877, '2009-06-23 19:58:50', 2, 'categories.php', 'action=delete_category_confirm&cPath=0&', '68.56.168.23'),
(878, '2009-06-23 19:58:50', 2, 'categories.php', 'cPath=0&', '68.56.168.23'),
(879, '2009-06-23 19:58:56', 2, 'categories.php', 'cPath=0_2&', '68.56.168.23'),
(880, '2009-06-23 19:58:57', 2, 'categories.php', 'cPath=0&cID=2&action=delete_category&', '68.56.168.23'),
(881, '2009-06-23 19:59:00', 2, 'categories.php', 'action=delete_category_confirm&cPath=0&', '68.56.168.23'),
(882, '2009-06-23 19:59:00', 2, 'categories.php', 'cPath=0&', '68.56.168.23'),
(883, '2009-06-23 19:59:04', 2, 'categories.php', 'cPath=0_3&', '68.56.168.23'),
(884, '2009-06-23 19:59:05', 2, 'categories.php', 'cPath=0&cID=3&action=delete_category&', '68.56.168.23'),
(885, '2009-06-23 19:59:07', 2, 'categories.php', 'action=delete_category_confirm&cPath=0&', '68.56.168.23'),
(886, '2009-06-23 19:59:08', 2, 'categories.php', 'cPath=0&', '68.56.168.23'),
(887, '2009-06-23 19:59:21', 2, 'categories.php', 'cPath=0_22&', '68.56.168.23'),
(888, '2009-06-23 19:59:24', 2, 'categories.php', 'cPath=0&cID=22&action=delete_category&', '68.56.168.23'),
(889, '2009-06-23 19:59:27', 2, 'categories.php', 'action=delete_category_confirm&cPath=0&', '68.56.168.23'),
(890, '2009-06-23 19:59:27', 2, 'categories.php', 'cPath=0&', '68.56.168.23'),
(891, '2009-06-23 19:59:34', 2, 'categories.php', 'cPath=0_25&', '68.56.168.23'),
(892, '2009-06-23 19:59:35', 2, 'categories.php', 'cPath=0&cID=25&action=delete_category&', '68.56.168.23'),
(893, '2009-06-23 19:59:36', 2, 'categories.php', 'action=delete_category_confirm&cPath=0&', '68.56.168.23'),
(894, '2009-06-23 19:59:37', 2, 'categories.php', 'cPath=0&', '68.56.168.23'),
(895, '2009-06-23 19:59:41', 2, 'categories.php', 'cPath=0_28&', '68.56.168.23'),
(896, '2009-06-23 19:59:42', 2, 'categories.php', 'cPath=0&cID=28&action=delete_category&', '68.56.168.23'),
(897, '2009-06-23 19:59:45', 2, 'categories.php', 'action=delete_category_confirm&cPath=0&', '68.56.168.23'),
(898, '2009-06-23 19:59:45', 2, 'categories.php', 'cPath=0&', '68.56.168.23'),
(899, '2009-06-23 19:59:48', 2, 'categories.php', 'cPath=0_49&', '68.56.168.23'),
(900, '2009-06-23 19:59:50', 2, 'categories.php', 'cPath=0&cID=49&action=delete_category&', '68.56.168.23'),
(901, '2009-06-23 19:59:51', 2, 'categories.php', 'action=delete_category_confirm&cPath=0&', '68.56.168.23'),
(902, '2009-06-23 19:59:52', 2, 'categories.php', 'cPath=0&', '68.56.168.23'),
(903, '2009-06-23 19:59:55', 2, 'categories.php', 'cPath=0_23&', '68.56.168.23'),
(904, '2009-06-23 19:59:56', 2, 'categories.php', 'cPath=0&cID=23&action=delete_category&', '68.56.168.23'),
(905, '2009-06-23 19:59:59', 2, 'categories.php', 'action=delete_category_confirm&cPath=0&', '68.56.168.23'),
(906, '2009-06-23 20:00:00', 2, 'categories.php', 'cPath=0&', '68.56.168.23'),
(907, '2009-06-23 20:00:04', 2, 'categories.php', 'cPath=0_24&', '68.56.168.23'),
(908, '2009-06-23 20:00:05', 2, 'categories.php', 'cPath=0&cID=24&action=delete_category&', '68.56.168.23'),
(909, '2009-06-23 20:00:07', 2, 'categories.php', 'action=delete_category_confirm&cPath=0&', '68.56.168.23'),
(910, '2009-06-23 20:00:08', 2, 'categories.php', 'cPath=0&', '68.56.168.23'),
(911, '2009-06-23 20:00:12', 2, 'categories.php', 'cPath=0_48&', '68.56.168.23'),
(912, '2009-06-23 20:00:13', 2, 'categories.php', 'cPath=0&cID=48&action=delete_category&', '68.56.168.23'),
(913, '2009-06-23 20:00:15', 2, 'categories.php', 'action=delete_category_confirm&cPath=0&', '68.56.168.23'),
(914, '2009-06-23 20:00:16', 2, 'categories.php', 'cPath=0&', '68.56.168.23'),
(915, '2009-06-23 20:00:20', 2, 'categories.php', 'cPath=0_63&', '68.56.168.23'),
(916, '2009-06-23 20:00:21', 2, 'categories.php', 'cPath=0&cID=63&action=delete_category&', '68.56.168.23'),
(917, '2009-06-23 20:00:23', 2, 'categories.php', 'action=delete_category_confirm&cPath=0&', '68.56.168.23'),
(918, '2009-06-23 20:00:24', 2, 'categories.php', 'cPath=0&', '68.56.168.23'),
(919, '2009-06-23 20:00:26', 2, 'categories.php', 'cPath=0_50&', '68.56.168.23'),
(920, '2009-06-23 20:00:27', 2, 'categories.php', 'cPath=0&cID=50&action=delete_category&', '68.56.168.23'),
(921, '2009-06-23 20:00:29', 2, 'categories.php', 'action=delete_category_confirm&cPath=0&', '68.56.168.23'),
(922, '2009-06-23 20:00:30', 2, 'categories.php', 'cPath=0&', '68.56.168.23'),
(923, '2009-06-23 20:00:34', 2, 'categories.php', 'cPath=0_33&', '68.56.168.23'),
(924, '2009-06-23 20:00:35', 2, 'categories.php', 'cPath=0&cID=33&action=delete_category&', '68.56.168.23'),
(925, '2009-06-23 20:00:38', 2, 'categories.php', 'action=delete_category_confirm&cPath=0&', '68.56.168.23'),
(926, '2009-06-23 20:00:38', 2, 'categories.php', 'cPath=0&', '68.56.168.23'),
(927, '2009-06-23 20:00:42', 2, 'categories.php', 'cPath=0_21&', '68.56.168.23'),
(928, '2009-06-23 20:00:43', 2, 'categories.php', 'cPath=0&cID=21&action=delete_category&', '68.56.168.23'),
(929, '2009-06-23 20:00:48', 2, 'categories.php', 'cPath=0&cID=21&', '68.56.168.23'),
(930, '2009-06-23 20:00:53', 2, 'categories.php', 'cPath=0_53&', '68.56.168.23'),
(931, '2009-06-23 20:00:54', 2, 'categories.php', 'cPath=0&cID=53&action=delete_category&', '68.56.168.23'),
(932, '2009-06-23 20:00:56', 2, 'categories.php', 'action=delete_category_confirm&cPath=0&', '68.56.168.23'),
(933, '2009-06-23 20:00:56', 2, 'categories.php', 'cPath=0&', '68.56.168.23'),
(934, '2009-06-23 20:00:59', 2, 'categories.php', 'cPath=0_54&', '68.56.168.23'),
(935, '2009-06-23 20:01:00', 2, 'categories.php', 'cPath=0&cID=54&action=delete_category&', '68.56.168.23'),
(936, '2009-06-23 20:01:03', 2, 'categories.php', 'action=delete_category_confirm&cPath=0&', '68.56.168.23'),
(937, '2009-06-23 20:01:03', 2, 'categories.php', 'cPath=0&', '68.56.168.23'),
(938, '2009-06-23 20:01:07', 2, 'categories.php', 'cPath=0_64&', '68.56.168.23'),
(939, '2009-06-23 20:01:08', 2, 'categories.php', 'cPath=0&cID=64&action=delete_category&', '68.56.168.23'),
(940, '2009-06-23 20:01:12', 2, 'categories.php', 'action=delete_category_confirm&cPath=0&', '68.56.168.23'),
(941, '2009-06-23 20:01:12', 2, 'categories.php', 'cPath=0&', '68.56.168.23'),
(942, '2009-06-23 20:01:17', 2, 'categories.php', 'cPath=0_62&', '68.56.168.23'),
(943, '2009-06-23 20:01:18', 2, 'categories.php', 'cPath=0&cID=62&action=delete_category&', '68.56.168.23'),
(944, '2009-06-23 20:01:20', 2, 'categories.php', 'action=delete_category_confirm&cPath=0&', '68.56.168.23'),
(945, '2009-06-23 20:01:20', 2, 'categories.php', 'cPath=0&', '68.56.168.23'),
(946, '2009-06-23 20:02:25', 2, 'categories.php', 'cPath=0_21&', '68.56.168.23'),
(947, '2009-06-23 20:02:33', 2, 'product.php', 'page=1&product_type=1&cPath=0_21&pID=28&action=new_product&', '68.56.168.23'),
(948, '2009-06-23 20:02:34', 2, 'product.php', 'cPath=0_21&product_type=1&pID=28&action=delete_product&', '68.56.168.23'),
(949, '2009-06-23 20:02:37', 2, 'product.php', 'action=delete_product_confirm&product_type=1&cPath=0_21&page=1&', '68.56.168.23'),
(950, '2009-06-23 20:02:38', 2, 'categories.php', 'cPath=0_21&', '68.56.168.23'),
(951, '2009-06-23 20:02:41', 2, 'product.php', 'page=1&product_type=1&cPath=0_21&pID=29&action=new_product&', '68.56.168.23'),
(952, '2009-06-23 20:02:42', 2, 'product.php', 'cPath=0_21&product_type=1&pID=29&action=delete_product&', '68.56.168.23'),
(953, '2009-06-23 20:02:44', 2, 'product.php', 'action=delete_product_confirm&product_type=1&cPath=0_21&page=1&', '68.56.168.23'),
(954, '2009-06-23 20:02:45', 2, 'categories.php', 'cPath=0_21&', '68.56.168.23'),
(955, '2009-06-23 20:02:48', 2, 'product.php', 'page=1&product_type=1&cPath=0_21&pID=30&action=new_product&', '68.56.168.23'),
(956, '2009-06-23 20:02:49', 2, 'product.php', 'cPath=0_21&product_type=1&pID=30&action=delete_product&', '68.56.168.23'),
(957, '2009-06-23 20:02:52', 2, 'product.php', 'action=delete_product_confirm&product_type=1&cPath=0_21&page=1&', '68.56.168.23'),
(958, '2009-06-23 20:02:52', 2, 'categories.php', 'cPath=0_21&', '68.56.168.23'),
(959, '2009-06-23 20:02:57', 2, 'product.php', 'page=1&product_type=1&cPath=0_21&pID=47&action=new_product&', '68.56.168.23'),
(960, '2009-06-23 20:02:58', 2, 'product.php', 'cPath=0_21&product_type=1&pID=47&action=delete_product&', '68.56.168.23'),
(961, '2009-06-23 20:03:00', 2, 'product.php', 'action=delete_product_confirm&product_type=1&cPath=0_21&page=1&', '68.56.168.23'),
(962, '2009-06-23 20:03:01', 2, 'categories.php', 'cPath=0_21&', '68.56.168.23'),
(963, '2009-06-23 20:03:51', 2, 'featured.php', '', '68.56.168.23'),
(964, '2009-06-23 20:03:59', 2, 'featured.php', 'action=new&', '68.56.168.23'),
(965, '2009-06-23 20:04:06', 2, 'featured.php', 'action=insert&go_back=&', '68.56.168.23'),
(966, '2009-06-23 20:04:07', 2, 'featured.php', 'page=&fID=11&', '68.56.168.23'),
(967, '2009-06-23 21:13:05', 2, 'configuration.php', 'gID=18&', '68.56.168.23'),
(968, '2009-06-23 21:13:35', 2, 'configuration.php', 'gID=18&cID=384&action=edit&', '68.56.168.23'),
(969, '2009-06-23 21:14:07', 2, 'configuration.php', 'gID=18&', '68.56.168.23'),
(970, '2009-06-23 21:14:22', 2, 'configuration.php', 'gID=23&', '68.56.168.23'),
(971, '2009-06-23 21:14:29', 2, 'configuration.php', 'gID=23&cID=492&action=edit&', '68.56.168.23'),
(972, '2009-06-23 21:14:41', 2, 'configuration.php', 'gID=23&cID=496&action=edit&', '68.56.168.23'),
(973, '2009-06-23 21:15:26', 2, 'configuration.php', 'gID=23&cID=489&action=edit&', '68.56.168.23'),
(974, '2009-06-23 21:16:04', 2, 'configuration.php', 'gID=24&', '68.56.168.23'),
(975, '2009-06-23 21:16:18', 2, 'configuration.php', 'gID=19&', '68.56.168.23'),
(976, '2009-06-23 21:17:00', 2, 'configuration.php', 'gID=9&', '68.56.168.23'),
(977, '2009-06-23 21:17:41', 2, 'configuration.php', 'gID=9&cID=240&action=edit&', '68.56.168.23'),
(978, '2009-06-23 23:18:34', 0, 'login.php ', '', '68.56.168.23'),
(979, '2009-06-23 23:18:48', 0, 'login.php dale', '', '68.56.168.23'),
(980, '2009-06-23 23:19:01', 2, 'categories.php', '', '68.56.168.23'),
(981, '2009-06-23 23:19:47', 0, 'login.php ', '', '68.56.168.23'),
(982, '2009-06-23 23:19:51', 0, 'login.php dale', '', '68.56.168.23'),
(983, '2009-06-23 23:20:02', 2, 'categories.php', '', '68.56.168.23'),
(984, '2009-06-23 23:20:14', 2, 'categories.php', 'cPath=67&', '68.56.168.23'),
(985, '2009-06-23 23:20:20', 2, 'categories.php', 'cPath=67_68&', '68.56.168.23'),
(986, '2009-06-23 23:20:22', 2, 'categories.php', 'cPath=67_68&', '68.56.168.23'),
(987, '2009-06-23 23:20:53', 2, 'categories.php', 'x=43&y=6&product_type=1&cPath=67_68&action=new_product&', '68.56.168.23'),
(988, '2009-06-23 23:20:53', 2, 'product.php', 'x=43&y=6&product_type=1&cPath=67_68&action=new_product&', '68.56.168.23'),
(989, '2009-06-23 23:22:09', 2, 'product.php', 'cPath=67_68&product_type=1&action=new_product_preview&', '68.56.168.23'),
(990, '2009-06-23 23:22:27', 2, 'product.php', 'cPath=67_68&product_type=1&action=insert_product&', '68.56.168.23'),
(991, '2009-06-23 23:23:02', 2, 'product.php', 'cPath=67_68&product_type=1&action=new_product_preview&', '68.56.168.23'),
(992, '2009-06-23 23:23:11', 2, 'product.php', 'cPath=67_68&product_type=1&action=insert_product&', '68.56.168.23'),
(993, '2009-06-23 23:23:18', 2, 'product.php', 'cPath=67_68&product_type=1&action=new_product_preview&', '68.56.168.23'),
(994, '2009-06-23 23:23:23', 2, 'product.php', 'cPath=67_68&product_type=1&action=insert_product&', '68.56.168.23'),
(995, '2009-06-23 23:23:23', 2, 'categories.php', 'cPath=67_68&pID=182&', '68.56.168.23'),
(996, '2009-06-23 23:23:28', 2, 'categories.php', 'x=49&y=12&product_type=1&cPath=67_68&action=new_product&', '68.56.168.23'),
(997, '2009-06-23 23:23:28', 2, 'product.php', 'x=49&y=12&product_type=1&cPath=67_68&action=new_product&', '68.56.168.23'),
(998, '2009-06-23 23:23:59', 2, 'product.php', 'cPath=67_68&product_type=1&action=new_product_preview&', '68.56.168.23'),
(999, '2009-06-23 23:24:03', 2, 'product.php', 'cPath=67_68&product_type=1&action=insert_product&', '68.56.168.23'),
(1000, '2009-06-23 23:24:04', 2, 'categories.php', 'cPath=67_68&pID=183&', '68.56.168.23'),
(1001, '2009-06-23 23:24:11', 2, 'featured.php', '', '68.56.168.23'),
(1002, '2009-06-23 23:24:15', 2, 'featured.php', 'page=1&action=new&', '68.56.168.23'),
(1003, '2009-06-23 23:24:29', 2, 'featured.php', 'page=1&action=insert&go_back=&', '68.56.168.23'),
(1004, '2009-06-23 23:24:29', 2, 'featured.php', 'page=1&fID=12&', '68.56.168.23'),
(1005, '2009-06-23 23:24:34', 2, 'featured.php', 'page=1&action=new&', '68.56.168.23'),
(1006, '2009-06-23 23:24:39', 2, 'featured.php', 'page=1&action=insert&go_back=&', '68.56.168.23'),
(1007, '2009-06-23 23:24:39', 2, 'featured.php', 'page=1&fID=13&', '68.56.168.23'),
(1008, '2009-06-23 23:26:59', 2, 'sqlpatch.php', '', '68.56.168.23'),
(1009, '2009-06-23 23:27:49', 2, 'currencies.php', '', '68.56.168.23'),
(1010, '2009-06-23 23:27:54', 2, 'categories.php', '', '68.56.168.23'),
(1011, '2009-06-23 23:40:39', 2, 'countries.php', '', '68.56.168.23'),
(1012, '2009-06-24 00:52:34', 0, 'login.php ', '', '68.56.168.23'),
(1013, '2009-06-24 00:52:37', 0, 'login.php dale', '', '68.56.168.23'),
(1014, '2009-06-24 00:52:41', 2, 'categories.php', '', '68.56.168.23'),
(1015, '2009-06-24 00:52:46', 2, 'categories.php', 'cPath=67&', '68.56.168.23'),
(1016, '2009-06-24 00:52:49', 2, 'categories.php', 'cPath=67_68&', '68.56.168.23'),
(1017, '2009-06-24 00:52:51', 2, 'categories.php', 'cPath=67_68&', '68.56.168.23'),
(1018, '2009-06-24 00:52:56', 2, 'product.php', 'page=1&product_type=1&cPath=67_68&pID=183&action=new_product&', '68.56.168.23'),
(1019, '2009-06-24 00:53:09', 2, 'product.php', 'cPath=67_68&product_type=1&pID=183&action=new_product_preview&page=1&', '68.56.168.23'),
(1020, '2009-06-24 00:53:15', 2, 'product.php', 'cPath=67_68&product_type=1&pID=183&action=update_product&page=1&', '68.56.168.23'),
(1021, '2009-06-24 00:53:15', 2, 'categories.php', 'cPath=67_68&pID=183&page=1&', '68.56.168.23'),
(1022, '2009-06-24 01:53:11', 0, 'login.php ', '', '68.56.168.23'),
(1023, '2009-06-24 01:53:24', 0, 'login.php dale', '', '68.56.168.23'),
(1024, '2009-06-24 01:53:33', 2, 'categories.php', '', '68.56.168.23'),
(1025, '2009-06-24 01:54:11', 2, 'product.php', 'cPath=67_68&pID=182&action=new_product_preview&read=only&product_type=1&page=1&', '68.56.168.23'),
(1026, '2009-06-24 01:58:18', 2, 'categories.php', '', '68.56.168.23'),
(1027, '2009-06-24 01:58:40', 2, 'categories.php', 'cPath=67&', '68.56.168.23'),
(1028, '2009-06-24 01:58:41', 2, 'categories.php', 'cPath=67&', '68.56.168.23'),
(1029, '2009-06-24 01:58:48', 2, 'categories.php', 'cPath=67_68&', '68.56.168.23'),
(1030, '2009-06-24 01:58:53', 2, 'product.php', 'page=1&product_type=1&cPath=67_68&pID=182&action=new_product&', '68.56.168.23'),
(1031, '2009-06-24 01:58:54', 2, 'product.php', 'cPath=67_68&pID=182&action=new_product_preview&read=only&product_type=1&page=1&', '68.56.168.23'),
(1032, '2009-06-24 01:59:00', 2, 'categories.php', 'cPath=67_68&', '68.56.168.23'),
(1033, '2009-06-24 01:59:13', 2, 'product.php', 'cPath=67_68&product_type=1&pID=182&action=new_product&', '68.56.168.23'),
(1034, '2009-06-24 01:59:34', 2, 'product.php', 'cPath=67_68&product_type=1&pID=182&action=new_product_preview&', '68.56.168.23'),
(1035, '2009-06-24 01:59:40', 2, 'product.php', 'cPath=67_68&product_type=1&pID=182&action=update_product&', '68.56.168.23'),
(1036, '2009-06-24 01:59:41', 2, 'categories.php', 'cPath=67_68&pID=182&', '68.56.168.23'),
(1037, '2009-06-24 02:00:03', 2, 'product.php', 'page=1&product_type=1&cPath=67_68&pID=183&action=new_product&', '68.56.168.23'),
(1038, '2009-06-24 02:00:04', 2, 'product.php', 'cPath=67_68&product_type=1&pID=183&action=new_product&', '68.56.168.23'),
(1039, '2009-06-24 02:00:26', 2, 'product.php', 'cPath=67_68&product_type=1&pID=183&action=new_product_preview&', '68.56.168.23'),
(1040, '2009-06-24 02:00:31', 2, 'product.php', 'cPath=67_68&product_type=1&pID=183&action=update_product&', '68.56.168.23'),
(1041, '2009-06-24 02:00:31', 2, 'categories.php', 'cPath=67_68&pID=183&', '68.56.168.23'),
(1042, '2009-06-24 02:00:58', 2, 'product.php', 'cPath=67_68&product_type=1&pID=181&action=new_product&', '68.56.168.23'),
(1043, '2009-06-24 02:01:18', 2, 'product.php', 'cPath=67_68&product_type=1&pID=181&action=new_product_preview&', '68.56.168.23'),
(1044, '2009-06-24 02:01:22', 2, 'product.php', 'cPath=67_68&product_type=1&pID=181&action=update_product&', '68.56.168.23'),
(1045, '2009-06-24 02:01:23', 2, 'categories.php', 'cPath=67_68&pID=181&', '68.56.168.23'),
(1046, '2009-06-24 02:02:01', 2, 'configuration.php', 'gID=18&', '68.56.168.23'),
(1047, '2009-06-24 02:02:13', 2, 'configuration.php', 'gID=18&cID=546&action=edit&', '68.56.168.23'),
(1048, '2009-06-24 02:02:38', 2, 'configuration.php', 'gID=23&', '68.56.168.23'),
(1049, '2009-06-24 02:02:54', 2, 'configuration.php', 'gID=22&', '68.56.168.23'),
(1050, '2009-06-24 02:03:34', 2, 'configuration.php', 'gID=8&', '68.56.168.23'),
(1051, '2009-06-24 02:03:45', 2, 'configuration.php', 'gID=8&cID=545&action=edit&', '68.56.168.23'),
(1052, '2009-06-24 02:05:22', 2, 'configuration.php', 'gID=24&', '68.56.168.23'),
(1053, '2009-06-24 02:05:30', 2, 'configuration.php', 'gID=24&cID=501&action=edit&', '68.56.168.23'),
(1054, '2009-06-24 02:05:35', 2, 'configuration.php', 'gID=24&cID=501&action=save&', '68.56.168.23'),
(1055, '2009-06-24 02:05:35', 2, 'configuration.php', 'gID=24&cID=501&', '68.56.168.23'),
(1056, '2009-06-24 02:06:19', 2, 'configuration.php', 'gID=24&cID=501&action=edit&', '68.56.168.23'),
(1057, '2009-06-24 02:06:24', 2, 'configuration.php', 'gID=24&cID=501&action=save&', '68.56.168.23'),
(1058, '2009-06-24 02:06:24', 2, 'configuration.php', 'gID=24&cID=501&', '68.56.168.23'),
(1059, '2009-06-24 02:06:53', 2, 'configuration.php', 'gID=24&cID=501&action=edit&', '68.56.168.23'),
(1060, '2009-06-24 02:06:57', 2, 'configuration.php', 'gID=24&cID=501&action=save&', '68.56.168.23'),
(1061, '2009-06-24 02:06:58', 2, 'configuration.php', 'gID=24&cID=501&', '68.56.168.23'),
(1062, '2009-06-24 03:08:13', 2, 'categories.php', '', '68.56.168.23'),
(1063, '2009-06-24 03:08:18', 2, 'categories.php', 'cPath=67&', '68.56.168.23'),
(1064, '2009-06-24 03:08:20', 2, 'categories.php', 'cPath=67&', '68.56.168.23'),
(1065, '2009-06-24 03:08:24', 2, 'categories.php', 'cPath=67_68&', '68.56.168.23'),
(1066, '2009-06-24 03:08:26', 2, 'categories.php', 'cPath=67_68&', '68.56.168.23'),
(1067, '2009-06-24 03:08:34', 2, 'product.php', 'cPath=67_68&pID=183&action=new_product_preview&read=only&product_type=1&page=1&', '68.56.168.23'),
(1068, '2009-06-24 03:08:40', 2, 'categories.php', 'cPath=67_68&', '68.56.168.23'),
(1069, '2009-06-24 03:08:49', 2, 'product.php', 'page=1&product_type=1&cPath=67_68&pID=183&action=new_product&', '68.56.168.23'),
(1070, '2009-06-24 03:08:49', 2, 'product.php', 'cPath=67_68&product_type=1&pID=183&action=new_product&', '68.56.168.23'),
(1071, '2009-06-24 03:09:12', 2, 'product.php', 'cPath=67_68&product_type=1&pID=183&action=new_product_preview&', '68.56.168.23'),
(1072, '2009-06-24 03:09:16', 2, 'product.php', 'cPath=67_68&product_type=1&pID=183&action=update_product&', '68.56.168.23'),
(1073, '2009-06-24 03:09:17', 2, 'categories.php', 'cPath=67_68&pID=183&', '68.56.168.23'),
(1074, '2009-06-24 03:39:51', 2, 'configuration.php', 'gID=8&', '68.56.168.23'),
(1075, '2009-06-24 03:40:01', 2, 'configuration.php', 'gID=8&cID=545&action=edit&', '68.56.168.23'),
(1076, '2009-06-24 03:40:16', 2, 'configuration.php', 'gID=22&', '68.56.168.23');
INSERT INTO `admin_activity_log` (`log_id`, `access_date`, `admin_id`, `page_accessed`, `page_parameters`, `ip_address`) VALUES
(1077, '2009-06-24 03:40:31', 2, 'configuration.php', 'gID=18&', '68.56.168.23'),
(1078, '2009-06-24 03:40:37', 2, 'configuration.php', 'gID=18&cID=546&action=edit&', '68.56.168.23'),
(1079, '2009-06-24 03:59:15', 2, 'configuration.php', 'gID=24&', '68.56.168.23'),
(1080, '2009-06-24 03:59:20', 2, 'configuration.php', 'gID=24&cID=501&action=edit&', '68.56.168.23'),
(1081, '2009-06-24 03:59:24', 2, 'configuration.php', 'gID=24&cID=501&action=save&', '68.56.168.23'),
(1082, '2009-06-24 03:59:24', 2, 'configuration.php', 'gID=24&cID=501&', '68.56.168.23'),
(1083, '2009-06-24 04:01:07', 2, 'configuration.php', 'gID=24&cID=501&action=edit&', '68.56.168.23'),
(1084, '2009-06-24 04:01:11', 2, 'configuration.php', 'gID=24&cID=502&action=edit&', '68.56.168.23'),
(1085, '2009-06-24 04:01:25', 2, 'configuration.php', 'gID=24&cID=501&action=edit&', '68.56.168.23'),
(1086, '2009-06-24 04:01:30', 2, 'configuration.php', 'gID=24&cID=501&action=save&', '68.56.168.23'),
(1087, '2009-06-24 04:01:31', 2, 'configuration.php', 'gID=24&cID=501&', '68.56.168.23'),
(1088, '2009-06-24 04:01:49', 2, 'configuration.php', 'gID=24&cID=501&action=edit&', '68.56.168.23'),
(1089, '2009-06-24 04:02:03', 2, 'configuration.php', 'gID=24&cID=501&action=save&', '68.56.168.23'),
(1090, '2009-06-24 04:02:03', 2, 'configuration.php', 'gID=24&cID=501&', '68.56.168.23'),
(1091, '2009-06-25 02:15:01', 0, 'login.php ', '', '68.56.168.23'),
(1092, '2009-06-25 02:16:16', 0, 'login.php dale', '', '68.56.168.23'),
(1093, '2009-06-25 02:16:36', 2, 'sqlpatch.php', '', '68.56.168.23'),
(1094, '2009-06-25 02:16:43', 2, 'sqlpatch.php', 'action=execute&', '68.56.168.23'),
(1095, '2009-06-25 02:23:35', 2, 'configuration.php', 'gID=8&', '68.56.168.23'),
(1096, '2009-06-25 02:23:44', 2, 'configuration.php', 'gID=8&cID=547&action=edit&', '68.56.168.23'),
(1097, '2009-06-25 02:23:48', 2, 'configuration.php', 'gID=8&cID=547&action=save&', '68.56.168.23'),
(1098, '2009-06-25 02:23:48', 2, 'configuration.php', 'gID=8&cID=547&', '68.56.168.23'),
(1099, '2009-06-25 02:52:02', 2, 'configuration.php', 'gID=24&', '68.56.168.23'),
(1100, '2009-06-25 02:52:13', 2, 'configuration.php', 'gID=24&cID=501&action=edit&', '68.56.168.23'),
(1101, '2009-06-25 02:52:18', 2, 'configuration.php', 'gID=24&cID=501&action=save&', '68.56.168.23'),
(1102, '2009-06-25 02:52:19', 2, 'configuration.php', 'gID=24&cID=501&', '68.56.168.23'),
(1103, '2009-06-25 02:52:44', 2, 'configuration.php', 'gID=24&cID=506&action=edit&', '68.56.168.23'),
(1104, '2009-06-25 02:52:53', 2, 'configuration.php', 'gID=24&cID=506&action=save&', '68.56.168.23'),
(1105, '2009-06-25 02:52:53', 2, 'configuration.php', 'gID=24&cID=506&', '68.56.168.23'),
(1106, '2009-06-25 18:20:37', 0, 'login.php ', '', '68.56.168.23'),
(1107, '2009-06-25 18:20:41', 0, 'login.php dale', '', '68.56.168.23'),
(1108, '2009-06-25 18:20:54', 2, 'configuration.php', 'gID=19&', '68.56.168.23'),
(1109, '2009-06-25 18:25:52', 2, 'configuration.php', 'gID=8&', '68.56.168.23'),
(1110, '2009-06-25 18:26:11', 2, 'configuration.php', 'gID=8&cID=545&action=edit&', '68.56.168.23'),
(1111, '2009-06-25 18:26:25', 2, 'configuration.php', 'gID=8&cID=545&action=save&', '68.56.168.23'),
(1112, '2009-06-25 18:26:25', 2, 'configuration.php', 'gID=8&cID=545&', '68.56.168.23'),
(1113, '2009-06-26 00:22:04', 0, 'login.php ', '', '68.56.168.23'),
(1114, '2009-06-26 00:22:08', 0, 'login.php dale', '', '68.56.168.23'),
(1115, '2009-06-26 00:22:50', 2, 'sqlpatch.php', '', '68.56.168.23'),
(1116, '2009-06-26 00:22:55', 2, 'sqlpatch.php', 'action=execute&', '68.56.168.23'),
(1117, '2009-06-26 00:23:37', 2, 'configuration.php', 'gID=1&', '68.56.168.23'),
(1118, '2009-06-26 00:23:46', 2, 'configuration.php', 'gID=1&cID=550&action=edit&', '68.56.168.23'),
(1119, '2009-06-26 00:24:18', 2, 'configuration.php', 'gID=1&cID=550&action=save&', '68.56.168.23'),
(1120, '2009-06-26 00:24:18', 2, 'configuration.php', 'gID=1&cID=550&', '68.56.168.23'),
(1121, '2009-06-26 00:26:07', 2, 'configuration.php', 'gID=28&', '68.56.168.23'),
(1122, '2009-06-26 00:26:30', 2, 'configuration.php', 'gID=28&cID=557&action=edit&', '68.56.168.23'),
(1123, '2009-06-26 00:28:14', 2, 'modules.php', 'set=payment&', '68.56.168.23'),
(1124, '2009-06-26 00:29:33', 2, 'modules.php', 'set=payment&module=purchaseorder&', '68.56.168.23'),
(1125, '2009-06-26 00:52:52', 2, 'super_orders.php', '', '68.56.168.23'),
(1126, '2009-06-26 00:53:53', 2, 'super_invoice.php', 'oID=1&', '68.56.168.23'),
(1127, '2009-06-26 00:54:22', 2, 'super_orders.php', 'page=1&oID=1&action=edit&', '68.56.168.23'),
(1128, '2009-06-26 00:56:18', 2, 'paypal.php', '', '68.56.168.23'),
(1129, '2009-06-26 00:56:24', 2, 'super_orders.php', '', '68.56.168.23'),
(1130, '2009-06-26 00:57:14', 2, 'super_orders.php', '', '68.56.168.23'),
(1131, '2009-06-26 00:57:22', 2, 'super_invoice.php', 'oID=1&', '68.56.168.23'),
(1132, '2009-06-26 00:57:46', 2, 'super_report_cash.php', '', '68.56.168.23'),
(1133, '2009-06-26 00:58:02', 2, 'super_report_cash.php', 'target=payments&start_date=06/18/2009&end_date=06/27/2009&', '68.56.168.23'),
(1134, '2009-06-26 01:31:33', 2, 'sqlpatch.php', '', '68.56.168.23'),
(1135, '2009-06-26 01:31:46', 2, 'sqlpatch.php', 'action=execute&', '68.56.168.23'),
(1136, '2009-06-26 01:32:18', 2, 'configuration.php', 'gID=31&', '68.56.168.23'),
(1137, '2009-06-26 01:33:55', 2, 'configuration.php', 'gID=31&', '68.56.168.23'),
(1138, '2009-06-26 01:34:04', 2, 'configuration.php', 'gID=31&', '68.56.168.23'),
(1139, '2009-06-26 01:34:07', 2, 'configuration.php', 'gID=31&', '68.56.168.23'),
(1140, '2009-06-26 01:34:55', 2, 'configuration.php', 'gID=31&', '68.56.168.23'),
(1141, '2009-06-26 01:35:00', 2, 'configuration.php', 'gID=31&cID=568&action=edit&', '68.56.168.23'),
(1142, '2009-06-26 01:35:03', 2, 'configuration.php', 'gID=31&cID=569&action=edit&', '68.56.168.23'),
(1143, '2009-06-26 01:36:05', 2, 'configuration.php', 'gID=31&cID=569&action=edit&', '68.56.168.23'),
(1144, '2009-06-26 01:36:08', 2, 'configuration.php', 'gID=31&cID=569&action=edit&', '68.56.168.23'),
(1145, '2009-06-26 01:53:53', 2, 'configuration.php', 'gID=31&cID=569&action=edit&', '68.56.168.23'),
(1146, '2009-06-26 01:53:56', 2, 'configuration.php', 'gID=31&cID=569&action=edit&', '68.56.168.23'),
(1147, '2009-06-26 01:54:01', 2, 'supertracker.php', '', '68.56.168.23'),
(1148, '2009-06-26 01:54:20', 2, 'supertracker.php', 'report=last_ten&', '68.56.168.23'),
(1149, '2009-06-26 01:54:57', 2, 'supertracker.php', 'report=exit&', '68.56.168.23'),
(1150, '2009-06-26 02:26:40', 2, 'sqlpatch.php', '', '68.56.168.23'),
(1151, '2009-06-26 02:26:50', 2, 'sqlpatch.php', 'action=execute&', '68.56.168.23'),
(1152, '2009-06-26 04:00:18', 0, 'password_forgotten.php ', 'action=insert&', '211.26.205.226'),
(1153, '2009-06-26 21:23:25', 0, 'login.php ', '', '68.56.168.23'),
(1154, '2009-06-26 21:23:29', 0, 'login.php dale', '', '68.56.168.23'),
(1155, '2009-06-26 21:24:07', 2, 'xsell.php', '', '68.56.168.23'),
(1156, '2009-06-26 21:24:53', 2, 'xsell.php', 'add_related_product_ID=31&', '68.56.168.23'),
(1157, '2009-06-26 21:24:53', 2, 'xsell.php', 'page=1&add_related_product_ID=31&', '68.56.168.23'),
(1158, '2009-06-26 21:26:03', 2, 'ezpages.php', '', '68.56.168.23'),
(1159, '2009-06-26 21:26:25', 2, 'ezpages.php', 'page=1&ezID=12&action=new&', '68.56.168.23'),
(1160, '2009-06-26 21:28:52', 2, 'ezpages.php', '', '68.56.168.23'),
(1161, '2009-06-26 21:29:00', 2, 'ezpages.php', 'action=new&', '68.56.168.23'),
(1162, '2009-06-26 21:30:49', 2, 'ezpages.php', 'action=insert&', '68.56.168.23'),
(1163, '2009-06-26 21:30:49', 2, 'ezpages.php', 'ezID=15&', '68.56.168.23'),
(1164, '2009-06-26 21:31:10', 2, 'ezpages.php', 'page=1&ezID=12&', '68.56.168.23'),
(1165, '2009-06-26 21:31:15', 2, 'ezpages.php', 'page=1&ezID=12&action=delete&', '68.56.168.23'),
(1166, '2009-06-26 21:31:20', 2, 'ezpages.php', 'page=1&ezID=12&action=deleteconfirm&', '68.56.168.23'),
(1167, '2009-06-26 21:31:20', 2, 'ezpages.php', 'page=1&', '68.56.168.23'),
(1168, '2009-06-26 21:31:30', 2, 'ezpages.php', 'page=1&ezID=7&', '68.56.168.23'),
(1169, '2009-06-26 21:31:32', 2, 'ezpages.php', 'ezID=7&action=new&', '68.56.168.23'),
(1170, '2009-06-26 21:31:56', 2, 'ezpages.php', 'ezID=7&', '68.56.168.23'),
(1171, '2009-06-26 21:32:05', 2, 'ezpages.php', 'page=1&ezID=15&', '68.56.168.23'),
(1172, '2009-06-26 21:32:18', 2, 'ezpages.php', 'page=1&ezID=15&action=new&', '68.56.168.23'),
(1173, '2009-06-26 21:32:33', 2, 'ezpages.php', 'page=1&action=update&', '68.56.168.23'),
(1174, '2009-06-26 21:32:33', 2, 'ezpages.php', 'page=1&ezID=15&', '68.56.168.23'),
(1175, '2009-06-27 02:02:03', 0, 'login.php ', '', '68.56.168.23'),
(1176, '2009-06-27 10:39:10', 0, 'login.php ', '', '68.56.168.23'),
(1177, '2009-06-27 10:39:14', 0, 'login.php dale', '', '68.56.168.23'),
(1178, '2009-06-27 10:39:22', 2, 'configuration.php', 'gID=22&', '68.56.168.23'),
(1179, '2009-06-27 10:39:43', 2, 'configuration.php', 'gID=19&', '68.56.168.23'),
(1180, '2009-06-27 10:40:34', 2, 'configuration.php', 'gID=23&', '68.56.168.23'),
(1181, '2009-06-27 10:41:04', 2, 'configuration.php', 'gID=25&', '68.56.168.23'),
(1182, '2009-06-27 10:41:55', 2, 'configuration.php', 'gID=8&', '68.56.168.23'),
(1183, '2009-06-27 10:42:40', 2, 'configuration.php', 'gID=24&', '68.56.168.23'),
(1184, '2009-06-27 10:43:11', 2, 'configuration.php', 'gID=19&', '68.56.168.23'),
(1185, '2009-06-27 10:44:22', 2, 'configuration.php', 'gID=8&', '68.56.168.23'),
(1186, '2009-06-27 10:51:47', 2, 'configuration.php', 'gID=13&', '68.56.168.23'),
(1187, '2009-06-27 10:55:56', 2, 'configuration.php', 'gID=1&', '68.56.168.23'),
(1188, '2009-06-27 10:58:03', 2, 'configuration.php', 'gID=1&cID=13&action=edit&', '68.56.168.23'),
(1189, '2009-06-27 11:03:31', 2, 'configuration.php', 'gID=1&', '68.56.168.23'),
(1190, '2009-06-27 11:04:35', 2, 'configuration.php', 'gID=19&', '68.56.168.23'),
(1191, '2009-06-27 11:05:03', 2, 'configuration.php', 'gID=19&cID=443&action=edit&', '68.56.168.23'),
(1192, '2009-06-27 11:05:25', 2, 'configuration.php', 'gID=19&cID=443&action=save&', '68.56.168.23'),
(1193, '2009-06-27 11:05:25', 2, 'configuration.php', 'gID=19&cID=443&', '68.56.168.23'),
(1194, '2009-06-27 11:06:20', 2, 'configuration.php', 'gID=1&', '68.56.168.23'),
(1195, '2009-06-27 11:06:32', 2, 'configuration.php', 'gID=1&cID=10&action=edit&', '68.56.168.23'),
(1196, '2009-06-27 11:06:40', 2, 'configuration.php', 'gID=1&cID=10&action=save&', '68.56.168.23'),
(1197, '2009-06-27 11:06:41', 2, 'configuration.php', 'gID=1&cID=10&', '68.56.168.23'),
(1198, '2009-06-27 11:07:38', 2, 'configuration.php', 'gID=1&cID=10&action=edit&', '68.56.168.23'),
(1199, '2009-06-27 11:07:43', 2, 'configuration.php', 'gID=1&cID=10&action=save&', '68.56.168.23'),
(1200, '2009-06-27 11:07:43', 2, 'configuration.php', 'gID=1&cID=10&', '68.56.168.23'),
(1201, '2009-06-27 12:10:14', 2, 'modules.php', 'set=shipping&', '68.56.168.23'),
(1202, '2009-06-27 12:10:28', 2, 'modules.php', 'set=shipping&module=item&', '68.56.168.23'),
(1203, '2009-06-27 12:10:38', 2, 'modules.php', 'set=shipping&module=item&action=edit&', '68.56.168.23'),
(1204, '2009-06-27 12:10:46', 2, 'modules.php', 'set=shipping&module=item&action=save&', '68.56.168.23'),
(1205, '2009-06-27 12:10:46', 2, 'modules.php', 'set=shipping&module=item&', '68.56.168.23'),
(1206, '2009-06-27 12:11:01', 2, 'modules.php', 'set=shipping&module=item&action=edit&', '68.56.168.23'),
(1207, '2009-06-27 12:11:13', 2, 'modules.php', 'set=shipping&module=storepickup&', '68.56.168.23'),
(1208, '2009-06-27 12:11:20', 2, 'modules.php', 'set=shipping&module=storepickup&action=edit&', '68.56.168.23'),
(1209, '2009-06-27 12:11:28', 2, 'modules.php', 'set=shipping&module=storepickup&action=save&', '68.56.168.23'),
(1210, '2009-06-27 12:11:28', 2, 'modules.php', 'set=shipping&module=storepickup&', '68.56.168.23'),
(1211, '2009-06-27 17:55:46', 0, 'login.php ', '', '68.56.168.23'),
(1212, '2009-06-27 17:55:58', 0, 'login.php dale', '', '68.56.168.23'),
(1213, '2009-06-27 18:04:32', 2, 'configuration.php', 'gID=23&', '68.56.168.23'),
(1214, '2009-06-27 18:04:54', 2, 'configuration.php', 'gID=19&', '68.56.168.23'),
(1215, '2009-06-27 18:05:47', 2, 'configuration.php', 'gID=19&cID=439&action=edit&', '68.56.168.23'),
(1216, '2009-06-27 18:07:13', 2, 'configuration.php', 'gID=8&', '68.56.168.23'),
(1217, '2009-07-01 13:49:28', 0, 'password_forgotten.php ', 'action=insert&', '65.182.208.101'),
(1218, '2009-07-02 07:51:37', 0, 'password_forgotten.php ', 'action=insert&', '204.116.6.177'),
(1219, '2009-07-02 09:58:46', 0, 'password_forgotten.php ', 'action=insert&', '58.147.114.99'),
(1220, '2009-07-02 11:51:30', 0, 'password_forgotten.php ', 'action=insert&', '94.142.129.147'),
(1221, '2009-07-02 11:51:31', 0, 'password_forgotten.php ', 'action=insert&', '94.142.129.147'),
(1222, '2009-07-02 11:51:32', 0, 'login.php ', '', '94.142.129.147'),
(1223, '2009-07-02 11:51:32', 0, 'login.php ', '', '94.142.129.147'),
(1224, '2009-07-02 20:51:59', 0, 'password_forgotten.php ', '', '83.87.47.198'),
(1225, '2009-07-02 20:52:00', 0, 'password_forgotten.php ', 'action=insert&', '83.87.47.198'),
(1226, '2009-07-02 20:52:01', 0, 'password_forgotten.php ', 'action=insert&', '83.87.47.198'),
(1227, '2009-07-05 01:52:39', 0, 'password_forgotten.php ', 'action=insert&', '82.165.42.34'),
(1228, '2009-07-05 02:29:48', 0, 'password_forgotten.php ', 'action=insert&', '82.165.42.34'),
(1229, '2009-07-05 03:11:06', 0, 'password_forgotten.php ', 'action=insert&', '82.165.42.34'),
(1230, '2009-07-05 03:54:20', 0, 'password_forgotten.php ', 'action=insert&', '82.165.42.34'),
(1231, '2009-07-05 04:38:01', 0, 'password_forgotten.php ', 'action=insert&', '82.165.42.34'),
(1232, '2009-07-05 05:22:00', 0, 'password_forgotten.php ', 'action=insert&', '82.165.42.34'),
(1233, '2009-07-05 06:08:14', 0, 'password_forgotten.php ', 'action=insert&', '82.165.42.34'),
(1234, '2009-07-05 06:55:44', 0, 'password_forgotten.php ', 'action=insert&', '82.165.42.34'),
(1235, '2009-07-05 07:12:17', 0, 'password_forgotten.php ', 'action=insert&', '204.116.6.177'),
(1236, '2009-07-05 07:50:00', 0, 'password_forgotten.php ', 'action=insert&', '82.165.42.34'),
(1237, '2009-07-06 11:16:02', 0, 'password_forgotten.php ', 'action=insert&', '78.152.106.252'),
(1238, '2009-07-09 05:53:02', 0, 'password_forgotten.php ', 'action=insert&', '88.191.77.72'),
(1239, '2009-07-11 22:16:22', 0, 'login.php ', '', '68.56.16.87'),
(1240, '2009-07-11 22:16:29', 0, 'login.php admin', '', '68.56.16.87'),
(1241, '2009-07-11 22:16:39', 0, 'login.php admin', '', '68.56.16.87'),
(1242, '2009-07-11 22:16:45', 0, 'login.php admin', '', '68.56.16.87'),
(1243, '2009-07-11 22:16:52', 0, 'login.php admin', '', '68.56.16.87'),
(1244, '2009-07-11 22:17:05', 0, 'login.php admin', '', '68.56.16.87'),
(1245, '2009-07-11 22:17:09', 0, 'password_forgotten.php ', '', '68.56.16.87'),
(1246, '2009-07-11 22:17:18', 0, 'password_forgotten.php dale@lifeleap.org', '', '68.56.16.87'),
(1247, '2009-07-11 22:22:53', 0, 'password_forgotten.php ', '', '68.56.16.87'),
(1248, '2009-07-11 22:22:58', 0, 'login.php admin', '', '68.56.16.87'),
(1249, '2009-07-11 22:23:47', 0, 'login.php admin', '', '68.56.16.87'),
(1250, '2009-07-11 22:23:51', 0, 'password_forgotten.php ', '', '68.56.16.87'),
(1251, '2009-07-11 22:24:02', 0, 'password_forgotten.php info@lifeleap.org', '', '68.56.16.87'),
(1252, '2009-07-11 22:25:00', 0, 'password_forgotten.php info@lifeleap.org', '', '68.56.16.87'),
(1253, '2009-07-11 22:25:28', 0, 'password_forgotten.php info@lifeleap.org', '', '68.56.16.87'),
(1254, '2009-07-11 22:25:30', 0, 'password_forgotten.php ', '', '68.56.16.87'),
(1255, '2009-07-11 23:22:38', 0, 'login.php ', '', '68.56.168.23'),
(1256, '2009-07-11 23:22:50', 0, 'login.php admin', '', '68.56.168.23'),
(1257, '2009-07-11 23:22:57', 0, 'login.php admin', '', '68.56.168.23'),
(1258, '2009-07-11 23:23:10', 0, 'login.php admin', '', '68.56.168.23'),
(1259, '2009-07-11 23:23:21', 0, 'login.php dale99', '', '68.56.168.23'),
(1260, '2009-07-11 23:23:59', 0, 'login.php admin', '', '68.56.168.23'),
(1261, '2009-07-11 23:24:07', 0, 'login.php admin', '', '68.56.168.23'),
(1262, '2009-07-11 23:24:18', 0, 'login.php admin', '', '68.56.168.23'),
(1263, '2009-07-11 23:24:25', 0, 'login.php admin', '', '68.56.168.23'),
(1264, '2009-07-11 23:24:33', 0, 'login.php admin', '', '68.56.168.23'),
(1265, '2009-07-11 23:26:06', 0, 'login.php admin', '', '68.56.168.23'),
(1266, '2009-07-11 23:26:18', 0, 'login.php admin', '', '68.56.168.23'),
(1267, '2009-07-11 23:26:36', 0, 'login.php admin', '', '68.56.168.23'),
(1268, '2009-07-11 23:26:43', 0, 'login.php admin', '', '68.56.168.23'),
(1269, '2009-07-11 23:27:48', 0, 'login.php dale`', '', '68.56.168.23'),
(1270, '2009-07-11 23:27:59', 0, 'login.php dale', '', '68.56.168.23'),
(1271, '2009-07-11 23:28:06', 0, 'login.php dale', '', '68.56.168.23'),
(1272, '2009-07-11 23:28:15', 0, 'login.php dale99', '', '68.56.168.23'),
(1273, '2009-07-11 23:28:25', 0, 'login.php dale99', '', '68.56.168.23'),
(1274, '2009-07-11 23:28:37', 0, 'login.php dale99', '', '68.56.168.23'),
(1275, '2009-07-11 23:28:43', 0, 'login.php dale99', '', '68.56.168.23'),
(1276, '2009-07-11 23:28:51', 0, 'login.php dale99', '', '68.56.168.23'),
(1277, '2009-07-11 23:33:15', 0, 'login.php admin', '', '68.56.168.23'),
(1278, '2009-07-11 23:33:30', 0, 'login.php admin', '', '68.56.168.23'),
(1279, '2009-07-11 23:33:51', 0, 'login.php admin', '', '68.56.168.23'),
(1280, '2009-07-11 23:34:30', 0, 'login.php admin', '', '68.56.168.23'),
(1281, '2009-07-11 23:34:37', 0, 'login.php admin', '', '68.56.168.23'),
(1282, '2009-07-11 23:34:49', 0, 'login.php admin', '', '68.56.168.23'),
(1283, '2009-07-11 23:36:17', 0, 'login.php ', '', '68.56.168.23'),
(1284, '2009-07-11 23:36:21', 0, 'login.php dale', '', '68.56.168.23'),
(1285, '2009-07-11 23:36:48', 0, 'login.php dale', '', '68.56.168.23'),
(1286, '2009-07-11 23:36:55', 0, 'login.php dale', '', '68.56.168.23'),
(1287, '2009-07-11 23:37:03', 0, 'login.php dale', '', '68.56.168.23'),
(1288, '2009-07-11 23:39:53', 0, 'login.php dale', '', '68.56.168.23'),
(1289, '2009-07-11 23:40:00', 0, 'login.php dale', '', '68.56.168.23'),
(1290, '2009-07-11 23:40:07', 0, 'login.php dale', '', '68.56.168.23'),
(1291, '2009-07-11 23:40:18', 0, 'login.php dale', '', '68.56.168.23'),
(1292, '2009-07-11 23:41:51', 0, 'login.php admin', '', '68.56.168.23'),
(1293, '2009-07-11 23:41:54', 0, 'login.php admin', '', '68.56.168.23'),
(1294, '2009-07-11 23:42:02', 0, 'login.php admin', '', '68.56.168.23'),
(1295, '2009-07-11 23:42:45', 0, 'login.php admin', '', '68.56.168.23'),
(1296, '2009-07-11 23:42:51', 0, 'login.php admin', '', '68.56.168.23'),
(1297, '2009-07-11 23:42:58', 0, 'login.php admin', '', '68.56.168.23'),
(1298, '2009-07-11 23:43:03', 0, 'login.php admin', '', '68.56.168.23'),
(1299, '2009-07-11 23:43:13', 0, 'login.php admin', '', '68.56.168.23'),
(1300, '2009-07-11 23:43:21', 0, 'login.php admin', '', '68.56.168.23'),
(1301, '2009-07-11 23:43:28', 0, 'login.php admin', '', '68.56.168.23'),
(1302, '2009-07-11 23:44:18', 0, 'login.php dale@lifeleap.org', '', '68.56.168.23'),
(1303, '2009-07-11 23:44:21', 0, 'login.php dale@lifeleap.org', '', '68.56.168.23'),
(1304, '2009-07-11 23:44:46', 0, 'login.php dale', '', '68.56.168.23'),
(1305, '2009-07-11 23:44:51', 0, 'login.php dale', '', '68.56.168.23'),
(1306, '2009-07-11 23:45:00', 0, 'login.php dale', '', '68.56.168.23'),
(1307, '2009-07-11 23:45:06', 0, 'login.php dale', '', '68.56.168.23'),
(1308, '2009-07-11 23:45:12', 0, 'login.php dale', '', '68.56.168.23'),
(1309, '2009-07-11 23:45:22', 0, 'login.php dale', '', '68.56.168.23'),
(1310, '2009-07-11 23:45:34', 0, 'login.php dale', '', '68.56.168.23'),
(1311, '2009-07-11 23:46:59', 0, 'login.php dale', '', '68.56.168.23'),
(1312, '2009-07-11 23:54:16', 0, 'login.php admin', '', '68.56.168.23'),
(1313, '2009-07-11 23:54:27', 0, 'login.php admin', '', '68.56.168.23'),
(1314, '2009-07-11 23:54:33', 0, 'login.php admin', '', '68.56.168.23'),
(1315, '2009-07-11 23:54:40', 0, 'login.php admin', '', '68.56.168.23'),
(1316, '2009-07-11 23:54:51', 0, 'login.php admin', '', '68.56.168.23'),
(1317, '2009-07-11 23:55:01', 0, 'login.php admin', '', '68.56.168.23'),
(1318, '2009-07-11 23:55:07', 0, 'login.php admin', '', '68.56.168.23'),
(1319, '2009-07-11 23:55:17', 0, 'login.php admin', '', '68.56.168.23'),
(1320, '2009-07-11 23:55:24', 0, 'login.php admin', '', '68.56.168.23'),
(1321, '2009-07-11 23:55:45', 0, 'login.php admin', '', '68.56.168.23'),
(1322, '2009-07-11 23:55:52', 0, 'login.php admin', '', '68.56.168.23'),
(1323, '2009-07-11 23:56:06', 0, 'password_forgotten.php ', '', '68.56.168.23'),
(1324, '2009-07-11 23:56:12', 0, 'login.php admin', '', '68.56.168.23'),
(1325, '2009-07-11 23:56:26', 0, 'login.php ', '', '68.56.168.23'),
(1326, '2009-07-11 23:56:30', 0, 'login.php ', '', '68.56.168.23'),
(1327, '2009-07-11 23:56:38', 0, 'login.php dale', '', '68.56.168.23'),
(1328, '2009-07-11 23:56:47', 0, 'login.php dale', '', '68.56.168.23'),
(1329, '2009-07-11 23:56:56', 0, 'login.php dale', '', '68.56.168.23'),
(1330, '2009-07-11 23:57:01', 0, 'login.php dale', '', '68.56.168.23'),
(1331, '2009-07-11 23:57:07', 0, 'login.php dale', '', '68.56.168.23'),
(1332, '2009-07-11 23:57:27', 0, 'login.php admin', '', '68.56.168.23'),
(1333, '2009-07-11 23:57:29', 0, 'login.php admin', '', '68.56.168.23'),
(1334, '2009-07-11 23:57:36', 0, 'login.php admin', '', '68.56.168.23'),
(1335, '2009-07-11 23:57:45', 0, 'login.php admin', '', '68.56.168.23'),
(1336, '2009-07-11 23:57:54', 0, 'login.php admin', '', '68.56.168.23'),
(1337, '2009-07-11 23:58:02', 0, 'login.php admin', '', '68.56.168.23'),
(1338, '2009-07-11 23:58:16', 0, 'login.php admin', '', '68.56.168.23'),
(1339, '2009-07-11 23:58:28', 0, 'login.php admin', '', '68.56.168.23'),
(1340, '2009-07-11 23:58:36', 0, 'login.php admin', '', '68.56.168.23'),
(1341, '2009-07-11 23:59:14', 0, 'login.php admin', '', '68.56.168.23'),
(1342, '2009-07-11 23:59:20', 0, 'login.php admin', '', '68.56.168.23'),
(1343, '2009-07-11 23:59:38', 0, 'login.php admin', '', '68.56.168.23'),
(1344, '2009-07-11 23:59:58', 0, 'login.php admin', '', '68.56.168.23'),
(1345, '2009-07-12 00:06:45', 0, 'login.php dale', '', '68.56.168.23'),
(1346, '2009-07-12 00:06:48', 0, 'login.php dale', '', '68.56.168.23'),
(1347, '2009-07-12 00:08:24', 0, 'login.php dale', '', '68.56.168.23'),
(1348, '2009-07-12 00:08:31', 0, 'login.php dale', '', '68.56.168.23'),
(1349, '2009-07-12 00:08:34', 0, 'login.php dale', '', '68.56.168.23'),
(1350, '2009-07-12 00:09:19', 0, 'login.php admin', '', '68.56.168.23'),
(1351, '2009-07-12 00:09:32', 0, 'login.php admin', '', '68.56.168.23'),
(1352, '2009-07-12 00:09:35', 0, 'login.php admin', '', '68.56.168.23'),
(1353, '2009-07-12 00:09:45', 0, 'login.php admin', '', '68.56.168.23'),
(1354, '2009-07-12 00:09:52', 0, 'login.php admin', '', '68.56.168.23'),
(1355, '2009-07-12 00:10:40', 0, 'login.php admin', '', '68.56.168.23'),
(1356, '2009-07-12 00:10:43', 0, 'login.php admin', '', '68.56.168.23'),
(1357, '2009-07-12 00:10:50', 0, 'login.php admin', '', '68.56.168.23'),
(1358, '2009-07-12 00:17:19', 0, 'login.php dale', '', '68.56.168.23'),
(1359, '2009-07-12 00:17:46', 2, 'configuration.php', 'gID=5&', '68.56.168.23'),
(1360, '2009-07-12 00:18:16', 2, 'configuration.php', 'gID=5&cID=129&action=edit&', '68.56.168.23'),
(1361, '2009-07-12 00:26:28', 2, 'configuration.php', 'gID=5&', '68.56.168.23'),
(1362, '2009-07-12 00:26:42', 2, 'configuration.php', 'gID=5&cID=133&action=edit&', '68.56.168.23'),
(1363, '2009-07-12 00:27:14', 2, 'configuration.php', 'gID=5&cID=129&action=edit&', '68.56.168.23'),
(1364, '2009-07-12 00:29:00', 2, 'configuration.php', 'gID=2&', '68.56.168.23'),
(1365, '2009-07-12 00:29:07', 2, 'configuration.php', 'gID=2&cID=34&action=edit&', '68.56.168.23'),
(1366, '2009-07-12 00:29:32', 2, 'configuration.php', 'gID=2&cID=34&action=save&', '68.56.168.23'),
(1367, '2009-07-12 00:29:33', 2, 'configuration.php', 'gID=2&cID=34&', '68.56.168.23'),
(1368, '2009-07-12 00:40:00', 0, 'login.php dale', '', '68.56.168.23'),
(1369, '2009-07-12 00:40:09', 2, 'configuration.php', 'gID=31&', '68.56.168.23'),
(1370, '2009-07-12 00:40:15', 2, 'configuration.php', 'gID=28&', '68.56.168.23'),
(1371, '2009-07-12 00:47:05', 0, 'login.php ', '', '68.56.168.23'),
(1372, '2009-07-12 00:47:28', 0, 'login.php dale', '', '68.56.168.23'),
(1373, '2009-07-12 00:48:23', 2, 'sqlpatch.php', '', '68.56.168.23'),
(1374, '2009-07-12 00:48:30', 2, 'sqlpatch.php', 'action=execute&', '68.56.168.23'),
(1375, '2009-07-12 00:48:44', 2, 'configuration.php', 'gID=5&', '68.56.168.23'),
(1376, '2009-07-12 00:48:51', 2, 'configuration.php', 'gID=5&cID=575&action=edit&', '68.56.168.23'),
(1377, '2009-07-12 00:48:55', 2, 'configuration.php', 'gID=5&cID=575&action=save&', '68.56.168.23'),
(1378, '2009-07-12 00:48:55', 2, 'configuration.php', 'gID=5&cID=575&', '68.56.168.23'),
(1379, '2009-07-12 02:56:54', 0, 'login.php ', '', '68.56.168.23'),
(1380, '2009-07-12 02:57:04', 0, 'login.php dale', '', '68.56.168.23'),
(1381, '2009-07-12 03:46:52', 2, 'configuration.php', 'gID=28&', '68.56.168.23'),
(1382, '2009-07-12 03:47:19', 2, 'configuration.php', 'gID=28&cID=557&action=edit&', '68.56.168.23'),
(1383, '2009-07-12 03:47:42', 2, 'configuration.php', 'gID=28&cID=557&action=save&', '68.56.168.23'),
(1384, '2009-07-12 03:47:42', 2, 'configuration.php', 'gID=28&cID=557&', '68.56.168.23'),
(1385, '2009-07-12 03:47:48', 2, 'configuration.php', 'gID=28&cID=557&action=edit&', '68.56.168.23'),
(1386, '2009-07-12 03:47:54', 2, 'configuration.php', 'gID=28&cID=557&action=save&', '68.56.168.23'),
(1387, '2009-07-12 03:47:54', 2, 'configuration.php', 'gID=28&cID=557&', '68.56.168.23'),
(1388, '2009-07-12 03:49:05', 2, 'super_orders.php', '', '68.56.168.23'),
(1389, '2009-07-12 03:49:17', 2, 'super_invoice.php', 'oID=1&', '68.56.168.23'),
(1390, '2009-07-12 03:50:16', 2, 'super_orders.php', 'page=1&oID=1&action=edit&', '68.56.168.23'),
(1391, '2009-07-12 04:26:16', 2, 'group_pricing.php', '', '68.56.168.23'),
(1392, '2009-07-12 04:26:29', 2, 'group_pricing.php', 'page=1&gID=1&action=edit&', '68.56.168.23'),
(1393, '2009-07-12 04:26:42', 2, 'customers.php', '', '68.56.168.23'),
(1394, '2009-07-12 04:26:50', 2, 'customers.php', 'page=1&cID=2&', '68.56.168.23'),
(1395, '2009-07-12 04:26:56', 2, 'customers.php', 'page=1&cID=2&action=edit&', '68.56.168.23'),
(1396, '2009-07-12 04:27:23', 2, 'group_pricing.php', '', '68.56.168.23'),
(1397, '2009-07-12 04:27:33', 2, 'group_pricing.php', 'page=1&gID=1&action=new&', '68.56.168.23'),
(1398, '2009-07-12 04:27:59', 2, 'group_pricing.php', 'action=insert&', '68.56.168.23'),
(1399, '2009-07-12 04:28:00', 2, 'group_pricing.php', 'gID=2&', '68.56.168.23'),
(1400, '2009-07-12 04:28:08', 2, 'customers.php', '', '68.56.168.23'),
(1401, '2009-07-12 04:28:16', 2, 'customers.php', 'page=1&cID=2&', '68.56.168.23'),
(1402, '2009-07-12 04:28:20', 2, 'customers.php', 'page=1&cID=2&action=edit&', '68.56.168.23'),
(1403, '2009-07-12 04:28:27', 2, 'customers.php', 'page=1&cID=2&action=update&', '68.56.168.23'),
(1404, '2009-07-12 04:28:27', 2, 'customers.php', 'page=1&cID=2&', '68.56.168.23'),
(1405, '2009-07-12 04:28:44', 2, 'customers.php', 'page=1&cID=1&', '68.56.168.23'),
(1406, '2009-07-12 04:28:49', 2, 'customers.php', 'page=1&cID=1&action=edit&', '68.56.168.23'),
(1407, '2009-07-12 04:29:51', 2, 'customers.php', '', '68.56.168.23'),
(1408, '2009-07-12 04:30:00', 2, 'customers.php', 'page=1&cID=2&', '68.56.168.23'),
(1409, '2009-07-12 04:30:06', 2, 'super_orders.php', 'cID=2&', '68.56.168.23'),
(1410, '2009-07-12 04:30:20', 2, 'super_orders.php', 'cID=2&page=1&oID=1&action=edit&', '68.56.168.23'),
(1411, '2009-07-12 04:30:53', 2, 'super_edit.php', 'oID=1&target=product&', '68.56.168.23'),
(1412, '2009-07-12 04:31:05', 2, 'super_edit.php', '', '68.56.168.23'),
(1413, '2009-07-12 04:31:05', 2, 'super_orders.php', 'cID=2&page=1&oID=1&action=edit&', '68.56.168.23'),
(1414, '2009-07-12 04:31:37', 2, 'super_edit.php', 'oID=1&target=total&', '68.56.168.23'),
(1415, '2009-07-12 04:31:51', 2, 'super_edit.php', '', '68.56.168.23'),
(1416, '2009-07-12 04:31:51', 2, 'super_orders.php', 'cID=2&page=1&oID=1&action=edit&', '68.56.168.23'),
(1417, '2009-07-12 04:33:18', 2, 'xsell.php', '', '68.56.168.23'),
(1418, '2009-07-12 12:57:37', 0, 'login.php ', '', '68.56.168.23'),
(1419, '2009-07-12 12:57:52', 0, 'login.php dale', '', '68.56.168.23'),
(1420, '2009-07-12 12:58:06', 2, 'categories.php', '', '68.56.168.23'),
(1421, '2009-07-12 12:58:13', 2, 'categories.php', 'cPath=67&', '68.56.168.23'),
(1422, '2009-07-12 12:58:27', 2, 'categories.php', 'cPath=67_68&', '68.56.168.23'),
(1423, '2009-07-12 12:58:37', 2, 'categories.php', 'cPath=67&cID=68&action=edit_category&', '68.56.168.23'),
(1424, '2009-07-12 12:58:59', 2, 'categories.php', 'action=update_category&cPath=67&', '68.56.168.23'),
(1425, '2009-07-12 12:59:00', 2, 'categories.php', 'cPath=67&cID=68&', '68.56.168.23'),
(1426, '2009-07-12 12:59:24', 2, 'categories.php', 'cPath=67_68&', '68.56.168.23'),
(1427, '2009-07-12 12:59:24', 2, 'categories.php', 'cPath=67_68&', '68.56.168.23'),
(1428, '2009-07-12 12:59:30', 2, 'product.php', 'page=1&product_type=1&cPath=67_68&pID=182&action=new_product&', '68.56.168.23'),
(1429, '2009-07-12 12:59:31', 2, 'product.php', 'cPath=67_68&pID=182&action=new_product_preview&read=only&product_type=1&page=1&', '68.56.168.23'),
(1430, '2009-07-12 12:59:37', 2, 'categories.php', 'cPath=67_68&', '68.56.168.23'),
(1431, '2009-07-12 12:59:41', 2, 'product.php', 'page=1&product_type=1&cPath=67_68&pID=182&action=new_product&', '68.56.168.23'),
(1432, '2009-07-12 12:59:42', 2, 'product.php', 'cPath=67_68&product_type=1&pID=182&action=new_product&', '68.56.168.23'),
(1433, '2009-07-12 13:00:05', 2, 'categories.php', '', '68.56.168.23'),
(1434, '2009-07-12 13:00:09', 2, 'categories.php', 'cPath=67&', '68.56.168.23'),
(1435, '2009-07-12 13:00:10', 2, 'categories.php', 'cPath=67&', '68.56.168.23'),
(1436, '2009-07-12 13:00:16', 2, 'categories.php', 'cPath=67_68&', '68.56.168.23'),
(1437, '2009-07-12 13:00:17', 2, 'categories.php', 'cPath=67_68&', '68.56.168.23'),
(1438, '2009-07-12 13:00:24', 2, 'categories.php', 'cPath=67&', '68.56.168.23'),
(1439, '2009-07-12 13:00:30', 2, 'categories.php', 'cPath=67_68&', '68.56.168.23'),
(1440, '2009-07-12 13:00:30', 2, 'categories.php', 'cPath=67&cID=68&action=edit_category&', '68.56.168.23'),
(1441, '2009-07-12 13:01:35', 2, 'categories.php', 'action=update_category&cPath=67&', '68.56.168.23'),
(1442, '2009-07-12 13:01:35', 2, 'categories.php', 'cPath=67&cID=68&', '68.56.168.23'),
(1443, '2009-07-12 16:09:40', 0, 'login.php ', '', '68.56.168.23'),
(1444, '2009-07-12 17:17:06', 0, 'login.php dale', '', '68.56.168.23'),
(1445, '2009-07-12 17:17:23', 2, 'configuration.php', 'gID=23&', '68.56.168.23'),
(1446, '2009-07-12 17:17:37', 2, 'configuration.php', 'gID=23&cID=498&action=edit&', '68.56.168.23'),
(1447, '2009-07-12 17:17:55', 2, 'configuration.php', 'gID=19&', '68.56.168.23'),
(1448, '2009-07-12 17:18:20', 2, 'configuration.php', 'gID=19&cID=439&action=edit&', '68.56.168.23'),
(1449, '2009-07-12 17:18:56', 2, 'configuration.php', 'gID=19&cID=421&action=edit&', '68.56.168.23'),
(1450, '2009-07-12 17:19:13', 2, 'configuration.php', 'gID=19&cID=421&action=save&', '68.56.168.23'),
(1451, '2009-07-12 17:19:14', 2, 'configuration.php', 'gID=19&cID=421&', '68.56.168.23'),
(1452, '2009-07-12 17:19:32', 2, 'configuration.php', 'gID=19&cID=421&action=edit&', '68.56.168.23'),
(1453, '2009-07-12 17:19:36', 2, 'configuration.php', 'gID=19&cID=421&action=save&', '68.56.168.23'),
(1454, '2009-07-12 17:19:36', 2, 'configuration.php', 'gID=19&cID=421&', '68.56.168.23'),
(1455, '2009-07-12 17:20:53', 2, 'layout_controller.php', '', '68.56.168.23'),
(1456, '2009-07-12 17:21:21', 2, 'configuration.php', 'gID=23&', '68.56.168.23'),
(1457, '2009-07-12 17:21:29', 2, 'configuration.php', 'gID=23&cID=498&action=edit&', '68.56.168.23'),
(1458, '2009-07-12 17:22:02', 2, 'configuration.php', 'gID=23&cID=496&action=edit&', '68.56.168.23'),
(1459, '2009-07-12 17:22:18', 2, 'configuration.php', 'gID=19&', '68.56.168.23'),
(1460, '2009-07-12 17:23:27', 2, 'configuration.php', 'gID=19&cID=439&action=edit&', '68.56.168.23'),
(1461, '2009-07-12 17:24:20', 2, 'configuration.php', 'gID=19&cID=443&action=edit&', '68.56.168.23'),
(1462, '2009-07-12 17:24:58', 2, 'configuration.php', 'gID=8&', '68.56.168.23'),
(1463, '2009-07-12 17:25:17', 2, 'configuration.php', 'gID=8&cID=222&action=edit&', '68.56.168.23'),
(1464, '2009-07-12 17:25:49', 2, 'configuration.php', 'gID=8&cID=228&action=edit&', '68.56.168.23'),
(1465, '2009-07-12 17:25:56', 2, 'configuration.php', 'gID=8&cID=228&action=save&', '68.56.168.23'),
(1466, '2009-07-12 17:25:57', 2, 'configuration.php', 'gID=8&cID=228&', '68.56.168.23'),
(1467, '2009-07-12 17:26:42', 2, 'configuration.php', 'gID=8&cID=228&action=edit&', '68.56.168.23'),
(1468, '2009-07-12 17:26:47', 2, 'configuration.php', 'gID=8&cID=228&action=save&', '68.56.168.23'),
(1469, '2009-07-12 17:26:47', 2, 'configuration.php', 'gID=8&cID=228&', '68.56.168.23'),
(1470, '2009-07-12 17:27:07', 2, 'configuration.php', 'gID=8&cID=228&action=edit&', '68.56.168.23'),
(1471, '2009-07-12 17:27:11', 2, 'configuration.php', 'gID=8&cID=228&action=save&', '68.56.168.23'),
(1472, '2009-07-12 17:27:11', 2, 'configuration.php', 'gID=8&cID=228&', '68.56.168.23'),
(1473, '2009-07-12 17:27:31', 2, 'configuration.php', 'gID=8&cID=222&action=edit&', '68.56.168.23'),
(1474, '2009-07-12 17:27:37', 2, 'configuration.php', 'gID=8&cID=221&action=edit&', '68.56.168.23'),
(1475, '2009-07-12 17:50:24', 2, 'configuration.php', 'gID=8&cID=545&action=edit&', '68.56.168.23'),
(1476, '2009-07-12 17:50:34', 2, 'configuration.php', 'gID=8&cID=545&action=save&', '68.56.168.23'),
(1477, '2009-07-12 17:50:34', 2, 'configuration.php', 'gID=8&cID=545&', '68.56.168.23'),
(1478, '2009-07-12 17:53:17', 2, 'configuration.php', 'gID=19&', '68.56.168.23'),
(1479, '2009-07-12 17:53:50', 2, 'configuration.php', 'gID=23&', '68.56.168.23'),
(1480, '2009-07-12 17:53:57', 2, 'configuration.php', 'gID=23&cID=500&action=edit&', '68.56.168.23'),
(1481, '2009-07-12 17:54:02', 2, 'configuration.php', 'gID=23&cID=500&action=save&', '68.56.168.23'),
(1482, '2009-07-12 17:54:02', 2, 'configuration.php', 'gID=23&cID=500&', '68.56.168.23'),
(1483, '2009-07-12 17:55:08', 2, 'configuration.php', 'gID=19&', '68.56.168.23'),
(1484, '2009-07-12 17:56:17', 2, 'configuration.php', 'gID=19&cID=409&action=edit&', '68.56.168.23'),
(1485, '2009-07-12 17:57:22', 2, 'configuration.php', 'gID=18&', '68.56.168.23'),
(1486, '2009-07-12 17:57:27', 2, 'configuration.php', 'gID=8&', '68.56.168.23'),
(1487, '2009-07-12 17:57:39', 2, 'configuration.php', 'gID=8&cID=224&action=edit&', '68.56.168.23'),
(1488, '2009-07-12 17:57:44', 2, 'configuration.php', 'gID=8&cID=224&action=save&', '68.56.168.23'),
(1489, '2009-07-12 17:57:44', 2, 'configuration.php', 'gID=8&cID=224&', '68.56.168.23'),
(1490, '2009-07-12 18:16:24', 2, 'configuration.php', 'gID=8&cID=223&action=edit&', '68.56.168.23'),
(1491, '2009-07-12 18:16:51', 2, 'configuration.php', 'gID=19&', '68.56.168.23'),
(1492, '2009-07-12 18:24:37', 2, 'configuration.php', 'gID=19&cID=409&action=edit&', '68.56.168.23'),
(1493, '2009-07-12 18:25:03', 2, 'configuration.php', 'gID=19&cID=401&action=edit&', '68.56.168.23'),
(1494, '2009-07-12 18:25:39', 2, 'configuration.php', 'gID=19&cID=401&action=save&', '68.56.168.23'),
(1495, '2009-07-12 18:25:39', 2, 'configuration.php', 'gID=19&cID=401&', '68.56.168.23'),
(1496, '2009-07-12 18:26:03', 2, 'configuration.php', 'gID=19&cID=405&action=edit&', '68.56.168.23'),
(1497, '2009-07-12 18:26:17', 2, 'configuration.php', 'gID=19&cID=407&action=edit&', '68.56.168.23'),
(1498, '2009-07-12 18:27:15', 2, 'configuration.php', 'gID=19&cID=417&action=edit&', '68.56.168.23'),
(1499, '2009-07-12 18:27:53', 2, 'configuration.php', 'gID=19&cID=439&action=edit&', '68.56.168.23'),
(1500, '2009-07-12 18:28:05', 2, 'configuration.php', 'gID=19&cID=440&action=edit&', '68.56.168.23'),
(1501, '2009-07-12 18:28:20', 2, 'configuration.php', 'gID=19&cID=441&action=edit&', '68.56.168.23'),
(1502, '2009-07-12 18:28:44', 2, 'configuration.php', 'gID=19&cID=414&action=edit&', '68.56.168.23'),
(1503, '2009-07-12 18:30:39', 2, 'configuration.php', 'gID=23&', '68.56.168.23'),
(1504, '2009-07-12 18:31:14', 2, 'configuration.php', 'gID=8&', '68.56.168.23'),
(1505, '2009-07-12 18:31:56', 2, 'configuration.php', 'gID=8&cID=216&action=edit&', '68.56.168.23'),
(1506, '2009-07-12 18:32:25', 2, 'configuration.php', 'gID=8&cID=220&action=edit&', '68.56.168.23'),
(1507, '2009-07-12 18:32:39', 2, 'configuration.php', 'gID=8&cID=220&action=save&', '68.56.168.23'),
(1508, '2009-07-12 18:32:40', 2, 'configuration.php', 'gID=8&cID=220&', '68.56.168.23'),
(1509, '2009-07-12 18:34:01', 2, 'configuration.php', 'gID=8&cID=223&action=edit&', '68.56.168.23'),
(1510, '2009-07-12 22:43:13', 0, 'login.php ', '', '68.56.168.23'),
(1511, '2009-07-12 22:43:21', 0, 'login.php dale', '', '68.56.168.23'),
(1512, '2009-07-12 22:43:39', 2, 'configuration.php', 'gID=8&', '68.56.168.23'),
(1513, '2009-07-12 22:43:58', 2, 'configuration.php', 'gID=8&cID=223&action=edit&', '68.56.168.23'),
(1514, '2009-07-12 22:44:57', 2, 'configuration.php', 'gID=8&cID=222&action=edit&', '68.56.168.23'),
(1515, '2009-07-13 21:43:45', 0, 'login.php ', '', '68.56.168.23'),
(1516, '2009-07-13 21:43:54', 0, 'login.php dale', '', '68.56.168.23'),
(1517, '2009-07-13 21:44:39', 2, 'customers.php', '', '68.56.168.23'),
(1518, '2009-07-13 21:44:46', 2, 'customers.php', 'page=1&cID=3&action=edit&', '68.56.168.23'),
(1519, '2009-07-13 21:45:23', 2, 'customers.php', '', '68.56.168.23'),
(1520, '2009-07-13 22:33:52', 2, 'categories.php', '', '68.56.168.23'),
(1521, '2009-07-13 22:33:57', 2, 'categories.php', 'cPath=65&', '68.56.168.23'),
(1522, '2009-07-13 22:33:58', 2, 'categories.php', 'cPath=65&', '68.56.168.23'),
(1523, '2009-07-13 22:34:01', 2, 'categories.php', '', '68.56.168.23'),
(1524, '2009-07-13 22:34:04', 2, 'categories.php', 'cPath=67&', '68.56.168.23'),
(1525, '2009-07-13 22:34:05', 2, 'categories.php', 'cPath=67&', '68.56.168.23'),
(1526, '2009-07-13 22:34:08', 2, 'categories.php', 'cPath=67_68&', '68.56.168.23'),
(1527, '2009-07-13 22:34:09', 2, 'categories.php', 'cPath=67_68&', '68.56.168.23'),
(1528, '2009-07-13 22:34:13', 2, 'product.php', 'page=1&product_type=1&cPath=67_68&pID=182&action=new_product&', '68.56.168.23'),
(1529, '2009-07-13 22:34:14', 2, 'product.php', 'cPath=67_68&product_type=1&pID=182&action=new_product&', '68.56.168.23'),
(1530, '2009-07-13 22:34:48', 2, 'product.php', 'cPath=67_68&product_type=1&pID=182&action=new_product_preview&', '68.56.168.23'),
(1531, '2009-07-13 22:34:57', 2, 'product.php', 'cPath=67_68&product_type=1&pID=182&action=update_product&', '68.56.168.23'),
(1532, '2009-07-13 22:34:57', 2, 'categories.php', 'cPath=67_68&pID=182&', '68.56.168.23'),
(1533, '2009-07-13 22:36:29', 2, 'product.php', 'page=1&product_type=1&cPath=67_68&pID=183&action=new_product&', '68.56.168.23'),
(1534, '2009-07-13 22:36:43', 2, 'product.php', 'cPath=67_68&product_type=1&pID=183&action=new_product&', '68.56.168.23'),
(1535, '2009-07-13 22:36:59', 2, 'product.php', 'cPath=67_68&product_type=1&pID=183&action=new_product_preview&', '68.56.168.23'),
(1536, '2009-07-13 22:37:02', 2, 'product.php', 'cPath=67_68&product_type=1&pID=183&action=update_product&', '68.56.168.23'),
(1537, '2009-07-13 22:37:02', 2, 'categories.php', 'cPath=67_68&pID=183&', '68.56.168.23'),
(1538, '2009-07-13 22:37:24', 2, 'product.php', 'page=1&product_type=1&cPath=67_68&pID=181&action=new_product&', '68.56.168.23'),
(1539, '2009-07-13 22:37:28', 2, 'product.php', 'cPath=67_68&product_type=1&pID=181&action=new_product&', '68.56.168.23'),
(1540, '2009-07-13 22:37:40', 2, 'product.php', 'cPath=67_68&product_type=1&pID=181&action=new_product_preview&', '68.56.168.23'),
(1541, '2009-07-13 22:37:43', 2, 'product.php', 'cPath=67_68&product_type=1&pID=181&action=update_product&', '68.56.168.23'),
(1542, '2009-07-13 22:37:43', 2, 'categories.php', 'cPath=67_68&pID=181&', '68.56.168.23'),
(1543, '2009-07-13 22:40:57', 2, 'categories.php', 'x=38&y=12&product_type=1&cPath=67_68&action=new_product&', '68.56.168.23'),
(1544, '2009-07-13 22:40:58', 2, 'product.php', 'x=38&y=12&product_type=1&cPath=67_68&action=new_product&', '68.56.168.23'),
(1545, '2009-07-13 22:45:20', 2, 'product.php', 'cPath=67_68&product_type=1&action=new_product_preview&', '68.56.168.23'),
(1546, '2009-07-13 22:45:23', 2, 'product.php', 'cPath=67_68&product_type=1&action=insert_product&', '68.56.168.23'),
(1547, '2009-07-13 22:45:24', 2, 'categories.php', 'cPath=67_68&pID=184&', '68.56.168.23'),
(1548, '2009-07-13 22:47:13', 2, 'product.php', 'page=1&product_type=1&cPath=67_68&pID=184&action=new_product&', '68.56.168.23'),
(1549, '2009-07-13 22:47:13', 2, 'product.php', 'cPath=67_68&product_type=1&pID=184&action=new_product&', '68.56.168.23'),
(1550, '2009-07-13 22:47:52', 2, 'product.php', 'cPath=67_68&product_type=1&pID=184&action=new_product_preview&', '68.56.168.23'),
(1551, '2009-07-13 22:47:54', 2, 'product.php', 'cPath=67_68&product_type=1&pID=184&action=update_product&', '68.56.168.23'),
(1552, '2009-07-13 22:47:55', 2, 'categories.php', 'cPath=67_68&pID=184&', '68.56.168.23'),
(1553, '2009-07-13 22:48:21', 2, 'product.php', 'page=1&product_type=1&cPath=67_68&pID=184&action=new_product&', '68.56.168.23'),
(1554, '2009-07-13 22:48:28', 2, 'product.php', 'cPath=67_68&product_type=1&pID=184&action=new_product&', '68.56.168.23'),
(1555, '2009-07-13 22:49:04', 2, 'product.php', 'cPath=67_68&product_type=1&pID=184&action=new_product_preview&', '68.56.168.23'),
(1556, '2009-07-13 22:49:07', 2, 'product.php', 'cPath=67_68&product_type=1&pID=184&action=update_product&', '68.56.168.23'),
(1557, '2009-07-13 22:49:26', 2, 'product.php', 'cPath=67_68&product_type=1&pID=184&action=new_product_preview&', '68.56.168.23'),
(1558, '2009-07-13 22:49:32', 2, 'product.php', 'cPath=67_68&product_type=1&pID=184&action=update_product&', '68.56.168.23'),
(1559, '2009-07-13 22:49:32', 2, 'categories.php', 'cPath=67_68&pID=184&', '68.56.168.23'),
(1560, '2009-07-13 22:49:38', 2, 'featured.php', '', '68.56.168.23'),
(1561, '2009-07-13 22:49:42', 2, 'featured.php', 'page=1&action=new&', '68.56.168.23'),
(1562, '2009-07-13 22:49:59', 2, 'featured.php', 'page=1&action=insert&go_back=&', '68.56.168.23'),
(1563, '2009-07-13 22:49:59', 2, 'featured.php', 'page=1&fID=14&', '68.56.168.23'),
(1564, '2009-07-14 01:48:17', 0, 'login.php ', '', '68.56.168.23'),
(1565, '2009-07-14 01:49:02', 0, 'login.php dale', '', '68.56.168.23'),
(1566, '2009-07-14 01:49:17', 2, 'configuration.php', 'gID=23&', '68.56.168.23'),
(1567, '2009-07-14 01:49:26', 2, 'configuration.php', 'gID=23&cID=490&action=edit&', '68.56.168.23'),
(1568, '2009-07-14 01:49:51', 2, 'configuration.php', 'gID=23&cID=498&action=edit&', '68.56.168.23'),
(1569, '2009-07-14 01:50:05', 2, 'configuration.php', 'gID=22&', '68.56.168.23'),
(1570, '2009-07-14 01:50:17', 2, 'configuration.php', 'gID=22&cID=483&action=edit&', '68.56.168.23'),
(1571, '2009-07-14 01:50:25', 2, 'configuration.php', 'gID=22&cID=483&action=save&', '68.56.168.23'),
(1572, '2009-07-14 01:50:26', 2, 'configuration.php', 'gID=22&cID=483&', '68.56.168.23'),
(1573, '2009-07-14 01:50:49', 2, 'configuration.php', 'gID=8&', '68.56.168.23'),
(1574, '2009-07-14 01:50:51', 2, 'configuration.php', 'gID=8&', '68.56.168.23'),
(1575, '2009-07-14 01:51:20', 2, 'configuration.php', 'gID=8&cID=547&action=edit&', '68.56.168.23'),
(1576, '2009-07-14 02:25:45', 2, 'salemaker.php', '', '68.56.168.23'),
(1577, '2009-07-14 02:27:42', 2, 'products_price_manager.php', '', '68.56.168.23'),
(1578, '2009-07-14 02:27:52', 2, 'products_price_manager.php', 'current_category_id=67&products_filter=&action=new_cat&', '68.56.168.23'),
(1579, '2009-07-14 02:27:52', 2, 'products_price_manager.php', 'products_filter=&current_category_id=67&', '68.56.168.23'),
(1580, '2009-07-14 02:27:58', 2, 'products_price_manager.php', 'current_category_id=68&products_filter=&action=new_cat&', '68.56.168.23'),
(1581, '2009-07-14 02:27:58', 2, 'products_price_manager.php', 'products_filter=182&current_category_id=68&', '68.56.168.23'),
(1582, '2009-07-14 02:28:16', 2, 'products_price_manager.php', 'action=set_products_filter&', '68.56.168.23'),
(1583, '2009-07-14 02:28:16', 2, 'products_price_manager.php', 'products_filter=183&current_category_id=68&', '68.56.168.23'),
(1584, '2009-07-14 02:28:47', 2, 'option_values.php', '', '68.56.168.23'),
(1585, '2009-07-14 02:29:12', 2, 'specials.php', '', '68.56.168.23'),
(1586, '2009-07-14 02:29:40', 2, 'configuration.php', 'gID=21&', '68.56.168.23'),
(1587, '2009-07-14 02:29:47', 2, 'configuration.php', 'gID=24&', '68.56.168.23'),
(1588, '2009-07-14 02:30:09', 2, 'configuration.php', 'gID=24&cID=503&action=edit&', '68.56.168.23'),
(1589, '2009-07-14 03:17:54', 2, 'define_pages_editor.php', '', '68.56.168.23'),
(1590, '2009-07-14 03:18:03', 2, 'define_pages_editor.php', 'define_it=4&action=new_page&', '68.56.168.23'),
(1591, '2009-07-14 03:18:18', 2, 'define_pages_editor.php', 'reset_editor=1&action=set_editor&', '68.56.168.23'),
(1592, '2009-07-14 03:18:18', 2, 'define_pages_editor.php', '', '68.56.168.23'),
(1593, '2009-07-14 03:18:34', 2, 'define_pages_editor.php', 'define_it=2&action=new_page&', '68.56.168.23'),
(1594, '2009-07-14 03:19:24', 2, 'define_pages_editor.php', 'define_it=11&action=new_page&', '68.56.168.23'),
(1595, '2009-07-14 03:19:41', 2, 'define_pages_editor.php', 'define_it=11&action=new_page&', '68.56.168.23'),
(1596, '2009-07-14 03:19:47', 2, 'define_pages_editor.php', 'reset_editor=2&action=set_editor&', '68.56.168.23'),
(1597, '2009-07-14 03:19:48', 2, 'define_pages_editor.php', '', '68.56.168.23'),
(1598, '2009-07-14 03:19:55', 2, 'define_pages_editor.php', 'define_it=11&action=new_page&', '68.56.168.23'),
(1599, '2009-07-14 03:20:45', 2, 'ezpages.php', '', '68.56.168.23'),
(1600, '2009-07-14 03:22:13', 2, 'ezpages.php', 'page=1&ezID=2&', '68.56.168.23'),
(1601, '2009-07-14 03:22:13', 2, 'ezpages.php', 'ezID=2&action=new&', '68.56.168.23'),
(1602, '2009-07-14 03:23:33', 2, 'ezpages.php', '', '68.56.168.23'),
(1603, '2009-07-14 03:23:43', 2, 'ezpages.php', 'action=new&', '68.56.168.23'),
(1604, '2009-07-14 03:27:01', 2, 'ezpages.php', 'action=insert&', '68.56.168.23'),
(1605, '2009-07-14 03:27:01', 2, 'ezpages.php', 'ezID=16&', '68.56.168.23'),
(1606, '2009-07-14 06:19:47', 0, 'login.php ', '', '68.56.168.23'),
(1607, '2009-07-14 06:20:02', 0, 'login.php dale', '', '68.56.168.23'),
(1608, '2009-07-14 06:21:56', 2, 'sqlpatch.php', '', '68.56.168.23'),
(1609, '2009-07-14 06:22:25', 2, 'sqlpatch.php', 'action=execute&', '68.56.168.23'),
(1610, '2009-07-14 13:57:53', 0, 'login.php ', '', '68.56.168.23'),
(1611, '2009-07-14 14:13:11', 0, 'login.php ', '', '68.56.168.23'),
(1612, '2009-07-14 14:13:18', 0, 'login.php dale', '', '68.56.168.23'),
(1613, '2009-07-14 14:13:36', 2, 'configuration.php', 'gID=1&', '68.56.168.23'),
(1614, '2009-07-14 14:14:15', 2, 'configuration.php', 'gID=2&', '68.56.168.23'),
(1615, '2009-07-14 14:14:29', 2, 'configuration.php', 'gID=2&cID=571&action=edit&', '68.56.168.23'),
(1616, '2009-07-14 14:14:48', 2, 'configuration.php', 'gID=3&', '68.56.168.23'),
(1617, '2009-07-14 14:15:20', 2, 'configuration.php', 'gID=4&', '68.56.168.23'),
(1618, '2009-07-14 14:15:37', 2, 'configuration.php', 'gID=4&cID=127&action=edit&', '68.56.168.23'),
(1619, '2009-07-14 14:16:04', 2, 'configuration.php', 'gID=8&', '68.56.168.23'),
(1620, '2009-07-14 14:17:33', 2, 'configuration.php', 'gID=9&', '68.56.168.23'),
(1621, '2009-07-14 14:18:29', 2, 'attributes_controller.php', '', '68.56.168.23'),
(1622, '2009-07-14 14:18:45', 2, 'configuration.php', 'gID=10&', '68.56.168.23'),
(1623, '2009-07-14 14:19:06', 2, 'configuration.php', 'gID=13&', '68.56.168.23'),
(1624, '2009-07-14 14:19:50', 2, 'configuration.php', 'gID=15&', '68.56.168.23'),
(1625, '2009-07-14 14:20:32', 2, 'configuration.php', 'gID=11&', '68.56.168.23'),
(1626, '2009-07-14 14:20:46', 2, 'configuration.php', 'gID=16&', '68.56.168.23'),
(1627, '2009-07-14 14:21:04', 2, 'configuration.php', 'gID=18&', '68.56.168.23'),
(1628, '2009-07-14 14:22:07', 2, 'configuration.php', 'gID=18&cID=574&action=edit&', '68.56.168.23'),
(1629, '2009-07-14 14:22:15', 2, 'configuration.php', 'gID=18&cID=574&action=save&', '68.56.168.23'),
(1630, '2009-07-14 14:22:16', 2, 'configuration.php', 'gID=18&cID=574&', '68.56.168.23'),
(1631, '2009-07-14 14:22:21', 2, 'configuration.php', 'gID=19&', '68.56.168.23'),
(1632, '2009-07-14 14:23:25', 2, 'configuration.php', 'gID=19&cID=425&action=edit&', '68.56.168.23'),
(1633, '2009-07-14 14:24:07', 2, 'configuration.php', 'gID=19&cID=442&action=edit&', '68.56.168.23'),
(1634, '2009-07-14 14:24:25', 2, 'configuration.php', 'gID=19&cID=443&action=edit&', '68.56.168.23'),
(1635, '2009-07-14 14:24:41', 2, 'configuration.php', 'gID=20&', '68.56.168.23'),
(1636, '2009-07-14 14:25:01', 2, 'configuration.php', 'gID=21&', '68.56.168.23'),
(1637, '2009-07-14 14:26:06', 2, 'configuration.php', 'gID=21&cID=469&action=edit&', '68.56.168.23'),
(1638, '2009-07-14 14:26:16', 2, 'configuration.php', 'gID=21&cID=469&action=save&', '68.56.168.23'),
(1639, '2009-07-14 14:26:16', 2, 'configuration.php', 'gID=21&cID=469&', '68.56.168.23'),
(1640, '2009-07-14 14:26:32', 2, 'configuration.php', 'gID=23&', '68.56.168.23'),
(1641, '2009-07-14 14:26:49', 2, 'configuration.php', 'gID=25&', '68.56.168.23'),
(1642, '2009-07-14 15:33:17', 2, 'configuration.php', 'gID=1&', '68.56.168.23'),
(1643, '2009-07-14 15:33:27', 2, 'configuration.php', 'gID=1&cID=10&action=edit&', '68.56.168.23'),
(1644, '2009-07-14 17:45:46', 0, 'login.php ', '', '68.56.168.23'),
(1645, '2009-07-14 17:49:48', 0, 'login.php sale', '', '68.56.168.23'),
(1646, '2009-07-14 17:49:55', 0, 'login.php dale', '', '68.56.168.23'),
(1647, '2009-07-14 17:50:18', 2, 'customers.php', '', '68.56.168.23'),
(1648, '2009-07-14 17:50:56', 2, 'customers.php', 'page=1&cID=1&', '68.56.168.23'),
(1649, '2009-07-14 17:53:57', 2, 'customers.php', 'page=1&cID=1&', '68.56.168.23'),
(1650, '2009-07-14 17:54:00', 2, 'customers.php', 'page=1&cID=2&', '68.56.168.23'),
(1651, '2009-07-14 18:43:01', 0, 'login.php ', '', '68.56.168.23'),
(1652, '2009-07-17 00:06:37', 0, 'login.php ', '', '68.56.168.23'),
(1653, '2009-07-17 00:06:54', 0, 'login.php dale', '', '68.56.168.23'),
(1654, '2009-07-17 00:07:04', 2, 'configuration.php', 'gID=23&', '68.56.168.23'),
(1655, '2009-07-17 00:08:58', 2, 'configuration.php', 'gID=23&cID=490&action=edit&', '68.56.168.23'),
(1656, '2009-07-17 00:09:16', 2, 'configuration.php', 'gID=23&cID=490&action=save&', '68.56.168.23'),
(1657, '2009-07-17 00:09:16', 2, 'configuration.php', 'gID=23&cID=490&', '68.56.168.23');
INSERT INTO `admin_activity_log` (`log_id`, `access_date`, `admin_id`, `page_accessed`, `page_parameters`, `ip_address`) VALUES
(1658, '2009-07-17 00:13:33', 0, 'login.php ', '', '68.56.168.23'),
(1659, '2009-07-17 00:13:44', 0, 'login.php admin', '', '68.56.168.23'),
(1660, '2009-07-17 02:47:07', 0, 'login.php ', '', '68.56.168.23'),
(1661, '2009-07-17 11:46:23', 0, 'login.php ', '', '68.56.168.23'),
(1662, '2009-07-17 11:46:38', 0, 'login.php dale', '', '68.56.168.23'),
(1663, '2009-07-17 11:46:47', 2, 'configuration.php', 'gID=23&', '68.56.168.23'),
(1664, '2009-07-17 11:47:07', 2, 'configuration.php', 'gID=8&', '68.56.168.23'),
(1665, '2009-07-17 11:47:34', 2, 'configuration.php', 'gID=23&', '68.56.168.23'),
(1666, '2009-07-17 11:47:47', 2, 'configuration.php', 'gID=22&', '68.56.168.23'),
(1667, '2009-07-17 11:59:27', 2, 'configuration.php', 'gID=24&', '68.56.168.23'),
(1668, '2009-07-18 22:44:02', 0, 'login.php ', '', '68.56.168.23'),
(1669, '2009-07-18 22:44:09', 0, 'login.php dale', '', '68.56.168.23'),
(1670, '2009-07-18 22:45:02', 2, 'specials.php', '', '68.56.168.23'),
(1671, '2009-07-18 22:45:19', 2, 'configuration.php', 'gID=19&', '68.56.168.23'),
(1672, '2009-07-18 22:45:40', 2, 'configuration.php', 'gID=23&', '68.56.168.23'),
(1673, '2009-07-18 22:59:49', 2, 'configuration.php', 'gID=22&', '68.56.168.23'),
(1674, '2009-07-18 23:00:08', 2, 'configuration.php', 'gID=23&', '68.56.168.23'),
(1675, '2009-07-18 23:00:48', 2, 'configuration.php', 'gID=24&', '68.56.168.23'),
(1676, '2009-07-18 23:01:08', 2, 'configuration.php', 'gID=24&cID=514&action=edit&', '68.56.168.23'),
(1677, '2009-07-18 23:01:43', 2, 'configuration.php', 'gID=24&cID=576&action=edit&', '68.56.168.23'),
(1678, '2009-07-18 23:03:18', 2, 'configuration.php', 'gID=24&cID=576&action=save&', '68.56.168.23'),
(1679, '2009-07-18 23:03:19', 2, 'configuration.php', 'gID=24&cID=576&', '68.56.168.23'),
(1680, '2009-07-18 23:03:32', 2, 'configuration.php', 'gID=24&cID=576&action=edit&', '68.56.168.23'),
(1681, '2009-07-18 23:03:36', 2, 'configuration.php', 'gID=24&cID=576&action=save&', '68.56.168.23'),
(1682, '2009-07-18 23:03:36', 2, 'configuration.php', 'gID=24&cID=576&', '68.56.168.23'),
(1683, '2009-07-18 23:04:37', 2, 'configuration.php', 'gID=24&cID=576&action=edit&', '68.56.168.23'),
(1684, '2009-07-18 23:04:40', 2, 'configuration.php', 'gID=24&cID=576&action=save&', '68.56.168.23'),
(1685, '2009-07-18 23:04:41', 2, 'configuration.php', 'gID=24&cID=576&', '68.56.168.23'),
(1686, '2009-07-18 23:04:53', 2, 'configuration.php', 'gID=24&cID=576&action=edit&', '68.56.168.23'),
(1687, '2009-07-18 23:04:56', 2, 'configuration.php', 'gID=24&cID=576&action=save&', '68.56.168.23'),
(1688, '2009-07-18 23:04:56', 2, 'configuration.php', 'gID=24&cID=576&', '68.56.168.23'),
(1689, '2009-07-18 23:06:44', 2, 'configuration.php', 'gID=24&cID=515&action=edit&', '68.56.168.23'),
(1690, '2009-07-18 23:06:49', 2, 'configuration.php', 'gID=24&cID=515&action=save&', '68.56.168.23'),
(1691, '2009-07-18 23:06:49', 2, 'configuration.php', 'gID=24&cID=515&', '68.56.168.23'),
(1692, '2009-07-18 23:07:06', 2, 'specials.php', '', '68.56.168.23'),
(1693, '2009-07-18 23:07:09', 2, 'specials.php', 'action=new&', '68.56.168.23'),
(1694, '2009-07-18 23:07:45', 2, 'specials.php', 'action=insert&go_back=&', '68.56.168.23'),
(1695, '2009-07-18 23:07:45', 2, 'specials.php', 'sID=51&', '68.56.168.23'),
(1696, '2009-07-18 23:07:57', 2, 'specials.php', 'page=1&sID=51&action=edit&', '68.56.168.23'),
(1697, '2009-07-18 23:08:08', 2, 'specials.php', 'page=1&action=update&go_back=&', '68.56.168.23'),
(1698, '2009-07-18 23:08:09', 2, 'specials.php', 'page=1&sID=51&', '68.56.168.23'),
(1699, '2009-07-18 23:09:33', 2, 'configuration.php', 'gID=8&', '68.56.168.23'),
(1700, '2009-07-18 23:09:40', 2, 'configuration.php', 'gID=24&', '68.56.168.23'),
(1701, '2009-07-18 23:09:43', 2, 'configuration.php', 'gID=24&cID=576&action=edit&', '68.56.168.23'),
(1702, '2009-07-18 23:09:48', 2, 'configuration.php', 'gID=24&cID=576&action=save&', '68.56.168.23'),
(1703, '2009-07-18 23:09:48', 2, 'configuration.php', 'gID=24&cID=576&', '68.56.168.23'),
(1704, '2009-07-18 23:10:04', 2, 'configuration.php', 'gID=24&cID=576&action=edit&', '68.56.168.23'),
(1705, '2009-07-18 23:10:08', 2, 'configuration.php', 'gID=24&cID=576&action=save&', '68.56.168.23'),
(1706, '2009-07-18 23:10:08', 2, 'configuration.php', 'gID=24&cID=576&', '68.56.168.23'),
(1707, '2009-07-18 23:12:56', 2, 'specials.php', '', '68.56.168.23'),
(1708, '2009-07-18 23:13:05', 2, 'specials.php', 'action=new&', '68.56.168.23'),
(1709, '2009-07-18 23:13:57', 2, 'specials.php', 'action=insert&go_back=&', '68.56.168.23'),
(1710, '2009-07-18 23:13:57', 2, 'specials.php', 'sID=52&', '68.56.168.23'),
(1711, '2009-07-18 23:14:37', 2, 'products_price_manager.php', 'action=edit&products_filter=184&', '68.56.168.23'),
(1712, '2009-07-18 23:14:38', 2, 'products_price_manager.php', 'action=edit_update&products_filter=184&current_category_id=68&', '68.56.168.23'),
(1713, '2009-07-18 23:15:54', 2, 'configuration.php', 'gID=24&', '68.56.168.23'),
(1714, '2009-07-18 23:15:56', 2, 'configuration.php', 'gID=24&cID=576&action=edit&', '68.56.168.23'),
(1715, '2009-07-18 23:15:59', 2, 'configuration.php', 'gID=24&cID=576&action=save&', '68.56.168.23'),
(1716, '2009-07-18 23:16:00', 2, 'configuration.php', 'gID=24&cID=576&', '68.56.168.23'),
(1717, '2009-07-19 01:11:34', 0, 'login.php ', '', '68.56.168.23'),
(1718, '2009-07-19 01:11:48', 0, 'login.php dale', '', '68.56.168.23'),
(1719, '2009-07-19 01:11:57', 2, 'configuration.php', 'gID=24&', '68.56.168.23'),
(1720, '2009-07-19 01:12:08', 2, 'configuration.php', 'gID=24&cID=577&action=edit&', '68.56.168.23'),
(1721, '2009-07-19 01:12:35', 2, 'configuration.php', 'gID=24&cID=578&action=edit&', '68.56.168.23'),
(1722, '2009-07-19 01:13:03', 2, 'configuration.php', 'gID=24&cID=503&action=edit&', '68.56.168.23'),
(1723, '2009-07-19 01:13:09', 2, 'configuration.php', 'gID=24&cID=503&action=save&', '68.56.168.23'),
(1724, '2009-07-19 01:13:09', 2, 'configuration.php', 'gID=24&cID=503&', '68.56.168.23'),
(1725, '2009-07-19 01:13:21', 2, 'configuration.php', 'gID=24&cID=577&action=edit&', '68.56.168.23'),
(1726, '2009-07-19 01:13:27', 2, 'configuration.php', 'gID=24&cID=577&action=save&', '68.56.168.23'),
(1727, '2009-07-19 01:13:27', 2, 'configuration.php', 'gID=24&cID=577&', '68.56.168.23'),
(1728, '2009-07-19 01:13:45', 2, 'configuration.php', 'gID=24&cID=577&action=edit&', '68.56.168.23'),
(1729, '2009-07-19 01:13:49', 2, 'configuration.php', 'gID=24&cID=577&action=save&', '68.56.168.23'),
(1730, '2009-07-19 01:13:49', 2, 'configuration.php', 'gID=24&cID=577&', '68.56.168.23'),
(1731, '2009-07-19 01:14:01', 2, 'configuration.php', 'gID=24&cID=577&action=edit&', '68.56.168.23'),
(1732, '2009-07-19 01:14:13', 2, 'configuration.php', 'gID=24&cID=577&action=save&', '68.56.168.23'),
(1733, '2009-07-19 01:14:13', 2, 'configuration.php', 'gID=24&cID=577&', '68.56.168.23'),
(1734, '2009-07-19 01:15:14', 2, 'salemaker.php', '', '68.56.168.23'),
(1735, '2009-07-19 01:15:35', 2, 'specials.php', '', '68.56.168.23'),
(1736, '2009-07-19 01:15:46', 2, 'specials.php', 'page=1&sID=51&action=edit&', '68.56.168.23'),
(1737, '2009-07-19 01:16:10', 2, 'specials.php', 'page=1&action=update&go_back=&', '68.56.168.23'),
(1738, '2009-07-19 01:16:11', 2, 'specials.php', 'page=1&sID=51&', '68.56.168.23'),
(1739, '2009-07-19 01:16:14', 2, 'specials.php', 'page=1&action=new&', '68.56.168.23'),
(1740, '2009-07-19 01:16:32', 2, 'specials.php', 'page=1&action=insert&go_back=&', '68.56.168.23'),
(1741, '2009-07-19 01:16:32', 2, 'specials.php', 'page=1&sID=53&', '68.56.168.23'),
(1742, '2009-07-19 02:16:34', 2, 'configuration.php', 'gID=24&', '68.56.168.23'),
(1743, '2009-07-19 02:16:39', 2, 'configuration.php', 'gID=24&cID=577&action=edit&', '68.56.168.23'),
(1744, '2009-07-19 02:17:15', 2, 'configuration.php', 'gID=24&cID=577&action=save&', '68.56.168.23'),
(1745, '2009-07-19 02:17:15', 2, 'configuration.php', 'gID=24&cID=577&', '68.56.168.23'),
(1746, '2009-07-19 02:17:37', 2, 'configuration.php', 'gID=24&cID=577&action=edit&', '68.56.168.23'),
(1747, '2009-07-19 02:17:45', 2, 'configuration.php', 'gID=24&cID=577&action=save&', '68.56.168.23'),
(1748, '2009-07-19 02:17:45', 2, 'configuration.php', 'gID=24&cID=577&', '68.56.168.23'),
(1749, '2009-07-19 02:18:00', 2, 'configuration.php', 'gID=24&cID=578&action=edit&', '68.56.168.23'),
(1750, '2009-07-19 02:31:50', 2, 'configuration.php', 'gID=24&cID=577&action=edit&', '68.56.168.23'),
(1751, '2009-07-19 02:32:00', 2, 'configuration.php', 'gID=24&cID=577&action=save&', '68.56.168.23'),
(1752, '2009-07-19 02:32:00', 2, 'configuration.php', 'gID=24&cID=577&', '68.56.168.23'),
(1753, '2009-07-19 02:33:01', 2, 'configuration.php', 'gID=24&cID=577&action=edit&', '68.56.168.23'),
(1754, '2009-07-19 02:33:16', 2, 'configuration.php', 'gID=24&cID=577&action=save&', '68.56.168.23'),
(1755, '2009-07-19 02:33:16', 2, 'configuration.php', 'gID=24&cID=577&', '68.56.168.23'),
(1756, '2009-07-19 02:34:16', 2, 'configuration.php', 'gID=24&cID=577&action=edit&', '68.56.168.23'),
(1757, '2009-07-19 02:34:24', 2, 'configuration.php', 'gID=24&cID=578&action=edit&', '68.56.168.23'),
(1758, '2009-07-19 02:37:48', 2, 'layout_controller.php', '', '68.56.168.23'),
(1759, '2009-07-19 02:39:39', 2, 'xsell.php', '', '68.56.168.23'),
(1760, '2009-07-19 02:40:31', 2, 'configuration.php', 'gID=23&', '68.56.168.23'),
(1761, '2009-07-19 02:42:20', 2, 'configuration.php', 'gID=8&', '68.56.168.23'),
(1762, '2009-07-19 02:43:52', 2, 'configuration.php', 'gID=24&', '68.56.168.23'),
(1763, '2009-07-19 02:43:56', 2, 'configuration.php', 'gID=24&cID=577&action=edit&', '68.56.168.23'),
(1764, '2009-07-19 02:44:00', 2, 'configuration.php', 'gID=24&cID=577&action=save&', '68.56.168.23'),
(1765, '2009-07-19 02:44:00', 2, 'configuration.php', 'gID=24&cID=577&', '68.56.168.23'),
(1766, '2009-07-19 02:50:05', 2, 'configuration.php', 'gID=24&cID=502&action=edit&', '68.56.168.23'),
(1767, '2009-07-19 02:50:10', 2, 'configuration.php', 'gID=24&cID=502&action=save&', '68.56.168.23'),
(1768, '2009-07-19 02:50:11', 2, 'configuration.php', 'gID=24&cID=502&', '68.56.168.23'),
(1769, '2009-07-19 02:50:16', 2, 'configuration.php', 'gID=24&cID=503&action=edit&', '68.56.168.23'),
(1770, '2009-07-19 02:50:20', 2, 'configuration.php', 'gID=24&cID=503&action=save&', '68.56.168.23'),
(1771, '2009-07-19 02:50:20', 2, 'configuration.php', 'gID=24&cID=503&', '68.56.168.23'),
(1772, '2009-07-19 02:50:37', 2, 'configuration.php', 'gID=24&cID=510&action=edit&', '68.56.168.23'),
(1773, '2009-07-19 02:50:40', 2, 'configuration.php', 'gID=24&cID=510&action=save&', '68.56.168.23'),
(1774, '2009-07-19 02:50:40', 2, 'configuration.php', 'gID=24&cID=510&', '68.56.168.23'),
(1775, '2009-07-19 02:50:51', 2, 'configuration.php', 'gID=24&cID=511&action=edit&', '68.56.168.23'),
(1776, '2009-07-19 02:50:56', 2, 'configuration.php', 'gID=24&cID=511&action=save&', '68.56.168.23'),
(1777, '2009-07-19 02:50:57', 2, 'configuration.php', 'gID=24&cID=511&', '68.56.168.23'),
(1778, '2009-07-19 02:51:06', 2, 'configuration.php', 'gID=24&cID=514&action=edit&', '68.56.168.23'),
(1779, '2009-07-19 02:51:09', 2, 'configuration.php', 'gID=24&cID=514&action=save&', '68.56.168.23'),
(1780, '2009-07-19 02:51:10', 2, 'configuration.php', 'gID=24&cID=514&', '68.56.168.23'),
(1781, '2009-07-19 02:51:14', 2, 'configuration.php', 'gID=24&cID=515&action=edit&', '68.56.168.23'),
(1782, '2009-07-19 02:51:16', 2, 'configuration.php', 'gID=24&cID=515&action=save&', '68.56.168.23'),
(1783, '2009-07-19 02:51:17', 2, 'configuration.php', 'gID=24&cID=515&', '68.56.168.23'),
(1784, '2009-07-19 02:51:34', 2, 'configuration.php', 'gID=24&cID=520&action=edit&', '68.56.168.23'),
(1785, '2009-07-19 02:52:03', 2, 'configuration.php', 'gID=24&cID=520&action=save&', '68.56.168.23'),
(1786, '2009-07-19 02:52:03', 2, 'configuration.php', 'gID=24&cID=520&', '68.56.168.23'),
(1787, '2009-07-19 02:53:49', 2, 'categories.php', '', '68.56.168.23'),
(1788, '2009-07-19 02:54:12', 2, 'categories.php', 'cPath=67&', '68.56.168.23'),
(1789, '2009-07-19 02:54:17', 2, 'categories.php', 'cPath=67_68&', '68.56.168.23'),
(1790, '2009-07-19 02:54:21', 2, 'product.php', 'cPath=67_68&pID=184&action=new_product_preview&read=only&product_type=1&page=1&', '68.56.168.23'),
(1791, '2009-07-19 02:56:56', 2, 'categories.php', 'cPath=67_68&', '68.56.168.23'),
(1792, '2009-07-19 02:56:59', 2, 'product.php', 'cPath=67_68&pID=184&action=new_product_preview&read=only&product_type=1&page=1&', '68.56.168.23'),
(1793, '2009-07-19 02:57:07', 2, 'categories.php', 'cPath=67_68&pID=184&', '68.56.168.23'),
(1794, '2009-07-19 02:57:10', 2, 'product.php', 'cPath=67_68&product_type=1&pID=181&action=new_product&', '68.56.168.23'),
(1795, '2009-07-19 02:57:58', 2, 'product.php', 'cPath=67_68&product_type=1&pID=184&action=new_product&', '68.56.168.23'),
(1796, '2009-07-19 02:58:27', 2, 'product.php', 'cPath=67_68&product_type=1&pID=184&action=new_product_preview&', '68.56.168.23'),
(1797, '2009-07-19 02:58:29', 2, 'product.php', 'cPath=67_68&product_type=1&pID=184&action=update_product&', '68.56.168.23'),
(1798, '2009-07-19 02:58:30', 2, 'categories.php', 'cPath=67_68&pID=184&', '68.56.168.23'),
(1799, '2009-07-19 02:58:53', 2, 'specials.php', '', '68.56.168.23'),
(1800, '2009-07-19 02:58:59', 2, 'specials.php', 'page=1&sID=51&action=delete&', '68.56.168.23'),
(1801, '2009-07-19 02:59:08', 2, 'specials.php', 'page=1&sID=51&action=deleteconfirm&', '68.56.168.23'),
(1802, '2009-07-19 02:59:08', 2, 'specials.php', 'page=1&', '68.56.168.23'),
(1803, '2009-07-19 02:59:11', 2, 'specials.php', 'page=1&action=new&', '68.56.168.23'),
(1804, '2009-07-19 02:59:18', 2, 'specials.php', 'page=1&action=insert&go_back=&', '68.56.168.23'),
(1805, '2009-07-19 02:59:18', 2, 'specials.php', 'page=1&sID=54&', '68.56.168.23'),
(1806, '2009-07-19 02:59:23', 2, 'specials.php', 'page=1&sID=54&action=edit&', '68.56.168.23'),
(1807, '2009-07-19 02:59:42', 2, 'specials.php', 'page=1&action=update&go_back=&', '68.56.168.23'),
(1808, '2009-07-19 02:59:42', 2, 'specials.php', 'page=1&sID=54&', '68.56.168.23'),
(1809, '2009-07-19 03:01:42', 2, 'configuration.php', 'gID=23&', '68.56.168.23'),
(1810, '2009-07-19 03:26:02', 2, 'configuration.php', 'gID=23&', '68.56.168.23'),
(1811, '2009-07-19 09:10:46', 0, 'login.php ', '', '68.56.168.23'),
(1812, '2009-07-19 09:11:01', 0, 'login.php dale', '', '68.56.168.23'),
(1813, '2009-07-19 09:11:15', 2, 'configuration.php', 'gID=24&', '68.56.168.23'),
(1814, '2009-07-19 09:11:18', 2, 'configuration.php', 'gID=24&cID=577&action=edit&', '68.56.168.23'),
(1815, '2009-07-19 09:11:24', 2, 'configuration.php', 'gID=24&cID=577&action=save&', '68.56.168.23'),
(1816, '2009-07-19 09:11:24', 2, 'configuration.php', 'gID=24&cID=577&', '68.56.168.23'),
(1817, '2009-07-19 09:11:36', 2, 'configuration.php', 'gID=24&cID=577&action=edit&', '68.56.168.23'),
(1818, '2009-07-19 09:11:41', 2, 'configuration.php', 'gID=24&cID=577&action=save&', '68.56.168.23'),
(1819, '2009-07-19 09:11:42', 2, 'configuration.php', 'gID=24&cID=577&', '68.56.168.23');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `authorizenet`
--
 
CREATE TABLE IF NOT EXISTS `authorizenet` (
  `id` int(11) unsigned NOT NULL auto_increment,
  `customer_id` int(11) NOT NULL default '0',
  `order_id` int(11) NOT NULL default '0',
  `response_code` int(1) NOT NULL default '0',
  `response_text` varchar(255) NOT NULL default '',
  `authorization_type` varchar(50) NOT NULL default '',
  `transaction_id` int(15) NOT NULL default '0',
  `sent` longtext NOT NULL,
  `received` longtext NOT NULL,
  `time` varchar(50) NOT NULL default '',
  `session_id` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
 
--
-- Dumping data for table `authorizenet`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `banners`
--
 
CREATE TABLE IF NOT EXISTS `banners` (
  `banners_id` int(11) NOT NULL auto_increment,
  `banners_title` varchar(64) NOT NULL default '',
  `banners_url` varchar(255) NOT NULL default '',
  `banners_image` varchar(64) NOT NULL default '',
  `banners_group` varchar(15) NOT NULL default '',
  `banners_html_text` text,
  `expires_impressions` int(7) default '0',
  `expires_date` datetime default NULL,
  `date_scheduled` datetime default NULL,
  `date_added` datetime NOT NULL default '0001-01-01 00:00:00',
  `date_status_change` datetime default NULL,
  `status` int(1) NOT NULL default '1',
  `banners_open_new_windows` int(1) NOT NULL default '1',
  `banners_on_ssl` int(1) NOT NULL default '1',
  `banners_sort_order` int(11) NOT NULL default '0',
  PRIMARY KEY  (`banners_id`),
  KEY `idx_status_group_zen` (`status`,`banners_group`),
  KEY `idx_expires_date_zen` (`expires_date`),
  KEY `idx_date_scheduled_zen` (`date_scheduled`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=10 ;
 
--
-- Dumping data for table `banners`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `banners_history`
--
 
CREATE TABLE IF NOT EXISTS `banners_history` (
  `banners_history_id` int(11) NOT NULL auto_increment,
  `banners_id` int(11) NOT NULL default '0',
  `banners_shown` int(5) NOT NULL default '0',
  `banners_clicked` int(5) NOT NULL default '0',
  `banners_history_date` datetime NOT NULL default '0001-01-01 00:00:00',
  PRIMARY KEY  (`banners_history_id`),
  KEY `idx_banners_id_zen` (`banners_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=16 ;
 
--
-- Dumping data for table `banners_history`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `categories`
--
 
CREATE TABLE IF NOT EXISTS `categories` (
  `categories_id` int(11) NOT NULL auto_increment,
  `categories_image` varchar(64) default NULL,
  `parent_id` int(11) NOT NULL default '0',
  `sort_order` int(3) default NULL,
  `date_added` datetime default NULL,
  `last_modified` datetime default NULL,
  `categories_status` tinyint(1) NOT NULL default '1',
  PRIMARY KEY  (`categories_id`),
  KEY `idx_parent_id_cat_id_zen` (`parent_id`,`categories_id`),
  KEY `idx_status_zen` (`categories_status`),
  KEY `idx_sort_order_zen` (`sort_order`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=69 ;
 
--
-- Dumping data for table `categories`
--
 
INSERT INTO `categories` (`categories_id`, `categories_image`, `parent_id`, `sort_order`, `date_added`, `last_modified`, `categories_status`) VALUES
(21, 'categories/gv_25.gif', 0, 4, '2003-12-23 03:18:19', '2004-05-21 00:26:06', 1),
(65, NULL, 0, 0, '2009-06-20 12:36:23', NULL, 0),
(66, NULL, 65, 0, '2009-06-20 12:36:55', NULL, 0),
(67, NULL, 0, 0, '2009-06-23 19:50:02', NULL, 1),
(68, 'CalWonderOrangeBell.jpg', 67, 0, '2009-06-23 19:50:51', '2009-07-12 13:01:35', 1);
 
-- --------------------------------------------------------
 
--
-- Table structure for table `categories_description`
--
 
CREATE TABLE IF NOT EXISTS `categories_description` (
  `categories_id` int(11) NOT NULL default '0',
  `language_id` int(11) NOT NULL default '1',
  `categories_name` varchar(32) NOT NULL default '',
  `categories_description` text NOT NULL,
  PRIMARY KEY  (`categories_id`,`language_id`),
  KEY `idx_categories_name_zen` (`categories_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
--
-- Dumping data for table `categories_description`
--
 
INSERT INTO `categories_description` (`categories_id`, `language_id`, `categories_name`, `categories_description`) VALUES
(21, 1, 'Gift Certificates', 'Send a Gift Certificate today!<br /><br />Gift Certificates are good for anything in the store.'),
(65, 1, 'Hidden Products', ''),
(66, 1, 'Enrollment', ''),
(67, 1, 'Produce', 'Get The Best Produce Available'),
(68, 1, 'Cucumbers', 'Tasty');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `configuration`
--
 
CREATE TABLE IF NOT EXISTS `configuration` (
  `configuration_id` int(11) NOT NULL auto_increment,
  `configuration_title` text NOT NULL,
  `configuration_key` varchar(255) NOT NULL default '',
  `configuration_value` text NOT NULL,
  `configuration_description` text NOT NULL,
  `configuration_group_id` int(11) NOT NULL default '0',
  `sort_order` int(5) default NULL,
  `last_modified` datetime default NULL,
  `date_added` datetime NOT NULL default '0001-01-01 00:00:00',
  `use_function` text,
  `set_function` text,
  PRIMARY KEY  (`configuration_id`),
  UNIQUE KEY `unq_config_key_zen` (`configuration_key`),
  KEY `idx_key_value_zen` (`configuration_key`,`configuration_value`(10)),
  KEY `idx_cfg_grp_id_zen` (`configuration_group_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=579 ;
 
--
-- Dumping data for table `configuration`
--
 
INSERT INTO `configuration` (`configuration_id`, `configuration_title`, `configuration_key`, `configuration_value`, `configuration_description`, `configuration_group_id`, `sort_order`, `last_modified`, `date_added`, `use_function`, `set_function`) VALUES
(1, 'Store Name', 'STORE_NAME', 'Sarasota Farms', 'The name of my store', 1, 1, NULL, '2008-01-03 11:24:40', NULL, NULL),
(2, 'Store Owner', 'STORE_OWNER', 'Your Name', 'The name of my store owner', 1, 2, NULL, '2008-01-03 11:24:40', NULL, NULL),
(3, 'Country', 'STORE_COUNTRY', '223', 'The country my store is located in <br /><br /><strong>Note: Please remember to update the store zone.</strong>', 1, 6, NULL, '2008-01-03 11:24:40', 'zen_get_country_name', 'zen_cfg_pull_down_country_list('),
(4, 'Zone', 'STORE_ZONE', '18', 'The zone my store is located in', 1, 7, '2009-06-18 23:28:44', '2008-01-03 11:24:40', 'zen_cfg_get_zone_name', 'zen_cfg_pull_down_zone_list('),
(5, 'Expected Sort Order', 'EXPECTED_PRODUCTS_SORT', 'desc', 'This is the sort order used in the expected products box.', 1, 8, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''asc'', ''desc''), '),
(6, 'Expected Sort Field', 'EXPECTED_PRODUCTS_FIELD', 'date_expected', 'The column to sort by in the expected products box.', 1, 9, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''products_name'', ''date_expected''), '),
(7, 'Switch To Default Language Currency', 'USE_DEFAULT_LANGUAGE_CURRENCY', 'true', 'Automatically switch to the language''s currency when it is changed', 1, 10, '2009-06-18 23:28:32', '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(8, 'Language Selector', 'LANGUAGE_DEFAULT_SELECTOR', 'Default', 'Should the default language be based on the Store preferences, or the customer''s browser settings?<br /><br />Default: Store''s default settings', 1, 11, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''Default'', ''Browser''), '),
(9, 'Use Search-Engine Safe URLs (still in development)', 'SEARCH_ENGINE_FRIENDLY_URLS', 'false', 'Use search-engine safe urls for all site links', 6, 12, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(10, 'Display Cart After Adding Product', 'DISPLAY_CART', 'false', 'Display the shopping cart after adding a product (or return back to their origin)', 1, 14, '2009-06-27 11:07:43', '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(11, 'Default Search Operator', 'ADVANCED_SEARCH_DEFAULT_OPERATOR', 'and', 'Default search operators', 1, 17, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''and'', ''or''), '),
(12, 'Store Address and Phone', 'STORE_NAME_ADDRESS', 'Store Name\r\n Address\r\n Country\r\n Phone', 'This is the Store Name, Address and Phone used on printable documents and displayed online', 1, 18, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_textarea('),
(13, 'Show Category Counts', 'SHOW_COUNTS', 'true', 'Count recursively how many products are in each category', 1, 19, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(14, 'Tax Decimal Places', 'TAX_DECIMAL_PLACES', '0', 'Pad the tax value this amount of decimal places', 1, 20, NULL, '2008-01-03 11:24:40', NULL, NULL),
(15, 'Display Prices with Tax', 'DISPLAY_PRICE_WITH_TAX', 'false', 'Display prices with tax included (true) or add the tax at the end (false)', 1, 21, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(16, 'Display Prices with Tax in Admin', 'DISPLAY_PRICE_WITH_TAX_ADMIN', 'false', 'Display prices with tax included (true) or add the tax at the end (false) in Admin(Invoices)', 1, 21, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(17, 'Basis of Product Tax', 'STORE_PRODUCT_TAX_BASIS', 'Shipping', 'On what basis is Product Tax calculated. Options are<br />Shipping - Based on customers Shipping Address<br />Billing Based on customers Billing address<br />Store - Based on Store address if Billing/Shipping Zone equals Store zone', 1, 21, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''Shipping'', ''Billing'', ''Store''), '),
(18, 'Basis of Shipping Tax', 'STORE_SHIPPING_TAX_BASIS', 'Shipping', 'On what basis is Shipping Tax calculated. Options are<br />Shipping - Based on customers Shipping Address<br />Billing Based on customers Billing address<br />Store - Based on Store address if Billing/Shipping Zone equals Store zone - Can be overriden by correctly written Shipping Module', 1, 21, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''Shipping'', ''Billing'', ''Store''), '),
(19, 'Sales Tax Display Status', 'STORE_TAX_DISPLAY_STATUS', '0', 'Always show Sales Tax even when amount is $0.00?<br />0= Off<br />1= On', 1, 21, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(20, 'Admin Session Time Out in Seconds', 'SESSION_TIMEOUT_ADMIN', '3600', 'Enter the time in seconds. Default=3600<br />Example: 3600= 1 hour<br /><br />Note: Too few seconds can result in timeout issues when adding/editing products', 1, 40, NULL, '2008-01-03 11:24:40', NULL, NULL),
(21, 'Admin Set max_execution_time for processes', 'GLOBAL_SET_TIME_LIMIT', '60', 'Enter the time in seconds for how long the max_execution_time of processes should be. Default=60<br />Example: 60= 1 minute<br /><br />Note: Changing the time limit is only needed if you are having problems with the execution time of a process', 1, 42, NULL, '2008-01-03 11:24:40', NULL, NULL),
(22, 'Show if version update available', 'SHOW_VERSION_UPDATE_IN_HEADER', 'true', 'Automatically check to see if a new version of Zen Cart is available. Enabling this can sometimes slow down the loading of Admin pages. (Displayed on main Index page after login, and Server Info page.)', 1, 44, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(23, 'Store Status', 'STORE_STATUS', '0', 'What is your Store Status<br />0= Normal Store<br />1= Showcase no prices<br />2= Showcase with prices', 1, 25, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2''), '),
(24, 'Server Uptime', 'DISPLAY_SERVER_UPTIME', 'true', 'Displaying Server uptime can cause entries in error logs on some servers. (true = Display, false = don''t display)', 1, 46, '2003-11-08 20:24:47', '0001-01-01 00:00:00', '', 'zen_cfg_select_option(array(''true'', ''false''),'),
(25, 'Missing Page Check', 'MISSING_PAGE_CHECK', 'Page Not Found', 'Zen Cart can check for missing pages in the URL and redirect to Index page. For debugging you may want to turn this off. <br /><br /><strong>Default=On</strong><br />On = Send missing pages to ''index''<br />Off = Don''t check for missing pages<br />Page Not Found = display the Page-Not-Found page', 1, 48, '2003-11-08 20:24:47', '0001-01-01 00:00:00', '', 'zen_cfg_select_option(array(''On'', ''Off'', ''Page Not Found''),'),
(26, 'cURL Proxy Status', 'CURL_PROXY_REQUIRED', 'False', 'Does your host require that you use a proxy for cURL communication?', 1, 50, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(27, 'cURL Proxy Address', 'CURL_PROXY_SERVER_DETAILS', '', 'If you have GoDaddy hosting or other hosting services that require use of a proxy to talk to external sites via cURL, enter their proxy address here.<br />format: address:port<br />ie: for GoDaddy, enter: <strong>proxy.shr.secureserver.net:3128</strong> or possibly 64.202.165.130:3128', 1, 51, NULL, '2008-01-03 11:24:40', NULL, NULL),
(28, 'HTML Editor', 'HTML_EDITOR_PREFERENCE', 'HTMLAREA', 'Please select the HTML/Rich-Text editor you wish to use for composing Admin-related emails, newsletters, and product descriptions', 1, 110, '2009-06-20 21:30:32', '2008-01-03 11:24:40', NULL, 'zen_cfg_pull_down_htmleditors('),
(29, 'Enable phpBB linkage?', 'PHPBB_LINKS_ENABLED', '', 'Should Zen Cart synchronize new account information to your (already-installed) phpBB forum?', 1, 120, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(30, 'Show Category Counts - Admin', 'SHOW_COUNTS_ADMIN', 'true', 'Show Category Counts in Admin?', 1, 19, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(31, 'Currency Conversion Ratio', 'CURRENCY_UPLIFT_RATIO', '1.05', 'When auto-updating currencies, what "uplift" ratio should be used to calculate the exchange rate used by your store?<br />ie: the bank rate is obtained from the currency-exchange servers; how much extra do you want to charge in order to make up the difference between the bank rate and the consumer rate?<br /><br /><strong>Default: 1.05 </strong><br />This will cause the published bank rate to be multiplied by 1.05 to set the currency rates in your store.', 1, 55, NULL, '2008-01-03 11:24:40', NULL, NULL),
(32, 'First Name', 'ENTRY_FIRST_NAME_MIN_LENGTH', '2', 'Minimum length of first name', 2, 1, NULL, '2008-01-03 11:24:40', NULL, NULL),
(33, 'Last Name', 'ENTRY_LAST_NAME_MIN_LENGTH', '2', 'Minimum length of last name', 2, 2, NULL, '2008-01-03 11:24:40', NULL, NULL),
(34, 'Date of Birth', 'ENTRY_DOB_MIN_LENGTH', '5', 'Minimum length of date of birth', 2, 3, '2009-07-12 00:29:32', '2008-01-03 11:24:40', NULL, NULL),
(35, 'E-Mail Address', 'ENTRY_EMAIL_ADDRESS_MIN_LENGTH', '6', 'Minimum length of e-mail address', 2, 4, NULL, '2008-01-03 11:24:40', NULL, NULL),
(36, 'Street Address', 'ENTRY_STREET_ADDRESS_MIN_LENGTH', '5', 'Minimum length of street address', 2, 5, NULL, '2008-01-03 11:24:40', NULL, NULL),
(37, 'Company', 'ENTRY_COMPANY_MIN_LENGTH', '0', 'Minimum length of company name', 2, 6, NULL, '2008-01-03 11:24:40', NULL, NULL),
(38, 'Post Code', 'ENTRY_POSTCODE_MIN_LENGTH', '4', 'Minimum length of post code', 2, 7, NULL, '2008-01-03 11:24:40', NULL, NULL),
(39, 'City', 'ENTRY_CITY_MIN_LENGTH', '2', 'Minimum length of city', 2, 8, NULL, '2008-01-03 11:24:40', NULL, NULL),
(40, 'State', 'ENTRY_STATE_MIN_LENGTH', '2', 'Minimum length of state', 2, 9, NULL, '2008-01-03 11:24:40', NULL, NULL),
(41, 'Telephone Number', 'ENTRY_TELEPHONE_MIN_LENGTH', '3', 'Minimum length of telephone number', 2, 10, NULL, '2008-01-03 11:24:40', NULL, NULL),
(42, 'Password', 'ENTRY_PASSWORD_MIN_LENGTH', '5', 'Minimum length of password', 2, 11, NULL, '2008-01-03 11:24:40', NULL, NULL),
(43, 'Credit Card Owner Name', 'CC_OWNER_MIN_LENGTH', '3', 'Minimum length of credit card owner name', 2, 12, NULL, '2008-01-03 11:24:40', NULL, NULL),
(44, 'Credit Card Number', 'CC_NUMBER_MIN_LENGTH', '10', 'Minimum length of credit card number', 2, 13, NULL, '2008-01-03 11:24:40', NULL, NULL),
(45, 'Credit Card CVV Number', 'CC_CVV_MIN_LENGTH', '3', 'Minimum length of credit card CVV number', 2, 13, NULL, '2008-01-03 11:24:40', NULL, NULL),
(46, 'Product Review Text', 'REVIEW_TEXT_MIN_LENGTH', '50', 'Minimum length of product review text', 2, 14, NULL, '2008-01-03 11:24:40', NULL, NULL),
(47, 'Best Sellers', 'MIN_DISPLAY_BESTSELLERS', '1', 'Minimum number of best sellers to display', 2, 15, NULL, '2008-01-03 11:24:40', NULL, NULL),
(48, 'Also Purchased Products', 'MIN_DISPLAY_ALSO_PURCHASED', '1', 'Minimum number of products to display in the ''This Customer Also Purchased'' box', 2, 16, NULL, '2008-01-03 11:24:40', NULL, NULL),
(49, 'Nick Name', 'ENTRY_NICK_MIN_LENGTH', '3', 'Minimum length of Nick Name', 2, 1, NULL, '2008-01-03 11:24:40', NULL, NULL),
(50, 'Address Book Entries', 'MAX_ADDRESS_BOOK_ENTRIES', '5', 'Maximum address book entries a customer is allowed to have', 3, 1, NULL, '2008-01-03 11:24:40', NULL, NULL),
(51, 'Search Results Per Page', 'MAX_DISPLAY_SEARCH_RESULTS', '20', 'Number of products to list on a search result page', 3, 2, NULL, '2008-01-03 11:24:40', NULL, NULL),
(52, 'Prev/Next Navigation Page Links', 'MAX_DISPLAY_PAGE_LINKS', '5', 'Number of ''number'' links use for page-sets', 3, 3, NULL, '2008-01-03 11:24:40', NULL, NULL),
(53, 'Products on Special ', 'MAX_DISPLAY_SPECIAL_PRODUCTS', '9', 'Number of products on special to display', 3, 4, NULL, '2008-01-03 11:24:40', NULL, NULL),
(54, 'New Products Module', 'MAX_DISPLAY_NEW_PRODUCTS', '9', 'Number of new products to display in a category', 3, 5, NULL, '2008-01-03 11:24:40', NULL, NULL),
(55, 'Upcoming Products ', 'MAX_DISPLAY_UPCOMING_PRODUCTS', '10', 'Number of ''upcoming'' products to display', 3, 6, NULL, '2008-01-03 11:24:40', NULL, NULL),
(56, 'Manufacturers List - Scroll Box Size/Style', 'MAX_MANUFACTURERS_LIST', '3', 'Number of manufacturers names to be displayed in the scroll box window. Setting this to 1 or 0 will display a dropdown list.', 3, 7, NULL, '2008-01-03 11:24:40', NULL, NULL),
(57, 'Manufacturers List - Verify Product Exist', 'PRODUCTS_MANUFACTURERS_STATUS', '1', 'Verify that at least 1 product exists and is active for the manufacturer name to show<br /><br />Note: When this feature is ON it can produce slower results on sites with a large number of products and/or manufacturers<br />0= off 1= on', 3, 7, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(58, 'Music Genre List - Scroll Box Size/Style', 'MAX_MUSIC_GENRES_LIST', '3', 'Number of music genre names to be displayed in the scroll box window. Setting this to 1 or 0 will display a dropdown list.', 3, 7, NULL, '2008-01-03 11:24:40', NULL, NULL),
(59, 'Record Company List - Scroll Box Size/Style', 'MAX_RECORD_COMPANY_LIST', '3', 'Number of record company names to be displayed in the scroll box window. Setting this to 1 or 0 will display a dropdown list.', 3, 7, NULL, '2008-01-03 11:24:40', NULL, NULL),
(60, 'Length of Record Company Name', 'MAX_DISPLAY_RECORD_COMPANY_NAME_LEN', '15', 'Used in record companies box; maximum length of record company name to display. Longer names will be truncated.', 3, 8, NULL, '2008-01-03 11:24:40', NULL, NULL),
(61, 'Length of Music Genre Name', 'MAX_DISPLAY_MUSIC_GENRES_NAME_LEN', '15', 'Used in music genres box; maximum length of music genre name to display. Longer names will be truncated.', 3, 8, NULL, '2008-01-03 11:24:40', NULL, NULL),
(62, 'Length of Manufacturers Name', 'MAX_DISPLAY_MANUFACTURER_NAME_LEN', '15', 'Used in manufacturers box; maximum length of manufacturers name to display. Longer names will be truncated.', 3, 8, NULL, '2008-01-03 11:24:40', NULL, NULL),
(63, 'New Product Reviews Per Page', 'MAX_DISPLAY_NEW_REVIEWS', '6', 'Number of new reviews to display on each page', 3, 9, NULL, '2008-01-03 11:24:40', NULL, NULL),
(64, 'Random Product Reviews for SideBox', 'MAX_RANDOM_SELECT_REVIEWS', '1', 'Number of random product REVIEWS to rotate in the sidebox<br />Enter the number of products to display in this sidebox at one time.<br /><br />How many products do you want to display in this sidebox?', 3, 10, NULL, '2008-01-03 11:24:40', NULL, NULL),
(65, 'Random New Products for SideBox', 'MAX_RANDOM_SELECT_NEW', '3', 'Number of random NEW products to rotate in the sidebox<br />Enter the number of products to display in this sidebox at one time.<br /><br />How many products do you want to display in this sidebox?', 3, 11, NULL, '2008-01-03 11:24:40', NULL, NULL),
(66, 'Random Products On Special for SideBox', 'MAX_RANDOM_SELECT_SPECIALS', '2', 'Number of random products on SPECIAL to rotate in the sidebox<br />Enter the number of products to display in this sidebox at one time.<br /><br />How many products do you want to display in this sidebox?', 3, 12, NULL, '2008-01-03 11:24:40', NULL, NULL),
(67, 'Categories To List Per Row', 'MAX_DISPLAY_CATEGORIES_PER_ROW', '3', 'How many categories to list per row', 3, 13, '2009-06-20 20:08:40', '2008-01-03 11:24:40', NULL, NULL),
(68, 'New Products Listing- Number Per Page', 'MAX_DISPLAY_PRODUCTS_NEW', '10', 'Number of new products listed per page', 3, 14, NULL, '2008-01-03 11:24:40', NULL, NULL),
(69, 'Best Sellers For Box', 'MAX_DISPLAY_BESTSELLERS', '10', 'Number of best sellers to display in box', 3, 15, NULL, '2008-01-03 11:24:40', NULL, NULL),
(70, 'Also Purchased Products', 'MAX_DISPLAY_ALSO_PURCHASED', '6', 'Number of products to display in the ''This Customer Also Purchased'' box', 3, 16, NULL, '2008-01-03 11:24:40', NULL, NULL),
(71, 'Recent Purchases Box- NOTE: box is disabled ', 'MAX_DISPLAY_PRODUCTS_IN_ORDER_HISTORY_BOX', '6', 'Number of products to display in the recent purchases box', 3, 17, NULL, '2008-01-03 11:24:40', NULL, NULL),
(72, 'Customer Order History List Per Page', 'MAX_DISPLAY_ORDER_HISTORY', '10', 'Number of orders to display in the order history list in ''My Account''', 3, 18, NULL, '2008-01-03 11:24:40', NULL, NULL),
(73, 'Maximum Display of Customers on Customers Page', 'MAX_DISPLAY_SEARCH_RESULTS_CUSTOMER', '20', '', 3, 19, NULL, '2008-01-03 11:24:40', NULL, NULL),
(74, 'Maximum Display of Orders on Orders Page', 'MAX_DISPLAY_SEARCH_RESULTS_ORDERS', '20', '', 3, 20, NULL, '2008-01-03 11:24:40', NULL, NULL),
(75, 'Maximum Display of Products on Reports', 'MAX_DISPLAY_SEARCH_RESULTS_REPORTS', '20', '', 3, 21, NULL, '2008-01-03 11:24:40', NULL, NULL),
(76, 'Maximum Categories Products Display List', 'MAX_DISPLAY_RESULTS_CATEGORIES', '10', 'Number of products to list per screen', 3, 22, NULL, '2008-01-03 11:24:40', NULL, NULL),
(77, 'Products Listing- Number Per Page', 'MAX_DISPLAY_PRODUCTS_LISTING', '10', 'Maximum Number of Products to list per page on main page', 3, 30, NULL, '2008-01-03 11:24:40', NULL, NULL),
(78, 'Products Attributes - Option Names and Values Display', 'MAX_ROW_LISTS_OPTIONS', '10', 'Maximum number of option names and values to display in the products attributes page', 3, 24, NULL, '2008-01-03 11:24:40', NULL, NULL),
(79, 'Products Attributes - Attributes Controller Display', 'MAX_ROW_LISTS_ATTRIBUTES_CONTROLLER', '30', 'Maximum number of attributes to display in the Attributes Controller page', 3, 25, NULL, '2008-01-03 11:24:40', NULL, NULL),
(80, 'Products Attributes - Downloads Manager Display', 'MAX_DISPLAY_SEARCH_RESULTS_DOWNLOADS_MANAGER', '30', 'Maximum number of attributes downloads to display in the Downloads Manager page', 3, 26, NULL, '2008-01-03 11:24:40', NULL, NULL),
(81, 'Featured Products - Number to Display Admin', 'MAX_DISPLAY_SEARCH_RESULTS_FEATURED_ADMIN', '10', 'Number of featured products to list per screen - Admin', 3, 27, NULL, '2008-01-03 11:24:40', NULL, NULL),
(82, 'Maximum Display of Featured Products - Main Page', 'MAX_DISPLAY_SEARCH_RESULTS_FEATURED', '9', 'Number of featured products to list on main page', 3, 28, NULL, '2008-01-03 11:24:40', NULL, NULL),
(83, 'Maximum Display of Featured Products Page', 'MAX_DISPLAY_PRODUCTS_FEATURED_PRODUCTS', '10', 'Number of featured products to list per screen', 3, 29, NULL, '2008-01-03 11:24:40', NULL, NULL),
(84, 'Random Featured Products for SideBox', 'MAX_RANDOM_SELECT_FEATURED_PRODUCTS', '2', 'Number of random FEATURED products to rotate in the sidebox<br />Enter the number of products to display in this sidebox at one time.<br /><br />How many products do you want to display in this sidebox?', 3, 30, NULL, '2008-01-03 11:24:40', NULL, NULL),
(85, 'Maximum Display of Specials Products - Main Page', 'MAX_DISPLAY_SPECIAL_PRODUCTS_INDEX', '9', 'Number of special products to list on main page', 3, 31, NULL, '2008-01-03 11:24:40', NULL, NULL),
(86, 'New Product Listing - Limited to ...', 'SHOW_NEW_PRODUCTS_LIMIT', '0', 'Limit the New Product Listing to<br />0= All Products<br />1= Current Month<br />7= 7 Days<br />14= 14 Days<br />30= 30 Days<br />60= 60 Days<br />90= 90 Days<br />120= 120 Days', 3, 40, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''7'', ''14'', ''30'', ''60'', ''90'', ''120''), '),
(87, 'Maximum Display of Products All Page', 'MAX_DISPLAY_PRODUCTS_ALL', '10', 'Number of products to list per screen', 3, 45, NULL, '2008-01-03 11:24:40', NULL, NULL),
(88, 'Maximum Display of Language Flags in Language Side Box', 'MAX_LANGUAGE_FLAGS_COLUMNS', '3', 'Number of Language Flags per Row', 3, 50, NULL, '2008-01-03 11:24:40', NULL, NULL),
(89, 'Maximum File Upload Size', 'MAX_FILE_UPLOAD_SIZE', '2048000', 'What is the Maximum file size for uploads?<br />Default= 2048000', 3, 60, NULL, '2008-01-03 11:24:40', NULL, NULL),
(90, 'Allowed Filename Extensions for uploading', 'UPLOAD_FILENAME_EXTENSIONS', 'jpg,jpeg,gif,png,eps,cdr,ai,pdf,tif,tiff,bmp,zip', 'List the permissible filetypes (filename extensions) to be allowed when files are uploaded to your site by customers. Separate multiple values with commas(,). Do not include the dot(.).<br /><br />Suggested setting: "jpg,jpeg,gif,png,eps,cdr,ai,pdf,tif,tiff,bmp,zip"', 3, 61, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_textarea('),
(91, 'Maximum Orders Detail Display on Admin Orders Listing', 'MAX_DISPLAY_RESULTS_ORDERS_DETAILS_LISTING', '0', 'Maximum number of Order Details<br />0 = Unlimited', 3, 65, NULL, '2008-01-03 11:24:40', NULL, NULL),
(92, 'Maximum PayPal IPN Display on Admin Listing', 'MAX_DISPLAY_SEARCH_RESULTS_PAYPAL_IPN', '20', 'Maximum number of PayPal IPN Lisings in Admin<br />Default is 20', 3, 66, NULL, '2008-01-03 11:24:40', NULL, NULL),
(93, 'Maximum Display Columns Products to Multiple Categories Manager', 'MAX_DISPLAY_PRODUCTS_TO_CATEGORIES_COLUMNS', '3', 'Maximum Display Columns Products to Multiple Categories Manager<br />3 = Default', 3, 70, '2009-06-20 20:09:16', '2008-01-03 11:24:40', NULL, NULL),
(94, 'Maximum Display EZ-Pages', 'MAX_DISPLAY_SEARCH_RESULTS_EZPAGE', '20', 'Maximum Display EZ-Pages<br />20 = Default', 3, 71, NULL, '2008-01-03 11:24:40', NULL, NULL),
(95, 'Small Image Width', 'SMALL_IMAGE_WIDTH', '100', 'The pixel width of small images', 4, 1, NULL, '2008-01-03 11:24:40', NULL, NULL),
(96, 'Small Image Height', 'SMALL_IMAGE_HEIGHT', '80', 'The pixel height of small images', 4, 2, NULL, '2008-01-03 11:24:40', NULL, NULL),
(97, 'Heading Image Width - Admin', 'HEADING_IMAGE_WIDTH', '57', 'The pixel width of heading images in the Admin<br />NOTE: Presently, this adjusts the spacing on the pages in the Admin Pages or could be used to add images to the heading in the Admin', 4, 3, NULL, '2008-01-03 11:24:40', NULL, NULL),
(98, 'Heading Image Height - Admin', 'HEADING_IMAGE_HEIGHT', '40', 'The pixel height of heading images in the Admin<br />NOTE: Presently, this adjusts the spacing on the pages in the Admin Pages or could be used to add images to the heading in the Admin', 4, 4, NULL, '2008-01-03 11:24:40', NULL, NULL),
(99, 'Subcategory Image Width', 'SUBCATEGORY_IMAGE_WIDTH', '100', 'The pixel width of subcategory images', 4, 5, NULL, '2008-01-03 11:24:40', NULL, NULL),
(100, 'Subcategory Image Height', 'SUBCATEGORY_IMAGE_HEIGHT', '57', 'The pixel height of subcategory images', 4, 6, NULL, '2008-01-03 11:24:40', NULL, NULL),
(101, 'Calculate Image Size', 'CONFIG_CALCULATE_IMAGE_SIZE', 'true', 'Calculate the size of images?', 4, 7, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(102, 'Image Required', 'IMAGE_REQUIRED', 'true', 'Enable to display broken images. Good for development.', 4, 8, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(103, 'Image - Shopping Cart Status', 'IMAGE_SHOPPING_CART_STATUS', '1', 'Show product image in the shopping cart?<br />0= off 1= on', 4, 9, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(104, 'Image - Shopping Cart Width', 'IMAGE_SHOPPING_CART_WIDTH', '50', 'Default = 50', 4, 10, NULL, '2008-01-03 11:24:40', NULL, NULL),
(105, 'Image - Shopping Cart Height', 'IMAGE_SHOPPING_CART_HEIGHT', '40', 'Default = 40', 4, 11, NULL, '2008-01-03 11:24:40', NULL, NULL),
(106, 'Category Icon Image Width - Product Info Pages', 'CATEGORY_ICON_IMAGE_WIDTH', '57', 'The pixel width of Category Icon heading images for Product Info Pages', 4, 13, NULL, '2008-01-03 11:24:40', NULL, NULL),
(107, 'Category Icon Image Height - Product Info Pages', 'CATEGORY_ICON_IMAGE_HEIGHT', '40', 'The pixel height of Category Icon heading images for Product Info Pages', 4, 14, NULL, '2008-01-03 11:24:40', NULL, NULL),
(108, 'Top Subcategory Image Width', 'SUBCATEGORY_IMAGE_TOP_WIDTH', '150', 'The pixel width of Top subcategory images<br />Top subcategory is when the Category contains subcategories', 4, 15, NULL, '2008-01-03 11:24:40', NULL, NULL),
(109, 'Top Subcategory Image Height', 'SUBCATEGORY_IMAGE_TOP_HEIGHT', '85', 'The pixel height of Top subcategory images<br />Top subcategory is when the Category contains subcategories', 4, 16, NULL, '2008-01-03 11:24:40', NULL, NULL),
(110, 'Product Info - Image Width', 'MEDIUM_IMAGE_WIDTH', '150', 'The pixel width of Product Info images', 4, 20, NULL, '2008-01-03 11:24:40', NULL, NULL),
(111, 'Product Info - Image Height', 'MEDIUM_IMAGE_HEIGHT', '120', 'The pixel height of Product Info images', 4, 21, NULL, '2008-01-03 11:24:40', NULL, NULL),
(112, 'Product Info - Image Medium Suffix', 'IMAGE_SUFFIX_MEDIUM', '_MED', 'Product Info Medium Image Suffix<br />Default = _MED', 4, 22, NULL, '2008-01-03 11:24:40', NULL, NULL),
(113, 'Product Info - Image Large Suffix', 'IMAGE_SUFFIX_LARGE', '_LRG', 'Product Info Large Image Suffix<br />Default = _LRG', 4, 23, NULL, '2008-01-03 11:24:40', NULL, NULL),
(114, 'Product Info - Number of Additional Images per Row', 'IMAGES_AUTO_ADDED', '3', 'Product Info - Enter the number of additional images to display per row<br />Default = 3', 4, 30, NULL, '2008-01-03 11:24:40', NULL, NULL),
(115, 'Image - Product Listing Width', 'IMAGE_PRODUCT_LISTING_WIDTH', '100', 'Default = 100', 4, 40, NULL, '2008-01-03 11:24:40', NULL, NULL),
(116, 'Image - Product Listing Height', 'IMAGE_PRODUCT_LISTING_HEIGHT', '80', 'Default = 80', 4, 41, NULL, '2008-01-03 11:24:40', NULL, NULL),
(117, 'Image - Product New Listing Width', 'IMAGE_PRODUCT_NEW_LISTING_WIDTH', '100', 'Default = 100', 4, 42, NULL, '2008-01-03 11:24:40', NULL, NULL),
(118, 'Image - Product New Listing Height', 'IMAGE_PRODUCT_NEW_LISTING_HEIGHT', '80', 'Default = 80', 4, 43, NULL, '2008-01-03 11:24:40', NULL, NULL),
(119, 'Image - New Products Width', 'IMAGE_PRODUCT_NEW_WIDTH', '100', 'Default = 100', 4, 44, NULL, '2008-01-03 11:24:40', NULL, NULL),
(120, 'Image - New Products Height', 'IMAGE_PRODUCT_NEW_HEIGHT', '80', 'Default = 80', 4, 45, NULL, '2008-01-03 11:24:40', NULL, NULL),
(121, 'Image - Featured Products Width', 'IMAGE_FEATURED_PRODUCTS_LISTING_WIDTH', '100', 'Default = 100', 4, 46, NULL, '2008-01-03 11:24:40', NULL, NULL),
(122, 'Image - Featured Products Height', 'IMAGE_FEATURED_PRODUCTS_LISTING_HEIGHT', '80', 'Default = 80', 4, 47, NULL, '2008-01-03 11:24:40', NULL, NULL),
(123, 'Image - Product All Listing Width', 'IMAGE_PRODUCT_ALL_LISTING_WIDTH', '100', 'Default = 100', 4, 48, NULL, '2008-01-03 11:24:40', NULL, NULL),
(124, 'Image - Product All Listing Height', 'IMAGE_PRODUCT_ALL_LISTING_HEIGHT', '80', 'Default = 80', 4, 49, NULL, '2008-01-03 11:24:40', NULL, NULL),
(125, 'Product Image - No Image Status', 'PRODUCTS_IMAGE_NO_IMAGE_STATUS', '1', 'Use automatic No Image when none is added to product<br />0= off<br />1= On', 4, 60, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(126, 'Product Image - No Image picture', 'PRODUCTS_IMAGE_NO_IMAGE', 'no_picture.gif', 'Use automatic No Image when none is added to product<br />Default = no_picture.gif', 4, 61, NULL, '2008-01-03 11:24:40', NULL, NULL),
(127, 'Image - Use Proportional Images on Products and Categories', 'PROPORTIONAL_IMAGES_STATUS', '1', 'Use Proportional Images on Products and Categories?<br /><br />NOTE: Do not use 0 height or width settings for Proportion Images<br />0= off 1= on', 4, 75, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(128, 'Email Salutation', 'ACCOUNT_GENDER', 'true', 'Display salutation choice during account creation and with account information', 5, 1, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(129, 'Date of Birth', 'ACCOUNT_DOB', 'true', 'Display date of birth field during account creation and with account information<br />NOTE: Set Minimum Value Date of Birth to blank for not required<br />Set Minimum Value Date of Birth > 0 to require', 5, 2, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(130, 'Company', 'ACCOUNT_COMPANY', 'true', 'Display company field during account creation and with account information', 5, 3, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(131, 'Address Line 2', 'ACCOUNT_SUBURB', 'true', 'Display address line 2 field during account creation and with account information', 5, 4, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(132, 'State', 'ACCOUNT_STATE', 'true', 'Display state field during account creation and with account information', 5, 5, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(133, 'State - Always display as pulldown?', 'ACCOUNT_STATE_DRAW_INITIAL_DROPDOWN', 'false', 'When state field is displayed, should it always be a pulldown menu?', 5, 5, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(134, 'Create Account Default Country ID', 'SHOW_CREATE_ACCOUNT_DEFAULT_COUNTRY', '223', 'Set Create Account Default Country ID to:<br />Default is 223', 5, 6, NULL, '2008-01-03 11:24:40', 'zen_get_country_name', 'zen_cfg_pull_down_country_list_none('),
(135, 'Fax Number', 'ACCOUNT_FAX_NUMBER', 'true', 'Display fax number field during account creation and with account information', 5, 10, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(136, 'Show Newsletter Checkbox', 'ACCOUNT_NEWSLETTER_STATUS', '1', 'Show Newsletter Checkbox<br />0= off<br />1= Display Unchecked<br />2= Display Checked<br /><strong>Note: Defaulting this to accepted may be in violation of certain regulations for your state or country</strong>', 5, 45, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2''), '),
(137, 'Customer Default Email Preference', 'ACCOUNT_EMAIL_PREFERENCE', '0', 'Set the Default Customer Default Email Preference<br />0= Text<br />1= HTML<br />', 5, 46, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(138, 'Customer Product Notification Status', 'CUSTOMERS_PRODUCTS_NOTIFICATION_STATUS', '1', 'Customer should be asked about product notifications after checkout success and in account preferences<br />0= Never ask<br />1= Ask (ignored on checkout if has already selected global notifications)<br /><br />Note: Sidebox must be turned off separately', 5, 50, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(139, 'Customer Shop Status - View Shop and Prices', 'CUSTOMERS_APPROVAL', '0', 'Customer must be approved to shop<br />0= Not required<br />1= Must login to browse<br />2= May browse but no prices unless logged in<br />3= Showroom Only<br /><br />It is recommended that Option 2 be used for the purposes of Spiders if you wish customers to login to see prices.', 5, 55, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''), '),
(140, 'Customer Approval Status - Authorization Pending', 'CUSTOMERS_APPROVAL_AUTHORIZATION', '0', 'Customer must be Authorized to shop<br />0= Not required<br />1= Must be Authorized to Browse<br />2= May browse but no prices unless Authorized<br />3= Customer May Browse and May see Prices but Must be Authorized to Buy<br /><br />It is recommended that Option 2 or 3 be used for the purposes of Spiders', 5, 65, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''), '),
(141, 'Customer Authorization: filename', 'CUSTOMERS_AUTHORIZATION_FILENAME', 'customers_authorization', 'Customer Authorization filename<br />Note: Do not include the extension<br />Default=customers_authorization', 5, 66, NULL, '2008-01-03 11:24:40', NULL, ''),
(142, 'Customer Authorization: Hide Header', 'CUSTOMERS_AUTHORIZATION_HEADER_OFF', 'false', 'Customer Authorization: Hide Header <br />(true=hide false=show)', 5, 67, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(143, 'Customer Authorization: Hide Column Left', 'CUSTOMERS_AUTHORIZATION_COLUMN_LEFT_OFF', 'false', 'Customer Authorization: Hide Column Left <br />(true=hide false=show)', 5, 68, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(144, 'Customer Authorization: Hide Column Right', 'CUSTOMERS_AUTHORIZATION_COLUMN_RIGHT_OFF', 'false', 'Customer Authorization: Hide Column Right <br />(true=hide false=show)', 5, 69, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(145, 'Customer Authorization: Hide Footer', 'CUSTOMERS_AUTHORIZATION_FOOTER_OFF', 'false', 'Customer Authorization: Hide Footer <br />(true=hide false=show)', 5, 70, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(146, 'Customer Authorization: Hide Prices', 'CUSTOMERS_AUTHORIZATION_PRICES_OFF', 'false', 'Customer Authorization: Hide Prices <br />(true=hide false=show)', 5, 71, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(147, 'Customers Referral Status', 'CUSTOMERS_REFERRAL_STATUS', '0', 'Customers Referral Code is created from<br />0= Off<br />1= 1st Discount Coupon Code used<br />2= Customer can add during create account or edit if blank<br /><br />NOTE: Once the Customers Referral Code has been set it can only be changed in the Admin Customer', 5, 80, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2''), '),
(148, 'Installed Modules', 'MODULE_PAYMENT_INSTALLED', 'cc.php;freecharger.php;moneyorder.php;purchaseorder.php', 'List of payment module filenames separated by a semi-colon. This is automatically updated. No need to edit. (Example: cc.php;cod.php;paypal.php)', 6, 0, '2009-06-26 00:28:15', '2008-01-03 11:24:40', NULL, NULL),
(149, 'Installed Modules', 'MODULE_ORDER_TOTAL_INSTALLED', 'ot_subtotal.php;ot_shipping.php;ot_coupon.php;ot_group_pricing.php;ot_tax.php;ot_loworderfee.php;ot_gv.php;ot_total.php', 'List of order_total module filenames separated by a semi-colon. This is automatically updated. No need to edit. (Example: ot_subtotal.php;ot_tax.php;ot_shipping.php;ot_total.php)', 6, 0, NULL, '2008-01-03 11:24:40', NULL, NULL),
(150, 'Installed Modules', 'MODULE_SHIPPING_INSTALLED', 'flat.php;freeshipper.php;item.php;storepickup.php', 'List of shipping module filenames separated by a semi-colon. This is automatically updated. No need to edit. (Example: ups.php;flat.php;item.php)', 6, 0, NULL, '2008-01-03 11:24:40', NULL, NULL),
(151, 'Enable Credit Card Module', 'MODULE_PAYMENT_CC_STATUS', 'True', 'Do you want to accept credit card payments?', 6, 0, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(152, 'Split Credit Card E-Mail Address', 'MODULE_PAYMENT_CC_EMAIL', 'you@yourdomain.com', 'If an e-mail address is entered, the middle digits of the credit card number will be sent to the e-mail address (the outside digits are stored in the database with the middle digits censored)', 6, 0, NULL, '2008-01-03 11:24:40', NULL, NULL),
(153, 'Collect & store the CVV number', 'MODULE_PAYMENT_CC_COLLECT_CVV', 'False', 'Do you want to collect the CVV number. Note: If you do the CVV number will be stored in the database in an encoded format.', 6, 0, NULL, '2004-01-11 22:55:51', NULL, 'zen_cfg_select_option(array(''True'', ''False''),'),
(154, 'Store the Credit Card Number', 'MODULE_PAYMENT_CC_STORE_NUMBER', 'False', 'Do you want to store the Credit Card Number. Note: The Credit Card Number will be stored unenecrypted, and as such may represent a security problem', 6, 0, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''True'', ''False''),'),
(155, 'Sort order of display.', 'MODULE_PAYMENT_CC_SORT_ORDER', '0', 'Sort order of display. Lowest is displayed first.', 6, 0, NULL, '2008-01-03 11:24:40', NULL, NULL),
(156, 'Payment Zone', 'MODULE_PAYMENT_CC_ZONE', '0', 'If a zone is selected, only enable this payment method for that zone.', 6, 2, NULL, '2008-01-03 11:24:40', 'zen_get_zone_class_title', 'zen_cfg_pull_down_zone_classes('),
(157, 'Set Order Status', 'MODULE_PAYMENT_CC_ORDER_STATUS_ID', '0', 'Set the status of orders made with this payment module to this value', 6, 0, NULL, '2008-01-03 11:24:40', 'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses('),
(158, 'Enable Free Shipping', 'MODULE_SHIPPING_FREESHIPPER_STATUS', 'True', 'Do you want to offer Free shipping?', 6, 0, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(159, 'Free Shipping Cost', 'MODULE_SHIPPING_FREESHIPPER_COST', '0.00', 'What is the Shipping cost?', 6, 6, NULL, '2008-01-03 11:24:40', NULL, NULL),
(160, 'Handling Fee', 'MODULE_SHIPPING_FREESHIPPER_HANDLING', '0', 'Handling fee for this shipping method.', 6, 0, NULL, '2008-01-03 11:24:40', NULL, NULL),
(161, 'Tax Class', 'MODULE_SHIPPING_FREESHIPPER_TAX_CLASS', '0', 'Use the following tax class on the shipping fee.', 6, 0, NULL, '2008-01-03 11:24:40', 'zen_get_tax_class_title', 'zen_cfg_pull_down_tax_classes('),
(162, 'Shipping Zone', 'MODULE_SHIPPING_FREESHIPPER_ZONE', '0', 'If a zone is selected, only enable this shipping method for that zone.', 6, 0, NULL, '2008-01-03 11:24:40', 'zen_get_zone_class_title', 'zen_cfg_pull_down_zone_classes('),
(163, 'Sort Order', 'MODULE_SHIPPING_FREESHIPPER_SORT_ORDER', '0', 'Sort order of display.', 6, 0, NULL, '2008-01-03 11:24:40', NULL, NULL),
(164, 'Enable Store Pickup Shipping', 'MODULE_SHIPPING_STOREPICKUP_STATUS', 'False', 'Do you want to offer In Store rate shipping?', 6, 0, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(165, 'Shipping Cost', 'MODULE_SHIPPING_STOREPICKUP_COST', '0.00', 'The shipping cost for all orders using this shipping method.', 6, 0, NULL, '2008-01-03 11:24:40', NULL, NULL),
(166, 'Tax Class', 'MODULE_SHIPPING_STOREPICKUP_TAX_CLASS', '0', 'Use the following tax class on the shipping fee.', 6, 0, NULL, '2008-01-03 11:24:40', 'zen_get_tax_class_title', 'zen_cfg_pull_down_tax_classes('),
(167, 'Tax Basis', 'MODULE_SHIPPING_STOREPICKUP_TAX_BASIS', 'Shipping', 'On what basis is Shipping Tax calculated. Options are<br />Shipping - Based on customers Shipping Address<br />Billing Based on customers Billing address<br />Store - Based on Store address if Billing/Shipping Zone equals Store zone', 6, 0, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''Shipping'', ''Billing''), '),
(168, 'Shipping Zone', 'MODULE_SHIPPING_STOREPICKUP_ZONE', '0', 'If a zone is selected, only enable this shipping method for that zone.', 6, 0, NULL, '2008-01-03 11:24:40', 'zen_get_zone_class_title', 'zen_cfg_pull_down_zone_classes('),
(169, 'Sort Order', 'MODULE_SHIPPING_STOREPICKUP_SORT_ORDER', '0', 'Sort order of display.', 6, 0, NULL, '2008-01-03 11:24:40', NULL, NULL),
(170, 'Enable Item Shipping', 'MODULE_SHIPPING_ITEM_STATUS', 'False', 'Do you want to offer per item rate shipping?', 6, 0, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(171, 'Shipping Cost', 'MODULE_SHIPPING_ITEM_COST', '2.50', 'The shipping cost will be multiplied by the number of items in an order that uses this shipping method.', 6, 0, NULL, '2008-01-03 11:24:40', NULL, NULL),
(172, 'Handling Fee', 'MODULE_SHIPPING_ITEM_HANDLING', '0', 'Handling fee for this shipping method.', 6, 0, NULL, '2008-01-03 11:24:40', NULL, NULL),
(173, 'Tax Class', 'MODULE_SHIPPING_ITEM_TAX_CLASS', '0', 'Use the following tax class on the shipping fee.', 6, 0, NULL, '2008-01-03 11:24:40', 'zen_get_tax_class_title', 'zen_cfg_pull_down_tax_classes('),
(174, 'Tax Basis', 'MODULE_SHIPPING_ITEM_TAX_BASIS', 'Shipping', 'On what basis is Shipping Tax calculated. Options are<br />Shipping - Based on customers Shipping Address<br />Billing Based on customers Billing address<br />Store - Based on Store address if Billing/Shipping Zone equals Store zone', 6, 0, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''Shipping'', ''Billing'', ''Store''), '),
(175, 'Shipping Zone', 'MODULE_SHIPPING_ITEM_ZONE', '0', 'If a zone is selected, only enable this shipping method for that zone.', 6, 0, NULL, '2008-01-03 11:24:40', 'zen_get_zone_class_title', 'zen_cfg_pull_down_zone_classes('),
(176, 'Sort Order', 'MODULE_SHIPPING_ITEM_SORT_ORDER', '0', 'Sort order of display.', 6, 0, NULL, '2008-01-03 11:24:40', NULL, NULL),
(177, 'Enable Free Charge Module', 'MODULE_PAYMENT_FREECHARGER_STATUS', 'True', 'Do you want to accept Free Charge payments?', 6, 1, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(178, 'Sort order of display.', 'MODULE_PAYMENT_FREECHARGER_SORT_ORDER', '0', 'Sort order of display. Lowest is displayed first.', 6, 0, NULL, '2008-01-03 11:24:40', NULL, NULL),
(179, 'Payment Zone', 'MODULE_PAYMENT_FREECHARGER_ZONE', '0', 'If a zone is selected, only enable this payment method for that zone.', 6, 2, NULL, '2008-01-03 11:24:40', 'zen_get_zone_class_title', 'zen_cfg_pull_down_zone_classes('),
(180, 'Set Order Status', 'MODULE_PAYMENT_FREECHARGER_ORDER_STATUS_ID', '0', 'Set the status of orders made with this payment module to this value', 6, 0, NULL, '2008-01-03 11:24:40', 'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses('),
(181, 'Enable Check/Money Order Module', 'MODULE_PAYMENT_MONEYORDER_STATUS', 'True', 'Do you want to accept Check/Money Order payments?', 6, 1, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(182, 'Make Payable to:', 'MODULE_PAYMENT_MONEYORDER_PAYTO', 'the Store Owner/Website Name', 'Who should payments be made payable to?', 6, 1, NULL, '2008-01-03 11:24:40', NULL, NULL),
(183, 'Sort order of display.', 'MODULE_PAYMENT_MONEYORDER_SORT_ORDER', '0', 'Sort order of display. Lowest is displayed first.', 6, 0, NULL, '2008-01-03 11:24:40', NULL, NULL),
(184, 'Payment Zone', 'MODULE_PAYMENT_MONEYORDER_ZONE', '0', 'If a zone is selected, only enable this payment method for that zone.', 6, 2, NULL, '2008-01-03 11:24:40', 'zen_get_zone_class_title', 'zen_cfg_pull_down_zone_classes('),
(185, 'Set Order Status', 'MODULE_PAYMENT_MONEYORDER_ORDER_STATUS_ID', '0', 'Set the status of orders made with this payment module to this value', 6, 0, NULL, '2008-01-03 11:24:40', 'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses('),
(186, 'Include Tax', 'MODULE_ORDER_TOTAL_GROUP_PRICING_INC_TAX', 'false', 'Include Tax value in amount before discount calculation?', 6, 6, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(187, 'This module is installed', 'MODULE_ORDER_TOTAL_GROUP_PRICING_STATUS', 'true', '', 6, 1, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''true''), '),
(188, 'Sort Order', 'MODULE_ORDER_TOTAL_GROUP_PRICING_SORT_ORDER', '290', 'Sort order of display.', 6, 2, NULL, '2008-01-03 11:24:40', NULL, NULL),
(189, 'Include Shipping', 'MODULE_ORDER_TOTAL_GROUP_PRICING_INC_SHIPPING', 'false', 'Include Shipping value in amount before discount calculation?', 6, 5, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(190, 'Re-calculate Tax', 'MODULE_ORDER_TOTAL_GROUP_PRICING_CALC_TAX', 'Standard', 'Re-Calculate Tax', 6, 7, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''None'', ''Standard'', ''Credit Note''), '),
(191, 'Tax Class', 'MODULE_ORDER_TOTAL_GROUP_PRICING_TAX_CLASS', '0', 'Use the following tax class when treating Group Discount as Credit Note.', 6, 0, NULL, '2008-01-03 11:24:40', 'zen_get_tax_class_title', 'zen_cfg_pull_down_tax_classes('),
(192, 'Enable Flat Shipping', 'MODULE_SHIPPING_FLAT_STATUS', 'True', 'Do you want to offer flat rate shipping?', 6, 0, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(193, 'Shipping Cost', 'MODULE_SHIPPING_FLAT_COST', '5.00', 'The shipping cost for all orders using this shipping method.', 6, 0, NULL, '2008-01-03 11:24:40', NULL, NULL),
(194, 'Tax Class', 'MODULE_SHIPPING_FLAT_TAX_CLASS', '0', 'Use the following tax class on the shipping fee.', 6, 0, NULL, '2008-01-03 11:24:40', 'zen_get_tax_class_title', 'zen_cfg_pull_down_tax_classes('),
(195, 'Tax Basis', 'MODULE_SHIPPING_FLAT_TAX_BASIS', 'Shipping', 'On what basis is Shipping Tax calculated. Options are<br />Shipping - Based on customers Shipping Address<br />Billing Based on customers Billing address<br />Store - Based on Store address if Billing/Shipping Zone equals Store zone', 6, 0, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''Shipping'', ''Billing'', ''Store''), '),
(196, 'Shipping Zone', 'MODULE_SHIPPING_FLAT_ZONE', '0', 'If a zone is selected, only enable this shipping method for that zone.', 6, 0, NULL, '2008-01-03 11:24:40', 'zen_get_zone_class_title', 'zen_cfg_pull_down_zone_classes('),
(197, 'Sort Order', 'MODULE_SHIPPING_FLAT_SORT_ORDER', '0', 'Sort order of display.', 6, 0, NULL, '2008-01-03 11:24:40', NULL, NULL),
(198, 'Default Currency', 'DEFAULT_CURRENCY', 'USD', 'Default Currency', 6, 0, NULL, '2008-01-03 11:24:40', NULL, NULL),
(199, 'Default Language', 'DEFAULT_LANGUAGE', 'en', 'Default Language', 6, 0, NULL, '2008-01-03 11:24:40', NULL, NULL),
(200, 'Default Order Status For New Orders', 'DEFAULT_ORDERS_STATUS_ID', '1', 'When a new order is created, this order status will be assigned to it.', 6, 0, NULL, '2008-01-03 11:24:40', NULL, NULL),
(201, 'Admin configuration_key shows', 'ADMIN_CONFIGURATION_KEY_ON', '0', 'Manually switch to value of 1 to see the configuration_key name in configuration displays', 6, 0, NULL, '2008-01-03 11:24:40', NULL, NULL),
(202, 'Country of Origin', 'SHIPPING_ORIGIN_COUNTRY', '223', 'Select the country of origin to be used in shipping quotes.', 7, 1, NULL, '2008-01-03 11:24:40', 'zen_get_country_name', 'zen_cfg_pull_down_country_list('),
(203, 'Postal Code', 'SHIPPING_ORIGIN_ZIP', 'NONE', 'Enter the Postal Code (ZIP) of the Store to be used in shipping quotes. NOTE: For USA zip codes, only use your 5 digit zip code.', 7, 2, NULL, '2008-01-03 11:24:40', NULL, NULL),
(204, 'Enter the Maximum Package Weight you will ship', 'SHIPPING_MAX_WEIGHT', '0', 'Carriers have a max weight limit for a single package. This is a common one for all.', 7, 3, '2009-06-20 22:19:14', '2008-01-03 11:24:40', NULL, NULL),
(205, 'Package Tare Small to Medium - added percentage:weight', 'SHIPPING_BOX_WEIGHT', '0:3', 'What is the weight of typical packaging of small to medium packages?<br />Example: 10% + 1lb 10:1<br />10% + 0lbs 10:0<br />0% + 5lbs 0:5<br />0% + 0lbs 0:0', 7, 4, NULL, '2008-01-03 11:24:40', NULL, NULL),
(206, 'Larger packages - added packaging percentage:weight', 'SHIPPING_BOX_PADDING', '10:0', 'What is the weight of typical packaging for Large packages?<br />Example: 10% + 1lb 10:1<br />10% + 0lbs 10:0<br />0% + 5lbs 0:5<br />0% + 0lbs 0:0', 7, 5, NULL, '2008-01-03 11:24:40', NULL, NULL),
(207, 'Display Number of Boxes and Weight Status', 'SHIPPING_BOX_WEIGHT_DISPLAY', '3', 'Display Shipping Weight and Number of Boxes?<br /><br />0= off<br />1= Boxes Only<br />2= Weight Only<br />3= Both Boxes and Weight', 7, 15, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''), '),
(208, 'Shipping Estimator Display Settings for Shopping Cart', 'SHOW_SHIPPING_ESTIMATOR_BUTTON', '1', '<br />0= Off<br />1= Display as Button on Shopping Cart<br />2= Display as Listing on Shopping Cart Page', 7, 20, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2''), '),
(209, 'Display Order Comments on Admin Invoice', 'ORDER_COMMENTS_INVOICE', '1', 'Do you want to display the Order Comments on the Admin Invoice?<br />0= OFF<br />1= First Comment by Customer only<br />2= All Comments for the Order', 7, 25, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2''), '),
(210, 'Display Order Comments on Admin Packing Slip', 'ORDER_COMMENTS_PACKING_SLIP', '1', 'Do you want to display the Order Comments on the Admin Packing Slip?<br />0= OFF<br />1= First Comment by Customer only<br />2= All Comments for the Order', 7, 26, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2''), '),
(211, 'Order Free Shipping 0 Weight Status', 'ORDER_WEIGHT_ZERO_STATUS', '0', 'If there is no weight to the order, does the order have Free Shipping?<br />0= no<br />1= yes<br /><br />Note: When using Free Shipping, Enable the Free Shipping Module this will only show when shipping is free.', 7, 15, NULL, '2008-01-03 11:24:40', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(212, 'Display Product Image', 'PRODUCT_LIST_IMAGE', '1', 'Do you want to display the Product Image?', 8, 1, NULL, '2008-01-03 11:24:40', NULL, NULL),
(213, 'Display Product Manufacturer Name', 'PRODUCT_LIST_MANUFACTURER', '0', 'Do you want to display the Product Manufacturer Name?', 8, 2, NULL, '2008-01-03 11:24:40', NULL, NULL),
(214, 'Display Product Model', 'PRODUCT_LIST_MODEL', '0', 'Do you want to display the Product Model?', 8, 3, NULL, '2008-01-03 11:24:40', NULL, NULL),
(215, 'Display Product Name', 'PRODUCT_LIST_NAME', '2', 'Do you want to display the Product Name?', 8, 4, NULL, '2008-01-03 11:24:40', NULL, NULL),
(216, 'Display Product Price/Add to Cart', 'PRODUCT_LIST_PRICE', '3', 'Do you want to display the Product Price/Add to Cart', 8, 5, '2009-06-23 19:00:16', '2008-01-03 11:24:40', NULL, NULL),
(217, 'Display Product Quantity', 'PRODUCT_LIST_QUANTITY', '0', 'Do you want to display the Product Quantity?', 8, 6, NULL, '2008-01-03 11:24:41', NULL, NULL),
(218, 'Display Product Weight', 'PRODUCT_LIST_WEIGHT', '0', 'Do you want to display the Product Weight?', 8, 7, NULL, '2008-01-03 11:24:41', NULL, NULL),
(219, 'Display Product Price/Add to Cart Column Width', 'PRODUCTS_LIST_PRICE_WIDTH', '125', 'Define the width of the Price/Add to Cart column<br />Default= 125', 8, 8, '2009-06-23 19:02:33', '2008-01-03 11:24:41', NULL, NULL);
INSERT INTO `configuration` (`configuration_id`, `configuration_title`, `configuration_key`, `configuration_value`, `configuration_description`, `configuration_group_id`, `sort_order`, `last_modified`, `date_added`, `use_function`, `set_function`) VALUES
(220, 'Display Category/Manufacturer Filter (0=off; 1=on)', 'PRODUCT_LIST_FILTER', '0', 'Do you want to display the Category/Manufacturer Filter?', 8, 9, '2009-07-12 18:32:39', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(221, 'Prev/Next Split Page Navigation (1-top, 2-bottom, 3-both)', 'PREV_NEXT_BAR_LOCATION', '3', 'Sets the location of the Prev/Next Split Page Navigation', 8, 10, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''1'', ''2'', ''3''), '),
(222, 'Display Product Listing Default Sort Order', 'PRODUCT_LISTING_DEFAULT_SORT_ORDER', '', 'Product Listing Default sort order?<br />NOTE: Leave Blank for Product Sort Order. Sort the Product Listing in the order you wish for the default display to start in to get the sort order setting. Example: 2a', 8, 15, NULL, '2008-01-03 11:24:41', NULL, NULL),
(223, 'Display Product Add to Cart Button (0=off; 1=on; 2=on with Qty Box per Product)', 'PRODUCT_LIST_PRICE_BUY_NOW', '2', 'Do you want to display the Add to Cart Button?<br /><br /><strong>NOTE:</strong> Turn OFF Display Multiple Products Qty Box Status to use Option 2 on with Qty Box per Product', 8, 20, '2009-06-23 19:01:19', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2''), '),
(224, 'Display Multiple Products Qty Box Status and Set Button Location', 'PRODUCT_LISTING_MULTIPLE_ADD_TO_CART', '0', 'Do you want to display Add Multiple Products Qty Box and Set Button Location?<br />0= off<br />1= Top<br />2= Bottom<br />3= Both', 8, 25, '2009-07-12 17:57:44', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''), '),
(225, 'Display Product Description', 'PRODUCT_LIST_DESCRIPTION', '150', 'Do you want to display the Product Description?<br /><br />0= OFF<br />150= Suggested Length, or enter the maximum number of characters to display', 8, 30, NULL, '2008-01-03 11:24:41', NULL, NULL),
(226, 'Product Listing Ascending Sort Order', 'PRODUCT_LIST_SORT_ORDER_ASCENDING', '+', 'What do you want to use to indicate Sort Order Ascending?<br />Default = +', 8, 40, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_textarea_small('),
(227, 'Product Listing Descending Sort Order', 'PRODUCT_LIST_SORT_ORDER_DESCENDING', '-', 'What do you want to use to indicate Sort Order Descending?<br />Default = -', 8, 41, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_textarea_small('),
(228, 'Include Product Listing Alpha Sorter Dropdown', 'PRODUCT_LIST_ALPHA_SORTER', 'false', 'Do you want to include an Alpha Filter dropdown on the Product Listing?', 8, 50, '2009-07-12 17:27:11', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(229, 'Include Product Listing Sub Categories Image', 'PRODUCT_LIST_CATEGORIES_IMAGE_STATUS', 'true', 'Do you want to include the Sub Categories Image on the Product Listing?', 8, 52, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(230, 'Include Product Listing Top Categories Image', 'PRODUCT_LIST_CATEGORIES_IMAGE_STATUS_TOP', 'true', 'Do you want to include the Top Categories Image on the Product Listing?', 8, 53, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(231, 'Show SubCategories on Main Page while navigating', 'PRODUCT_LIST_CATEGORY_ROW_STATUS', '1', 'Show Sub-Categories on Main Page while navigating through Categories<br /><br />0= off<br />1= on', 8, 60, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(232, 'Check stock level', 'STOCK_CHECK', 'true', 'Check to see if sufficent stock is available', 9, 1, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(233, 'Subtract stock', 'STOCK_LIMITED', 'true', 'Subtract product in stock by product orders', 9, 2, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(234, 'Allow Checkout', 'STOCK_ALLOW_CHECKOUT', 'true', 'Allow customer to checkout even if there is insufficient stock', 9, 3, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(235, 'Mark product out of stock', 'STOCK_MARK_PRODUCT_OUT_OF_STOCK', '***', 'Display something on screen so customer can see which product has insufficient stock', 9, 4, NULL, '2008-01-03 11:24:41', NULL, NULL),
(236, 'Stock Re-order level', 'STOCK_REORDER_LEVEL', '5', 'Define when stock needs to be re-ordered', 9, 5, NULL, '2008-01-03 11:24:41', NULL, NULL),
(237, 'Products status in Catalog when out of stock should be set to', 'SHOW_PRODUCTS_SOLD_OUT', '0', 'Show Products when out of stock<br /><br />0= set product status to OFF<br />1= leave product status ON', 9, 10, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(238, 'Show Sold Out Image in place of Add to Cart', 'SHOW_PRODUCTS_SOLD_OUT_IMAGE', '1', 'Show Sold Out Image instead of Add to Cart Button<br /><br />0= off<br />1= on', 9, 11, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(239, 'Product Quantity Decimals', 'QUANTITY_DECIMALS', '0', 'Allow how many decimals on Quantity<br /><br />0= off', 9, 15, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''), '),
(240, 'Show Shopping Cart - Delete Checkboxes or Delete Button', 'SHOW_SHOPPING_CART_DELETE', '3', 'Show on Shopping Cart Delete Button and/or Checkboxes<br /><br />1= Delete Button Only<br />2= Checkbox Only<br />3= Both Delete Button and Checkbox', 9, 20, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''1'', ''2'', ''3''), '),
(241, 'Show Shopping Cart - Update Cart Button Location', 'SHOW_SHOPPING_CART_UPDATE', '3', 'Show on Shopping Cart Update Cart Button Location as:<br /><br />1= Next to each Qty Box<br />2= Below all Products<br />3= Both Next to each Qty Box and Below all Products', 9, 22, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''1'', ''2'', ''3''), '),
(242, 'Show New Products on empty Shopping Cart Page', 'SHOW_SHOPPING_CART_EMPTY_NEW_PRODUCTS', '1', 'Show New Products on empty Shopping Cart Page<br />0= off or set the sort order', 9, 30, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(243, 'Show Featured Products on empty Shopping Cart Page', 'SHOW_SHOPPING_CART_EMPTY_FEATURED_PRODUCTS', '2', 'Show Featured Products on empty Shopping Cart Page<br />0= off or set the sort order', 9, 31, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(244, 'Show Special Products on empty Shopping Cart Page', 'SHOW_SHOPPING_CART_EMPTY_SPECIALS_PRODUCTS', '3', 'Show Special Products on empty Shopping Cart Page<br />0= off or set the sort order', 9, 32, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(245, 'Show Upcoming Products on empty Shopping Cart Page', 'SHOW_SHOPPING_CART_EMPTY_UPCOMING', '4', 'Show Upcoming Products on empty Shopping Cart Page<br />0= off or set the sort order', 9, 33, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(246, 'Show Notice of Combining Shopping Cart on Login', 'SHOW_SHOPPING_CART_COMBINED', '1', 'When a customer logs in and has a previously stored shopping cart, the products are combined with the existing shopping cart.<br /><br />Do you wish to display a Notice to the customer?<br /><br />0= OFF, do not display a notice<br />1= Yes show notice and go to shopping cart<br />2= Yes show notice, but do not go to shopping cart', 9, 35, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2''), '),
(247, 'Store Page Parse Time', 'STORE_PAGE_PARSE_TIME', 'false', 'Store the time it takes to parse a page', 10, 1, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(248, 'Log Destination', 'STORE_PAGE_PARSE_TIME_LOG', '/home/backupez/public_html//cache/page_parse_time.log', 'Directory and filename of the page parse time log', 10, 2, NULL, '2008-01-03 11:24:41', NULL, NULL),
(249, 'Log Date Format', 'STORE_PARSE_DATE_TIME_FORMAT', '%d/%m/%Y %H:%M:%S', 'The date format', 10, 3, NULL, '2008-01-03 11:24:41', NULL, NULL),
(250, 'Display The Page Parse Time', 'DISPLAY_PAGE_PARSE_TIME', 'false', 'Display the page parse time on the bottom of each page<br />You do not need to store the times to display them in the Catalog', 10, 4, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(251, 'Store Database Queries', 'STORE_DB_TRANSACTIONS', 'false', 'Store the database queries in the page parse time log (PHP4 only)', 10, 5, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(252, 'E-Mail Transport Method', 'EMAIL_TRANSPORT', 'PHP', 'Defines the method for sending mail.<br /><strong>PHP</strong> is the default, and uses built-in PHP wrappers for processing.<br />Servers running on Windows and MacOS should change this setting to <strong>SMTP</strong>.<br /><br /><strong>SMTPAUTH</strong> should only be used if your server requires SMTP authorization to send messages. You must also configure your SMTPAUTH settings in the appropriate fields in this admin section.<br /><br /><strong>sendmail</strong> is for linux/unix hosts using the sendmail program on the server<br /><strong>"sendmail-f"</strong> is only for servers which require the use of the -f parameter to send mail. This is a security setting often used to prevent spoofing. Will cause errors if your host mailserver is not configured to use it.<br /><br /><strong>Qmail</strong> is used for linux/unix hosts running Qmail as sendmail wrapper at /var/qmail/bin/sendmail.', 12, 1, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''PHP'', ''sendmail'', ''sendmail-f'', ''smtp'', ''smtpauth'', ''Qmail''),'),
(253, 'SMTP Email Account Mailbox', 'EMAIL_SMTPAUTH_MAILBOX', 'YourEmailAccountNameHere', 'Enter the mailbox account name (me@mydomain.com) supplied by your host. This is the account name that your host requires for SMTP authentication.<br />Only required if using SMTP Authentication for email.', 12, 101, NULL, '2008-01-03 11:24:41', NULL, NULL),
(254, 'SMTP Email Account Password', 'EMAIL_SMTPAUTH_PASSWORD', 'YourPasswordHere', 'Enter the password for your SMTP mailbox. <br />Only required if using SMTP Authentication for email.', 12, 101, NULL, '2008-01-03 11:24:41', 'zen_cfg_password_display', NULL),
(255, 'SMTP Email Mail Host', 'EMAIL_SMTPAUTH_MAIL_SERVER', 'mail.EnterYourDomain.com', 'Enter the DNS name of your SMTP mail server.<br />ie: mail.mydomain.com<br />or 55.66.77.88<br />Only required if using SMTP Authentication for email.', 12, 101, NULL, '2008-01-03 11:24:41', NULL, NULL),
(256, 'SMTP Email Mail Server Port', 'EMAIL_SMTPAUTH_MAIL_SERVER_PORT', '25', 'Enter the IP port number that your SMTP mailserver operates on.<br />Only required if using SMTP Authentication for email.', 12, 101, NULL, '2008-01-03 11:24:41', NULL, NULL),
(257, 'Convert currencies for Text emails', 'CURRENCIES_TRANSLATIONS', '&pound;,£:&euro;,â¬', 'What currency conversions do you need for Text emails?<br />Default = &amp;pound;,£:&amp;euro;,â¬', 12, 120, NULL, '2003-11-21 00:00:00', NULL, 'zen_cfg_textarea_small('),
(258, 'E-Mail Linefeeds', 'EMAIL_LINEFEED', 'LF', 'Defines the character sequence used to separate mail headers.', 12, 2, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''LF'', ''CRLF''),'),
(259, 'Use MIME HTML When Sending Emails', 'EMAIL_USE_HTML', 'false', 'Send e-mails in HTML format', 12, 3, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(260, 'Verify E-Mail Addresses Through DNS', 'ENTRY_EMAIL_ADDRESS_CHECK', 'false', 'Verify e-mail address through a DNS server', 6, 6, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(261, 'Send E-Mails', 'SEND_EMAILS', 'true', 'Send out e-mails', 12, 5, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(262, 'Email Archiving Active?', 'EMAIL_ARCHIVE', 'false', 'If you wish to have email messages archived/stored when sent, set this to "true".', 12, 6, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(263, 'E-Mail Friendly-Errors', 'EMAIL_FRIENDLY_ERRORS', 'false', 'Do you want to display friendly errors if emails fail?  Setting this to false will display PHP errors and likely cause the script to fail. Only set to false while troubleshooting, and true for a live shop.', 12, 7, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(264, 'Email Address (Displayed to Contact you)', 'STORE_OWNER_EMAIL_ADDRESS', 'you@yourdomain.com', 'Email address of Store Owner.  Used as "display only" when informing customers of how to contact you.', 12, 10, NULL, '2008-01-03 11:24:41', NULL, NULL),
(265, 'Email Address (sent FROM)', 'EMAIL_FROM', 'you@yourdomain.com', 'Address from which email messages will be "sent" by default. Can be over-ridden at compose-time in admin modules.', 12, 11, NULL, '2008-01-03 11:24:41', NULL, NULL),
(266, 'Emails must send from known domain?', 'EMAIL_SEND_MUST_BE_STORE', 'Yes', 'Does your mailserver require that all outgoing emails have their "from" address match a known domain that exists on your webserver?<br /><br />This is often required in order to prevent spoofing and spam broadcasts.  If set to Yes, this will cause the email address (sent FROM) to be used as the "from" address on all outgoing mail.', 12, 11, NULL, '0001-01-01 00:00:00', NULL, 'zen_cfg_select_option(array(''No'', ''Yes''), '),
(267, 'Email Admin Format?', 'ADMIN_EXTRA_EMAIL_FORMAT', 'TEXT', 'Please select the Admin extra email format', 12, 12, NULL, '0001-01-01 00:00:00', NULL, 'zen_cfg_select_option(array(''TEXT'', ''HTML''), '),
(268, 'Send Copy of Order Confirmation Emails To', 'SEND_EXTRA_ORDER_EMAILS_TO', 'you@yourdomain.com', 'Send COPIES of order confirmation emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;', 12, 12, NULL, '2008-01-03 11:24:41', NULL, NULL),
(269, 'Send Copy of Create Account Emails To - Status', 'SEND_EXTRA_CREATE_ACCOUNT_EMAILS_TO_STATUS', '0', 'Send copy of Create Account Status<br />0= off 1= on', 12, 13, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(270, 'Send Copy of Create Account Emails To', 'SEND_EXTRA_CREATE_ACCOUNT_EMAILS_TO', 'you@yourdomain.com', 'Send copy of Create Account emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;', 12, 14, NULL, '2008-01-03 11:24:41', NULL, NULL),
(271, 'Send Copy of Tell a Friend Emails To - Status', 'SEND_EXTRA_TELL_A_FRIEND_EMAILS_TO_STATUS', '0', 'Send copy of Tell a Friend Status<br />0= off 1= on', 12, 15, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(272, 'Send Copy of Tell a Friend Emails To', 'SEND_EXTRA_TELL_A_FRIEND_EMAILS_TO', 'you@yourdomain.com', 'Send copy of Tell a Friend emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;', 12, 16, NULL, '2008-01-03 11:24:41', NULL, NULL),
(273, 'Send Copy of Customer GV Send Emails To - Status', 'SEND_EXTRA_GV_CUSTOMER_EMAILS_TO_STATUS', '0', 'Send copy of Customer GV Send Status<br />0= off 1= on', 12, 17, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(274, 'Send Copy of Customer GV Send Emails To', 'SEND_EXTRA_GV_CUSTOMER_EMAILS_TO', 'you@yourdomain.com', 'Send copy of Customer GV Send emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;', 12, 18, NULL, '2008-01-03 11:24:41', NULL, NULL),
(275, 'Send Copy of Admin GV Mail Emails To - Status', 'SEND_EXTRA_GV_ADMIN_EMAILS_TO_STATUS', '0', 'Send copy of Admin GV Mail Status<br />0= off 1= on', 12, 19, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(276, 'Send Copy of Customer Admin GV Mail Emails To', 'SEND_EXTRA_GV_ADMIN_EMAILS_TO', 'you@yourdomain.com', 'Send copy of Admin GV Mail emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;', 12, 20, NULL, '2008-01-03 11:24:41', NULL, NULL),
(277, 'Send Copy of Admin Discount Coupon Mail Emails To - Status', 'SEND_EXTRA_DISCOUNT_COUPON_ADMIN_EMAILS_TO_STATUS', '0', 'Send copy of Admin Discount Coupon Mail Status<br />0= off 1= on', 12, 21, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(278, 'Send Copy of Customer Admin Discount Coupon Mail Emails To', 'SEND_EXTRA_DISCOUNT_COUPON_ADMIN_EMAILS_TO', 'you@yourdomain.com', 'Send copy of Admin Discount Coupon Mail emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;', 12, 22, NULL, '2008-01-03 11:24:41', NULL, NULL),
(279, 'Send Copy of Admin Orders Status Emails To - Status', 'SEND_EXTRA_ORDERS_STATUS_ADMIN_EMAILS_TO_STATUS', '0', 'Send copy of Admin Orders Status Status<br />0= off 1= on', 12, 23, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(280, 'Send Copy of Admin Orders Status Emails To', 'SEND_EXTRA_ORDERS_STATUS_ADMIN_EMAILS_TO', 'you@yourdomain.com', 'Send copy of Admin Orders Status emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;', 12, 24, NULL, '2008-01-03 11:24:41', NULL, NULL),
(281, 'Send Notice of Pending Reviews Emails To - Status', 'SEND_EXTRA_REVIEW_NOTIFICATION_EMAILS_TO_STATUS', '0', 'Send copy of Pending Reviews Status<br />0= off 1= on', 12, 25, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(282, 'Send Notice of Pending Reviews Emails To', 'SEND_EXTRA_REVIEW_NOTIFICATION_EMAILS_TO', 'you@yourdomain.com', 'Send copy of Pending Reviews emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;', 12, 26, NULL, '2008-01-03 11:24:41', NULL, NULL),
(283, 'Set "Contact Us" Email Dropdown List', 'CONTACT_US_LIST', '', 'On the "Contact Us" Page, set the list of email addresses , in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;', 12, 40, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_textarea('),
(284, 'Allow Guest To Tell A Friend', 'ALLOW_GUEST_TO_TELL_A_FRIEND', 'false', 'Allow guests to tell a friend about a product. <br />If set to [false], then tell-a-friend will prompt for login if user is not already logged in.', 12, 50, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(285, 'Contact Us - Show Store Name and Address', 'CONTACT_US_STORE_NAME_ADDRESS', '1', 'Include Store Name and Address<br />0= off 1= on', 12, 50, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(286, 'Send Low Stock Emails', 'SEND_LOWSTOCK_EMAIL', '0', 'When stock level is at or below low stock level send an email<br />0= off<br />1= on', 12, 60, '2008-01-03 11:24:41', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(287, 'Send Low Stock Emails To', 'SEND_EXTRA_LOW_STOCK_EMAILS_TO', 'you@yourdomain.com', 'When stock level is at or below low stock level send an email to this address, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;', 12, 61, NULL, '2008-01-03 11:24:41', NULL, NULL),
(288, 'Display "Newsletter Unsubscribe" Link?', 'SHOW_NEWSLETTER_UNSUBSCRIBE_LINK', 'true', 'Show "Newsletter Unsubscribe" link in the "Information" side-box?', 12, 70, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(289, 'Audience-Select Count Display', 'AUDIENCE_SELECT_DISPLAY_COUNTS', 'true', 'When displaying lists of available audiences/recipients, should the recipients-count be included? <br /><em>(This may make things slower if you have a lot of customers or complex audience queries)</em>', 12, 90, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(290, 'Enable Downloads', 'DOWNLOAD_ENABLED', 'true', 'Enable the products download functions.', 13, 1, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(291, 'Download by Redirect', 'DOWNLOAD_BY_REDIRECT', 'true', 'Use browser redirection for download. Disable on non-Unix systems.<br /><br />Note: Set /pub to 777 when redirect is true', 13, 2, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(292, 'Download by streaming', 'DOWNLOAD_IN_CHUNKS', 'false', 'If download-by-redirect is disabled, and your PHP memory_limit setting is under 8 MB, you might need to enable this setting so that files are streamed in smaller segments to the browser.<br /><br />Has no effect if Download By Redirect is enabled.', 13, 2, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(293, 'Download Expiration (Number of Days)', 'DOWNLOAD_MAX_DAYS', '7', 'Set number of days before the download link expires. 0 means no limit.', 13, 3, NULL, '2008-01-03 11:24:41', NULL, ''),
(294, 'Number of Downloads Allowed - Per Product', 'DOWNLOAD_MAX_COUNT', '5', 'Set the maximum number of downloads. 0 means no download authorized.', 13, 4, NULL, '2008-01-03 11:24:41', NULL, ''),
(295, 'Downloads Controller Update Status Value', 'DOWNLOADS_ORDERS_STATUS_UPDATED_VALUE', '4', 'What orders_status resets the Download days and Max Downloads - Default is 4', 13, 10, '2008-01-03 11:24:41', '2008-01-03 11:24:41', NULL, NULL),
(296, 'Downloads Controller Order Status Value >= lower value', 'DOWNLOADS_CONTROLLER_ORDERS_STATUS', '2', 'Downloads Controller Order Status Value - Default >= 2<br /><br />Downloads are available for checkout based on the orders status. Orders with orders status greater than this value will be available for download. The orders status is set for an order by the Payment Modules. Set the lower range for this range.', 13, 12, '2008-01-03 11:24:41', '2008-01-03 11:24:41', NULL, NULL),
(297, 'Downloads Controller Order Status Value <= upper value', 'DOWNLOADS_CONTROLLER_ORDERS_STATUS_END', '4', 'Downloads Controller Order Status Value - Default <= 4<br /><br />Downloads are available for checkout based on the orders status. Orders with orders status less than this value will be available for download. The orders status is set for an order by the Payment Modules.  Set the upper range for this range.', 13, 13, '2008-01-03 11:24:41', '2008-01-03 11:24:41', NULL, NULL),
(298, 'Enable Price Factor', 'ATTRIBUTES_ENABLED_PRICE_FACTOR', 'true', 'Enable the Attributes Price Factor.', 13, 25, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(299, 'Enable Qty Price Discount', 'ATTRIBUTES_ENABLED_QTY_PRICES', 'true', 'Enable the Attributes Quantity Price Discounts.', 13, 26, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(300, 'Enable Attribute Images', 'ATTRIBUTES_ENABLED_IMAGES', 'true', 'Enable the Attributes Images.', 13, 28, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(301, 'Enable Text Pricing by word or letter', 'ATTRIBUTES_ENABLED_TEXT_PRICES', 'true', 'Enable the Attributes Text Pricing by word or letter.', 13, 35, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(302, 'Text Pricing - Spaces are Free', 'TEXT_SPACES_FREE', '1', 'On Text pricing Spaces are Free<br /><br />0= off 1= on', 13, 36, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(303, 'Read Only option type - Ignore for Add to Cart', 'PRODUCTS_OPTIONS_TYPE_READONLY_IGNORED', '1', 'When a Product only uses READONLY attributes, should the Add to Cart button be On or Off?<br />0= OFF<br />1= ON', 13, 37, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(304, 'Enable GZip Compression', 'GZIP_LEVEL', '0', '0= off 1= on', 14, 1, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(305, 'Session Directory', 'SESSION_WRITE_DIRECTORY', '/home1/sarasou1/public_html/biz/cache', 'If sessions are file based, store them in this directory.', 15, 1, '2009-06-22 22:06:31', '2008-01-03 11:24:41', NULL, NULL),
(306, 'Cookie Domain', 'SESSION_USE_FQDN', 'True', 'If True the full domain name will be used to store the cookie, e.g. www.mydomain.com. If False only a partial domain name will be used, e.g. mydomain.com. If you are unsure about this, always leave set to true.', 15, 2, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(307, 'Force Cookie Use', 'SESSION_FORCE_COOKIE_USE', 'False', 'Force the use of sessions when cookies are only enabled.', 15, 2, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(308, 'Check SSL Session ID', 'SESSION_CHECK_SSL_SESSION_ID', 'False', 'Validate the SSL_SESSION_ID on every secure HTTPS page request.', 15, 3, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(309, 'Check User Agent', 'SESSION_CHECK_USER_AGENT', 'False', 'Validate the clients browser user agent on every page request.', 15, 4, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(310, 'Check IP Address', 'SESSION_CHECK_IP_ADDRESS', 'False', 'Validate the clients IP address on every page request.', 15, 5, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(311, 'Prevent Spider Sessions', 'SESSION_BLOCK_SPIDERS', 'True', 'Prevent known spiders from starting a session.', 15, 6, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(312, 'Recreate Session', 'SESSION_RECREATE', 'True', 'Recreate the session to generate a new session ID when the customer logs on or creates an account (PHP >=4.1 needed).', 15, 7, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(313, 'IP to Host Conversion Status', 'SESSION_IP_TO_HOST_ADDRESS', 'true', 'Convert IP Address to Host Address<br /><br />Note: on some servers this can slow down the initial start of a session or execution of Emails', 15, 10, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(314, 'Length of the redeem code', 'SECURITY_CODE_LENGTH', '10', 'Enter the length of the redeem code<br />The longer the more secure', 16, 1, NULL, '2008-01-03 11:24:41', NULL, NULL),
(315, 'Default Order Status For Zero Balance Orders', 'DEFAULT_ZERO_BALANCE_ORDERS_STATUS_ID', '2', 'When an order''s balance is zero, this order status will be assigned to it.', 16, 0, NULL, '2008-01-03 11:24:41', 'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses('),
(316, 'New Signup Discount Coupon ID#', 'NEW_SIGNUP_DISCOUNT_COUPON', '', 'Select the coupon<br />', 16, 75, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_coupon_id('),
(317, 'New Signup Gift Voucher Amount', 'NEW_SIGNUP_GIFT_VOUCHER_AMOUNT', '', 'Leave blank for none<br />Or enter an amount ie. 10 for $10.00', 16, 76, NULL, '2008-01-03 11:24:41', NULL, NULL),
(318, 'Maximum Discount Coupons Per Page', 'MAX_DISPLAY_SEARCH_RESULTS_DISCOUNT_COUPONS', '20', 'Number of Discount Coupons to list per Page', 16, 81, NULL, '2008-01-03 11:24:41', NULL, NULL),
(319, 'Maximum Discount Coupon Report Results Per Page', 'MAX_DISPLAY_SEARCH_RESULTS_DISCOUNT_COUPONS_REPORTS', '20', 'Number of Discount Coupons to list on Reports Page', 16, 81, NULL, '2008-01-03 11:24:41', NULL, NULL),
(320, 'Credit Card Enable Status - VISA', 'CC_ENABLED_VISA', '1', 'Accept VISA 0= off 1= on', 17, 1, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(321, 'Credit Card Enable Status - MasterCard', 'CC_ENABLED_MC', '1', 'Accept MasterCard 0= off 1= on', 17, 2, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(322, 'Credit Card Enable Status - AmericanExpress', 'CC_ENABLED_AMEX', '0', 'Accept AmericanExpress 0= off 1= on', 17, 3, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(323, 'Credit Card Enable Status - Diners Club', 'CC_ENABLED_DINERS_CLUB', '0', 'Accept Diners Club 0= off 1= on', 17, 4, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(324, 'Credit Card Enable Status - Discover Card', 'CC_ENABLED_DISCOVER', '0', 'Accept Discover Card 0= off 1= on', 17, 5, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(325, 'Credit Card Enable Status - JCB', 'CC_ENABLED_JCB', '0', 'Accept JCB 0= off 1= on', 17, 6, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(326, 'Credit Card Enable Status - AUSTRALIAN BANKCARD', 'CC_ENABLED_AUSTRALIAN_BANKCARD', '0', 'Accept AUSTRALIAN BANKCARD 0= off 1= on', 17, 7, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(327, 'Credit Card Enable Status - SOLO', 'CC_ENABLED_SOLO', '0', 'Accept SOLO Card 0= off 1= on', 17, 8, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(328, 'Credit Card Enable Status - Switch', 'CC_ENABLED_SWITCH', '0', 'Accept SWITCH Card 0= off 1= on', 17, 9, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(329, 'Credit Card Enable Status - Maestro', 'CC_ENABLED_MAESTRO', '0', 'Accept MAESTRO Card 0= off 1= on', 17, 10, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(330, 'Credit Card Enabled - Show on Payment', 'SHOW_ACCEPTED_CREDIT_CARDS', '0', 'Show accepted credit cards on Payment page?<br />0= off<br />1= As Text<br />2= As Images<br /><br />Note: images and text must be defined in both the database and language file for specific credit card types.', 17, 50, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2''), '),
(331, 'This module is installed', 'MODULE_ORDER_TOTAL_GV_STATUS', 'true', '', 6, 1, NULL, '2003-10-30 22:16:40', NULL, 'zen_cfg_select_option(array(''true''),'),
(332, 'Sort Order', 'MODULE_ORDER_TOTAL_GV_SORT_ORDER', '840', 'Sort order of display.', 6, 2, NULL, '2003-10-30 22:16:40', NULL, NULL),
(333, 'Queue Purchases', 'MODULE_ORDER_TOTAL_GV_QUEUE', 'true', 'Do you want to queue purchases of the Gift Voucher?', 6, 3, NULL, '2003-10-30 22:16:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(334, 'Include Shipping', 'MODULE_ORDER_TOTAL_GV_INC_SHIPPING', 'true', 'Include Shipping in calculation', 6, 5, NULL, '2003-10-30 22:16:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(335, 'Include Tax', 'MODULE_ORDER_TOTAL_GV_INC_TAX', 'true', 'Include Tax in calculation.', 6, 6, NULL, '2003-10-30 22:16:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(336, 'Re-calculate Tax', 'MODULE_ORDER_TOTAL_GV_CALC_TAX', 'None', 'Re-Calculate Tax', 6, 7, NULL, '2003-10-30 22:16:40', NULL, 'zen_cfg_select_option(array(''None'', ''Standard'', ''Credit Note''),'),
(337, 'Tax Class', 'MODULE_ORDER_TOTAL_GV_TAX_CLASS', '0', 'Use the following tax class when treating Gift Voucher as Credit Note.', 6, 0, NULL, '2003-10-30 22:16:40', 'zen_get_tax_class_title', 'zen_cfg_pull_down_tax_classes('),
(338, 'Credit including Tax', 'MODULE_ORDER_TOTAL_GV_CREDIT_TAX', 'false', 'Add tax to purchased Gift Voucher when crediting to Account', 6, 8, NULL, '2003-10-30 22:16:40', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(339, 'Set Order Status', 'MODULE_ORDER_TOTAL_GV_ORDER_STATUS_ID', '0', 'Set the status of orders made where GV covers full payment', 6, 0, NULL, '2008-01-03 11:24:41', 'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses('),
(340, 'This module is installed', 'MODULE_ORDER_TOTAL_LOWORDERFEE_STATUS', 'true', '', 6, 1, NULL, '2003-10-30 22:16:43', NULL, 'zen_cfg_select_option(array(''true''),'),
(341, 'Sort Order', 'MODULE_ORDER_TOTAL_LOWORDERFEE_SORT_ORDER', '400', 'Sort order of display.', 6, 2, NULL, '2003-10-30 22:16:43', NULL, NULL),
(342, 'Allow Low Order Fee', 'MODULE_ORDER_TOTAL_LOWORDERFEE_LOW_ORDER_FEE', 'false', 'Do you want to allow low order fees?', 6, 3, NULL, '2003-10-30 22:16:43', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(343, 'Order Fee For Orders Under', 'MODULE_ORDER_TOTAL_LOWORDERFEE_ORDER_UNDER', '50', 'Add the low order fee to orders under this amount.', 6, 4, NULL, '2003-10-30 22:16:43', 'currencies->format', NULL),
(344, 'Order Fee', 'MODULE_ORDER_TOTAL_LOWORDERFEE_FEE', '5', 'For Percentage Calculation - include a % Example: 10%<br />For a flat amount just enter the amount - Example: 5 for $5.00', 6, 5, NULL, '2003-10-30 22:16:43', '', NULL),
(345, 'Attach Low Order Fee On Orders Made', 'MODULE_ORDER_TOTAL_LOWORDERFEE_DESTINATION', 'both', 'Attach low order fee for orders sent to the set destination.', 6, 6, NULL, '2003-10-30 22:16:43', NULL, 'zen_cfg_select_option(array(''national'', ''international'', ''both''),'),
(346, 'Tax Class', 'MODULE_ORDER_TOTAL_LOWORDERFEE_TAX_CLASS', '0', 'Use the following tax class on the low order fee.', 6, 7, NULL, '2003-10-30 22:16:43', 'zen_get_tax_class_title', 'zen_cfg_pull_down_tax_classes('),
(347, 'No Low Order Fee on Virtual Products', 'MODULE_ORDER_TOTAL_LOWORDERFEE_VIRTUAL', 'false', 'Do not charge Low Order Fee when cart is Virtual Products Only', 6, 8, NULL, '2004-04-20 22:16:43', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(348, 'No Low Order Fee on Gift Vouchers', 'MODULE_ORDER_TOTAL_LOWORDERFEE_GV', 'false', 'Do not charge Low Order Fee when cart is Gift Vouchers Only', 6, 9, NULL, '2004-04-20 22:16:43', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(349, 'This module is installed', 'MODULE_ORDER_TOTAL_SHIPPING_STATUS', 'true', '', 6, 1, NULL, '2003-10-30 22:16:46', NULL, 'zen_cfg_select_option(array(''true''),'),
(350, 'Sort Order', 'MODULE_ORDER_TOTAL_SHIPPING_SORT_ORDER', '200', 'Sort order of display.', 6, 2, NULL, '2003-10-30 22:16:46', NULL, NULL),
(351, 'Allow Free Shipping', 'MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING', 'false', 'Do you want to allow free shipping?', 6, 3, NULL, '2003-10-30 22:16:46', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(352, 'Free Shipping For Orders Over', 'MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING_OVER', '50', 'Provide free shipping for orders over the set amount.', 6, 4, NULL, '2003-10-30 22:16:46', 'currencies->format', NULL),
(353, 'Provide Free Shipping For Orders Made', 'MODULE_ORDER_TOTAL_SHIPPING_DESTINATION', 'national', 'Provide free shipping for orders sent to the set destination.', 6, 5, NULL, '2003-10-30 22:16:46', NULL, 'zen_cfg_select_option(array(''national'', ''international'', ''both''),'),
(354, 'This module is installed', 'MODULE_ORDER_TOTAL_SUBTOTAL_STATUS', 'true', '', 6, 1, NULL, '2003-10-30 22:16:49', NULL, 'zen_cfg_select_option(array(''true''),'),
(355, 'Sort Order', 'MODULE_ORDER_TOTAL_SUBTOTAL_SORT_ORDER', '100', 'Sort order of display.', 6, 2, NULL, '2003-10-30 22:16:49', NULL, NULL),
(356, 'This module is installed', 'MODULE_ORDER_TOTAL_TAX_STATUS', 'true', '', 6, 1, NULL, '2003-10-30 22:16:52', NULL, 'zen_cfg_select_option(array(''true''),'),
(357, 'Sort Order', 'MODULE_ORDER_TOTAL_TAX_SORT_ORDER', '300', 'Sort order of display.', 6, 2, NULL, '2003-10-30 22:16:52', NULL, NULL),
(358, 'This module is installed', 'MODULE_ORDER_TOTAL_TOTAL_STATUS', 'true', '', 6, 1, NULL, '2003-10-30 22:16:55', NULL, 'zen_cfg_select_option(array(''true''),'),
(359, 'Sort Order', 'MODULE_ORDER_TOTAL_TOTAL_SORT_ORDER', '999', 'Sort order of display.', 6, 2, NULL, '2003-10-30 22:16:55', NULL, NULL),
(360, 'Tax Class', 'MODULE_ORDER_TOTAL_COUPON_TAX_CLASS', '0', 'Use the following tax class when treating Discount Coupon as Credit Note.', 6, 0, NULL, '2003-10-30 22:16:36', 'zen_get_tax_class_title', 'zen_cfg_pull_down_tax_classes('),
(361, 'Include Tax', 'MODULE_ORDER_TOTAL_COUPON_INC_TAX', 'false', 'Include Tax in calculation.', 6, 6, NULL, '2003-10-30 22:16:36', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(362, 'Sort Order', 'MODULE_ORDER_TOTAL_COUPON_SORT_ORDER', '280', 'Sort order of display.', 6, 2, NULL, '2003-10-30 22:16:36', NULL, NULL),
(363, 'Include Shipping', 'MODULE_ORDER_TOTAL_COUPON_INC_SHIPPING', 'false', 'Include Shipping in calculation', 6, 5, NULL, '2003-10-30 22:16:36', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(364, 'This module is installed', 'MODULE_ORDER_TOTAL_COUPON_STATUS', 'true', '', 6, 1, NULL, '2003-10-30 22:16:36', NULL, 'zen_cfg_select_option(array(''true''),'),
(365, 'Re-calculate Tax', 'MODULE_ORDER_TOTAL_COUPON_CALC_TAX', 'Standard', 'Re-Calculate Tax', 6, 7, NULL, '2003-10-30 22:16:36', NULL, 'zen_cfg_select_option(array(''None'', ''Standard'', ''Credit Note''),'),
(366, 'Admin Demo Status', 'ADMIN_DEMO', '0', 'Admin Demo should be on?<br />0= off 1= on', 6, 0, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(569, 'Excluding UserAgent''s', 'XTRACKING_EXCLUDED_UA', 'ServiceUptime.robot', 'Comma Separate List of UserAgent''s substring which should not be recorded', 31, 2, NULL, '2009-06-26 01:31:46', NULL, NULL),
(368, 'Text product option type', 'PRODUCTS_OPTIONS_TYPE_TEXT', '1', 'Numeric value of the text product option type', 6, NULL, '2008-01-03 11:24:41', '2008-01-03 11:24:41', NULL, NULL),
(369, 'Radio button product option type', 'PRODUCTS_OPTIONS_TYPE_RADIO', '2', 'Numeric value of the radio button product option type', 6, NULL, '2008-01-03 11:24:41', '2008-01-03 11:24:41', NULL, NULL),
(370, 'Check box product option type', 'PRODUCTS_OPTIONS_TYPE_CHECKBOX', '3', 'Numeric value of the check box product option type', 6, NULL, '2008-01-03 11:24:41', '2008-01-03 11:24:41', NULL, NULL),
(371, 'File product option type', 'PRODUCTS_OPTIONS_TYPE_FILE', '4', 'Numeric value of the file product option type', 6, NULL, '2008-01-03 11:24:41', '2008-01-03 11:24:41', NULL, NULL),
(372, 'ID for text and file products options values', 'PRODUCTS_OPTIONS_VALUES_TEXT_ID', '0', 'Numeric value of the products_options_values_id used by the text and file attributes.', 6, NULL, '2008-01-03 11:24:41', '2008-01-03 11:24:41', NULL, NULL),
(568, 'Excluding IP''s', 'XTRACKING_EXCLUDED_IPS', '127.0.0.1', 'Comma Separate List of IPs which should not be recorded, for instance, your own PCs IP address, or that of your server if you are using Cron Jobs, etc', 31, 1, NULL, '2009-06-26 01:31:46', NULL, NULL),
(375, 'Read Only option type', 'PRODUCTS_OPTIONS_TYPE_READONLY', '5', 'Numeric value of the file product option type', 6, NULL, '2008-01-03 11:24:41', '2008-01-03 11:24:41', NULL, NULL),
(376, 'Products Info - Products Option Name Sort Order', 'PRODUCTS_OPTIONS_SORT_ORDER', '0', 'Sort order of Option Names for Products Info<br />0= Sort Order, Option Name<br />1= Option Name', 18, 35, '2008-01-03 11:24:41', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(377, 'Products Info - Product Option Value of Attributes Sort Order', 'PRODUCTS_OPTIONS_SORT_BY_PRICE', '1', 'Sort order of Product Option Values of Attributes for Products Info<br />0= Sort Order, Price<br />1= Sort Order, Option Value Name', 18, 36, '2008-01-03 11:24:41', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(378, 'Product Info - Show Option Values Name Below Attributes Image', 'PRODUCT_IMAGES_ATTRIBUTES_NAMES', '1', 'Product Info - Show the name of the Option Value beneath the Attribute Image?<br />0= off 1= on', 18, 41, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(379, 'Product Info - Show Sales Discount Savings Status', 'SHOW_SALE_DISCOUNT_STATUS', '1', 'Product Info - Show the amount of discount savings?<br />0= off 1= on', 18, 45, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(380, 'Product Info - Show Sales Discount Savings Dollars or Percentage', 'SHOW_SALE_DISCOUNT', '1', 'Product Info - Show the amount of discount savings display as:<br />1= % off 2= $amount off', 18, 46, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''1'', ''2''), '),
(381, 'Product Info - Show Sales Discount Savings Percentage Decimals', 'SHOW_SALE_DISCOUNT_DECIMALS', '0', 'Product Info - Show discount savings display as a Percentage with how many decimals?:<br />Default= 0', 18, 47, NULL, '2008-01-03 11:24:41', NULL, NULL),
(382, 'Product Info - Price is Free Image or Text Status', 'OTHER_IMAGE_PRICE_IS_FREE_ON', '1', 'Product Info - Show the Price is Free Image or Text on Displayed Price<br />0= Text<br />1= Image', 18, 50, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(383, 'Product Info - Price is Call for Price Image or Text Status', 'PRODUCTS_PRICE_IS_CALL_IMAGE_ON', '1', 'Product Info - Show the Price is Call for Price Image or Text on Displayed Price<br />0= Text<br />1= Image', 18, 51, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(384, 'Product Quantity Box Status - Adding New Products', 'PRODUCTS_QTY_BOX_STATUS', '1', 'What should the Default Quantity Box Status be set to when adding New Products?<br /><br />0= off<br />1= on<br />NOTE: This will show a Qty Box when ON and default the Add to Cart to 1', 18, 55, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(385, 'Product Reviews Require Approval', 'REVIEWS_APPROVAL', '1', 'Do product reviews require approval?<br /><br />Note: When Review Status is off, it will also not show<br /><br />0= off 1= on', 18, 62, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(386, 'Meta Tags - Include Product Model in Title', 'META_TAG_INCLUDE_MODEL', '1', 'Do you want to include the Product Model in the Meta Tag Title?<br /><br />0= off 1= on', 18, 69, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(387, 'Meta Tags - Include Product Price in Title', 'META_TAG_INCLUDE_PRICE', '1', 'Do you want to include the Product Price in the Meta Tag Title?<br /><br />0= off 1= on', 18, 70, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(388, 'Meta Tags Generated Description Maximum Length?', 'MAX_META_TAG_DESCRIPTION_LENGTH', '50', 'Set Generated Meta Tag Description Maximum Length to (words) Default 50:', 18, 71, NULL, '2008-01-03 11:24:41', '', ''),
(389, 'Also Purchased Products Columns per Row', 'SHOW_PRODUCT_INFO_COLUMNS_ALSO_PURCHASED_PRODUCTS', '3', 'Also Purchased Products Columns per Row<br />0= off or set the sort order', 18, 72, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4'', ''5'', ''6'', ''7'', ''8'', ''9'', ''10'', ''11'', ''12''), '),
(390, 'Previous Next - Navigation Bar Position', 'PRODUCT_INFO_PREVIOUS_NEXT', '1', 'Location of Previous/Next Navigation Bar<br />0= off<br />1= Top of Page<br />2= Bottom of Page<br />3= Both Top and Bottom of Page', 18, 21, '2008-01-03 11:24:41', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Off''), array(''id''=>''1'', ''text''=>''Top of Page''), array(''id''=>''2'', ''text''=>''Bottom of Page''), array(''id''=>''3'', ''text''=>''Both Top & Bottom of Page'')),'),
(391, 'Previous Next - Sort Order', 'PRODUCT_INFO_PREVIOUS_NEXT_SORT', '1', 'Products Display Order by<br />0= Product ID<br />1= Product Name<br />2= Model<br />3= Price, Product Name<br />4= Price, Model<br />5= Product Name, Model<br />6= Product Sort Order', 18, 22, '2008-01-03 11:24:41', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Product ID''), array(''id''=>''1'', ''text''=>''Name''), array(''id''=>''2'', ''text''=>''Product Model''), array(''id''=>''3'', ''text''=>''Product Price - Name''), array(''id''=>''4'', ''text''=>''Product Price - Model''), array(''id''=>''5'', ''text''=>''Product Name - Model''), array(''id''=>''6'', ''text''=>''Product Sort Order'')),'),
(392, 'Previous Next - Button and Image Status', 'SHOW_PREVIOUS_NEXT_STATUS', '0', 'Button and Product Image status settings are:<br />0= Off<br />1= On', 18, 20, '2009-06-20 02:45:19', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Off''), array(''id''=>''1'', ''text''=>''On'')),'),
(393, 'Previous Next - Button and Image Settings', 'SHOW_PREVIOUS_NEXT_IMAGES', '0', 'Show Previous/Next Button and Product Image Settings<br />0= Button Only<br />1= Button and Product Image<br />2= Product Image Only', 18, 21, '2008-01-03 11:24:41', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Button Only''), array(''id''=>''1'', ''text''=>''Button and Product Image''), array(''id''=>''2'', ''text''=>''Product Image Only'')),'),
(394, 'Previous Next - Image Width?', 'PREVIOUS_NEXT_IMAGE_WIDTH', '50', 'Previous/Next Image Width?', 18, 22, NULL, '2008-01-03 11:24:41', '', ''),
(395, 'Previous Next - Image Height?', 'PREVIOUS_NEXT_IMAGE_HEIGHT', '40', 'Previous/Next Image Height?', 18, 23, NULL, '2008-01-03 11:24:41', '', ''),
(396, 'Previous Next - Navigation Includes Category Position', 'PRODUCT_INFO_CATEGORIES', '1', 'Product''s Category Image and Name Alignment Above Previous/Next Navigation Bar<br />0= off<br />1= Align Left<br />2= Align Center<br />3= Align Right', 18, 20, '2008-01-03 11:24:41', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Off''), array(''id''=>''1'', ''text''=>''Align Left''), array(''id''=>''2'', ''text''=>''Align Center''), array(''id''=>''3'', ''text''=>''Align Right'')),'),
(397, 'Previous Next - Navigation Includes Category Name and Image Status', 'PRODUCT_INFO_CATEGORIES_IMAGE_STATUS', '2', 'Product''s Category Image and Name Status<br />0= Category Name and Image always shows<br />1= Category Name only<br />2= Category Name and Image when not blank', 18, 20, '2008-01-03 11:24:41', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Category Name and Image Always''), array(''id''=>''1'', ''text''=>''Category Name only''), array(''id''=>''2'', ''text''=>''Category Name and Image when not blank'')),'),
(398, 'Column Width - Left Boxes', 'BOX_WIDTH_LEFT', '250px', 'Width of the Left Column Boxes<br />px may be included<br />Default = 150px', 19, 1, '2009-06-23 00:04:28', '2003-11-21 22:16:36', NULL, NULL),
(399, 'Column Width - Right Boxes', 'BOX_WIDTH_RIGHT', '150px', 'Width of the Right Column Boxes<br />px may be included<br />Default = 150px', 19, 2, NULL, '2003-11-21 22:16:36', NULL, NULL),
(400, 'Bread Crumbs Navigation Separator', 'BREAD_CRUMBS_SEPARATOR', '&nbsp;::&nbsp;', 'Enter the separator symbol to appear between the Navigation Bread Crumb trail<br />Note: Include spaces with the &amp;nbsp; symbol if you want them part of the separator.<br />Default = &amp;nbsp;::&amp;nbsp;', 19, 3, NULL, '2003-11-21 22:16:36', NULL, 'zen_cfg_textarea_small('),
(401, 'Define Breadcrumb Status', 'DEFINE_BREADCRUMB_STATUS', '2', 'Enable the Breadcrumb Trail Links?<br />0= OFF<br />1= ON<br />2= Off for Home Page Only', 19, 4, '2009-07-12 18:25:39', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2''), '),
(402, 'Bestsellers - Number Padding', 'BEST_SELLERS_FILLER', '&nbsp;', 'What do you want to Pad the numbers with?<br />Default = &amp;nbsp;', 19, 5, NULL, '2003-11-21 22:16:36', NULL, 'zen_cfg_textarea_small('),
(403, 'Bestsellers - Truncate Product Names', 'BEST_SELLERS_TRUNCATE', '35', 'What size do you want to truncate the Product Names?<br />Default = 35', 19, 6, NULL, '2003-11-21 22:16:36', NULL, NULL),
(404, 'Bestsellers - Truncate Product Names followed by ...', 'BEST_SELLERS_TRUNCATE_MORE', 'true', 'When truncated Product Names follow with ...<br />Default = true', 19, 7, '2003-03-21 13:08:25', '2003-03-21 11:42:47', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(405, 'Categories Box - Show Specials Link', 'SHOW_CATEGORIES_BOX_SPECIALS', 'false', 'Show Specials Link in the Categories Box', 19, 8, '2009-06-19 22:15:33', '2003-03-21 11:42:47', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(406, 'Categories Box - Show Products New Link', 'SHOW_CATEGORIES_BOX_PRODUCTS_NEW', 'false', 'Show Products New Link in the Categories Box', 19, 9, '2009-06-19 22:17:04', '2003-03-21 11:42:47', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(407, 'Shopping Cart Box Status', 'SHOW_SHOPPING_CART_BOX_STATUS', '0', 'Shopping Cart Shows<br />0= Always<br />1= Only when full<br />2= Only when full but not when viewing the Shopping Cart', 19, 10, '2009-06-18 23:29:35', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2''), '),
(408, 'Categories Box - Show Featured Products Link', 'SHOW_CATEGORIES_BOX_FEATURED_PRODUCTS', 'true', 'Show Featured Products Link in the Categories Box', 19, 11, '2003-03-21 13:08:25', '2003-03-21 11:42:47', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(409, 'Categories Box - Show Products All Link', 'SHOW_CATEGORIES_BOX_PRODUCTS_ALL', 'true', 'Show Products All Link in the Categories Box', 19, 12, '2003-03-21 13:08:25', '2003-03-21 11:42:47', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(410, 'Column Left Status - Global', 'COLUMN_LEFT_STATUS', '1', 'Show Column Left, unless page override exists?<br />0= Column Left is always off<br />1= Column Left is on, unless page override', 19, 15, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), ');
INSERT INTO `configuration` (`configuration_id`, `configuration_title`, `configuration_key`, `configuration_value`, `configuration_description`, `configuration_group_id`, `sort_order`, `last_modified`, `date_added`, `use_function`, `set_function`) VALUES
(411, 'Column Right Status - Global', 'COLUMN_RIGHT_STATUS', '0', 'Show Column Right, unless page override exists?<br />0= Column Right is always off<br />1= Column Right is on, unless page override', 19, 16, '2009-06-18 23:30:12', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(412, 'Column Width - Left', 'COLUMN_WIDTH_LEFT', '150px', 'Width of the Left Column<br />px may be included<br />Default = 150px', 19, 20, '2009-06-23 00:04:44', '2003-11-21 22:16:36', NULL, NULL),
(413, 'Column Width - Right', 'COLUMN_WIDTH_RIGHT', '150px', 'Width of the Right Column<br />px may be included<br />Default = 150px', 19, 21, NULL, '2003-11-21 22:16:36', NULL, NULL),
(414, 'Categories Separator between links Status', 'SHOW_CATEGORIES_SEPARATOR_LINK', '1', 'Show Category Separator between Category Names and Links?<br />0= off<br />1= on', 19, 24, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(415, 'Categories Separator between the Category Name and Count', 'CATEGORIES_SEPARATOR', '-&gt;', 'What separator do you want between the Category name and the count?<br />Default = -&amp;gt;', 19, 25, NULL, '2003-11-21 22:16:36', NULL, 'zen_cfg_textarea_small('),
(416, 'Categories Separator between the Category Name and Sub Categories', 'CATEGORIES_SEPARATOR_SUBS', '|_&nbsp;', 'What separator do you want between the Category name and Sub Category Name?<br />Default = |_&amp;nbsp;', 19, 26, NULL, '2004-03-25 22:16:36', NULL, 'zen_cfg_textarea_small('),
(417, 'Categories Count Prefix', 'CATEGORIES_COUNT_PREFIX', '&nbsp;(', 'What do you want to Prefix the count with?<br />Default= (', 19, 27, NULL, '2003-01-21 22:16:36', NULL, 'zen_cfg_textarea_small('),
(418, 'Categories Count Suffix', 'CATEGORIES_COUNT_SUFFIX', ')', 'What do you want as a Suffix to the count?<br />Default= )', 19, 28, NULL, '2003-01-21 22:16:36', NULL, 'zen_cfg_textarea_small('),
(419, 'Categories SubCategories Indent', 'CATEGORIES_SUBCATEGORIES_INDENT', '&nbsp;&nbsp;', 'What do you want to use as the subcategories indent?<br />Default= &nbsp;&nbsp;', 19, 29, NULL, '2004-06-24 22:16:36', NULL, 'zen_cfg_textarea_small('),
(420, 'Categories with 0 Products Status', 'CATEGORIES_COUNT_ZERO', '0', 'Show Category Count for 0 Products?<br />0= off<br />1= on', 19, 30, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(421, 'Split Categories Box', 'CATEGORIES_SPLIT_DISPLAY', 'True', 'Split the categories box display by product type', 19, 31, '2009-07-12 17:19:36', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(422, 'Shopping Cart - Show Totals', 'SHOW_TOTALS_IN_CART', '1', 'Show Totals Above Shopping Cart?<br />0= off<br />1= on: Items Weight Amount<br />2= on: Items Weight Amount, but no weight when 0<br />3= on: Items Amount', 19, 31, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''), '),
(423, 'Customer Greeting - Show on Index Page', 'SHOW_CUSTOMER_GREETING', '1', 'Always Show Customer Greeting on Index?<br />0= off<br />1= on', 19, 40, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(424, 'Categories - Always Show on Main Page', 'SHOW_CATEGORIES_ALWAYS', '0', 'Always Show Categories on Main Page<br />0= off<br />1= on<br />Default category can be set to Top Level or a Specific Top Level', 19, 45, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(425, 'Main Page - Opens with Category', 'CATEGORIES_START_MAIN', '0', '0= Top Level Categories<br />Or enter the Category ID#<br />Note: Sub Categories can also be used Example: 3_10', 19, 46, NULL, '2008-01-03 11:24:41', '', ''),
(426, 'Categories - Always Open to Show SubCategories', 'SHOW_CATEGORIES_SUBCATEGORIES_ALWAYS', '1', 'Always Show Categories and SubCategories<br />0= off, just show Top Categories<br />1= on, Always show Categories and SubCategories when selected', 19, 47, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(427, 'Banner Display Groups - Header Position 1', 'SHOW_BANNERS_GROUP_SET1', '', 'The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Header Position 1?<br />Leave blank for none', 19, 55, NULL, '2008-01-03 11:24:41', '', ''),
(428, 'Banner Display Groups - Header Position 2', 'SHOW_BANNERS_GROUP_SET2', '', 'The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Header Position 2?<br />Leave blank for none', 19, 56, NULL, '2008-01-03 11:24:41', '', ''),
(429, 'Banner Display Groups - Header Position 3', 'SHOW_BANNERS_GROUP_SET3', '', 'The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Header Position 3?<br />Leave blank for none', 19, 57, NULL, '2008-01-03 11:24:41', '', ''),
(430, 'Banner Display Groups - Footer Position 1', 'SHOW_BANNERS_GROUP_SET4', '', 'The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Footer Position 1?<br />Leave blank for none', 19, 65, NULL, '2008-01-03 11:24:41', '', ''),
(431, 'Banner Display Groups - Footer Position 2', 'SHOW_BANNERS_GROUP_SET5', '', 'The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Footer Position 2?<br />Leave blank for none', 19, 66, NULL, '2008-01-03 11:24:41', '', ''),
(432, 'Banner Display Groups - Footer Position 3', 'SHOW_BANNERS_GROUP_SET6', 'Wide-Banners', 'The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />Default Group is Wide-Banners<br /><br />What Banner Group(s) do you want to use in the Footer Position 3?<br />Leave blank for none', 19, 67, NULL, '2008-01-03 11:24:41', '', ''),
(433, 'Banner Display Groups - Side Box banner_box', 'SHOW_BANNERS_GROUP_SET7', 'SideBox-Banners', 'The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br />Default Group is SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Side Box - banner_box?<br />Leave blank for none', 19, 70, NULL, '2008-01-03 11:24:41', '', ''),
(434, 'Banner Display Groups - Side Box banner_box2', 'SHOW_BANNERS_GROUP_SET8', 'SideBox-Banners', 'The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br />Default Group is SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Side Box - banner_box2?<br />Leave blank for none', 19, 71, NULL, '2008-01-03 11:24:41', '', ''),
(435, 'Banner Display Group - Side Box banner_box_all', 'SHOW_BANNERS_GROUP_SET_ALL', 'BannersAll', 'The Banner Display Group may only be from one (1) Banner Group for the Banner All sidebox<br /><br />Default Group is BannersAll<br /><br />What Banner Group do you want to use in the Side Box - banner_box_all?<br />Leave blank for none', 19, 72, NULL, '2008-01-03 11:24:41', '', ''),
(436, 'Footer - Show IP Address status', 'SHOW_FOOTER_IP', '1', 'Show Customer IP Address in the Footer<br />0= off<br />1= on<br />Should the Customer IP Address show in the footer?', 19, 80, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(437, 'Product Discount Quantities - Add how many blank discounts?', 'DISCOUNT_QTY_ADD', '5', 'How many blank discount quantities should be added for Product Pricing?', 19, 90, NULL, '2008-01-03 11:24:41', '', ''),
(438, 'Product Discount Quantities - Display how many per row?', 'DISCOUNT_QUANTITY_PRICES_COLUMN', '5', 'How many discount quantities should show per row on Product Info Pages?', 19, 95, NULL, '2008-01-03 11:24:41', '', ''),
(439, 'Categories/Products Display Sort Order', 'CATEGORIES_PRODUCTS_SORT_ORDER', '0', 'Categories/Products Display Sort Order<br />0= Categories/Products Sort Order/Name<br />1= Categories/Products Name<br />2= Products Model<br />3= Products Qty+, Products Name<br />4= Products Qty-, Products Name<br />5= Products Price+, Products Name<br />6= Products Price-, Products Name', 19, 100, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4'', ''5'', ''6''), '),
(440, 'Option Names and Values Global Add, Copy and Delete Features Status', 'OPTION_NAMES_VALUES_GLOBAL_STATUS', '1', 'Option Names and Values Global Add, Copy and Delete Features Status<br />0= Hide Features<br />1= Show Features<br />2= Products Model', 19, 110, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(441, 'Categories-Tabs Menu ON/OFF', 'CATEGORIES_TABS_STATUS', '0', 'Categories-Tabs<br />This enables the display of your store''s categories as a menu across the top of your header. There are many potential creative uses for this.<br />0= Hide Categories Tabs<br />1= Show Categories Tabs', 19, 112, '2009-06-19 22:14:50', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(442, 'Site Map - include My Account Links?', 'SHOW_ACCOUNT_LINKS_ON_SITE_MAP', 'No', 'Should the links to My Account show up on the site-map?<br />Note: Spiders will try to index this page, and likely should not be sent to secure pages, since there is no benefit in indexing a login page.<br /><br />Default: false', 19, 115, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''Yes'', ''No''), '),
(443, 'Skip 1-prod Categories', 'SKIP_SINGLE_PRODUCT_CATEGORIES', 'False', 'Skip single-product categories<br />If this option is set to True, then if the customer clicks on a link to a category which only contains a single item, then Zen Cart will take them directly to that product-page, rather than present them with another link to click in order to see the product.<br />Default: True', 19, 120, '2009-06-27 11:05:25', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(444, 'Use split-login page', 'USE_SPLIT_LOGIN_MODE', 'False', 'The login page can be displayed in two modes: Split or Vertical.<br />In Split mode, the create-account options are accessed by clicking a button to get to the create-account page.  In Vertical mode, the create-account input fields are all displayed inline, below the login field, making one less click for the customer to create their account.<br />Default: False', 19, 121, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(445, 'CSS Buttons', 'IMAGE_USE_CSS_BUTTONS', 'No', 'CSS Buttons<br />Use CSS buttons instead of images (GIF/JPG)?<br />Button styles must be configured in the stylesheet if you enable this option.', 19, 147, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''No'', ''Yes''), '),
(446, '<strong>Down for Maintenance: ON/OFF</strong>', 'DOWN_FOR_MAINTENANCE', 'false', 'Down for Maintenance <br />(true=on false=off)', 20, 1, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(447, 'Down for Maintenance: filename', 'DOWN_FOR_MAINTENANCE_FILENAME', 'down_for_maintenance', 'Down for Maintenance filename<br />Note: Do not include the extension<br />Default=down_for_maintenance', 20, 2, NULL, '2008-01-03 11:24:41', NULL, ''),
(448, 'Down for Maintenance: Hide Header', 'DOWN_FOR_MAINTENANCE_HEADER_OFF', 'false', 'Down for Maintenance: Hide Header <br />(true=hide false=show)', 20, 3, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(449, 'Down for Maintenance: Hide Column Left', 'DOWN_FOR_MAINTENANCE_COLUMN_LEFT_OFF', 'false', 'Down for Maintenance: Hide Column Left <br />(true=hide false=show)', 20, 4, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(450, 'Down for Maintenance: Hide Column Right', 'DOWN_FOR_MAINTENANCE_COLUMN_RIGHT_OFF', 'false', 'Down for Maintenance: Hide Column Right <br />(true=hide false=show)', 20, 5, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(451, 'Down for Maintenance: Hide Footer', 'DOWN_FOR_MAINTENANCE_FOOTER_OFF', 'false', 'Down for Maintenance: Hide Footer <br />(true=hide false=show)', 20, 6, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(452, 'Down for Maintenance: Hide Prices', 'DOWN_FOR_MAINTENANCE_PRICES_OFF', 'false', 'Down for Maintenance: Hide Prices <br />(true=hide false=show)', 20, 7, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(453, 'Down For Maintenance (exclude this IP-Address)', 'EXCLUDE_ADMIN_IP_FOR_MAINTENANCE', 'your IP (ADMIN)', 'This IP Address is able to access the website while it is Down For Maintenance (like webmaster)<br />To enter multiple IP Addresses, separate with a comma. If you do not know your IP Address, check in the Footer of your Shop.', 20, 8, '2003-03-21 13:43:22', '2003-03-21 21:20:07', NULL, NULL),
(454, 'NOTICE PUBLIC Before going Down for Maintenance: ON/OFF', 'WARN_BEFORE_DOWN_FOR_MAINTENANCE', 'false', 'Give a WARNING some time before you put your website Down for Maintenance<br />(true=on false=off)<br />If you set the ''Down For Maintenance: ON/OFF'' to true this will automaticly be updated to false', 20, 9, '2003-03-21 13:08:25', '2003-03-21 11:42:47', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(455, 'Date and hours for notice before maintenance', 'PERIOD_BEFORE_DOWN_FOR_MAINTENANCE', '15/05/2003  2-3 PM', 'Date and hours for notice before maintenance website, enter date and hours for maintenance website', 20, 10, '2003-03-21 13:08:25', '2003-03-21 11:42:47', NULL, NULL),
(456, 'Display when webmaster has enabled maintenance', 'DISPLAY_MAINTENANCE_TIME', 'false', 'Display when Webmaster has enabled maintenance <br />(true=on false=off)<br />', 20, 11, '2003-03-21 13:08:25', '2003-03-21 11:42:47', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(457, 'Display website maintenance period', 'DISPLAY_MAINTENANCE_PERIOD', 'false', 'Display Website maintenance period <br />(true=on false=off)<br />', 20, 12, '2003-03-21 13:08:25', '2003-03-21 11:42:47', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(458, 'Website maintenance period', 'TEXT_MAINTENANCE_PERIOD_TIME', '2h00', 'Enter Website Maintenance period (hh:mm)', 20, 13, '2003-03-21 13:08:25', '2003-03-21 11:42:47', NULL, NULL),
(459, 'Confirm Terms and Conditions During Checkout Procedure', 'DISPLAY_CONDITIONS_ON_CHECKOUT', 'true', 'Show the Terms and Conditions during the checkout procedure which the customer must agree to.', 11, 1, '2009-06-18 23:43:27', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(460, 'Confirm Privacy Notice During Account Creation Procedure', 'DISPLAY_PRIVACY_CONDITIONS', 'false', 'Show the Privacy Notice during the account creation procedure which the customer must agree to.', 11, 2, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(461, 'Display Product Image', 'PRODUCT_NEW_LIST_IMAGE', '1102', 'Do you want to display the Product Image?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 21, 1, NULL, '2008-01-03 11:24:41', NULL, NULL),
(462, 'Display Product Quantity', 'PRODUCT_NEW_LIST_QUANTITY', '1202', 'Do you want to display the Product Quantity?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 21, 2, NULL, '2008-01-03 11:24:41', NULL, NULL),
(463, 'Display Product Buy Now Button', 'PRODUCT_NEW_BUY_NOW', '1300', 'Do you want to display the Product Buy Now Button<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 21, 3, NULL, '2008-01-03 11:24:41', NULL, NULL),
(464, 'Display Product Name', 'PRODUCT_NEW_LIST_NAME', '2101', 'Do you want to display the Product Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 21, 4, NULL, '2008-01-03 11:24:41', NULL, NULL),
(465, 'Display Product Model', 'PRODUCT_NEW_LIST_MODEL', '2201', 'Do you want to display the Product Model?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 21, 5, NULL, '2008-01-03 11:24:41', NULL, NULL),
(466, 'Display Product Manufacturer Name', 'PRODUCT_NEW_LIST_MANUFACTURER', '2302', 'Do you want to display the Product Manufacturer Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 21, 6, NULL, '2008-01-03 11:24:41', NULL, NULL),
(467, 'Display Product Price', 'PRODUCT_NEW_LIST_PRICE', '2402', 'Do you want to display the Product Price<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 21, 7, NULL, '2008-01-03 11:24:41', NULL, NULL),
(468, 'Display Product Weight', 'PRODUCT_NEW_LIST_WEIGHT', '2502', 'Do you want to display the Product Weight?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 21, 8, NULL, '2008-01-03 11:24:41', NULL, NULL),
(469, 'Display Product Date Added', 'PRODUCT_NEW_LIST_DATE_ADDED', '0', 'Do you want to display the Product Date Added?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 21, 9, '2009-07-14 14:26:16', '2008-01-03 11:24:41', NULL, NULL),
(470, 'Display Product Description', 'PRODUCT_NEW_LIST_DESCRIPTION', '150', 'How many characters do you want to display of the Product Description?<br /><br />0= OFF<br />150= Suggested Length, or enter the maximum number of characters to display', 21, 10, NULL, '2008-01-03 11:24:41', NULL, NULL),
(471, 'Display Product Display - Default Sort Order', 'PRODUCT_NEW_LIST_SORT_DEFAULT', '6', 'What Sort Order Default should be used for New Products Display?<br />Default= 6 for Date New to Old<br /><br />1= Products Name<br />2= Products Name Desc<br />3= Price low to high, Products Name<br />4= Price high to low, Products Name<br />5= Model<br />6= Date Added desc<br />7= Date Added<br />8= Product Sort Order', 21, 11, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''1'', ''2'', ''3'', ''4'', ''5'', ''6'', ''7'', ''8''), '),
(472, 'Default Products New Group ID', 'PRODUCT_NEW_LIST_GROUP_ID', '21', 'Warning: Only change this if your Products New Group ID has changed from the default of 21<br />What is the configuration_group_id for New Products Listings?', 21, 12, NULL, '2008-01-03 11:24:41', NULL, NULL),
(473, 'Display Multiple Products Qty Box Status and Set Button Location', 'PRODUCT_NEW_LISTING_MULTIPLE_ADD_TO_CART', '3', 'Do you want to display Add Multiple Products Qty Box and Set Button Location?<br />0= off<br />1= Top<br />2= Bottom<br />3= Both', 21, 25, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''), '),
(474, 'Mask Upcoming Products from being include as New Products', 'SHOW_NEW_PRODUCTS_UPCOMING_MASKED', '0', 'Do you want to mask Upcoming Products from being included as New Products in Listing, Sideboxes and Centerbox?<br />0= off<br />1= on', 21, 30, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(475, 'Display Product Image', 'PRODUCT_FEATURED_LIST_IMAGE', '1102', 'Do you want to display the Product Image?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 22, 1, NULL, '2008-01-03 11:24:41', NULL, NULL),
(476, 'Display Product Quantity', 'PRODUCT_FEATURED_LIST_QUANTITY', '1202', 'Do you want to display the Product Quantity?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 22, 2, NULL, '2008-01-03 11:24:41', NULL, NULL),
(477, 'Display Product Buy Now Button', 'PRODUCT_FEATURED_BUY_NOW', '1300', 'Do you want to display the Product Buy Now Button<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 22, 3, NULL, '2008-01-03 11:24:41', NULL, NULL),
(478, 'Display Product Name', 'PRODUCT_FEATURED_LIST_NAME', '2101', 'Do you want to display the Product Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 22, 4, NULL, '2008-01-03 11:24:41', NULL, NULL),
(479, 'Display Product Model', 'PRODUCT_FEATURED_LIST_MODEL', '2201', 'Do you want to display the Product Model?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 22, 5, NULL, '2008-01-03 11:24:41', NULL, NULL),
(480, 'Display Product Manufacturer Name', 'PRODUCT_FEATURED_LIST_MANUFACTURER', '2302', 'Do you want to display the Product Manufacturer Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 22, 6, NULL, '2008-01-03 11:24:41', NULL, NULL),
(481, 'Display Product Price', 'PRODUCT_FEATURED_LIST_PRICE', '2402', 'Do you want to display the Product Price<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 22, 7, NULL, '2008-01-03 11:24:41', NULL, NULL),
(482, 'Display Product Weight', 'PRODUCT_FEATURED_LIST_WEIGHT', '2502', 'Do you want to display the Product Weight?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 22, 8, NULL, '2008-01-03 11:24:41', NULL, NULL),
(483, 'Display Product Date Added', 'PRODUCT_FEATURED_LIST_DATE_ADDED', '0', 'Do you want to display the Product Date Added?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 22, 9, '2009-07-14 01:50:25', '2008-01-03 11:24:41', NULL, NULL),
(484, 'Display Product Description', 'PRODUCT_FEATURED_LIST_DESCRIPTION', '150', 'How many characters do you want to display of the Product Description?<br /><br />0= OFF<br />150= Suggested Length, or enter the maximum number of characters to display', 22, 10, NULL, '2008-01-03 11:24:41', NULL, NULL),
(485, 'Display Product Display - Default Sort Order', 'PRODUCT_FEATURED_LIST_SORT_DEFAULT', '1', 'What Sort Order Default should be used for Featured Product Display?<br />Default= 1 for Product Name<br /><br />1= Products Name<br />2= Products Name Desc<br />3= Price low to high, Products Name<br />4= Price high to low, Products Name<br />5= Model<br />6= Date Added desc<br />7= Date Added<br />8= Product Sort Order', 22, 11, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''1'', ''2'', ''3'', ''4'', ''5'', ''6'', ''7'', ''8''), '),
(486, 'Default Featured Products Group ID', 'PRODUCT_FEATURED_LIST_GROUP_ID', '22', 'Warning: Only change this if your Featured Products Group ID has changed from the default of 22<br />What is the configuration_group_id for Featured Products Listings?', 22, 12, NULL, '2008-01-03 11:24:41', NULL, NULL),
(487, 'Display Multiple Products Qty Box Status and Set Button Location', 'PRODUCT_FEATURED_LISTING_MULTIPLE_ADD_TO_CART', '0', 'Do you want to display Add Multiple Products Qty Box and Set Button Location?<br />0= off<br />1= Top<br />2= Bottom<br />3= Both', 22, 25, '2009-06-23 17:21:25', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''), '),
(488, 'Display Product Image', 'PRODUCT_ALL_LIST_IMAGE', '1102', 'Do you want to display the Product Image?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 23, 1, NULL, '2008-01-03 11:24:41', NULL, NULL),
(489, 'Display Product Quantity', 'PRODUCT_ALL_LIST_QUANTITY', '0', 'Do you want to display the Product Quantity?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 23, 2, '2009-06-20 02:50:43', '2008-01-03 11:24:41', NULL, NULL),
(490, 'Display Product Buy Now Button', 'PRODUCT_ALL_BUY_NOW', '1302', 'Do you want to display the Product Buy Now Button<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 23, 3, '2009-07-17 00:09:16', '2008-01-03 11:24:41', NULL, NULL),
(491, 'Display Product Name', 'PRODUCT_ALL_LIST_NAME', '2101', 'Do you want to display the Product Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 23, 4, NULL, '2008-01-03 11:24:41', NULL, NULL),
(492, 'Display Product Model', 'PRODUCT_ALL_LIST_MODEL', '2201', 'Do you want to display the Product Model?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 23, 5, NULL, '2008-01-03 11:24:41', NULL, NULL),
(493, 'Display Product Manufacturer Name', 'PRODUCT_ALL_LIST_MANUFACTURER', '2302', 'Do you want to display the Product Manufacturer Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 23, 6, NULL, '2008-01-03 11:24:41', NULL, NULL),
(494, 'Display Product Price', 'PRODUCT_ALL_LIST_PRICE', '2402', 'Do you want to display the Product Price<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 23, 7, NULL, '2008-01-03 11:24:41', NULL, NULL),
(495, 'Display Product Weight', 'PRODUCT_ALL_LIST_WEIGHT', '2502', 'Do you want to display the Product Weight?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 23, 8, NULL, '2008-01-03 11:24:41', NULL, NULL),
(496, 'Display Product Date Added', 'PRODUCT_ALL_LIST_DATE_ADDED', '0', 'Do you want to display the Product Date Added?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />', 23, 9, '2009-06-20 02:51:24', '2008-01-03 11:24:41', NULL, NULL),
(497, 'Display Product Description', 'PRODUCT_ALL_LIST_DESCRIPTION', '150', 'How many characters do you want to display of the Product Description?<br /><br />0= OFF<br />150= Suggested Length, or enter the maximum number of characters to display', 23, 10, NULL, '2008-01-03 11:24:41', NULL, NULL),
(498, 'Display Product Display - Default Sort Order', 'PRODUCT_ALL_LIST_SORT_DEFAULT', '1', 'What Sort Order Default should be used for All Products Display?<br />Default= 1 for Product Name<br /><br />1= Products Name<br />2= Products Name Desc<br />3= Price low to high, Products Name<br />4= Price high to low, Products Name<br />5= Model<br />6= Date Added desc<br />7= Date Added<br />8= Product Sort Order', 23, 11, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''1'', ''2'', ''3'', ''4'', ''5'', ''6'', ''7'', ''8''), '),
(499, 'Default Products All Group ID', 'PRODUCT_ALL_LIST_GROUP_ID', '23', 'Warning: Only change this if your Products All Group ID has changed from the default of 23<br />What is the configuration_group_id for Products All Listings?', 23, 12, NULL, '2008-01-03 11:24:41', NULL, NULL),
(500, 'Display Multiple Products Qty Box Status and Set Button Location', 'PRODUCT_ALL_LISTING_MULTIPLE_ADD_TO_CART', '0', 'Do you want to display Add Multiple Products Qty Box and Set Button Location?<br />0= off<br />1= Top<br />2= Bottom<br />3= Both', 23, 25, '2009-07-12 17:54:02', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''), '),
(501, 'Show New Products on Main Page', 'SHOW_PRODUCT_INFO_MAIN_NEW_PRODUCTS', '0', 'Show New Products on Main Page<br />0= off or set the sort order', 24, 65, '2009-06-25 02:52:18', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(502, 'Show Featured Products on Main Page', 'SHOW_PRODUCT_INFO_MAIN_FEATURED_PRODUCTS', '0', 'Show Featured Products on Main Page<br />0= off or set the sort order', 24, 66, '2009-07-19 02:50:10', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(503, 'Show Special Products on Main Page', 'SHOW_PRODUCT_INFO_MAIN_SPECIALS_PRODUCTS', '1', 'Show Special Products on Main Page<br />0= off or set the sort order', 24, 67, '2009-07-19 02:50:20', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(504, 'Show Upcoming Products on Main Page', 'SHOW_PRODUCT_INFO_MAIN_UPCOMING', '0', 'Show Upcoming Products on Main Page<br />0= off or set the sort order', 24, 68, '2009-06-18 23:39:20', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(505, 'Show New Products on Main Page - Category with SubCategories', 'SHOW_PRODUCT_INFO_CATEGORY_NEW_PRODUCTS', '0', 'Show New Products on Main Page - Category with SubCategories<br />0= off or set the sort order', 24, 70, '2009-06-18 23:39:38', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(506, 'Show Featured Products on Main Page - Category with SubCategories', 'SHOW_PRODUCT_INFO_CATEGORY_FEATURED_PRODUCTS', '0', 'Show Featured Products on Main Page - Category with SubCategories<br />0= off or set the sort order', 24, 71, '2009-06-25 02:52:53', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(507, 'Show Special Products on Main Page - Category with SubCategories', 'SHOW_PRODUCT_INFO_CATEGORY_SPECIALS_PRODUCTS', '0', 'Show Special Products on Main Page - Category with SubCategories<br />0= off or set the sort order', 24, 72, '2009-06-18 23:40:27', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(508, 'Show Upcoming Products on Main Page - Category with SubCategories', 'SHOW_PRODUCT_INFO_CATEGORY_UPCOMING', '0', 'Show Upcoming Products on Main Page - Category with SubCategories<br />0= off or set the sort order', 24, 73, '2009-06-18 23:40:32', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(509, 'Show New Products on Main Page - Errors and Missing Products Page', 'SHOW_PRODUCT_INFO_MISSING_NEW_PRODUCTS', '0', 'Show New Products on Main Page - Errors and Missing Product<br />0= off or set the sort order', 24, 75, '2009-06-18 23:40:42', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(510, 'Show Featured Products on Main Page - Errors and Missing Products Page', 'SHOW_PRODUCT_INFO_MISSING_FEATURED_PRODUCTS', '0', 'Show Featured Products on Main Page - Errors and Missing Product<br />0= off or set the sort order', 24, 76, '2009-07-19 02:50:40', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(511, 'Show Special Products on Main Page - Errors and Missing Products Page', 'SHOW_PRODUCT_INFO_MISSING_SPECIALS_PRODUCTS', '1', 'Show Special Products on Main Page - Errors and Missing Product<br />0= off or set the sort order', 24, 77, '2009-07-19 02:50:56', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(512, 'Show Upcoming Products on Main Page - Errors and Missing Products Page', 'SHOW_PRODUCT_INFO_MISSING_UPCOMING', '0', 'Show Upcoming Products on Main Page - Errors and Missing Product<br />0= off or set the sort order', 24, 78, '2009-06-18 23:41:36', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(513, 'Show New Products - below Product Listing', 'SHOW_PRODUCT_INFO_LISTING_BELOW_NEW_PRODUCTS', '0', 'Show New Products below Product Listing<br />0= off or set the sort order', 24, 85, '2009-06-18 23:41:43', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(514, 'Show Featured Products - below Product Listing', 'SHOW_PRODUCT_INFO_LISTING_BELOW_FEATURED_PRODUCTS', '0', 'Show Featured Products below Product Listing<br />0= off or set the sort order', 24, 86, '2009-07-19 02:51:09', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(515, 'Show Special Products - below Product Listing', 'SHOW_PRODUCT_INFO_LISTING_BELOW_SPECIALS_PRODUCTS', '1', 'Show Special Products below Product Listing<br />0= off or set the sort order', 24, 87, '2009-07-19 02:51:16', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(516, 'Show Upcoming Products - below Product Listing', 'SHOW_PRODUCT_INFO_LISTING_BELOW_UPCOMING', '0', 'Show Upcoming Products below Product Listing<br />0= off or set the sort order', 24, 88, '2009-06-18 23:42:02', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3'', ''4''), '),
(517, 'New Products Columns per Row', 'SHOW_PRODUCT_INFO_COLUMNS_NEW_PRODUCTS', '3', 'New Products Columns per Row', 24, 95, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''1'', ''2'', ''3'', ''4'', ''5'', ''6'', ''7'', ''8'', ''9'', ''10'', ''11'', ''12''), '),
(518, 'Featured Products Columns per Row', 'SHOW_PRODUCT_INFO_COLUMNS_FEATURED_PRODUCTS', '3', 'Featured Products Columns per Row', 24, 96, '2009-06-23 18:22:13', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''1'', ''2'', ''3'', ''4'', ''5'', ''6'', ''7'', ''8'', ''9'', ''10'', ''11'', ''12''), '),
(519, 'Special Products Columns per Row', 'SHOW_PRODUCT_INFO_COLUMNS_SPECIALS_PRODUCTS', '3', 'Special Products Columns per Row', 24, 97, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''1'', ''2'', ''3'', ''4'', ''5'', ''6'', ''7'', ''8'', ''9'', ''10'', ''11'', ''12''), '),
(520, 'Filter Product Listing for Current Top Level Category When Enabled', 'SHOW_PRODUCT_INFO_ALL_PRODUCTS', '0', 'Filter the products when Product Listing is enabled for current Main Category or show products from all categories?<br />0= Filter Off 1=Filter On ', 24, 100, '2009-07-19 02:52:03', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''), '),
(521, 'Define Main Page Status', 'DEFINE_MAIN_PAGE_STATUS', '1', 'Enable the Defined Main Page Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF', 25, 60, '2008-01-03 11:24:41', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''),'),
(522, 'Define Contact Us Status', 'DEFINE_CONTACT_US_STATUS', '1', 'Enable the Defined Contact Us Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF', 25, 61, '2008-01-03 11:24:41', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''),'),
(523, 'Define Privacy Status', 'DEFINE_PRIVACY_STATUS', '1', 'Enable the Defined Privacy Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF', 25, 62, '2008-01-03 11:24:41', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''),'),
(524, 'Define Shipping & Returns', 'DEFINE_SHIPPINGINFO_STATUS', '1', 'Enable the Defined Shipping & Returns Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF', 25, 63, '2008-01-03 11:24:41', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''),'),
(525, 'Define Conditions of Use', 'DEFINE_CONDITIONS_STATUS', '1', 'Enable the Defined Conditions of Use Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF', 25, 64, '2008-01-03 11:24:41', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''),'),
(526, 'Define Checkout Success', 'DEFINE_CHECKOUT_SUCCESS_STATUS', '1', 'Enable the Defined Checkout Success Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF', 25, 65, '2008-01-03 11:24:41', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''),'),
(527, 'Define Discount Coupon', 'DEFINE_DISCOUNT_COUPON_STATUS', '1', 'Enable the Defined Discount Coupon Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF', 25, 66, '2008-01-03 11:24:41', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''),'),
(528, 'Define Site Map Status', 'DEFINE_SITE_MAP_STATUS', '1', 'Enable the Defined Site Map Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF', 25, 67, '2008-01-03 11:24:41', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''),'),
(529, 'Define Page-Not-Found Status', 'DEFINE_PAGE_NOT_FOUND_STATUS', '1', 'Enable the Defined Page-Not-Found Text from define-pages?<br />0= Define Text OFF<br />1= Define Text ON', 25, 67, '2008-01-03 11:24:41', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(530, 'Define Page 2', 'DEFINE_PAGE_2_STATUS', '1', 'Enable the Defined Page 2 Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF', 25, 82, '2008-01-03 11:24:41', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''),'),
(531, 'Define Page 3', 'DEFINE_PAGE_3_STATUS', '1', 'Enable the Defined Page 3 Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF', 25, 83, '2008-01-03 11:24:41', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''),'),
(532, 'Define Page 4', 'DEFINE_PAGE_4_STATUS', '1', 'Enable the Defined Page 4 Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF', 25, 84, '2008-01-03 11:24:41', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''),'),
(533, 'EZ-Pages Display Status - HeaderBar', 'EZPAGES_STATUS_HEADER', '0', 'Display of EZ-Pages content can be Globally enabled/disabled for the Header Bar<br />0 = Off<br />1 = On<br />2= On ADMIN IP ONLY located in Website Maintenance<br />NOTE: Warning only shows to the Admin and not to the public', 30, 10, '2009-06-19 00:18:45', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2''), '),
(534, 'EZ-Pages Display Status - FooterBar', 'EZPAGES_STATUS_FOOTER', '0', 'Display of EZ-Pages content can be Globally enabled/disabled for the Footer Bar<br />0 = Off<br />1 = On<br />2= On ADMIN IP ONLY located in Website Maintenance<br />NOTE: Warning only shows to the Admin and not to the public', 30, 11, '2009-06-19 00:19:24', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2''), '),
(535, 'EZ-Pages Display Status - Sidebox', 'EZPAGES_STATUS_SIDEBOX', '0', 'Display of EZ-Pages content can be Globally enabled/disabled for the Sidebox<br />0 = Off<br />1 = On<br />2= On ADMIN IP ONLY located in Website Maintenance<br />NOTE: Warning only shows to the Admin and not to the public', 30, 12, '2009-06-19 00:19:44', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2''), '),
(536, 'EZ-Pages Header Link Separator', 'EZPAGES_SEPARATOR_HEADER', '&nbsp;::&nbsp;', 'EZ-Pages Header Link Separator<br />Default = &amp;nbsp;::&amp;nbsp;', 30, 20, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_textarea_small('),
(537, 'EZ-Pages Footer Link Separator', 'EZPAGES_SEPARATOR_FOOTER', '&nbsp;::&nbsp;', 'EZ-Pages Footer Link Separator<br />Default = &amp;nbsp;::&amp;nbsp;', 30, 21, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_textarea_small('),
(538, 'EZ-Pages Prev/Next Buttons', 'EZPAGES_SHOW_PREV_NEXT_BUTTONS', '2', 'Display Prev/Continue/Next buttons on EZ-Pages pages?<br />0=OFF (no buttons)<br />1="Continue"<br />2="Prev/Continue/Next"<br /><br />Default setting: 2.', 30, 30, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2''), '),
(539, 'EZ-Pages Table of Contents for Chapters Status', 'EZPAGES_SHOW_TABLE_CONTENTS', '1', 'Enable EZ-Pages Table of Contents for Chapters?<br />0= OFF<br />1= ON', 30, 35, '2008-01-03 11:24:41', '2008-01-03 11:24:41', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(540, 'EZ-Pages Pages to disable headers', 'EZPAGES_DISABLE_HEADER_DISPLAY_LIST', '', 'EZ-Pages "pages" on which to NOT display the normal "header" for your site.<br />Simply list page ID numbers separated by commas with no spaces.<br />Page ID numbers can be obtained from the EZ-Pages screen under Admin->Tools.<br />ie: 1,5,2<br />or leave blank.', 30, 40, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_textarea_small('),
(541, 'EZ-Pages Pages to disable footers', 'EZPAGES_DISABLE_FOOTER_DISPLAY_LIST', '', 'EZ-Pages "pages" on which to NOT display the normal "footer" for your site.<br />Simply list page ID numbers separated by commas with no spaces.<br />Page ID numbers can be obtained from the EZ-Pages screen under Admin->Tools.<br />ie: 3,7<br />or leave blank.', 30, 41, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_textarea_small('),
(542, 'EZ-Pages Pages to disable left-column', 'EZPAGES_DISABLE_LEFTCOLUMN_DISPLAY_LIST', '', 'EZ-Pages "pages" on which to NOT display the normal "left" column (of sideboxes) for your site.<br />Simply list page ID numbers separated by commas with no spaces.<br />Page ID numbers can be obtained from the EZ-Pages screen under Admin->Tools.<br />ie: 21<br />or leave blank.', 30, 42, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_textarea_small('),
(543, 'EZ-Pages Pages to disable right-column', 'EZPAGES_DISABLE_RIGHTCOLUMN_DISPLAY_LIST', '', 'EZ-Pages "pages" on which to NOT display the normal "right" column (of sideboxes) for your site.<br />Simply list page ID numbers separated by commas with no spaces.<br />Page ID numbers can be obtained from the EZ-Pages screen under Admin->Tools.<br />ie: 3,82,13<br />or leave blank.', 30, 43, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_textarea_small('),
(544, 'Minimum Order Amount', 'MIN_ORDER_AMOUNT', '35.00', 'The minimum amount an order must total to be able to checkout. Empty means no minimum.', 2, 99, '2009-06-20 13:28:59', '2009-06-20 13:26:01', NULL, NULL),
(545, 'Display Product Short Descriptions', 'PRODUCT_LIST_SHORT_DESC', '3', 'Set to 0 to disable, set to 1-99 to enable.', 8, 11, '2009-07-12 17:50:34', '2009-06-23 23:40:26', NULL, NULL),
(546, 'Product Info - Display Product Short Descriptions', 'PRODUCT_INFO_SHORT_DESC', '1', 'Show Product''s short Description<br />0= off<br />1= on', 18, 30, '2009-06-23 23:40:26', '2009-06-23 23:40:26', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Off''), array(''id''=>''1'', ''text''=>''On'')),'),
(547, 'Product Listing - Layout Style', 'PRODUCT_LISTING_LAYOUT_STYLE', 'columns', 'Select the layout style:<br />Each product can be listed in its own row (rows option) or products can be listed in multiple columns per row (columns option)', 8, 40, '2009-06-25 02:23:48', '2009-06-25 02:16:43', NULL, 'zen_cfg_select_option(array(''rows'', ''columns''),'),
(548, 'Product Listing - Columns Per Row', 'PRODUCT_LISTING_COLUMNS_PER_ROW', '3', 'Select the number of columns of products to show in each row in the product listing. The default setting is 3.', 8, 41, NULL, '2009-06-25 02:16:43', NULL, NULL),
(549, 'Store Fax', 'STORE_FAX', '', 'Enter the fax number for your store.<br>You can call upon this by using the define <strong>STORE_FAX</strong>.', 1, 4, '2009-06-26 00:22:55', '2009-06-26 00:22:55', NULL, NULL),
(550, 'Store Phone', 'STORE_PHONE', '(943) 377-4375', 'Enter the phone number for your store.<br>You can call upon this by using the define <strong>STORE_PHONE</strong>.', 1, 4, '2009-06-26 00:24:18', '2009-06-26 00:22:55', NULL, NULL),
(551, 'Enable Purchase Order Module', 'MODULE_PAYMENT_PURCHASE_ORDER_STATUS', 'True', 'Do you want to accept Purchase Order payments?', 6, 1, '2009-06-26 00:22:55', '2009-06-26 00:22:55', NULL, 'zen_cfg_select_option(array(''True'', ''False''), '),
(552, 'Make payable to:', 'MODULE_PAYMENT_PURCHASE_ORDER_PAYTO', 'Destination ImagiNation, Inc.', 'Who should payments be made payable to?', 6, 2, '2009-06-26 00:22:55', '2009-06-26 00:22:55', NULL, NULL),
(553, 'Sort order of display.', 'MODULE_PAYMENT_PURCHASE_ORDER_SORT_ORDER', '0', 'Sort order of display. Lowest is displayed first.', 6, 4, '2009-06-26 00:22:55', '2009-06-26 00:22:55', NULL, NULL),
(554, 'Payment Zone', 'MODULE_PAYMENT_PURCHASE_ORDER_ZONE', '0', 'If a zone is selected, only enable this payment method for that zone.', 6, 5, '2009-06-26 00:22:55', '2009-06-26 00:22:55', 'zen_get_zone_class_title', 'zen_cfg_pull_down_zone_classes('),
(555, 'Set Order Status', 'MODULE_PAYMENT_PURCHASE_ORDER_ORDER_STATUS_ID', '2', 'Set the status of orders made with this payment module to this value', 6, 6, '2009-06-26 00:22:55', '2009-06-26 00:22:55', 'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses('),
(556, 'Auto Status - Purchase Order', 'AUTO_STATUS_PO', '2', 'Number of the status assigned to an order when a purchase order is added to the payment data.', 28, 11, '2009-06-26 00:22:55', '2009-06-26 00:22:55', 'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses('),
(557, 'Auto Status - Payment', 'AUTO_STATUS_PAYMENT', '2', 'Number of the order status assigned when a payment (<B>not</B> attached to a purchase order) is added to the payment data.', 28, 10, '2009-07-12 03:47:54', '2009-06-26 00:22:55', 'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses('),
(558, 'Auto Status - P.O. Payment', 'AUTO_STATUS_PO_PAYMENT', '2', 'Number of the order status assigned when a payment <B>attached to a purchase order</B> is added to the payment data.', 28, 10, '2009-06-26 00:22:55', '2009-06-26 00:22:55', 'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses('),
(559, 'Auto Status - Refund', 'AUTO_STATUS_REFUND', '2', 'Number of the order status assigned when a refund is added to the payment data.', 28, 13, '2009-06-26 00:22:55', '2009-06-26 00:22:55', 'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses('),
(560, 'Auto Comments - Payment', 'AUTO_COMMENTS_PAYMENT', 'Payment received in our office. Payment ID: %s', 'You''ll have the option of adding these pre-configured comments to an order when a payment is entered.  You can attach the payment number to the comments by typing <strong>%s</strong>.', 28, 14, '2009-06-26 00:22:55', '2009-06-26 00:22:55', NULL, NULL),
(561, 'Auto Comments - P.O. Payment', 'AUTO_COMMENTS_PO_PAYMENT', 'Payment on purchase order received in our office. Payment ID: %s', 'You will have the option of adding these pre-configured comments to an order when a purchase order payment is entered.  You can attach the payment number to the comments by typing <strong>%s</strong>.', 28, 14, '2009-06-26 00:22:55', '2009-06-26 00:22:55', NULL, NULL),
(562, 'Auto Comments - Purchase Order', 'AUTO_COMMENTS_PO', 'Purchase Order #%s received in our office', 'You will have the option of adding these pre-configured comments to an order when a purchase order is entered.  You can attach the payment number to the comments by typing <strong>%s</strong>.', 28, 15, '2009-06-26 00:22:55', '2009-06-26 00:22:55', NULL, NULL),
(563, 'Auto Comments - Refund', 'AUTO_COMMENTS_REFUND', 'Refund #%s has been issued from our office.', 'You will have the option of adding these pre-configured comments to an order when a refund is entered.  You can attach the refund number to the comments by typing <strong>%s</strong>.', 28, 17, '2009-06-26 00:22:55', '2009-06-26 00:22:55', NULL, NULL),
(564, 'Federal Tax Exempt Number', 'FED_TAX_ID_NUMBER', '00-000000', 'If your tax exempt, then you should have a federal tax ID number. Enter the number here and the tax columns will not appear on the invoice. The number will also be displayed at the top of the invoice.', 28, 50, '2009-06-26 00:22:55', '2009-06-26 00:22:55', NULL, NULL);
INSERT INTO `configuration` (`configuration_id`, `configuration_title`, `configuration_key`, `configuration_value`, `configuration_description`, `configuration_group_id`, `sort_order`, `last_modified`, `date_added`, `use_function`, `set_function`) VALUES
(565, 'Closed Status - "Cancelled"', 'STATUS_ORDER_CANCELLED', '0', 'Insert the order status ID # you would like to assign to an order when you press the special "Cancelled!" button on super_orders.php.<p>If you do not have a "cancel" status, or do not want assign one automatically, choose <B>default</B> and this option will be ignored.<p><strong>You cannot attach comments or notify the customer using this option.</strong>', 28, 30, '2009-06-26 00:22:55', '2009-06-26 00:22:55', 'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses('),
(566, 'Closed Status - "Completed"', 'STATUS_ORDER_COMPLETED', '0', 'Insert the order status ID # you would like to assign to an order when you press the special "Completed!" button on super_orders.php.<p>If you do not have a "complete" status, or do not want assign one automatically, choose <B>default</B> and this option will be ignored.<p><strong>You cannot attach comments or notify the customer using this option.</strong>', 28, 30, '2009-06-26 00:22:55', '2009-06-26 00:22:55', 'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses('),
(567, 'Closed Status - "Reopened"', 'STATUS_ORDER_REOPEN', '0', 'Insert the order status ID # you would like to assign to an order when you undo the cancelled/completed status of an order.<p>If you do not have a "reopened" status, or do not want assign one automatically, choose <B>default</B> and this option will be ignored.<p><strong>You cannot attach comments or notify the customer using this option.</strong>', 28, 30, '2009-06-26 00:22:55', '2009-06-26 00:22:55', 'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses('),
(570, 'Excluding bot''s', 'XTRACKING_EXCLUDE_BOTS', 'true', 'IP''s Excluding from logging', 31, 3, NULL, '2009-06-26 01:31:46', NULL, 'zen_cfg_select_option(array(''true'', ''false''),'),
(571, 'Display Cross-Sell Products', 'MIN_DISPLAY_XSELL', '1', 'This is the minimum number of configured Cross-Sell products required in order to cause the Cross Sell information to be displayed.<br />Default: 1', 2, 17, NULL, '2009-06-26 02:26:50', NULL, NULL),
(572, 'Display Cross-Sell Products', 'MAX_DISPLAY_XSELL', '6', 'This is the maximum number of configured Cross-Sell products to be displayed.<br />Default: 6', 3, 66, NULL, '2009-06-26 02:26:50', NULL, NULL),
(573, 'Cross-Sell Products Columns per Row', 'SHOW_PRODUCT_INFO_COLUMNS_XSELL_PRODUCTS', '3', 'Cross-Sell Products Columns to display per Row<br />0= off or set the sort order.<br />Default: 3', 18, 72, NULL, '2009-06-26 02:26:50', NULL, 'zen_cfg_select_option(array(0, 1, 2, 3, 4), '),
(574, 'Cross-Sell - Display prices?', 'XSELL_DISPLAY_PRICE', 'true', 'Cross-Sell -- Do you want to display the product prices too?<br />Default: false', 18, 72, '2009-07-14 14:22:15', '2009-06-26 02:26:50', NULL, 'zen_cfg_select_option(array(''true'',''false''), '),
(575, 'Date of Birth - Always display as pulldown?', 'ACCOUNT_DOB_DRAW_INITIAL_DROPDOWN', 'true', 'When date of birth field is displayed, should it always be a pulldown menu?', 5, 2, '2009-07-12 00:48:55', '2009-07-12 00:48:30', NULL, 'zen_cfg_select_option(array(''true'', ''false''), '),
(576, 'Index New Listing Template', 'INDEX_NEW_USE_PRODUCT_LISTING', '2', 'Set to 1 to use the original listing template, 2 to use the shared listing template, 3 to use the product listing template.', 24, 1, '2009-07-18 23:15:59', '2009-07-14 06:22:25', NULL, 'zen_cfg_select_option(array(''1'', ''2'', ''3''),'),
(577, 'Index Special Listing Template', 'INDEX_SPECIAL_USE_PRODUCT_LISTING', '3', 'Set to 1 to use the original listing template, 2 to use the shared listing template, 3 to use the product listing template.', 24, 1, '2009-07-19 09:11:41', '2009-07-14 06:22:25', NULL, 'zen_cfg_select_option(array(''1'', ''2'', ''3''),'),
(578, 'Index Featured Listing Template', 'INDEX_FEATURED_USE_PRODUCT_LISTING', '1', 'Set to 1 to use the original listing template, 2 to use the shared listing template, 3 to use the product listing template.', 24, 1, '2009-07-14 06:22:25', '2009-07-14 06:22:25', NULL, 'zen_cfg_select_option(array(''1'', ''2'', ''3''),');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `configuration_group`
--
 
CREATE TABLE IF NOT EXISTS `configuration_group` (
  `configuration_group_id` int(11) NOT NULL auto_increment,
  `configuration_group_title` varchar(64) NOT NULL default '',
  `configuration_group_description` varchar(255) NOT NULL default '',
  `sort_order` int(5) default NULL,
  `visible` int(1) default '1',
  PRIMARY KEY  (`configuration_group_id`),
  KEY `idx_visible_zen` (`visible`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=32 ;
 
--
-- Dumping data for table `configuration_group`
--
 
INSERT INTO `configuration_group` (`configuration_group_id`, `configuration_group_title`, `configuration_group_description`, `sort_order`, `visible`) VALUES
(1, 'My Store', 'General information about my store', 1, 1),
(2, 'Minimum Values', 'The minimum values for functions / data', 2, 1),
(3, 'Maximum Values', 'The maximum values for functions / data', 3, 1),
(4, 'Images', 'Image parameters', 4, 1),
(5, 'Customer Details', 'Customer account configuration', 5, 1),
(6, 'Module Options', 'Hidden from configuration', 6, 0),
(7, 'Shipping/Packaging', 'Shipping options available at my store', 7, 1),
(8, 'Product Listing', 'Product Listing configuration options', 8, 1),
(9, 'Stock', 'Stock configuration options', 9, 1),
(10, 'Logging', 'Logging configuration options', 10, 1),
(11, 'Regulations', 'Regulation options', 16, 1),
(12, 'E-Mail Options', 'General settings for E-Mail transport and HTML E-Mails', 12, 1),
(13, 'Attribute Settings', 'Configure products attributes settings', 13, 1),
(14, 'GZip Compression', 'GZip compression options', 14, 1),
(15, 'Sessions', 'Session options', 15, 1),
(16, 'GV Coupons', 'Gift Vouchers and Coupons', 16, 1),
(17, 'Credit Cards', 'Credit Cards Accepted', 17, 1),
(18, 'Product Info', 'Product Info Display Options', 18, 1),
(19, 'Layout Settings', 'Layout Options', 19, 1),
(20, 'Website Maintenance', 'Website Maintenance Options', 20, 1),
(21, 'New Listing', 'New Products Listing', 21, 1),
(22, 'Featured Listing', 'Featured Products Listing', 22, 1),
(23, 'All Listing', 'All Products Listing', 23, 1),
(24, 'Index Listing', 'Index Products Listing', 24, 1),
(25, 'Define Page Status', 'Define Main Pages and HTMLArea Options', 25, 1),
(30, 'EZ-Pages Settings', 'EZ-Pages Settings', 30, 1),
(28, 'Super Orders', 'Settings for Super Order features', 100, 1),
(31, 'Super Tracker', 'Super Tracker Configuration', 31, 1);
 
-- --------------------------------------------------------
 
--
-- Table structure for table `counter`
--
 
CREATE TABLE IF NOT EXISTS `counter` (
  `startdate` char(8) default NULL,
  `counter` int(12) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
--
-- Dumping data for table `counter`
--
 
INSERT INTO `counter` (`startdate`, `counter`) VALUES
('20090618', 4505);
 
-- --------------------------------------------------------
 
--
-- Table structure for table `counter_history`
--
 
CREATE TABLE IF NOT EXISTS `counter_history` (
  `startdate` char(8) default NULL,
  `counter` int(12) default NULL,
  `session_counter` int(12) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
--
-- Dumping data for table `counter_history`
--
 
INSERT INTO `counter_history` (`startdate`, `counter`, `session_counter`) VALUES
('20090618', 28, 2),
('20090619', 212, 33),
('20090620', 162, 11),
('20090621', 569, 62),
('20090622', 242, 195),
('20090623', 687, 517),
('20090624', 305, 98),
('20090625', 111, 10),
('20090626', 141, 18),
('20090627', 197, 23),
('20090628', 125, 15),
('20090629', 25, 10),
('20090630', 6, 6),
('20090701', 31, 14),
('20090702', 7, 7),
('20090703', 8, 8),
('20090704', 5, 5),
('20090705', 14, 14),
('20090706', 18, 9),
('20090707', 13, 9),
('20090708', 14, 8),
('20090709', 21, 21),
('20090710', 13, 13),
('20090711', 47, 19),
('20090712', 324, 24),
('20090713', 321, 24),
('20090714', 171, 34),
('20090715', 20, 15),
('20090716', 30, 20),
('20090717', 81, 16),
('20090718', 370, 35),
('20090719', 187, 77);
 
-- --------------------------------------------------------
 
--
-- Table structure for table `countries`
--
 
CREATE TABLE IF NOT EXISTS `countries` (
  `countries_id` int(11) NOT NULL auto_increment,
  `countries_name` varchar(64) NOT NULL default '',
  `countries_iso_code_2` char(2) NOT NULL default '',
  `countries_iso_code_3` char(3) NOT NULL default '',
  `address_format_id` int(11) NOT NULL default '0',
  PRIMARY KEY  (`countries_id`),
  KEY `idx_countries_name_zen` (`countries_name`),
  KEY `idx_address_format_id_zen` (`address_format_id`),
  KEY `idx_iso_2_zen` (`countries_iso_code_2`),
  KEY `idx_iso_3_zen` (`countries_iso_code_3`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=241 ;
 
--
-- Dumping data for table `countries`
--
 
INSERT INTO `countries` (`countries_id`, `countries_name`, `countries_iso_code_2`, `countries_iso_code_3`, `address_format_id`) VALUES
(240, 'Aaland Islands', 'AX', 'ALA', 1),
(1, 'Afghanistan', 'AF', 'AFG', 1),
(2, 'Albania', 'AL', 'ALB', 1),
(3, 'Algeria', 'DZ', 'DZA', 1),
(4, 'American Samoa', 'AS', 'ASM', 1),
(5, 'Andorra', 'AD', 'AND', 1),
(6, 'Angola', 'AO', 'AGO', 1),
(7, 'Anguilla', 'AI', 'AIA', 1),
(8, 'Antarctica', 'AQ', 'ATA', 1),
(9, 'Antigua and Barbuda', 'AG', 'ATG', 1),
(10, 'Argentina', 'AR', 'ARG', 1),
(11, 'Armenia', 'AM', 'ARM', 1),
(12, 'Aruba', 'AW', 'ABW', 1),
(13, 'Australia', 'AU', 'AUS', 1),
(14, 'Austria', 'AT', 'AUT', 5),
(15, 'Azerbaijan', 'AZ', 'AZE', 1),
(16, 'Bahamas', 'BS', 'BHS', 1),
(17, 'Bahrain', 'BH', 'BHR', 1),
(18, 'Bangladesh', 'BD', 'BGD', 1),
(19, 'Barbados', 'BB', 'BRB', 1),
(20, 'Belarus', 'BY', 'BLR', 1),
(21, 'Belgium', 'BE', 'BEL', 1),
(22, 'Belize', 'BZ', 'BLZ', 1),
(23, 'Benin', 'BJ', 'BEN', 1),
(24, 'Bermuda', 'BM', 'BMU', 1),
(25, 'Bhutan', 'BT', 'BTN', 1),
(26, 'Bolivia', 'BO', 'BOL', 1),
(27, 'Bosnia and Herzegowina', 'BA', 'BIH', 1),
(28, 'Botswana', 'BW', 'BWA', 1),
(29, 'Bouvet Island', 'BV', 'BVT', 1),
(30, 'Brazil', 'BR', 'BRA', 1),
(31, 'British Indian Ocean Territory', 'IO', 'IOT', 1),
(32, 'Brunei Darussalam', 'BN', 'BRN', 1),
(33, 'Bulgaria', 'BG', 'BGR', 1),
(34, 'Burkina Faso', 'BF', 'BFA', 1),
(35, 'Burundi', 'BI', 'BDI', 1),
(36, 'Cambodia', 'KH', 'KHM', 1),
(37, 'Cameroon', 'CM', 'CMR', 1),
(38, 'Canada', 'CA', 'CAN', 2),
(39, 'Cape Verde', 'CV', 'CPV', 1),
(40, 'Cayman Islands', 'KY', 'CYM', 1),
(41, 'Central African Republic', 'CF', 'CAF', 1),
(42, 'Chad', 'TD', 'TCD', 1),
(43, 'Chile', 'CL', 'CHL', 1),
(44, 'China', 'CN', 'CHN', 1),
(45, 'Christmas Island', 'CX', 'CXR', 1),
(46, 'Cocos (Keeling) Islands', 'CC', 'CCK', 1),
(47, 'Colombia', 'CO', 'COL', 1),
(48, 'Comoros', 'KM', 'COM', 1),
(49, 'Congo', 'CG', 'COG', 1),
(50, 'Cook Islands', 'CK', 'COK', 1),
(51, 'Costa Rica', 'CR', 'CRI', 1),
(52, 'Cote D''Ivoire', 'CI', 'CIV', 1),
(53, 'Croatia', 'HR', 'HRV', 1),
(54, 'Cuba', 'CU', 'CUB', 1),
(55, 'Cyprus', 'CY', 'CYP', 1),
(56, 'Czech Republic', 'CZ', 'CZE', 1),
(57, 'Denmark', 'DK', 'DNK', 1),
(58, 'Djibouti', 'DJ', 'DJI', 1),
(59, 'Dominica', 'DM', 'DMA', 1),
(60, 'Dominican Republic', 'DO', 'DOM', 1),
(61, 'East Timor', 'TP', 'TMP', 1),
(62, 'Ecuador', 'EC', 'ECU', 1),
(63, 'Egypt', 'EG', 'EGY', 1),
(64, 'El Salvador', 'SV', 'SLV', 1),
(65, 'Equatorial Guinea', 'GQ', 'GNQ', 1),
(66, 'Eritrea', 'ER', 'ERI', 1),
(67, 'Estonia', 'EE', 'EST', 1),
(68, 'Ethiopia', 'ET', 'ETH', 1),
(69, 'Falkland Islands (Malvinas)', 'FK', 'FLK', 1),
(70, 'Faroe Islands', 'FO', 'FRO', 1),
(71, 'Fiji', 'FJ', 'FJI', 1),
(72, 'Finland', 'FI', 'FIN', 1),
(73, 'France', 'FR', 'FRA', 1),
(74, 'France, Metropolitan', 'FX', 'FXX', 1),
(75, 'French Guiana', 'GF', 'GUF', 1),
(76, 'French Polynesia', 'PF', 'PYF', 1),
(77, 'French Southern Territories', 'TF', 'ATF', 1),
(78, 'Gabon', 'GA', 'GAB', 1),
(79, 'Gambia', 'GM', 'GMB', 1),
(80, 'Georgia', 'GE', 'GEO', 1),
(81, 'Germany', 'DE', 'DEU', 5),
(82, 'Ghana', 'GH', 'GHA', 1),
(83, 'Gibraltar', 'GI', 'GIB', 1),
(84, 'Greece', 'GR', 'GRC', 1),
(85, 'Greenland', 'GL', 'GRL', 1),
(86, 'Grenada', 'GD', 'GRD', 1),
(87, 'Guadeloupe', 'GP', 'GLP', 1),
(88, 'Guam', 'GU', 'GUM', 1),
(89, 'Guatemala', 'GT', 'GTM', 1),
(90, 'Guinea', 'GN', 'GIN', 1),
(91, 'Guinea-bissau', 'GW', 'GNB', 1),
(92, 'Guyana', 'GY', 'GUY', 1),
(93, 'Haiti', 'HT', 'HTI', 1),
(94, 'Heard and Mc Donald Islands', 'HM', 'HMD', 1),
(95, 'Honduras', 'HN', 'HND', 1),
(96, 'Hong Kong', 'HK', 'HKG', 1),
(97, 'Hungary', 'HU', 'HUN', 1),
(98, 'Iceland', 'IS', 'ISL', 1),
(99, 'India', 'IN', 'IND', 1),
(100, 'Indonesia', 'ID', 'IDN', 1),
(101, 'Iran (Islamic Republic of)', 'IR', 'IRN', 1),
(102, 'Iraq', 'IQ', 'IRQ', 1),
(103, 'Ireland', 'IE', 'IRL', 1),
(104, 'Israel', 'IL', 'ISR', 1),
(105, 'Italy', 'IT', 'ITA', 1),
(106, 'Jamaica', 'JM', 'JAM', 1),
(107, 'Japan', 'JP', 'JPN', 1),
(108, 'Jordan', 'JO', 'JOR', 1),
(109, 'Kazakhstan', 'KZ', 'KAZ', 1),
(110, 'Kenya', 'KE', 'KEN', 1),
(111, 'Kiribati', 'KI', 'KIR', 1),
(112, 'Korea, Democratic People''s Republic of', 'KP', 'PRK', 1),
(113, 'Korea, Republic of', 'KR', 'KOR', 1),
(114, 'Kuwait', 'KW', 'KWT', 1),
(115, 'Kyrgyzstan', 'KG', 'KGZ', 1),
(116, 'Lao People''s Democratic Republic', 'LA', 'LAO', 1),
(117, 'Latvia', 'LV', 'LVA', 1),
(118, 'Lebanon', 'LB', 'LBN', 1),
(119, 'Lesotho', 'LS', 'LSO', 1),
(120, 'Liberia', 'LR', 'LBR', 1),
(121, 'Libyan Arab Jamahiriya', 'LY', 'LBY', 1),
(122, 'Liechtenstein', 'LI', 'LIE', 1),
(123, 'Lithuania', 'LT', 'LTU', 1),
(124, 'Luxembourg', 'LU', 'LUX', 1),
(125, 'Macau', 'MO', 'MAC', 1),
(126, 'Macedonia, The Former Yugoslav Republic of', 'MK', 'MKD', 1),
(127, 'Madagascar', 'MG', 'MDG', 1),
(128, 'Malawi', 'MW', 'MWI', 1),
(129, 'Malaysia', 'MY', 'MYS', 1),
(130, 'Maldives', 'MV', 'MDV', 1),
(131, 'Mali', 'ML', 'MLI', 1),
(132, 'Malta', 'MT', 'MLT', 1),
(133, 'Marshall Islands', 'MH', 'MHL', 1),
(134, 'Martinique', 'MQ', 'MTQ', 1),
(135, 'Mauritania', 'MR', 'MRT', 1),
(136, 'Mauritius', 'MU', 'MUS', 1),
(137, 'Mayotte', 'YT', 'MYT', 1),
(138, 'Mexico', 'MX', 'MEX', 1),
(139, 'Micronesia, Federated States of', 'FM', 'FSM', 1),
(140, 'Moldova, Republic of', 'MD', 'MDA', 1),
(141, 'Monaco', 'MC', 'MCO', 1),
(142, 'Mongolia', 'MN', 'MNG', 1),
(143, 'Montserrat', 'MS', 'MSR', 1),
(144, 'Morocco', 'MA', 'MAR', 1),
(145, 'Mozambique', 'MZ', 'MOZ', 1),
(146, 'Myanmar', 'MM', 'MMR', 1),
(147, 'Namibia', 'NA', 'NAM', 1),
(148, 'Nauru', 'NR', 'NRU', 1),
(149, 'Nepal', 'NP', 'NPL', 1),
(150, 'Netherlands', 'NL', 'NLD', 1),
(151, 'Netherlands Antilles', 'AN', 'ANT', 1),
(152, 'New Caledonia', 'NC', 'NCL', 1),
(153, 'New Zealand', 'NZ', 'NZL', 1),
(154, 'Nicaragua', 'NI', 'NIC', 1),
(155, 'Niger', 'NE', 'NER', 1),
(156, 'Nigeria', 'NG', 'NGA', 1),
(157, 'Niue', 'NU', 'NIU', 1),
(158, 'Norfolk Island', 'NF', 'NFK', 1),
(159, 'Northern Mariana Islands', 'MP', 'MNP', 1),
(160, 'Norway', 'NO', 'NOR', 1),
(161, 'Oman', 'OM', 'OMN', 1),
(162, 'Pakistan', 'PK', 'PAK', 1),
(163, 'Palau', 'PW', 'PLW', 1),
(164, 'Panama', 'PA', 'PAN', 1),
(165, 'Papua New Guinea', 'PG', 'PNG', 1),
(166, 'Paraguay', 'PY', 'PRY', 1),
(167, 'Peru', 'PE', 'PER', 1),
(168, 'Philippines', 'PH', 'PHL', 1),
(169, 'Pitcairn', 'PN', 'PCN', 1),
(170, 'Poland', 'PL', 'POL', 1),
(171, 'Portugal', 'PT', 'PRT', 1),
(172, 'Puerto Rico', 'PR', 'PRI', 1),
(173, 'Qatar', 'QA', 'QAT', 1),
(174, 'Reunion', 'RE', 'REU', 1),
(175, 'Romania', 'RO', 'ROM', 1),
(176, 'Russian Federation', 'RU', 'RUS', 1),
(177, 'Rwanda', 'RW', 'RWA', 1),
(178, 'Saint Kitts and Nevis', 'KN', 'KNA', 1),
(179, 'Saint Lucia', 'LC', 'LCA', 1),
(180, 'Saint Vincent and the Grenadines', 'VC', 'VCT', 1),
(181, 'Samoa', 'WS', 'WSM', 1),
(182, 'San Marino', 'SM', 'SMR', 1),
(183, 'Sao Tome and Principe', 'ST', 'STP', 1),
(184, 'Saudi Arabia', 'SA', 'SAU', 1),
(185, 'Senegal', 'SN', 'SEN', 1),
(186, 'Seychelles', 'SC', 'SYC', 1),
(187, 'Sierra Leone', 'SL', 'SLE', 1),
(188, 'Singapore', 'SG', 'SGP', 4),
(189, 'Slovakia (Slovak Republic)', 'SK', 'SVK', 1),
(190, 'Slovenia', 'SI', 'SVN', 1),
(191, 'Solomon Islands', 'SB', 'SLB', 1),
(192, 'Somalia', 'SO', 'SOM', 1),
(193, 'South Africa', 'ZA', 'ZAF', 1),
(194, 'South Georgia and the South Sandwich Islands', 'GS', 'SGS', 1),
(195, 'Spain', 'ES', 'ESP', 3),
(196, 'Sri Lanka', 'LK', 'LKA', 1),
(197, 'St. Helena', 'SH', 'SHN', 1),
(198, 'St. Pierre and Miquelon', 'PM', 'SPM', 1),
(199, 'Sudan', 'SD', 'SDN', 1),
(200, 'Suriname', 'SR', 'SUR', 1),
(201, 'Svalbard and Jan Mayen Islands', 'SJ', 'SJM', 1),
(202, 'Swaziland', 'SZ', 'SWZ', 1),
(203, 'Sweden', 'SE', 'SWE', 1),
(204, 'Switzerland', 'CH', 'CHE', 1),
(205, 'Syrian Arab Republic', 'SY', 'SYR', 1),
(206, 'Taiwan', 'TW', 'TWN', 1),
(207, 'Tajikistan', 'TJ', 'TJK', 1),
(208, 'Tanzania, United Republic of', 'TZ', 'TZA', 1),
(209, 'Thailand', 'TH', 'THA', 1),
(210, 'Togo', 'TG', 'TGO', 1),
(211, 'Tokelau', 'TK', 'TKL', 1),
(212, 'Tonga', 'TO', 'TON', 1),
(213, 'Trinidad and Tobago', 'TT', 'TTO', 1),
(214, 'Tunisia', 'TN', 'TUN', 1),
(215, 'Turkey', 'TR', 'TUR', 1),
(216, 'Turkmenistan', 'TM', 'TKM', 1),
(217, 'Turks and Caicos Islands', 'TC', 'TCA', 1),
(218, 'Tuvalu', 'TV', 'TUV', 1),
(219, 'Uganda', 'UG', 'UGA', 1),
(220, 'Ukraine', 'UA', 'UKR', 1),
(221, 'United Arab Emirates', 'AE', 'ARE', 1),
(222, 'United Kingdom', 'GB', 'GBR', 6),
(223, 'United States', 'US', 'USA', 2),
(224, 'United States Minor Outlying Islands', 'UM', 'UMI', 1),
(225, 'Uruguay', 'UY', 'URY', 1),
(226, 'Uzbekistan', 'UZ', 'UZB', 1),
(227, 'Vanuatu', 'VU', 'VUT', 1),
(228, 'Vatican City State (Holy See)', 'VA', 'VAT', 1),
(229, 'Venezuela', 'VE', 'VEN', 1),
(230, 'Viet Nam', 'VN', 'VNM', 1),
(231, 'Virgin Islands (British)', 'VG', 'VGB', 1),
(232, 'Virgin Islands (U.S.)', 'VI', 'VIR', 1),
(233, 'Wallis and Futuna Islands', 'WF', 'WLF', 1),
(234, 'Western Sahara', 'EH', 'ESH', 1),
(235, 'Yemen', 'YE', 'YEM', 1),
(236, 'Yugoslavia', 'YU', 'YUG', 1),
(237, 'Zaire', 'ZR', 'ZAR', 1),
(238, 'Zambia', 'ZM', 'ZMB', 1),
(239, 'Zimbabwe', 'ZW', 'ZWE', 1);
 
-- --------------------------------------------------------
 
--
-- Table structure for table `coupons`
--
 
CREATE TABLE IF NOT EXISTS `coupons` (
  `coupon_id` int(11) NOT NULL auto_increment,
  `coupon_type` char(1) NOT NULL default 'F',
  `coupon_code` varchar(32) NOT NULL default '',
  `coupon_amount` decimal(15,4) NOT NULL default '0.0000',
  `coupon_minimum_order` decimal(15,4) NOT NULL default '0.0000',
  `coupon_start_date` datetime NOT NULL default '0001-01-01 00:00:00',
  `coupon_expire_date` datetime NOT NULL default '0001-01-01 00:00:00',
  `uses_per_coupon` int(5) NOT NULL default '1',
  `uses_per_user` int(5) NOT NULL default '0',
  `restrict_to_products` varchar(255) default NULL,
  `restrict_to_categories` varchar(255) default NULL,
  `restrict_to_customers` text,
  `coupon_active` char(1) NOT NULL default 'Y',
  `date_created` datetime NOT NULL default '0001-01-01 00:00:00',
  `date_modified` datetime NOT NULL default '0001-01-01 00:00:00',
  `coupon_zone_restriction` int(11) NOT NULL default '0',
  PRIMARY KEY  (`coupon_id`),
  KEY `idx_active_type_zen` (`coupon_active`,`coupon_type`),
  KEY `idx_coupon_code_zen` (`coupon_code`),
  KEY `idx_coupon_type_zen` (`coupon_type`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
 
--
-- Dumping data for table `coupons`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `coupons_description`
--
 
CREATE TABLE IF NOT EXISTS `coupons_description` (
  `coupon_id` int(11) NOT NULL default '0',
  `language_id` int(11) NOT NULL default '0',
  `coupon_name` varchar(32) NOT NULL default '',
  `coupon_description` text,
  PRIMARY KEY  (`coupon_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
--
-- Dumping data for table `coupons_description`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `coupon_email_track`
--
 
CREATE TABLE IF NOT EXISTS `coupon_email_track` (
  `unique_id` int(11) NOT NULL auto_increment,
  `coupon_id` int(11) NOT NULL default '0',
  `customer_id_sent` int(11) NOT NULL default '0',
  `sent_firstname` varchar(32) default NULL,
  `sent_lastname` varchar(32) default NULL,
  `emailed_to` varchar(32) default NULL,
  `date_sent` datetime NOT NULL default '0001-01-01 00:00:00',
  PRIMARY KEY  (`unique_id`),
  KEY `idx_coupon_id_zen` (`coupon_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
 
--
-- Dumping data for table `coupon_email_track`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `coupon_gv_customer`
--
 
CREATE TABLE IF NOT EXISTS `coupon_gv_customer` (
  `customer_id` int(5) NOT NULL default '0',
  `amount` decimal(15,4) NOT NULL default '0.0000',
  PRIMARY KEY  (`customer_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
--
-- Dumping data for table `coupon_gv_customer`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `coupon_gv_queue`
--
 
CREATE TABLE IF NOT EXISTS `coupon_gv_queue` (
  `unique_id` int(5) NOT NULL auto_increment,
  `customer_id` int(5) NOT NULL default '0',
  `order_id` int(5) NOT NULL default '0',
  `amount` decimal(15,4) NOT NULL default '0.0000',
  `date_created` datetime NOT NULL default '0001-01-01 00:00:00',
  `ipaddr` varchar(32) NOT NULL default '',
  `release_flag` char(1) NOT NULL default 'N',
  PRIMARY KEY  (`unique_id`),
  KEY `idx_cust_id_order_id_zen` (`customer_id`,`order_id`),
  KEY `idx_release_flag_zen` (`release_flag`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
 
--
-- Dumping data for table `coupon_gv_queue`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `coupon_redeem_track`
--
 
CREATE TABLE IF NOT EXISTS `coupon_redeem_track` (
  `unique_id` int(11) NOT NULL auto_increment,
  `coupon_id` int(11) NOT NULL default '0',
  `customer_id` int(11) NOT NULL default '0',
  `redeem_date` datetime NOT NULL default '0001-01-01 00:00:00',
  `redeem_ip` varchar(32) NOT NULL default '',
  `order_id` int(11) NOT NULL default '0',
  PRIMARY KEY  (`unique_id`),
  KEY `idx_coupon_id_zen` (`coupon_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
 
--
-- Dumping data for table `coupon_redeem_track`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `coupon_restrict`
--
 
CREATE TABLE IF NOT EXISTS `coupon_restrict` (
  `restrict_id` int(11) NOT NULL auto_increment,
  `coupon_id` int(11) NOT NULL default '0',
  `product_id` int(11) NOT NULL default '0',
  `category_id` int(11) NOT NULL default '0',
  `coupon_restrict` char(1) NOT NULL default 'N',
  PRIMARY KEY  (`restrict_id`),
  KEY `idx_coup_id_prod_id_zen` (`coupon_id`,`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
 
--
-- Dumping data for table `coupon_restrict`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `currencies`
--
 
CREATE TABLE IF NOT EXISTS `currencies` (
  `currencies_id` int(11) NOT NULL auto_increment,
  `title` varchar(32) NOT NULL default '',
  `code` char(3) NOT NULL default '',
  `symbol_left` varchar(24) default NULL,
  `symbol_right` varchar(24) default NULL,
  `decimal_point` char(1) default NULL,
  `thousands_point` char(1) default NULL,
  `decimal_places` char(1) default NULL,
  `value` float(13,8) default NULL,
  `last_updated` datetime default NULL,
  PRIMARY KEY  (`currencies_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ;
 
--
-- Dumping data for table `currencies`
--
 
INSERT INTO `currencies` (`currencies_id`, `title`, `code`, `symbol_left`, `symbol_right`, `decimal_point`, `thousands_point`, `decimal_places`, `value`, `last_updated`) VALUES
(1, 'US Dollar', 'USD', '$', '', '.', ',', '2', 1.00000000, '2008-01-03 11:24:41'),
(2, 'Euro', 'EUR', '&euro;', '', '.', ',', '2', 0.74129999, '2008-01-03 11:24:41'),
(3, 'GB Pound', 'GBP', '&pound;', '', '.', ',', '2', 0.50300002, '2008-01-03 11:24:41'),
(4, 'Canadian Dollar', 'CAD', '$', '', '.', ',', '2', 1.10590005, '2008-01-03 11:24:41'),
(5, 'Australian Dollar', 'AUD', '$', '', '.', ',', '2', 1.24070001, '2008-01-03 11:24:41');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `customers`
--
 
CREATE TABLE IF NOT EXISTS `customers` (
  `customers_id` int(11) NOT NULL auto_increment,
  `customers_gender` char(1) NOT NULL default '',
  `customers_firstname` varchar(32) NOT NULL default '',
  `customers_lastname` varchar(32) NOT NULL default '',
  `customers_dob` datetime NOT NULL default '0001-01-01 00:00:00',
  `customers_email_address` varchar(96) NOT NULL default '',
  `customers_nick` varchar(96) NOT NULL default '',
  `customers_default_address_id` int(11) NOT NULL default '0',
  `customers_telephone` varchar(32) NOT NULL default '',
  `customers_fax` varchar(32) default NULL,
  `customers_password` varchar(40) NOT NULL default '',
  `customers_newsletter` char(1) default NULL,
  `customers_group_pricing` int(11) NOT NULL default '0',
  `customers_email_format` varchar(4) NOT NULL default 'TEXT',
  `customers_authorization` int(1) NOT NULL default '0',
  `customers_referral` varchar(32) NOT NULL default '',
  `customers_paypal_payerid` varchar(20) NOT NULL default '',
  `customers_paypal_ec` tinyint(1) unsigned NOT NULL default '0',
  PRIMARY KEY  (`customers_id`),
  KEY `idx_email_address_zen` (`customers_email_address`),
  KEY `idx_referral_zen` (`customers_referral`(10)),
  KEY `idx_grp_pricing_zen` (`customers_group_pricing`),
  KEY `idx_nick_zen` (`customers_nick`),
  KEY `idx_newsletter_zen` (`customers_newsletter`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
 
--
-- Dumping data for table `customers`
--
 
INSERT INTO `customers` (`customers_id`, `customers_gender`, `customers_firstname`, `customers_lastname`, `customers_dob`, `customers_email_address`, `customers_nick`, `customers_default_address_id`, `customers_telephone`, `customers_fax`, `customers_password`, `customers_newsletter`, `customers_group_pricing`, `customers_email_format`, `customers_authorization`, `customers_referral`, `customers_paypal_payerid`, `customers_paypal_ec`) VALUES
(1, 'm', 'Bill', 'Smith', '2001-01-01 00:00:00', 'root@localhost', '', 1, '12345', '', 'd95e8fa7f20a009372eb3477473fcd34:1c', '0', 0, 'TEXT', 0, '', '', 0),
(2, 'm', 'DAle', 'Sellers', '1971-05-16 00:00:00', 'info@lifeleap.org', '', 2, '888 888 8888', '', 'e9e13b08f94fca635fc6fe1d04e6c01e:53', '0', 2, 'HTML', 0, '', '', 0),
(3, 'm', 'Andrew', 'Test', '1903-03-02 00:00:00', 'andrew@lifeleap.org', '', 3, '444 444 4444', '', 'a4efb4c36064131855cc05071c222ca0:97', '0', 0, 'TEXT', 0, '', '', 0);
 
-- --------------------------------------------------------
 
--
-- Table structure for table `customers_admin_notes`
--
 
CREATE TABLE IF NOT EXISTS `customers_admin_notes` (
  `admin_notes_id` int(12) NOT NULL auto_increment,
  `customers_id` int(11) NOT NULL default '0',
  `date_added` datetime NOT NULL default '0000-00-00 00:00:00',
  `admin_id` int(11) NOT NULL default '0',
  `admin_notes` text NOT NULL,
  `rating` tinyint(1) NOT NULL default '0',
  PRIMARY KEY  (`admin_notes_id`),
  KEY `customers_id` (`customers_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
 
--
-- Dumping data for table `customers_admin_notes`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `customers_basket`
--
 
CREATE TABLE IF NOT EXISTS `customers_basket` (
  `customers_basket_id` int(11) NOT NULL auto_increment,
  `customers_id` int(11) NOT NULL default '0',
  `products_id` tinytext NOT NULL,
  `customers_basket_quantity` float NOT NULL default '0',
  `final_price` decimal(15,4) NOT NULL default '0.0000',
  `customers_basket_date_added` varchar(8) default NULL,
  PRIMARY KEY  (`customers_basket_id`),
  KEY `idx_customers_id_zen` (`customers_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ;
 
--
-- Dumping data for table `customers_basket`
--
 
INSERT INTO `customers_basket` (`customers_basket_id`, `customers_id`, `products_id`, `customers_basket_quantity`, `final_price`, `customers_basket_date_added`) VALUES
(7, 2, '183', 16, 0.0000, '20090626'),
(6, 2, '182', 8, 0.0000, '20090626'),
(8, 2, '181', 1, 0.0000, '20090627'),
(10, 3, '32', 6, 0.0000, '20090712');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `customers_basket_attributes`
--
 
CREATE TABLE IF NOT EXISTS `customers_basket_attributes` (
  `customers_basket_attributes_id` int(11) NOT NULL auto_increment,
  `customers_id` int(11) NOT NULL default '0',
  `products_id` tinytext NOT NULL,
  `products_options_id` varchar(64) NOT NULL default '0',
  `products_options_value_id` int(11) NOT NULL default '0',
  `products_options_value_text` blob,
  `products_options_sort_order` text NOT NULL,
  PRIMARY KEY  (`customers_basket_attributes_id`),
  KEY `idx_cust_id_prod_id_zen` (`customers_id`,`products_id`(36))
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
 
--
-- Dumping data for table `customers_basket_attributes`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `customers_info`
--
 
CREATE TABLE IF NOT EXISTS `customers_info` (
  `customers_info_id` int(11) NOT NULL default '0',
  `customers_info_date_of_last_logon` datetime default NULL,
  `customers_info_number_of_logons` int(5) default NULL,
  `customers_info_date_account_created` datetime default NULL,
  `customers_info_date_account_last_modified` datetime default NULL,
  `global_product_notifications` int(1) default '0',
  PRIMARY KEY  (`customers_info_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
--
-- Dumping data for table `customers_info`
--
 
INSERT INTO `customers_info` (`customers_info_id`, `customers_info_date_of_last_logon`, `customers_info_number_of_logons`, `customers_info_date_account_created`, `customers_info_date_account_last_modified`, `global_product_notifications`) VALUES
(1, '0001-01-01 00:00:00', 0, '2004-01-21 01:35:28', '0001-01-01 00:00:00', 0),
(2, '2009-07-11 22:11:57', 6, '2009-06-20 12:57:34', '2009-07-12 04:28:27', 0),
(3, NULL, 0, '2009-07-12 00:50:47', NULL, 0);
 
-- --------------------------------------------------------
 
--
-- Table structure for table `customers_wishlist`
--
 
CREATE TABLE IF NOT EXISTS `customers_wishlist` (
  `products_id` int(13) NOT NULL default '0',
  `customers_id` int(13) NOT NULL default '0',
  `products_model` varchar(13) default NULL,
  `products_name` varchar(64) NOT NULL default '',
  `products_price` decimal(8,2) NOT NULL default '0.00',
  `final_price` decimal(8,2) NOT NULL default '0.00',
  `products_quantity` int(2) NOT NULL default '0',
  `wishlist_name` varchar(64) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
--
-- Dumping data for table `customers_wishlist`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `db_cache`
--
 
CREATE TABLE IF NOT EXISTS `db_cache` (
  `cache_entry_name` varchar(64) NOT NULL default '',
  `cache_data` mediumblob,
  `cache_entry_created` int(15) default NULL,
  PRIMARY KEY  (`cache_entry_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
--
-- Dumping data for table `db_cache`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `email_archive`
--
 
CREATE TABLE IF NOT EXISTS `email_archive` (
  `archive_id` int(11) NOT NULL auto_increment,
  `email_to_name` varchar(96) NOT NULL default '',
  `email_to_address` varchar(96) NOT NULL default '',
  `email_from_name` varchar(96) NOT NULL default '',
  `email_from_address` varchar(96) NOT NULL default '',
  `email_subject` varchar(255) NOT NULL default '',
  `email_html` text NOT NULL,
  `email_text` text NOT NULL,
  `date_sent` datetime NOT NULL default '0001-01-01 00:00:00',
  `module` varchar(64) NOT NULL default '',
  PRIMARY KEY  (`archive_id`),
  KEY `idx_email_to_address_zen` (`email_to_address`),
  KEY `idx_module_zen` (`module`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
 
--
-- Dumping data for table `email_archive`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `ezpages`
--
 
CREATE TABLE IF NOT EXISTS `ezpages` (
  `pages_id` int(11) NOT NULL auto_increment,
  `languages_id` int(11) NOT NULL default '1',
  `pages_title` varchar(64) NOT NULL default '',
  `alt_url` varchar(255) NOT NULL default '',
  `alt_url_external` varchar(255) NOT NULL default '',
  `pages_html_text` mediumtext,
  `status_header` int(1) NOT NULL default '1',
  `status_sidebox` int(1) NOT NULL default '1',
  `status_footer` int(1) NOT NULL default '1',
  `status_toc` int(1) NOT NULL default '1',
  `header_sort_order` int(3) NOT NULL default '0',
  `sidebox_sort_order` int(3) NOT NULL default '0',
  `footer_sort_order` int(3) NOT NULL default '0',
  `toc_sort_order` int(3) NOT NULL default '0',
  `page_open_new_window` int(1) NOT NULL default '0',
  `page_is_ssl` int(1) NOT NULL default '0',
  `toc_chapter` int(11) NOT NULL default '0',
  PRIMARY KEY  (`pages_id`),
  KEY `idx_lang_id_zen` (`languages_id`),
  KEY `idx_ezp_status_header_zen` (`status_header`),
  KEY `idx_ezp_status_sidebox_zen` (`status_sidebox`),
  KEY `idx_ezp_status_footer_zen` (`status_footer`),
  KEY `idx_ezp_status_toc_zen` (`status_toc`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=17 ;
 
--
-- Dumping data for table `ezpages`
--
 
INSERT INTO `ezpages` (`pages_id`, `languages_id`, `pages_title`, `alt_url`, `alt_url_external`, `pages_html_text`, `status_header`, `status_sidebox`, `status_footer`, `status_toc`, `header_sort_order`, `sidebox_sort_order`, `footer_sort_order`, `toc_sort_order`, `page_open_new_window`, `page_is_ssl`, `toc_chapter`) VALUES
(1, 1, 'EZPages', '', '', 'This is the main page listed under the Link EZPages in the Header<br /><br />\r\n\r\n<strong>See: What is EZPages? Link for detailed use of EZPages</strong><br /><br />\r\n\r\nThis Link could show in the Header, Footer or Sidebox or a combination of all three locations.<br /><br />\r\n\r\nThe Chapter and TOC settings are for using this Page in combination with other Pages.<br /><br />\r\n\r\nThe other Pages can be shown either *only* with this Link in the Chapter and TOC or as their own Link in the Header, Footer or Sidebox, depending on how you would like them to appear on your site.<br /><br />\r\n\r\nThere is no true "Master" Link, other than the Links you actually have configured to display. But any Link in a Chapter can be displayed in any of the 3 locations for the Header, Footer or Sidebox or not at all, where it only appears together with the other Links in the Chapter.', 1, 0, 0, 1, 10, 0, 0, 10, 0, 0, 10),
(2, 1, 'A New Page', '', '', 'This is another page that is linked to the Chapter 10 via the Chapter number used and is sorted based on the TOC Order.<br /><br />\r\n\r\nThere is not a link to this page via the Header, Footer nor the Sidebox.<br /><br />\r\n\r\nThis page is only seen if the "main" link is selected and then it will show in the TOC listing.<br /><br />\r\n\r\nThis is a handy way to have numerous links that are related but only show one main link to get to them all.<br /><br />', 0, 0, 0, 1, 0, 0, 0, 30, 0, 0, 10),
(3, 1, 'Another New Page', '', '', 'This is yet another new page or link that is part of Chapter 10<br /><br />\r\n\r\nThe numbering of the Chapters can be done in any manner. But, by number in increments such as 10, 20, 30, etc. you can later insert pages, or links, as needed within the existing pages.<br /><br />\r\n\r\nThere is no limit to the number of pages, or links, that can be grouped together using the Chapter.<br /><br />\r\n\r\nThe display of the Previous/Next and TOC listing is a setting that can be turned on or off.', 0, 0, 0, 1, 0, 0, 0, 40, 0, 0, 10),
(4, 1, 'My Link', '', '', 'This is a single page link that will be shown in the Sidebox.<br /><br />\r\n\r\nThere are no additional pages or links associated with this page as there is no Chapter.<br /><br />\r\n\r\nLater, if you want to expand on this link you can add a Chapter and TOC settings and build a group.<br /><br />\r\n\r\nNotice that the Previous/Next and TOC automatically disable when there isn''t a Chapter. Even with a Chapter, there must be more than one (1) related link or page in the group before these will display.', 0, 1, 0, 0, 0, 10, 0, 0, 0, 0, 0),
(5, 1, 'Anything', '', '', 'The title or link names can be anything that you would like to use.<br /><br />\r\n\r\nYou decide on the content and the link name relative to that content.<br /><br />\r\n\r\nThen, define where you want the link to show: Header, Footer or Sidebox or as a combination of these three locations.<br /><br />\r\n\r\nThe content of the page can be anything you like. Be sure that your content is valid in regard to table and stylesheet rules.<br /><br />\r\n\r\nYou can even set up the links to go to Secure or Non-Secure pages as well as open in the same or a new window.<br /><br />\r\n\r\nLinks can also be setup to use internal or external links vs the HTML Content. See: examples below in the Link URL settings.', 0, 1, 0, 0, 0, 20, 0, 0, 0, 0, 0),
(6, 1, 'Shared', '', '', 'This link is a "shared" link between the Header, Footer and Sidebox.<br /><br />\r\n\r\nThe number on the order was set to 50 on all of the settings just for the sake of an easier notation on entering it.<br /><br />\r\n\r\nThe order can be the same or different for the three locations.<br /><br />\r\n\r\nIf you wanted to really get creative, you could also have this as part of a Chapter not related to the link order.<br /><br />', 1, 1, 1, 0, 50, 50, 50, 0, 0, 0, 0),
(7, 1, 'My Account', 'index.php?main_page=account', '', '', 0, 0, 1, 0, 0, 0, 10, 0, 0, 1, 0),
(8, 1, 'Site Map', 'index.php?main_page=site_map', '', '', 0, 1, 1, 0, 0, 40, 20, 0, 0, 0, 0),
(9, 1, 'Privacy Notice', 'index.php?main_page=privacy', '', '', 1, 0, 1, 0, 30, 0, 40, 0, 0, 0, 0),
(10, 1, 'Zen Cart', '', 'http://www.zen-cart.com', '', 1, 0, 0, 0, 60, 0, 0, 0, 1, 0, 0),
(11, 1, 'Gift Certificates', 'index.php?main_page=index&cPath=21', '', '', 0, 1, 0, 0, 0, 60, 0, 0, 0, 0, 0),
(13, 1, 'Google', '', 'http://www.google.com', '', 0, 1, 0, 0, 0, 70, 0, 0, 1, 0, 0),
(14, 1, 'What is EZ-Pages?', '', '', '<table cellspacing="4" cellpadding="4" border="3" align="center" style="width: 80%;"><tbody><tr><td><span style="font-style: italic;">\r\n<span style="font-weight: bold;">Note: This EZ-Page has been written with the help of the HTMLarea Editor.<br /> <br />This means that this EZ-page will not validate correctly based on how HTMLarea or other editors renders the code.</span></span></td></tr></tbody></table><br /><br /><span style="font-weight: bold; color: rgb(255, 0, 0);">Summary</span><br /><br /><span style="font-weight: bold;">EZ-Pages</span> is a fast, easy way of creating links and additional pages.<br /><br />The additional Pages can be for:<br /><ul><li>New Pages</li><li>Internal Links</li><li>External Links</li><li>Secure or Non-Secure pages</li><li>Same or New Window</li></ul>In Addition, there is the ability to create &quot;related&quot; links in the format of a Chapter (group) and its TOC (related pages/links).<br /><br /><span style="font-weight: bold; color: rgb(255, 0, 0);">Link Naming</span><br /><br />Links are named by the Page Title. All Links need a Page Title in order to function.<br /><br />If you forget to add a Page Title, then you will not be able to add the Link.<br /><br />If you do not assign an Order for the Header, Sidebox or Footer, then the Link will not display even if you have a Page Title.<br /><br /><span style="font-weight: bold;"><span style="color: rgb(255, 0, 0);">Link Placement</span><br /><br /></span>While you have the option of adding Additional Links to the Header, Footer and Sidebox with EZ-Pages, you are not limited to these three Link locations. Links can be in one or more locations simply by enabling the Order for the Location(s) where the Link should appear..<br /><br />The Link Location Status for the Header, Footer and Sidebox is controlled simply by setting these to Yes or No for each setting. Then, set the Order in which the Link should appear for each location.<br /><br />This means that if you were to set Header to Yes 30 and Sidebox to Yes 50 then the link would appear in both the Header and Sidebox in the Order of your Links.<br /><br />The Order numbering method is up to you. Numbering using 10, 20, 30, etc. will allow you to sort the Links and add additional Links later.<br /><br />Note: a 0 value for the Order will disable the Link from displaying.<br /><br /><span style="font-weight: bold;"><span style="color: rgb(255, 0, 0);">Open in New Window and Secure Pages</span><br /></span><br />With EZ-Pages, each Link can take you to the same, main window for your shop; or, you can have the Link open a brand new New Window. In addition, there is an option for making the Link open as a Secure Page or a Non-Secure Page.<br /><br /><span style="font-weight: bold; color: rgb(255, 0, 0);">Chapter and TOC</span><br style="font-weight: bold; color: rgb(255, 0, 0);" /><br />The Chapter and TOC, or Table of Contents, are a unique method of building Multiple Links that interact together.<br /><br />While these Links still follow the rules of the Header, Footer and Sidebox placement, the difference is that only one of the Links, the Main Link, needs to be displayed anywhere on the site.<br /><br />If you had, for example, 5 related Links, you could add the first Link as the Main Link by setting its location to the Header, Footer or Sidebox and set its Order, as usual.<br /><br />Next, you need to assign a Chapter or Group number to the Link. This Chapter holds the related Links together.<br /><br />Then, set the TOC or Table of Contents setting. This is a secondary Sort Order for within the Chapter.<br /><br />Again, you can display any of the Links within a Chapter, as well as making any of these Links the Main Link. Whether the Links all show, or just one or more of the Links show, the Chapter is the key to grouping these Links together in the TOC or Previous/Next. <br /><br /><span style="font-weight: bold; font-style: italic;">NOTE: While all Links within a Chapter will display together, you can have the different Links display in the Header, Footer or Sidebox on their own. Or, you can have the additional Links only display when the Main Link or one of the Additional Links within the Chapter has been opened.</span><br style="font-weight: bold; font-style: italic;" /><br />The versitility of EZ-Pages will make adding new Links and Pages extreamly easy for the beginner as well as the advance user.<br /><br />While this page was made in HTMLarea editor, any HTML editor could be used.<br /><br />However, be careful ... HTML editors will often add the opening and closing tags for the &lt;html&gt;, &lt;head&gt; and &lt;body&gt; to the file you are working on.<br /><br />These are already added to the pages via EZ-Pages.<br /><br /><span style="color: rgb(255, 0, 0); font-weight: bold;">External Link URL</span><br /><br />External Link URLs are links to outside pages not within your shop. These can be to any valid URL such as:<br /><br />http://www.sashbox.net<br /><br />You need to include the full URL path to any External Link URL. You may also mark these to open in a New Window or the Same Window.<br /><br /><span style="color: rgb(255, 0, 0); font-weight: bold;">Internal Link URL</span><br /><br />Internal Link URLs are links to internal pages within your shop. These can be to any valid URL, but should be written as relative links such as:<br /><br />index.php?main_page=index&amp;cPath=21<br /><br />The above Link would take you to the Category for categories_id 21<br /><br />While these links can be the Full URL to an Internal Link, it is best to write as a Relative Link so that if you change domains, are work on a temporary domain or an IP Address, the Link will remain valid if moved to another domain, IP Address, etc.<br /><br />Internal Links can also open in a New Window or the Same Window or be for Secure or Non-Secure Pages.<br /><br /><span style="font-weight: bold; color: rgb(255, 0, 0);">EZ-Pages Additional Pages vs Internal Links vs External Links</span><br /><br />The Type of Link that you create is based on an order of precidence, where HTML Content will superceed both the Internal Link and the External Link values.<br /><br />The External Link URL will superceed the Internal Link URL.<br /><br />If you try to set a combination of HTML Content, Internal Link and/or External Link, the Link will be flagged in the listing with a read icon to alert you to your mistake.<br /><br /><span style="font-weight: bold; color: rgb(255, 0, 0);">WARNING ...</span><br /><br />When using Editors such as HTMLarea, if you hit enter in the HTML Content area <br /> will be added. These will be detected as &quot;content&quot; and will override any Internal Link URL or External Link URL.<br /><br /><span style="font-weight: bold; color: rgb(255, 0, 0);">Admin Only Display</span><br /><br />Sometimes, when working on EZ-Pages, you will want to be able to work on a Live Site and see the results of your work, but not allow the Customers to see this until you are done.<br /><br />There are 3 settings in the Configuration ... EZ-Pages Settings for the Header, Footer and Sidebox  Status:<br /><ul><li>OFF</li><li>ON</li><li>Admin Only</li></ul>The Admin Only setting is controlled by the IP Address(es) set in the Website Maintenance.<br /><br />This can be very handy when needing to work on a Live Site but not wanting customers to see the work in progress.<br /><br />', 0, 0, 0, 1, 0, 0, 0, 20, 0, 0, 10),
(15, 1, 'Free Newsletter', 'index.php?main_page=newsletter', '', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
(16, 1, 'How It Works', '', '', '', 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 0);
 
-- --------------------------------------------------------
 
--
-- Table structure for table `featured`
--
 
CREATE TABLE IF NOT EXISTS `featured` (
  `featured_id` int(11) NOT NULL auto_increment,
  `products_id` int(11) NOT NULL default '0',
  `featured_date_added` datetime default NULL,
  `featured_last_modified` datetime default NULL,
  `expires_date` date NOT NULL default '0001-01-01',
  `date_status_change` datetime default NULL,
  `status` int(1) NOT NULL default '1',
  `featured_date_available` date NOT NULL default '0001-01-01',
  PRIMARY KEY  (`featured_id`),
  KEY `idx_status_zen` (`status`),
  KEY `idx_products_id_zen` (`products_id`),
  KEY `idx_date_avail_zen` (`featured_date_available`),
  KEY `idx_expires_date_zen` (`expires_date`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=15 ;
 
--
-- Dumping data for table `featured`
--
 
INSERT INTO `featured` (`featured_id`, `products_id`, `featured_date_added`, `featured_last_modified`, `expires_date`, `date_status_change`, `status`, `featured_date_available`) VALUES
(12, 182, '2009-06-23 23:24:29', NULL, '0001-01-01', NULL, 1, '0001-01-01'),
(11, 181, '2009-06-23 20:04:06', NULL, '0001-01-01', NULL, 1, '0001-01-01'),
(13, 183, '2009-06-23 23:24:39', NULL, '0001-01-01', NULL, 1, '0001-01-01'),
(14, 184, '2009-07-13 22:49:59', NULL, '2010-07-29', NULL, 1, '2009-07-13');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `files_uploaded`
--
 
CREATE TABLE IF NOT EXISTS `files_uploaded` (
  `files_uploaded_id` int(11) NOT NULL auto_increment,
  `sesskey` varchar(32) default NULL,
  `customers_id` int(11) default NULL,
  `files_uploaded_name` varchar(64) NOT NULL default '',
  PRIMARY KEY  (`files_uploaded_id`),
  KEY `idx_customers_id_zen` (`customers_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Must always have either a sesskey or customers_id' AUTO_INCREMENT=1 ;
 
--
-- Dumping data for table `files_uploaded`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `geo_zones`
--
 
CREATE TABLE IF NOT EXISTS `geo_zones` (
  `geo_zone_id` int(11) NOT NULL auto_increment,
  `geo_zone_name` varchar(32) NOT NULL default '',
  `geo_zone_description` varchar(255) NOT NULL default '',
  `last_modified` datetime default NULL,
  `date_added` datetime NOT NULL default '0001-01-01 00:00:00',
  PRIMARY KEY  (`geo_zone_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
 
--
-- Dumping data for table `geo_zones`
--
 
INSERT INTO `geo_zones` (`geo_zone_id`, `geo_zone_name`, `geo_zone_description`, `last_modified`, `date_added`) VALUES
(1, 'Florida', 'Florida local sales tax zone', NULL, '2008-01-03 11:24:41');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `get_terms_to_filter`
--
 
CREATE TABLE IF NOT EXISTS `get_terms_to_filter` (
  `get_term_name` varchar(255) NOT NULL default '',
  `get_term_table` varchar(64) NOT NULL,
  `get_term_name_field` varchar(64) NOT NULL,
  PRIMARY KEY  (`get_term_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
--
-- Dumping data for table `get_terms_to_filter`
--
 
INSERT INTO `get_terms_to_filter` (`get_term_name`, `get_term_table`, `get_term_name_field`) VALUES
('manufacturers_id', 'TABLE_MANUFACTURERS', 'manufacturers_name'),
('music_genre_id', 'TABLE_MUSIC_GENRE', 'music_genre_name'),
('record_company_id', 'TABLE_RECORD_COMPANY', 'record_company_name');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `group_pricing`
--
 
CREATE TABLE IF NOT EXISTS `group_pricing` (
  `group_id` int(11) NOT NULL auto_increment,
  `group_name` varchar(32) NOT NULL default '',
  `group_percentage` decimal(5,2) NOT NULL default '0.00',
  `last_modified` datetime default NULL,
  `date_added` datetime NOT NULL default '0001-01-01 00:00:00',
  PRIMARY KEY  (`group_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
 
--
-- Dumping data for table `group_pricing`
--
 
INSERT INTO `group_pricing` (`group_id`, `group_name`, `group_percentage`, `last_modified`, `date_added`) VALUES
(1, 'Group 10', 10.00, NULL, '2004-04-29 00:21:04'),
(2, 'Group 15', 15.00, NULL, '2009-07-12 04:27:59');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `languages`
--
 
CREATE TABLE IF NOT EXISTS `languages` (
  `languages_id` int(11) NOT NULL auto_increment,
  `name` varchar(32) NOT NULL default '',
  `code` char(2) NOT NULL default '',
  `image` varchar(64) default NULL,
  `directory` varchar(32) default NULL,
  `sort_order` int(3) default NULL,
  PRIMARY KEY  (`languages_id`),
  KEY `idx_languages_name_zen` (`name`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
 
--
-- Dumping data for table `languages`
--
 
INSERT INTO `languages` (`languages_id`, `name`, `code`, `image`, `directory`, `sort_order`) VALUES
(1, 'English', 'en', 'icon.gif', 'english', 1);
 
-- --------------------------------------------------------
 
--
-- Table structure for table `layout_boxes`
--
 
CREATE TABLE IF NOT EXISTS `layout_boxes` (
  `layout_id` int(11) NOT NULL auto_increment,
  `layout_template` varchar(64) NOT NULL default '',
  `layout_box_name` varchar(64) NOT NULL default '',
  `layout_box_status` tinyint(1) NOT NULL default '0',
  `layout_box_location` tinyint(1) NOT NULL default '0',
  `layout_box_sort_order` int(11) NOT NULL default '0',
  `layout_box_sort_order_single` int(11) NOT NULL default '0',
  `layout_box_status_single` tinyint(4) NOT NULL default '0',
  PRIMARY KEY  (`layout_id`),
  KEY `idx_name_template_zen` (`layout_template`,`layout_box_name`),
  KEY `idx_layout_box_status_zen` (`layout_box_status`),
  KEY `idx_layout_box_sort_order_zen` (`layout_box_sort_order`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=130 ;
 
--
-- Dumping data for table `layout_boxes`
--
 
INSERT INTO `layout_boxes` (`layout_id`, `layout_template`, `layout_box_name`, `layout_box_status`, `layout_box_location`, `layout_box_sort_order`, `layout_box_sort_order_single`, `layout_box_status_single`) VALUES
(1, 'default_template_settings', 'banner_box_all.php', 1, 1, 5, 0, 0),
(2, 'default_template_settings', 'banner_box.php', 1, 0, 300, 1, 127),
(3, 'default_template_settings', 'banner_box2.php', 1, 1, 15, 1, 15),
(4, 'default_template_settings', 'best_sellers.php', 1, 1, 30, 70, 1),
(5, 'default_template_settings', 'categories.php', 1, 0, 10, 10, 1),
(6, 'default_template_settings', 'currencies.php', 1, 1, 80, 60, 1),
(7, 'default_template_settings', 'document_categories.php', 1, 0, 0, 0, 0),
(8, 'default_template_settings', 'ezpages.php', 1, 1, -1, 2, 1),
(9, 'default_template_settings', 'featured.php', 1, 0, 45, 0, 0),
(10, 'default_template_settings', 'information.php', 1, 0, 50, 40, 1),
(11, 'default_template_settings', 'languages.php', 1, 1, 70, 50, 1),
(12, 'default_template_settings', 'manufacturers.php', 1, 0, 30, 20, 1),
(13, 'default_template_settings', 'manufacturer_info.php', 1, 1, 35, 95, 1),
(14, 'default_template_settings', 'more_information.php', 1, 0, 200, 200, 1),
(15, 'default_template_settings', 'music_genres.php', 1, 1, 0, 0, 0),
(16, 'default_template_settings', 'order_history.php', 1, 1, 0, 0, 0),
(17, 'default_template_settings', 'product_notifications.php', 1, 1, 55, 85, 1),
(18, 'default_template_settings', 'record_companies.php', 1, 1, 0, 0, 0),
(19, 'default_template_settings', 'reviews.php', 1, 0, 40, 0, 0),
(20, 'default_template_settings', 'search.php', 1, 1, 10, 0, 0),
(21, 'default_template_settings', 'search_header.php', 0, 0, 0, 0, 1),
(22, 'default_template_settings', 'shopping_cart.php', 1, 1, 20, 30, 1),
(23, 'default_template_settings', 'specials.php', 1, 1, 45, 0, 0),
(24, 'default_template_settings', 'tell_a_friend.php', 1, 1, 65, 0, 0),
(25, 'default_template_settings', 'whats_new.php', 1, 0, 20, 0, 0),
(26, 'default_template_settings', 'whos_online.php', 1, 1, 200, 200, 1),
(27, 'template_default', 'banner_box_all.php', 1, 1, 5, 0, 0),
(28, 'template_default', 'banner_box.php', 1, 0, 300, 1, 127),
(29, 'template_default', 'banner_box2.php', 1, 1, 15, 1, 15),
(30, 'template_default', 'best_sellers.php', 1, 1, 30, 70, 1),
(31, 'template_default', 'categories.php', 1, 0, 10, 10, 1),
(32, 'template_default', 'currencies.php', 1, 1, 80, 60, 1),
(33, 'template_default', 'ezpages.php', 1, 1, -1, 2, 1),
(34, 'template_default', 'featured.php', 1, 0, 45, 0, 0),
(35, 'template_default', 'information.php', 1, 0, 50, 40, 1),
(36, 'template_default', 'languages.php', 1, 1, 70, 50, 1),
(37, 'template_default', 'manufacturers.php', 1, 0, 30, 20, 1),
(38, 'template_default', 'manufacturer_info.php', 1, 1, 35, 95, 1),
(39, 'template_default', 'more_information.php', 1, 0, 200, 200, 1),
(40, 'template_default', 'my_broken_box.php', 1, 0, 0, 0, 0),
(41, 'template_default', 'order_history.php', 1, 1, 0, 0, 0),
(42, 'template_default', 'product_notifications.php', 1, 1, 55, 85, 1),
(43, 'template_default', 'reviews.php', 1, 0, 40, 0, 0),
(44, 'template_default', 'search.php', 1, 1, 10, 0, 0),
(45, 'template_default', 'search_header.php', 0, 0, 0, 0, 1),
(46, 'template_default', 'shopping_cart.php', 1, 1, 20, 30, 1),
(47, 'template_default', 'specials.php', 1, 1, 45, 0, 0),
(48, 'template_default', 'tell_a_friend.php', 1, 1, 65, 0, 0),
(49, 'template_default', 'whats_new.php', 1, 0, 20, 0, 0),
(50, 'template_default', 'whos_online.php', 1, 1, 200, 200, 1),
(51, 'classic', 'banner_box.php', 0, 0, 300, 1, 0),
(52, 'classic', 'banner_box2.php', 0, 1, 15, 1, 0),
(53, 'classic', 'banner_box_all.php', 0, 1, 5, 0, 0),
(54, 'classic', 'best_sellers.php', 1, 1, 30, 70, 1),
(55, 'classic', 'categories.php', 1, 0, 10, 10, 1),
(56, 'classic', 'currencies.php', 0, 1, 80, 60, 0),
(57, 'classic', 'document_categories.php', 1, 0, 0, 0, 1),
(58, 'classic', 'ezpages.php', 0, 1, -1, 2, 0),
(59, 'classic', 'featured.php', 0, 0, 45, 0, 0),
(60, 'classic', 'information.php', 1, 0, 50, 40, 1),
(61, 'classic', 'languages.php', 0, 1, 70, 50, 0),
(62, 'classic', 'manufacturers.php', 0, 0, 30, 20, 0),
(63, 'classic', 'manufacturer_info.php', 0, 1, 35, 95, 0),
(64, 'classic', 'more_information.php', 1, 0, 200, 200, 1),
(65, 'classic', 'music_genres.php', 0, 1, 0, 0, 0),
(66, 'classic', 'order_history.php', 1, 1, 0, 0, 0),
(67, 'classic', 'product_notifications.php', 1, 1, 55, 85, 1),
(68, 'classic', 'record_companies.php', 0, 1, 0, 0, 0),
(69, 'classic', 'reviews.php', 0, 0, 40, 0, 0),
(70, 'classic', 'search.php', 1, 0, 10, 0, 1),
(71, 'classic', 'search_header.php', 0, 1, 0, 0, 1),
(72, 'classic', 'shopping_cart.php', 1, 1, 20, 30, 1),
(73, 'classic', 'specials.php', 0, 1, 45, 0, 0),
(74, 'classic', 'tell_a_friend.php', 1, 1, 65, 0, 0),
(75, 'classic', 'whats_new.php', 0, 0, 20, 0, 0),
(76, 'classic', 'whos_online.php', 0, 1, 200, 200, 0),
(77, 'farm', 'banner_box.php', 0, 0, 0, 0, 0),
(78, 'farm', 'banner_box2.php', 0, 0, 0, 0, 0),
(79, 'farm', 'banner_box_all.php', 0, 0, 0, 0, 0),
(80, 'farm', 'best_sellers.php', 0, 0, 6, 0, 0),
(81, 'farm', 'categories.php', 1, 0, 0, 0, 1),
(82, 'farm', 'currencies.php', 0, 0, 0, 0, 0),
(83, 'farm', 'document_categories.php', 0, 0, 0, 0, 0),
(84, 'farm', 'ezpages.php', 0, 0, 0, 0, 0),
(85, 'farm', 'featured.php', 0, 0, 0, 0, 0),
(86, 'farm', 'information.php', 1, 0, 1, 0, 1),
(87, 'farm', 'languages.php', 0, 0, 0, 0, 0),
(88, 'farm', 'manufacturer_info.php', 0, 0, 0, 0, 0),
(89, 'farm', 'manufacturers.php', 0, 0, 0, 0, 0),
(90, 'farm', 'more_information.php', 0, 0, 2, 0, 0),
(91, 'farm', 'music_genres.php', 0, 0, 0, 0, 0),
(92, 'farm', 'order_history.php', 0, 0, 0, 0, 0),
(93, 'farm', 'product_notifications.php', 0, 0, 0, 0, 0),
(94, 'farm', 'record_companies.php', 0, 0, 0, 0, 0),
(95, 'farm', 'reviews.php', 0, 0, 0, 0, 0),
(96, 'farm', 'search.php', 0, 0, 4, 0, 0),
(97, 'farm', 'search_header.php', 1, 1, 0, 0, 0),
(98, 'farm', 'shopping_cart.php', 1, 0, 3, 0, 1),
(99, 'farm', 'specials.php', 0, 0, 0, 0, 0),
(100, 'farm', 'tell_a_friend.php', 1, 0, 5, 0, 1),
(101, 'farm', 'whats_new.php', 0, 0, 0, 0, 0),
(102, 'farm', 'whos_online.php', 0, 0, 0, 0, 0),
(103, 'future_zen', 'banner_box.php', 0, 0, 0, 0, 0),
(104, 'future_zen', 'banner_box2.php', 0, 0, 0, 0, 0),
(105, 'future_zen', 'banner_box_all.php', 0, 0, 0, 0, 0),
(106, 'future_zen', 'best_sellers.php', 0, 0, 0, 0, 0),
(107, 'future_zen', 'categories.php', 1, 0, 0, 0, 0),
(108, 'future_zen', 'currencies.php', 0, 0, 0, 0, 0),
(109, 'future_zen', 'document_categories.php', 0, 0, 0, 0, 0),
(110, 'future_zen', 'ezpages.php', 0, 0, 0, 0, 0),
(111, 'future_zen', 'featured.php', 0, 0, 0, 0, 0),
(112, 'future_zen', 'information.php', 0, 0, 0, 0, 0),
(113, 'future_zen', 'languages.php', 0, 0, 0, 0, 0),
(114, 'future_zen', 'manufacturer_info.php', 0, 0, 0, 0, 0),
(115, 'future_zen', 'manufacturers.php', 0, 0, 0, 0, 0),
(116, 'future_zen', 'more_information.php', 0, 0, 0, 0, 0),
(117, 'future_zen', 'music_genres.php', 0, 0, 0, 0, 0),
(118, 'future_zen', 'order_history.php', 0, 0, 0, 0, 0),
(119, 'future_zen', 'product_notifications.php', 0, 0, 0, 0, 0),
(120, 'future_zen', 'record_companies.php', 0, 0, 0, 0, 0),
(121, 'future_zen', 'reviews.php', 0, 0, 0, 0, 0),
(122, 'future_zen', 'search.php', 0, 0, 0, 0, 0),
(123, 'future_zen', 'search_header.php', 0, 0, 0, 0, 0),
(124, 'future_zen', 'shopping_cart.php', 0, 0, 0, 0, 0),
(125, 'future_zen', 'specials.php', 0, 0, 0, 0, 0),
(126, 'future_zen', 'tell_a_friend.php', 0, 0, 0, 0, 0),
(127, 'future_zen', 'whats_new.php', 0, 0, 0, 0, 0),
(128, 'future_zen', 'whos_online.php', 0, 0, 0, 0, 0),
(129, 'farm', 'login_header.php', 0, 0, 0, 0, 1);
 
-- --------------------------------------------------------
 
--
-- Table structure for table `manufacturers`
--
 
CREATE TABLE IF NOT EXISTS `manufacturers` (
  `manufacturers_id` int(11) NOT NULL auto_increment,
  `manufacturers_name` varchar(32) NOT NULL default '',
  `manufacturers_image` varchar(64) default NULL,
  `date_added` datetime default NULL,
  `last_modified` datetime default NULL,
  PRIMARY KEY  (`manufacturers_id`),
  KEY `idx_mfg_name_zen` (`manufacturers_name`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=10 ;
 
--
-- Dumping data for table `manufacturers`
--
 
INSERT INTO `manufacturers` (`manufacturers_id`, `manufacturers_name`, `manufacturers_image`, `date_added`, `last_modified`) VALUES
(1, 'Matrox', 'manufacturers/manufacturer_matrox.gif', '2003-12-23 03:18:19', NULL),
(2, 'Microsoft', 'manufacturers/manufacturer_microsoft.gif', '2003-12-23 03:18:19', NULL),
(3, 'Warner', 'manufacturers/manufacturer_warner.gif', '2003-12-23 03:18:19', NULL),
(4, 'Fox', 'manufacturers/manufacturer_fox.gif', '2003-12-23 03:18:19', NULL),
(5, 'Logitech', 'manufacturers/manufacturer_logitech.gif', '2003-12-23 03:18:19', NULL),
(6, 'Canon', 'manufacturers/manufacturer_canon.gif', '2003-12-23 03:18:19', NULL),
(7, 'Sierra', 'manufacturers/manufacturer_sierra.gif', '2003-12-23 03:18:19', NULL),
(8, 'GT Interactive', 'manufacturers/manufacturer_gt_interactive.gif', '2003-12-23 03:18:19', NULL),
(9, 'Hewlett Packard', 'manufacturers/manufacturer_hewlett_packard.gif', '2003-12-23 03:18:19', NULL);
 
-- --------------------------------------------------------
 
--
-- Table structure for table `manufacturers_info`
--
 
CREATE TABLE IF NOT EXISTS `manufacturers_info` (
  `manufacturers_id` int(11) NOT NULL default '0',
  `languages_id` int(11) NOT NULL default '0',
  `manufacturers_url` varchar(255) NOT NULL default '',
  `url_clicked` int(5) NOT NULL default '0',
  `date_last_click` datetime default NULL,
  PRIMARY KEY  (`manufacturers_id`,`languages_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
--
-- Dumping data for table `manufacturers_info`
--
 
INSERT INTO `manufacturers_info` (`manufacturers_id`, `languages_id`, `manufacturers_url`, `url_clicked`, `date_last_click`) VALUES
(1, 1, 'http://www.matrox.com', 0, NULL),
(2, 1, 'http://www.microsoft.com', 0, NULL),
(3, 1, 'http://www.warner.com', 0, NULL),
(4, 1, 'http://www.fox.com', 0, NULL),
(5, 1, 'http://www.logitech.com', 0, NULL),
(6, 1, 'http://www.canon.com', 0, NULL),
(7, 1, 'http://www.sierra.com', 0, NULL),
(8, 1, 'http://www.infogrames.com', 0, NULL),
(9, 1, 'http://www.hewlettpackard.com', 0, NULL);
 
-- --------------------------------------------------------
 
--
-- Table structure for table `media_clips`
--
 
CREATE TABLE IF NOT EXISTS `media_clips` (
  `clip_id` int(11) NOT NULL auto_increment,
  `media_id` int(11) NOT NULL default '0',
  `clip_type` smallint(6) NOT NULL default '0',
  `clip_filename` text NOT NULL,
  `date_added` datetime NOT NULL default '0001-01-01 00:00:00',
  `last_modified` datetime NOT NULL default '0001-01-01 00:00:00',
  PRIMARY KEY  (`clip_id`),
  KEY `idx_media_id_zen` (`media_id`),
  KEY `idx_clip_type_zen` (`clip_type`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;
 
--
-- Dumping data for table `media_clips`
--
 
INSERT INTO `media_clips` (`clip_id`, `media_id`, `clip_type`, `clip_filename`, `date_added`, `last_modified`) VALUES
(1, 1, 1, 'thehunter.mp3', '2004-06-01 20:57:43', '0000-00-00 00:00:00'),
(6, 2, 1, 'thehunter.mp3', '2004-07-13 00:45:09', '0000-00-00 00:00:00');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `media_manager`
--
 
CREATE TABLE IF NOT EXISTS `media_manager` (
  `media_id` int(11) NOT NULL auto_increment,
  `media_name` varchar(255) NOT NULL default '',
  `last_modified` datetime NOT NULL default '0001-01-01 00:00:00',
  `date_added` datetime NOT NULL default '0001-01-01 00:00:00',
  PRIMARY KEY  (`media_id`),
  KEY `idx_media_name_zen` (`media_name`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
 
--
-- Dumping data for table `media_manager`
--
 
INSERT INTO `media_manager` (`media_id`, `media_name`, `last_modified`, `date_added`) VALUES
(1, 'Russ Tippins - The Hunter', '2004-06-01 20:57:43', '2004-06-01 20:42:53'),
(2, 'Help!', '2004-07-13 01:01:14', '2004-07-12 17:57:45');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `media_to_products`
--
 
CREATE TABLE IF NOT EXISTS `media_to_products` (
  `media_id` int(11) NOT NULL default '0',
  `product_id` int(11) NOT NULL default '0',
  KEY `idx_media_product_zen` (`media_id`,`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
--
-- Dumping data for table `media_to_products`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `media_types`
--
 
CREATE TABLE IF NOT EXISTS `media_types` (
  `type_id` int(11) NOT NULL auto_increment,
  `type_name` varchar(64) NOT NULL default '',
  `type_ext` varchar(8) NOT NULL default '',
  PRIMARY KEY  (`type_id`),
  KEY `idx_type_name_zen` (`type_name`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
 
--
-- Dumping data for table `media_types`
--
 
INSERT INTO `media_types` (`type_id`, `type_name`, `type_ext`) VALUES
(1, 'MP3', '.mp3');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `meta_tags_categories_description`
--
 
CREATE TABLE IF NOT EXISTS `meta_tags_categories_description` (
  `categories_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL default '1',
  `metatags_title` varchar(255) NOT NULL default '',
  `metatags_keywords` text,
  `metatags_description` text,
  PRIMARY KEY  (`categories_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
--
-- Dumping data for table `meta_tags_categories_description`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `meta_tags_products_description`
--
 
CREATE TABLE IF NOT EXISTS `meta_tags_products_description` (
  `products_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL default '1',
  `metatags_title` varchar(255) NOT NULL default '',
  `metatags_keywords` text,
  `metatags_description` text,
  PRIMARY KEY  (`products_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
--
-- Dumping data for table `meta_tags_products_description`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `music_genre`
--
 
CREATE TABLE IF NOT EXISTS `music_genre` (
  `music_genre_id` int(11) NOT NULL auto_increment,
  `music_genre_name` varchar(32) NOT NULL default '',
  `date_added` datetime default NULL,
  `last_modified` datetime default NULL,
  PRIMARY KEY  (`music_genre_id`),
  KEY `idx_music_genre_name_zen` (`music_genre_name`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
 
--
-- Dumping data for table `music_genre`
--
 
INSERT INTO `music_genre` (`music_genre_id`, `music_genre_name`, `date_added`, `last_modified`) VALUES
(1, 'Rock', '2004-06-01 20:53:26', NULL),
(2, 'Jazz', '2004-06-01 20:53:45', NULL);
 
-- --------------------------------------------------------
 
--
-- Table structure for table `newsletters`
--
 
CREATE TABLE IF NOT EXISTS `newsletters` (
  `newsletters_id` int(11) NOT NULL auto_increment,
  `title` varchar(255) NOT NULL default '',
  `content` text NOT NULL,
  `content_html` text NOT NULL,
  `module` varchar(255) NOT NULL default '',
  `date_added` datetime NOT NULL default '0001-01-01 00:00:00',
  `date_sent` datetime default NULL,
  `status` int(1) default NULL,
  `locked` int(1) default '0',
  PRIMARY KEY  (`newsletters_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
 
--
-- Dumping data for table `newsletters`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `nochex_apc_transactions`
--
 
CREATE TABLE IF NOT EXISTS `nochex_apc_transactions` (
  `nochex_apc_id` int(11) unsigned NOT NULL auto_increment,
  `order_id` int(11) unsigned NOT NULL default '0',
  `nc_transaction_id` varchar(30) NOT NULL,
  `nc_transaction_date` varchar(100) NOT NULL,
  `nc_to_email` varchar(255) NOT NULL,
  `nc_from_email` varchar(255) NOT NULL,
  `nc_order_id` varchar(255) NOT NULL,
  `nc_custom` varchar(255) NOT NULL,
  `nc_amount` decimal(9,2) NOT NULL,
  `nc_security_key` varchar(255) NOT NULL,
  `nc_status` varchar(15) NOT NULL,
  `nochex_response` varchar(255) NOT NULL,
  `last_modified` datetime NOT NULL default '0001-01-01 00:00:00',
  `date_added` datetime NOT NULL default '0001-01-01 00:00:00',
  `memo` text,
  PRIMARY KEY  (`nochex_apc_id`),
  KEY `idx_order_id_zen` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
 
--
-- Dumping data for table `nochex_apc_transactions`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `nochex_sessions`
--
 
CREATE TABLE IF NOT EXISTS `nochex_sessions` (
  `unique_id` int(11) NOT NULL auto_increment,
  `session_id` text NOT NULL,
  `saved_session` mediumblob NOT NULL,
  `expiry` int(17) NOT NULL default '0',
  PRIMARY KEY  (`unique_id`),
  KEY `idx_session_id_zen` (`session_id`(36))
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
 
--
-- Dumping data for table `nochex_sessions`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `orders`
--
 
CREATE TABLE IF NOT EXISTS `orders` (
  `orders_id` int(11) NOT NULL auto_increment,
  `customers_id` int(11) NOT NULL default '0',
  `customers_name` varchar(64) NOT NULL default '',
  `customers_company` varchar(64) default NULL,
  `customers_street_address` varchar(64) NOT NULL default '',
  `customers_suburb` varchar(32) default NULL,
  `customers_city` varchar(32) NOT NULL default '',
  `customers_postcode` varchar(10) NOT NULL default '',
  `customers_state` varchar(32) default NULL,
  `customers_country` varchar(32) NOT NULL default '',
  `customers_telephone` varchar(32) NOT NULL default '',
  `customers_email_address` varchar(96) NOT NULL default '',
  `customers_address_format_id` int(5) NOT NULL default '0',
  `delivery_name` varchar(64) NOT NULL default '',
  `delivery_company` varchar(64) default NULL,
  `delivery_street_address` varchar(64) NOT NULL default '',
  `delivery_suburb` varchar(32) default NULL,
  `delivery_city` varchar(32) NOT NULL default '',
  `delivery_postcode` varchar(10) NOT NULL default '',
  `delivery_state` varchar(32) default NULL,
  `delivery_country` varchar(32) NOT NULL default '',
  `delivery_address_format_id` int(5) NOT NULL default '0',
  `billing_name` varchar(64) NOT NULL default '',
  `billing_company` varchar(64) default NULL,
  `billing_street_address` varchar(64) NOT NULL default '',
  `billing_suburb` varchar(32) default NULL,
  `billing_city` varchar(32) NOT NULL default '',
  `billing_postcode` varchar(10) NOT NULL default '',
  `billing_state` varchar(32) default NULL,
  `billing_country` varchar(32) NOT NULL default '',
  `billing_address_format_id` int(5) NOT NULL default '0',
  `payment_method` varchar(128) NOT NULL default '',
  `payment_module_code` varchar(32) NOT NULL default '',
  `shipping_method` varchar(128) NOT NULL default '',
  `shipping_module_code` varchar(32) NOT NULL default '',
  `coupon_code` varchar(32) NOT NULL default '',
  `cc_type` varchar(20) default NULL,
  `cc_owner` varchar(64) default NULL,
  `cc_number` varchar(32) default NULL,
  `cc_expires` varchar(4) default NULL,
  `cc_cvv` blob,
  `last_modified` datetime default NULL,
  `date_purchased` datetime default NULL,
  `orders_status` int(5) NOT NULL default '0',
  `orders_date_finished` datetime default NULL,
  `currency` char(3) default NULL,
  `currency_value` decimal(14,6) default NULL,
  `order_total` decimal(14,2) default NULL,
  `order_tax` decimal(14,2) default NULL,
  `paypal_ipn_id` int(11) NOT NULL default '0',
  `ip_address` varchar(96) NOT NULL default '',
  `date_completed` datetime default NULL,
  `date_cancelled` datetime default NULL,
  `balance_due` decimal(14,2) default NULL,
  PRIMARY KEY  (`orders_id`),
  KEY `idx_status_orders_cust_zen` (`orders_status`,`orders_id`,`customers_id`),
  KEY `idx_date_purchased_zen` (`date_purchased`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
 
--
-- Dumping data for table `orders`
--
 
INSERT INTO `orders` (`orders_id`, `customers_id`, `customers_name`, `customers_company`, `customers_street_address`, `customers_suburb`, `customers_city`, `customers_postcode`, `customers_state`, `customers_country`, `customers_telephone`, `customers_email_address`, `customers_address_format_id`, `delivery_name`, `delivery_company`, `delivery_street_address`, `delivery_suburb`, `delivery_city`, `delivery_postcode`, `delivery_state`, `delivery_country`, `delivery_address_format_id`, `billing_name`, `billing_company`, `billing_street_address`, `billing_suburb`, `billing_city`, `billing_postcode`, `billing_state`, `billing_country`, `billing_address_format_id`, `payment_method`, `payment_module_code`, `shipping_method`, `shipping_module_code`, `coupon_code`, `cc_type`, `cc_owner`, `cc_number`, `cc_expires`, `cc_cvv`, `last_modified`, `date_purchased`, `orders_status`, `orders_date_finished`, `currency`, `currency_value`, `order_total`, `order_tax`, `paypal_ipn_id`, `ip_address`, `date_completed`, `date_cancelled`, `balance_due`) VALUES
(1, 2, 'DAle Sellers', '', 'sdfsfas dfasdfds', '', 'Sarasota', '34240', 'Florida', 'United States', '888 888 8888', 'info@lifeleap.org', 2, 'DAle Sellers', '', 'sdfsfas dfasdfds', '', 'Sarasota', '34240', 'Florida', 'United States', 2, 'DAle Sellers', '', 'sdfsfas dfasdfds', '', 'Sarasota', '34240', 'Florida', 'United States', 2, 'Credit Card', 'cc', 'Flat Rate (Best Way)', 'flat', '', 'MasterCard', 'DAle Sellers', '5581XXXXXXXX9764', '0211', NULL, '2009-06-23 19:40:18', '2009-06-20 13:00:54', 3, NULL, 'USD', 1.000000, 15.00, 0.00, 0, '68.56.168.23 - 68.56.168.23', NULL, NULL, 15.00),
(2, 2, 'DAle Sellers', '', 'sdfsfas dfasdfds', '', 'Sarasota', '34240', 'Florida', 'United States', '888 888 8888', 'info@lifeleap.org', 2, 'DAle Sellers', '', 'sdfsfas dfasdfds', '', 'Sarasota', '34240', 'Florida', 'United States', 2, 'DAle Sellers', '', 'sdfsfas dfasdfds', '', 'Sarasota', '34240', 'Florida', 'United States', 2, 'Credit Card', 'cc', 'Flat Rate (Best Way)', 'flat', '', 'MasterCard', 'DAle Sellers', '5581XXXXXXXX9764', '0211', '', '2009-07-12 04:31:05', '2009-06-20 13:00:54', 3, NULL, 'USD', 1.000000, 44.99, 0.00, 0, '', NULL, NULL, NULL);
 
-- --------------------------------------------------------
 
--
-- Table structure for table `orders_products`
--
 
CREATE TABLE IF NOT EXISTS `orders_products` (
  `orders_products_id` int(11) NOT NULL auto_increment,
  `orders_id` int(11) NOT NULL default '0',
  `products_id` int(11) NOT NULL default '0',
  `products_model` varchar(32) default NULL,
  `products_name` varchar(64) NOT NULL default '',
  `products_price` decimal(15,4) NOT NULL default '0.0000',
  `final_price` decimal(15,4) NOT NULL default '0.0000',
  `products_tax` decimal(7,4) NOT NULL default '0.0000',
  `products_quantity` float NOT NULL default '0',
  `onetime_charges` decimal(15,4) NOT NULL default '0.0000',
  `products_priced_by_attribute` tinyint(1) NOT NULL default '0',
  `product_is_free` tinyint(1) NOT NULL default '0',
  `products_discount_type` tinyint(1) NOT NULL default '0',
  `products_discount_type_from` tinyint(1) NOT NULL default '0',
  `products_prid` tinytext NOT NULL,
  PRIMARY KEY  (`orders_products_id`),
  KEY `idx_orders_id_prod_id_zen` (`orders_id`,`products_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
 
--
-- Dumping data for table `orders_products`
--
 
INSERT INTO `orders_products` (`orders_products_id`, `orders_id`, `products_id`, `products_model`, `products_name`, `products_price`, `final_price`, `products_tax`, `products_quantity`, `onetime_charges`, `products_priced_by_attribute`, `product_is_free`, `products_discount_type`, `products_discount_type_from`, `products_prid`) VALUES
(1, 1, 180, '', 'Membership Fee', 15.0000, 15.0000, 0.0000, 1, 0.0000, 0, 0, 0, 0, '180'),
(2, 2, 12, 'DVD-DHWV', 'Die Hard With A Vengeance Linked', 39.9900, 39.9900, 0.0000, 1, 0.0000, 0, 0, 0, 0, '12');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `orders_products_attributes`
--
 
CREATE TABLE IF NOT EXISTS `orders_products_attributes` (
  `orders_products_attributes_id` int(11) NOT NULL auto_increment,
  `orders_id` int(11) NOT NULL default '0',
  `orders_products_id` int(11) NOT NULL default '0',
  `products_options` varchar(32) NOT NULL default '',
  `products_options_values` text NOT NULL,
  `options_values_price` decimal(15,4) NOT NULL default '0.0000',
  `price_prefix` char(1) NOT NULL default '',
  `product_attribute_is_free` tinyint(1) NOT NULL default '0',
  `products_attributes_weight` float NOT NULL default '0',
  `products_attributes_weight_prefix` char(1) NOT NULL default '',
  `attributes_discounted` tinyint(1) NOT NULL default '1',
  `attributes_price_base_included` tinyint(1) NOT NULL default '1',
  `attributes_price_onetime` decimal(15,4) NOT NULL default '0.0000',
  `attributes_price_factor` decimal(15,4) NOT NULL default '0.0000',
  `attributes_price_factor_offset` decimal(15,4) NOT NULL default '0.0000',
  `attributes_price_factor_onetime` decimal(15,4) NOT NULL default '0.0000',
  `attributes_price_factor_onetime_offset` decimal(15,4) NOT NULL default '0.0000',
  `attributes_qty_prices` text,
  `attributes_qty_prices_onetime` text,
  `attributes_price_words` decimal(15,4) NOT NULL default '0.0000',
  `attributes_price_words_free` int(4) NOT NULL default '0',
  `attributes_price_letters` decimal(15,4) NOT NULL default '0.0000',
  `attributes_price_letters_free` int(4) NOT NULL default '0',
  `products_options_id` int(11) NOT NULL default '0',
  `products_options_values_id` int(11) NOT NULL default '0',
  `products_prid` tinytext NOT NULL,
  PRIMARY KEY  (`orders_products_attributes_id`),
  KEY `idx_orders_id_prod_id_zen` (`orders_id`,`orders_products_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
 
--
-- Dumping data for table `orders_products_attributes`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `orders_products_download`
--
 
CREATE TABLE IF NOT EXISTS `orders_products_download` (
  `orders_products_download_id` int(11) NOT NULL auto_increment,
  `orders_id` int(11) NOT NULL default '0',
  `orders_products_id` int(11) NOT NULL default '0',
  `orders_products_filename` varchar(255) NOT NULL default '',
  `download_maxdays` int(2) NOT NULL default '0',
  `download_count` int(2) NOT NULL default '0',
  `products_prid` tinytext NOT NULL,
  PRIMARY KEY  (`orders_products_download_id`),
  KEY `idx_orders_id_zen` (`orders_id`),
  KEY `idx_orders_products_id_zen` (`orders_products_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
 
--
-- Dumping data for table `orders_products_download`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `orders_status`
--
 
CREATE TABLE IF NOT EXISTS `orders_status` (
  `orders_status_id` int(11) NOT NULL default '0',
  `language_id` int(11) NOT NULL default '1',
  `orders_status_name` varchar(32) NOT NULL default '',
  PRIMARY KEY  (`orders_status_id`,`language_id`),
  KEY `idx_orders_status_name_zen` (`orders_status_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
--
-- Dumping data for table `orders_status`
--
 
INSERT INTO `orders_status` (`orders_status_id`, `language_id`, `orders_status_name`) VALUES
(1, 1, 'Pending'),
(2, 1, 'Processing'),
(3, 1, 'Delivered'),
(4, 1, 'Update');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `orders_status_history`
--
 
CREATE TABLE IF NOT EXISTS `orders_status_history` (
  `orders_status_history_id` int(11) NOT NULL auto_increment,
  `orders_id` int(11) NOT NULL default '0',
  `orders_status_id` int(5) NOT NULL default '0',
  `date_added` datetime NOT NULL default '0001-01-01 00:00:00',
  `customer_notified` int(1) default '0',
  `comments` text,
  PRIMARY KEY  (`orders_status_history_id`),
  KEY `idx_orders_id_status_id_zen` (`orders_id`,`orders_status_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;
 
--
-- Dumping data for table `orders_status_history`
--
 
INSERT INTO `orders_status_history` (`orders_status_history_id`, `orders_id`, `orders_status_id`, `date_added`, `customer_notified`, `comments`) VALUES
(1, 1, 1, '2009-06-20 13:00:54', 1, ''),
(2, 1, 3, '2009-06-23 19:40:18', 1, ''),
(3, 2, 1, '2009-06-20 13:00:54', 1, ''),
(4, 2, 3, '2009-06-23 19:40:18', 1, ''),
(5, 1, 3, '2009-07-12 04:31:05', 0, 'Order has been split.  New Order: 2'),
(6, 2, 3, '2009-07-12 04:31:05', 0, 'Order created from split.  Original Order: 1');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `orders_total`
--
 
CREATE TABLE IF NOT EXISTS `orders_total` (
  `orders_total_id` int(10) unsigned NOT NULL auto_increment,
  `orders_id` int(11) NOT NULL default '0',
  `title` varchar(255) NOT NULL default '',
  `text` varchar(255) NOT NULL default '',
  `value` decimal(15,4) NOT NULL default '0.0000',
  `class` varchar(32) NOT NULL default '',
  `sort_order` int(11) NOT NULL default '0',
  PRIMARY KEY  (`orders_total_id`),
  KEY `idx_ot_orders_id_zen` (`orders_id`),
  KEY `idx_ot_class_zen` (`class`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;
 
--
-- Dumping data for table `orders_total`
--
 
INSERT INTO `orders_total` (`orders_total_id`, `orders_id`, `title`, `text`, `value`, `class`, `sort_order`) VALUES
(1, 1, 'Sub-Total:', '$15.00', 15.0000, 'ot_subtotal', 1),
(2, 1, 'Flat Rate:', '$0.00', 0.0000, 'ot_shipping', 2),
(3, 1, 'Total:', '$15.00', 15.0000, 'ot_total', 3),
(4, 2, 'Sub-Total:', '$39.99', 39.9900, 'ot_subtotal', 100),
(5, 2, 'Flat Rate (Best Way):', '$5.00', 5.0000, 'ot_shipping', 200),
(6, 2, 'Total:', '$44.99', 44.9900, 'ot_total', 999);
 
-- --------------------------------------------------------
 
--
-- Table structure for table `paypal`
--
 
CREATE TABLE IF NOT EXISTS `paypal` (
  `paypal_ipn_id` int(11) unsigned NOT NULL auto_increment,
  `order_id` int(11) unsigned NOT NULL default '0',
  `txn_type` varchar(40) NOT NULL default '',
  `module_name` varchar(40) NOT NULL default '',
  `module_mode` varchar(40) NOT NULL default '',
  `reason_code` varchar(40) default NULL,
  `payment_type` varchar(40) NOT NULL default '',
  `payment_status` varchar(32) NOT NULL default '',
  `pending_reason` varchar(32) default NULL,
  `invoice` varchar(128) default NULL,
  `mc_currency` char(3) NOT NULL default '',
  `first_name` varchar(32) NOT NULL default '',
  `last_name` varchar(32) NOT NULL default '',
  `payer_business_name` varchar(128) default NULL,
  `address_name` varchar(64) default NULL,
  `address_street` varchar(254) default NULL,
  `address_city` varchar(120) default NULL,
  `address_state` varchar(120) default NULL,
  `address_zip` varchar(10) default NULL,
  `address_country` varchar(64) default NULL,
  `address_status` varchar(11) default NULL,
  `payer_email` varchar(128) NOT NULL default '',
  `payer_id` varchar(32) NOT NULL default '',
  `payer_status` varchar(10) NOT NULL default '',
  `payment_date` datetime NOT NULL default '0001-01-01 00:00:00',
  `business` varchar(128) NOT NULL default '',
  `receiver_email` varchar(128) NOT NULL default '',
  `receiver_id` varchar(32) NOT NULL default '',
  `txn_id` varchar(20) NOT NULL default '',
  `parent_txn_id` varchar(20) default NULL,
  `num_cart_items` tinyint(4) unsigned NOT NULL default '1',
  `mc_gross` decimal(7,2) NOT NULL default '0.00',
  `mc_fee` decimal(7,2) NOT NULL default '0.00',
  `payment_gross` decimal(7,2) default NULL,
  `payment_fee` decimal(7,2) default NULL,
  `settle_amount` decimal(7,2) default NULL,
  `settle_currency` char(3) default NULL,
  `exchange_rate` decimal(4,2) default NULL,
  `notify_version` decimal(2,1) NOT NULL default '0.0',
  `verify_sign` varchar(128) NOT NULL default '',
  `last_modified` datetime NOT NULL default '0001-01-01 00:00:00',
  `date_added` datetime NOT NULL default '0001-01-01 00:00:00',
  `memo` text,
  PRIMARY KEY  (`paypal_ipn_id`,`txn_id`),
  KEY `idx_order_id_zen` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
 
--
-- Dumping data for table `paypal`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `paypal_payment_status`
--
 
CREATE TABLE IF NOT EXISTS `paypal_payment_status` (
  `payment_status_id` int(11) NOT NULL auto_increment,
  `payment_status_name` varchar(64) NOT NULL default '',
  PRIMARY KEY  (`payment_status_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ;
 
--
-- Dumping data for table `paypal_payment_status`
--
 
INSERT INTO `paypal_payment_status` (`payment_status_id`, `payment_status_name`) VALUES
(1, 'Completed'),
(2, 'Pending'),
(3, 'Failed'),
(4, 'Denied'),
(5, 'Refunded'),
(6, 'Canceled_Reversal'),
(7, 'Reversed');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `paypal_payment_status_history`
--
 
CREATE TABLE IF NOT EXISTS `paypal_payment_status_history` (
  `payment_status_history_id` int(11) NOT NULL auto_increment,
  `paypal_ipn_id` int(11) NOT NULL default '0',
  `txn_id` varchar(64) NOT NULL default '',
  `parent_txn_id` varchar(64) NOT NULL default '',
  `payment_status` varchar(17) NOT NULL default '',
  `pending_reason` varchar(14) default NULL,
  `date_added` datetime NOT NULL default '0001-01-01 00:00:00',
  PRIMARY KEY  (`payment_status_history_id`),
  KEY `idx_paypal_ipn_id_zen` (`paypal_ipn_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
 
--
-- Dumping data for table `paypal_payment_status_history`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `paypal_session`
--
 
CREATE TABLE IF NOT EXISTS `paypal_session` (
  `unique_id` int(11) NOT NULL auto_increment,
  `session_id` text NOT NULL,
  `saved_session` mediumblob NOT NULL,
  `expiry` int(17) NOT NULL default '0',
  PRIMARY KEY  (`unique_id`),
  KEY `idx_session_id_zen` (`session_id`(36))
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
 
--
-- Dumping data for table `paypal_session`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `paypal_testing`
--
 
CREATE TABLE IF NOT EXISTS `paypal_testing` (
  `paypal_ipn_id` int(11) unsigned NOT NULL auto_increment,
  `order_id` int(11) unsigned NOT NULL default '0',
  `custom` varchar(255) NOT NULL default '',
  `txn_type` varchar(40) NOT NULL default '',
  `module_name` varchar(40) NOT NULL default '',
  `module_mode` varchar(40) NOT NULL default '',
  `reason_code` varchar(40) default NULL,
  `payment_type` varchar(40) NOT NULL default '',
  `payment_status` varchar(32) NOT NULL default '',
  `pending_reason` varchar(32) default NULL,
  `invoice` varchar(128) default NULL,
  `mc_currency` char(3) NOT NULL default '',
  `first_name` varchar(32) NOT NULL default '',
  `last_name` varchar(32) NOT NULL default '',
  `payer_business_name` varchar(128) default NULL,
  `address_name` varchar(64) default NULL,
  `address_street` varchar(254) default NULL,
  `address_city` varchar(120) default NULL,
  `address_state` varchar(120) default NULL,
  `address_zip` varchar(10) default NULL,
  `address_country` varchar(64) default NULL,
  `address_status` varchar(11) default NULL,
  `payer_email` varchar(128) NOT NULL default '',
  `payer_id` varchar(32) NOT NULL default '',
  `payer_status` varchar(10) NOT NULL default '',
  `payment_date` datetime NOT NULL default '0001-01-01 00:00:00',
  `business` varchar(128) NOT NULL default '',
  `receiver_email` varchar(128) NOT NULL default '',
  `receiver_id` varchar(32) NOT NULL default '',
  `txn_id` varchar(20) NOT NULL default '',
  `parent_txn_id` varchar(20) default NULL,
  `num_cart_items` tinyint(4) unsigned NOT NULL default '1',
  `mc_gross` decimal(7,2) NOT NULL default '0.00',
  `mc_fee` decimal(7,2) NOT NULL default '0.00',
  `payment_gross` decimal(7,2) default NULL,
  `payment_fee` decimal(7,2) default NULL,
  `settle_amount` decimal(7,2) default NULL,
  `settle_currency` char(3) default NULL,
  `exchange_rate` decimal(4,2) default NULL,
  `notify_version` decimal(2,1) NOT NULL default '0.0',
  `verify_sign` varchar(128) NOT NULL default '',
  `last_modified` datetime NOT NULL default '0001-01-01 00:00:00',
  `date_added` datetime NOT NULL default '0001-01-01 00:00:00',
  `memo` text,
  PRIMARY KEY  (`paypal_ipn_id`,`txn_id`),
  KEY `idx_order_id_zen` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
 
--
-- Dumping data for table `paypal_testing`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `products`
--
 
CREATE TABLE IF NOT EXISTS `products` (
  `products_id` int(11) NOT NULL auto_increment,
  `products_type` int(11) NOT NULL default '1',
  `products_quantity` float NOT NULL default '0',
  `products_model` varchar(32) default NULL,
  `products_image` varchar(64) default NULL,
  `products_price` decimal(15,4) NOT NULL default '0.0000',
  `products_msrp` decimal(15,4) NOT NULL,
  `products_virtual` tinyint(1) NOT NULL default '0',
  `products_date_added` datetime NOT NULL default '0001-01-01 00:00:00',
  `products_last_modified` datetime default NULL,
  `products_date_available` datetime default NULL,
  `products_weight` float NOT NULL default '0',
  `products_status` tinyint(1) NOT NULL default '0',
  `products_tax_class_id` int(11) NOT NULL default '0',
  `manufacturers_id` int(11) default NULL,
  `products_ordered` float NOT NULL default '0',
  `products_quantity_order_min` float NOT NULL default '1',
  `products_quantity_order_units` float NOT NULL default '1',
  `products_priced_by_attribute` tinyint(1) NOT NULL default '0',
  `product_is_free` tinyint(1) NOT NULL default '0',
  `product_is_call` tinyint(1) NOT NULL default '0',
  `products_quantity_mixed` tinyint(1) NOT NULL default '0',
  `product_is_always_free_shipping` tinyint(1) NOT NULL default '0',
  `products_qty_box_status` tinyint(1) NOT NULL default '1',
  `products_quantity_order_max` float NOT NULL default '0',
  `products_sort_order` int(11) NOT NULL default '0',
  `products_discount_type` tinyint(1) NOT NULL default '0',
  `products_discount_type_from` tinyint(1) NOT NULL default '0',
  `products_price_sorter` decimal(15,4) NOT NULL default '0.0000',
  `master_categories_id` int(11) NOT NULL default '0',
  `products_mixed_discount_quantity` tinyint(1) NOT NULL default '1',
  `metatags_title_status` tinyint(1) NOT NULL default '0',
  `metatags_products_name_status` tinyint(1) NOT NULL default '0',
  `metatags_model_status` tinyint(1) NOT NULL default '0',
  `metatags_price_status` tinyint(1) NOT NULL default '0',
  `metatags_title_tagline_status` tinyint(1) NOT NULL default '0',
  PRIMARY KEY  (`products_id`),
  KEY `idx_products_date_added_zen` (`products_date_added`),
  KEY `idx_products_status_zen` (`products_status`),
  KEY `idx_products_date_available_zen` (`products_date_available`),
  KEY `idx_products_ordered_zen` (`products_ordered`),
  KEY `idx_products_model_zen` (`products_model`),
  KEY `idx_products_price_sorter_zen` (`products_price_sorter`),
  KEY `idx_master_categories_id_zen` (`master_categories_id`),
  KEY `idx_products_sort_order_zen` (`products_sort_order`),
  KEY `idx_manufacturers_id_zen` (`manufacturers_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=185 ;
 
--
-- Dumping data for table `products`
--
 
INSERT INTO `products` (`products_id`, `products_type`, `products_quantity`, `products_model`, `products_image`, `products_price`, `products_msrp`, `products_virtual`, `products_date_added`, `products_last_modified`, `products_date_available`, `products_weight`, `products_status`, `products_tax_class_id`, `manufacturers_id`, `products_ordered`, `products_quantity_order_min`, `products_quantity_order_units`, `products_priced_by_attribute`, `product_is_free`, `product_is_call`, `products_quantity_mixed`, `product_is_always_free_shipping`, `products_qty_box_status`, `products_quantity_order_max`, `products_sort_order`, `products_discount_type`, `products_discount_type_from`, `products_price_sorter`, `master_categories_id`, `products_mixed_discount_quantity`, `metatags_title_status`, `metatags_products_name_status`, `metatags_model_status`, `metatags_price_status`, `metatags_title_tagline_status`) VALUES
(31, 1, 997, 'GIFT050', 'gift_certificates/gv_50.gif', 50.0000, 0.0000, 1, '2003-11-03 12:32:17', NULL, NULL, 0, 1, 0, 0, 4, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 50.0000, 21, 1, 0, 0, 0, 0, 0),
(32, 1, 995, 'GIFT100', 'gift_certificates/gv_100.gif', 100.0000, 0.0000, 1, '2003-11-03 12:32:17', NULL, NULL, 0, 1, 0, 0, 5, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 100.0000, 21, 1, 0, 0, 0, 0, 0),
(182, 1, 311, '', 'CalWonderOrangeBell.jpg', 2.0000, 2.5000, 0, '2009-06-23 23:23:23', '2009-07-13 22:34:57', NULL, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 2.0000, 68, 1, 0, 0, 0, 0, 0),
(183, 1, 333, '', 'celebrity2.jpg', 5.0000, 5.2500, 0, '2009-06-23 23:24:03', '2009-07-13 22:37:02', NULL, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 4.0000, 68, 1, 0, 0, 0, 0, 0),
(180, 1, 0, '', '', 15.0000, 0.0000, 0, '2009-06-20 12:44:42', '2009-06-20 12:45:08', NULL, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 15.0000, 66, 1, 0, 0, 0, 0, 0),
(181, 1, 50000, '', 'YellowCrookneckSquash.jpg', 3.0000, 3.1000, 0, '2009-06-23 19:54:38', '2009-07-13 22:37:43', NULL, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 2.5000, 68, 1, 0, 0, 0, 0, 0),
(184, 1, 50000, '', 'BrandywineTomato.jpg', 3.7500, 4.9900, 0, '2009-07-13 22:45:23', '2009-07-19 02:58:30', NULL, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 3.3750, 68, 1, 0, 0, 0, 0, 0);
 
-- --------------------------------------------------------
 
--
-- Table structure for table `products_attributes`
--
 
CREATE TABLE IF NOT EXISTS `products_attributes` (
  `products_attributes_id` int(11) NOT NULL auto_increment,
  `products_id` int(11) NOT NULL default '0',
  `options_id` int(11) NOT NULL default '0',
  `options_values_id` int(11) NOT NULL default '0',
  `options_values_price` decimal(15,4) NOT NULL default '0.0000',
  `price_prefix` char(1) NOT NULL default '',
  `products_options_sort_order` int(11) NOT NULL default '0',
  `product_attribute_is_free` tinyint(1) NOT NULL default '0',
  `products_attributes_weight` float NOT NULL default '0',
  `products_attributes_weight_prefix` char(1) NOT NULL default '',
  `attributes_display_only` tinyint(1) NOT NULL default '0',
  `attributes_default` tinyint(1) NOT NULL default '0',
  `attributes_discounted` tinyint(1) NOT NULL default '1',
  `attributes_image` varchar(64) default NULL,
  `attributes_price_base_included` tinyint(1) NOT NULL default '1',
  `attributes_price_onetime` decimal(15,4) NOT NULL default '0.0000',
  `attributes_price_factor` decimal(15,4) NOT NULL default '0.0000',
  `attributes_price_factor_offset` decimal(15,4) NOT NULL default '0.0000',
  `attributes_price_factor_onetime` decimal(15,4) NOT NULL default '0.0000',
  `attributes_price_factor_onetime_offset` decimal(15,4) NOT NULL default '0.0000',
  `attributes_qty_prices` text,
  `attributes_qty_prices_onetime` text,
  `attributes_price_words` decimal(15,4) NOT NULL default '0.0000',
  `attributes_price_words_free` int(4) NOT NULL default '0',
  `attributes_price_letters` decimal(15,4) NOT NULL default '0.0000',
  `attributes_price_letters_free` int(4) NOT NULL default '0',
  `attributes_required` tinyint(1) NOT NULL default '0',
  PRIMARY KEY  (`products_attributes_id`),
  KEY `idx_id_options_id_values_zen` (`products_id`,`options_id`,`options_values_id`),
  KEY `idx_opt_sort_order_zen` (`products_options_sort_order`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1104 ;
 
--
-- Dumping data for table `products_attributes`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `products_attributes_download`
--
 
CREATE TABLE IF NOT EXISTS `products_attributes_download` (
  `products_attributes_id` int(11) NOT NULL default '0',
  `products_attributes_filename` varchar(255) NOT NULL default '',
  `products_attributes_maxdays` int(2) default '0',
  `products_attributes_maxcount` int(2) default '0',
  PRIMARY KEY  (`products_attributes_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
--
-- Dumping data for table `products_attributes_download`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `products_description`
--
 
CREATE TABLE IF NOT EXISTS `products_description` (
  `products_id` int(11) NOT NULL auto_increment,
  `language_id` int(11) NOT NULL default '1',
  `products_name` varchar(64) NOT NULL default '',
  `products_description` text,
  `products_short_desc` varchar(255) default NULL,
  `products_url` varchar(255) default NULL,
  `products_viewed` int(5) default '0',
  PRIMARY KEY  (`products_id`,`language_id`),
  KEY `idx_products_name_zen` (`products_name`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=185 ;
 
--
-- Dumping data for table `products_description`
--
 
INSERT INTO `products_description` (`products_id`, `language_id`, `products_name`, `products_description`, `products_short_desc`, `products_url`, `products_viewed`) VALUES
(31, 1, 'Gift Certificate $ 50.00', 'Purchase a Gift Certificate today to share with your family, friends or business associates!', NULL, '', 19),
(32, 1, 'Gift Certificate $100.00', 'Purchase a Gift Certificate today to share with your family, friends or business associates!', NULL, '', 10),
(183, 1, 'test3', 'asdf asdf asdf asdf asdf asdfasdfasd asdf asdfasdf asdf asdf asdf  asdfasdf asdf asdf asdf asdf asdfasd asdf asdf', 'thisis another short description', '', 71),
(180, 1, 'Membership Fee', 'test farm', NULL, '', 0),
(182, 1, 'test2', 'test test', 'thisis a short description', '', 111),
(181, 1, 'Yellow Squash', 'yellow is the way', 'thisis one more short description', '', 52),
(184, 1, 'Tomatoe', 'Tomatoes are the most popular fruit in our culture. Great with spaghetti, in salads, or by themselves. Full of beta carotene and tons of other macro and micro nutrients.', 'this is the test short desc for the tomatoe', '', 30);
 
-- --------------------------------------------------------
 
--
-- Table structure for table `products_discount_quantity`
--
 
CREATE TABLE IF NOT EXISTS `products_discount_quantity` (
  `discount_id` int(4) NOT NULL default '0',
  `products_id` int(11) NOT NULL default '0',
  `discount_qty` float NOT NULL default '0',
  `discount_price` decimal(15,4) NOT NULL default '0.0000',
  KEY `idx_id_qty_zen` (`products_id`,`discount_qty`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
--
-- Dumping data for table `products_discount_quantity`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `products_notifications`
--
 
CREATE TABLE IF NOT EXISTS `products_notifications` (
  `products_id` int(11) NOT NULL default '0',
  `customers_id` int(11) NOT NULL default '0',
  `date_added` datetime NOT NULL default '0001-01-01 00:00:00',
  PRIMARY KEY  (`products_id`,`customers_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
--
-- Dumping data for table `products_notifications`
--
 
INSERT INTO `products_notifications` (`products_id`, `customers_id`, `date_added`) VALUES
(12, 2, '2009-06-20 13:03:25'),
(180, 2, '2009-06-20 13:03:25');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `products_options`
--
 
CREATE TABLE IF NOT EXISTS `products_options` (
  `products_options_id` int(11) NOT NULL default '0',
  `language_id` int(11) NOT NULL default '1',
  `products_options_name` varchar(32) NOT NULL default '',
  `products_options_sort_order` int(11) NOT NULL default '0',
  `products_options_type` int(5) NOT NULL default '0',
  `products_options_length` smallint(2) NOT NULL default '32',
  `products_options_comment` varchar(64) default NULL,
  `products_options_size` smallint(2) NOT NULL default '32',
  `products_options_images_per_row` int(2) default '5',
  `products_options_images_style` int(1) default '0',
  `products_options_rows` smallint(2) NOT NULL default '1',
  PRIMARY KEY  (`products_options_id`,`language_id`),
  KEY `idx_lang_id_zen` (`language_id`),
  KEY `idx_products_options_sort_order_zen` (`products_options_sort_order`),
  KEY `idx_products_options_name_zen` (`products_options_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
--
-- Dumping data for table `products_options`
--
 
INSERT INTO `products_options` (`products_options_id`, `language_id`, `products_options_name`, `products_options_sort_order`, `products_options_type`, `products_options_length`, `products_options_comment`, `products_options_size`, `products_options_images_per_row`, `products_options_images_style`, `products_options_rows`) VALUES
(1, 1, 'Color', 10, 2, 32, '', 32, 5, 0, 1),
(2, 1, 'Size', 20, 0, 32, '', 32, 5, 0, 1),
(3, 1, 'Model', 30, 0, 32, '', 32, 5, 0, 1),
(4, 1, 'Memory', 50, 0, 32, '', 32, 5, 0, 1),
(5, 1, 'Version', 40, 0, 32, '', 32, 5, 0, 1),
(6, 1, 'Media Type', 60, 0, 32, '', 32, 5, 0, 1),
(17, 1, 'Documentation', 45, 0, 32, NULL, 32, 5, 0, 1),
(16, 1, 'Irons', 800, 3, 32, '', 32, 5, 0, 1),
(7, 1, 'Logo Back', 310, 4, 32, '', 32, 5, 0, 1),
(8, 1, 'Logo Front', 300, 4, 32, 'You may upload your own image file(s)', 32, 5, 0, 1),
(9, 1, 'Line 2', 410, 1, 64, '', 40, 5, 0, 1),
(10, 1, 'Line 1', 400, 1, 64, 'Enter your text up to 64 characters, punctuation and spaces', 40, 5, 0, 1),
(11, 1, 'Line 3', 420, 1, 64, '', 40, 5, 0, 1),
(12, 1, 'Line 4', 430, 1, 64, '', 40, 5, 0, 1),
(13, 1, 'Gift Options', 70, 3, 32, 'Special Option Options Available:', 32, 5, 0, 1),
(14, 1, 'Amount', 200, 2, 32, '', 32, 5, 0, 1),
(15, 1, 'Features', 700, 5, 32, '&nbsp;', 32, 5, 0, 1),
(18, 1, 'Length', 70, 0, 32, '', 32, 5, 0, 1),
(19, 1, 'Shipping', 600, 5, 32, '', 32, 0, 0, 1);
 
-- --------------------------------------------------------
 
--
-- Table structure for table `products_options_types`
--
 
CREATE TABLE IF NOT EXISTS `products_options_types` (
  `products_options_types_id` int(11) NOT NULL default '0',
  `products_options_types_name` varchar(32) default NULL,
  PRIMARY KEY  (`products_options_types_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Track products_options_types';
 
--
-- Dumping data for table `products_options_types`
--
 
INSERT INTO `products_options_types` (`products_options_types_id`, `products_options_types_name`) VALUES
(0, 'Dropdown'),
(1, 'Text'),
(2, 'Radio'),
(3, 'Checkbox'),
(4, 'File'),
(5, 'Read Only');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `products_options_values`
--
 
CREATE TABLE IF NOT EXISTS `products_options_values` (
  `products_options_values_id` int(11) NOT NULL default '0',
  `language_id` int(11) NOT NULL default '1',
  `products_options_values_name` varchar(64) NOT NULL default '',
  `products_options_values_sort_order` int(11) NOT NULL default '0',
  PRIMARY KEY  (`products_options_values_id`,`language_id`),
  KEY `idx_products_options_values_name_zen` (`products_options_values_name`),
  KEY `idx_products_options_values_sort_order_zen` (`products_options_values_sort_order`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
--
-- Dumping data for table `products_options_values`
--
 
INSERT INTO `products_options_values` (`products_options_values_id`, `language_id`, `products_options_values_name`, `products_options_values_sort_order`) VALUES
(0, 1, 'TEXT', 0),
(1, 1, '4 mb', 10),
(2, 1, '8 mb', 20),
(3, 1, '16 mb', 30),
(4, 1, '32 mb', 40),
(5, 1, 'Value', 10),
(6, 1, 'Premium', 20),
(7, 1, 'Deluxe', 30),
(8, 1, 'PS/2', 20),
(9, 1, 'USB', 10),
(10, 1, 'Download: Windows - English', 10),
(13, 1, 'Box: Windows - English', 1000),
(14, 1, 'DVD/VHS Combo Pak', 30),
(15, 1, 'Blue', 50),
(16, 1, 'Red', 10),
(17, 1, 'Yellow', 30),
(18, 1, 'Medium', 30),
(63, 1, 'MS Word - English', 20),
(19, 1, 'X-Small', 10),
(62, 1, 'PDF - English', 10),
(61, 1, '2 Iron', 20),
(20, 1, 'Large', 40),
(60, 1, '8 Iron', 80),
(59, 1, '7 Iron', 70),
(21, 1, 'Small', 20),
(58, 1, 'Wedge', 200),
(57, 1, '9 Iron', 90),
(22, 1, 'VHS', 20),
(23, 1, 'DVD', 10),
(56, 1, '6 Iron', 60),
(55, 1, '5 Iron', 50),
(24, 1, '20th Century', 10),
(54, 1, '4 Iron', 40),
(53, 1, '3 Iron', 30),
(25, 1, 'Orange', 20),
(26, 1, 'Green', 40),
(27, 1, 'Purple', 60),
(28, 1, 'Brown', 70),
(29, 1, 'Black', 80),
(30, 1, 'White', 90),
(31, 1, 'Silver', 100),
(32, 1, 'Gold', 110),
(64, 1, 'Download: MAC - English', 100),
(34, 1, 'Wrapping', 40),
(35, 1, 'Autographed Memorabilia Card', 30),
(36, 1, 'Collector''s Tin', 20),
(37, 1, 'Select from below ...', 5),
(38, 1, '$5.00', 5),
(39, 1, '$10.00', 10),
(40, 1, '$25.00', 25),
(41, 1, '$15.00', 15),
(42, 1, '$50.00', 50),
(43, 1, '$100.00', 100),
(44, 1, 'Select from below ...', 5),
(45, 1, 'NONE', 5),
(46, 1, 'None', 5),
(47, 1, 'Embossed Collector''s Tin', 10),
(49, 1, 'Custom Handling', 20),
(48, 1, 'None', 5),
(50, 1, 'Same Day Shipping', 30),
(51, 1, 'Quality Design', 10),
(52, 1, 'Download: Windows - Spanish', 20),
(65, 1, 'per Foot', 10),
(66, 1, 'per Yard', 20),
(67, 1, 'Free Shipping Included!', 10),
(68, 1, 'Book Hard Cover', 5);
 
-- --------------------------------------------------------
 
--
-- Table structure for table `products_options_values_to_products_options`
--
 
CREATE TABLE IF NOT EXISTS `products_options_values_to_products_options` (
  `products_options_values_to_products_options_id` int(11) NOT NULL auto_increment,
  `products_options_id` int(11) NOT NULL default '0',
  `products_options_values_id` int(11) NOT NULL default '0',
  PRIMARY KEY  (`products_options_values_to_products_options_id`),
  KEY `idx_products_options_id_zen` (`products_options_id`),
  KEY `idx_products_options_values_id_zen` (`products_options_values_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=94 ;
 
--
-- Dumping data for table `products_options_values_to_products_options`
--
 
INSERT INTO `products_options_values_to_products_options` (`products_options_values_to_products_options_id`, `products_options_id`, `products_options_values_id`) VALUES
(1, 4, 1),
(2, 4, 2),
(3, 4, 3),
(4, 4, 4),
(5, 3, 5),
(6, 3, 6),
(7, 3, 7),
(8, 3, 8),
(9, 3, 9),
(10, 5, 10),
(13, 5, 13),
(14, 6, 14),
(15, 1, 15),
(16, 1, 16),
(17, 1, 17),
(18, 2, 18),
(19, 2, 19),
(20, 2, 20),
(21, 2, 21),
(22, 6, 22),
(23, 6, 23),
(24, 5, 24),
(61, 8, 0),
(60, 7, 0),
(59, 12, 0),
(58, 11, 0),
(57, 10, 0),
(56, 9, 0),
(35, 1, 25),
(36, 1, 26),
(37, 1, 27),
(38, 1, 28),
(39, 1, 29),
(40, 1, 30),
(41, 1, 31),
(42, 1, 32),
(89, 5, 64),
(55, 13, 36),
(54, 13, 35),
(53, 13, 34),
(62, 2, 37),
(63, 14, 38),
(64, 14, 39),
(65, 14, 40),
(66, 14, 41),
(67, 14, 42),
(68, 14, 43),
(69, 13, 44),
(70, 1, 45),
(71, 4, 46),
(72, 13, 47),
(73, 13, 48),
(74, 15, 49),
(75, 15, 50),
(76, 15, 51),
(77, 5, 52),
(78, 16, 53),
(79, 16, 54),
(80, 16, 55),
(81, 16, 56),
(82, 16, 57),
(83, 16, 58),
(84, 16, 59),
(85, 16, 60),
(86, 16, 61),
(87, 17, 62),
(88, 17, 63),
(90, 18, 65),
(91, 18, 66),
(92, 19, 67),
(93, 5, 68);
 
-- --------------------------------------------------------
 
--
-- Table structure for table `products_to_categories`
--
 
CREATE TABLE IF NOT EXISTS `products_to_categories` (
  `products_id` int(11) NOT NULL default '0',
  `categories_id` int(11) NOT NULL default '0',
  PRIMARY KEY  (`products_id`,`categories_id`),
  KEY `idx_cat_prod_id_zen` (`categories_id`,`products_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
--
-- Dumping data for table `products_to_categories`
--
 
INSERT INTO `products_to_categories` (`products_id`, `categories_id`) VALUES
(31, 21),
(32, 21),
(180, 66),
(181, 68),
(182, 68),
(183, 68),
(184, 68);
 
-- --------------------------------------------------------
 
--
-- Table structure for table `products_xsell`
--
 
CREATE TABLE IF NOT EXISTS `products_xsell` (
  `ID` int(10) NOT NULL auto_increment,
  `products_id` int(10) unsigned NOT NULL default '1',
  `xsell_id` int(10) unsigned NOT NULL default '1',
  `sort_order` int(10) unsigned NOT NULL default '1',
  PRIMARY KEY  (`ID`),
  KEY `idx_products_id_xsell` (`products_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
 
--
-- Dumping data for table `products_xsell`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `product_music_extra`
--
 
CREATE TABLE IF NOT EXISTS `product_music_extra` (
  `products_id` int(11) NOT NULL default '0',
  `artists_id` int(11) NOT NULL default '0',
  `record_company_id` int(11) NOT NULL default '0',
  `music_genre_id` int(11) NOT NULL default '0',
  PRIMARY KEY  (`products_id`),
  KEY `idx_music_genre_id_zen` (`music_genre_id`),
  KEY `idx_artists_id_zen` (`artists_id`),
  KEY `idx_record_company_id_zen` (`record_company_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
--
-- Dumping data for table `product_music_extra`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `product_types`
--
 
CREATE TABLE IF NOT EXISTS `product_types` (
  `type_id` int(11) NOT NULL auto_increment,
  `type_name` varchar(255) NOT NULL default '',
  `type_handler` varchar(255) NOT NULL default '',
  `type_master_type` int(11) NOT NULL default '1',
  `allow_add_to_cart` char(1) NOT NULL default 'Y',
  `default_image` varchar(255) NOT NULL default '',
  `date_added` datetime NOT NULL default '0001-01-01 00:00:00',
  `last_modified` datetime NOT NULL default '0001-01-01 00:00:00',
  PRIMARY KEY  (`type_id`),
  KEY `idx_type_master_type_zen` (`type_master_type`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ;
 
--
-- Dumping data for table `product_types`
--
 
INSERT INTO `product_types` (`type_id`, `type_name`, `type_handler`, `type_master_type`, `allow_add_to_cart`, `default_image`, `date_added`, `last_modified`) VALUES
(1, 'Product - General', 'product', 1, 'Y', '', '2008-01-03 11:24:41', '2008-01-03 11:24:41'),
(2, 'Product - Music', 'product_music', 1, 'Y', '', '2008-01-03 11:24:41', '2008-01-03 11:24:41'),
(3, 'Document - General', 'document_general', 3, 'N', '', '2008-01-03 11:24:41', '2008-01-03 11:24:41'),
(4, 'Document - Product', 'document_product', 3, 'Y', '', '2008-01-03 11:24:41', '2008-01-03 11:24:41'),
(5, 'Product - Free Shipping', 'product_free_shipping', 1, 'Y', '', '2008-01-03 11:24:41', '2008-01-03 11:24:41');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `product_types_to_category`
--
 
CREATE TABLE IF NOT EXISTS `product_types_to_category` (
  `product_type_id` int(11) NOT NULL default '0',
  `category_id` int(11) NOT NULL default '0',
  KEY `idx_category_id_zen` (`category_id`),
  KEY `idx_product_type_id_zen` (`product_type_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
--
-- Dumping data for table `product_types_to_category`
--
 
INSERT INTO `product_types_to_category` (`product_type_id`, `category_id`) VALUES
(3, 63),
(4, 63),
(2, 62);
 
-- --------------------------------------------------------
 
--
-- Table structure for table `product_type_layout`
--
 
CREATE TABLE IF NOT EXISTS `product_type_layout` (
  `configuration_id` int(11) NOT NULL auto_increment,
  `configuration_title` text NOT NULL,
  `configuration_key` varchar(255) NOT NULL default '',
  `configuration_value` text NOT NULL,
  `configuration_description` text NOT NULL,
  `product_type_id` int(11) NOT NULL default '0',
  `sort_order` int(5) default NULL,
  `last_modified` datetime default NULL,
  `date_added` datetime NOT NULL default '0001-01-01 00:00:00',
  `use_function` text,
  `set_function` text,
  PRIMARY KEY  (`configuration_id`),
  UNIQUE KEY `unq_config_key_zen` (`configuration_key`),
  KEY `idx_key_value_zen` (`configuration_key`,`configuration_value`(10)),
  KEY `idx_type_id_sort_order_zen` (`product_type_id`,`sort_order`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=144 ;
 
--
-- Dumping data for table `product_type_layout`
--
 
INSERT INTO `product_type_layout` (`configuration_id`, `configuration_title`, `configuration_key`, `configuration_value`, `configuration_description`, `product_type_id`, `sort_order`, `last_modified`, `date_added`, `use_function`, `set_function`) VALUES
(1, 'Show Model Number', 'SHOW_PRODUCT_INFO_MODEL', '1', 'Display Model Number on Product Info 0= off 1= on', 1, 1, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(2, 'Show Weight', 'SHOW_PRODUCT_INFO_WEIGHT', '1', 'Display Weight on Product Info 0= off 1= on', 1, 2, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(3, 'Show Attribute Weight', 'SHOW_PRODUCT_INFO_WEIGHT_ATTRIBUTES', '1', 'Display Attribute Weight on Product Info 0= off 1= on', 1, 3, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(4, 'Show Manufacturer', 'SHOW_PRODUCT_INFO_MANUFACTURER', '1', 'Display Manufacturer Name on Product Info 0= off 1= on', 1, 4, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(5, 'Show Quantity in Shopping Cart', 'SHOW_PRODUCT_INFO_IN_CART_QTY', '1', 'Display Quantity in Current Shopping Cart on Product Info 0= off 1= on', 1, 5, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(6, 'Show Quantity in Stock', 'SHOW_PRODUCT_INFO_QUANTITY', '1', 'Display Quantity in Stock on Product Info 0= off 1= on', 1, 6, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(7, 'Show Product Reviews Count', 'SHOW_PRODUCT_INFO_REVIEWS_COUNT', '1', 'Display Product Reviews Count on Product Info 0= off 1= on', 1, 7, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(8, 'Show Product Reviews Button', 'SHOW_PRODUCT_INFO_REVIEWS', '1', 'Display Product Reviews Button on Product Info 0= off 1= on', 1, 8, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(9, 'Show Date Available', 'SHOW_PRODUCT_INFO_DATE_AVAILABLE', '1', 'Display Date Available on Product Info 0= off 1= on', 1, 9, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(10, 'Show Date Added', 'SHOW_PRODUCT_INFO_DATE_ADDED', '1', 'Display Date Added on Product Info 0= off 1= on', 1, 10, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(11, 'Show Product URL', 'SHOW_PRODUCT_INFO_URL', '1', 'Display URL on Product Info 0= off 1= on', 1, 11, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(12, 'Show Product Additional Images', 'SHOW_PRODUCT_INFO_ADDITIONAL_IMAGES', '1', 'Display Additional Images on Product Info 0= off 1= on', 1, 13, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(13, 'Show Starting At text on Price', 'SHOW_PRODUCT_INFO_STARTING_AT', '1', 'Display Starting At text on products with attributes Product Info 0= off 1= on', 1, 12, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(14, 'Show Product Tell a Friend button', 'SHOW_PRODUCT_INFO_TELL_A_FRIEND', '1', 'Display the Tell a Friend button on Product Info<br /><br />Note: Turning this setting off does not affect the Tell a Friend box in the columns and turning off the Tell a Friend box does not affect the button<br />0= off 1= on', 1, 15, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(15, 'Product Free Shipping Image Status - Catalog', 'SHOW_PRODUCT_INFO_ALWAYS_FREE_SHIPPING_IMAGE_SWITCH', '0', 'Show the Free Shipping image/text in the catalog?', 1, 16, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(16, 'Product Price Tax Class Default - When adding new products?', 'DEFAULT_PRODUCT_TAX_CLASS_ID', '0', 'What should the Product Price Tax Class Default ID be when adding new products?', 1, 100, NULL, '2008-01-03 11:24:41', '', ''),
(17, 'Product Virtual Default Status - Skip Shipping Address - When adding new products?', 'DEFAULT_PRODUCT_PRODUCTS_VIRTUAL', '0', 'Default Virtual Product status to be ON when adding new products?', 1, 101, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(18, 'Product Free Shipping Default Status - Normal Shipping Rules - When adding new products?', 'DEFAULT_PRODUCT_PRODUCTS_IS_ALWAYS_FREE_SHIPPING', '0', 'What should the Default Free Shipping status be when adding new products?<br />Yes, Always Free Shipping ON<br />No, Always Free Shipping OFF<br />Special, Product/Download Requires Shipping', 1, 102, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes, Always ON''), array(''id''=>''0'', ''text''=>''No, Always OFF''), array(''id''=>''2'', ''text''=>''Special'')), '),
(19, 'Show Model Number', 'SHOW_PRODUCT_MUSIC_INFO_MODEL', '1', 'Display Model Number on Product Info 0= off 1= on', 2, 1, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(20, 'Show Weight', 'SHOW_PRODUCT_MUSIC_INFO_WEIGHT', '0', 'Display Weight on Product Info 0= off 1= on', 2, 2, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(21, 'Show Attribute Weight', 'SHOW_PRODUCT_MUSIC_INFO_WEIGHT_ATTRIBUTES', '1', 'Display Attribute Weight on Product Info 0= off 1= on', 2, 3, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(22, 'Show Artist', 'SHOW_PRODUCT_MUSIC_INFO_ARTIST', '1', 'Display Artists Name on Product Info 0= off 1= on', 2, 4, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(23, 'Show Music Genre', 'SHOW_PRODUCT_MUSIC_INFO_GENRE', '1', 'Display Music Genre on Product Info 0= off 1= on', 2, 4, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(24, 'Show Record Company', 'SHOW_PRODUCT_MUSIC_INFO_RECORD_COMPANY', '1', 'Display Record Company on Product Info 0= off 1= on', 2, 4, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(25, 'Show Quantity in Shopping Cart', 'SHOW_PRODUCT_MUSIC_INFO_IN_CART_QTY', '1', 'Display Quantity in Current Shopping Cart on Product Info 0= off 1= on', 2, 5, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(26, 'Show Quantity in Stock', 'SHOW_PRODUCT_MUSIC_INFO_QUANTITY', '0', 'Display Quantity in Stock on Product Info 0= off 1= on', 2, 6, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(27, 'Show Product Reviews Count', 'SHOW_PRODUCT_MUSIC_INFO_REVIEWS_COUNT', '1', 'Display Product Reviews Count on Product Info 0= off 1= on', 2, 7, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(28, 'Show Product Reviews Button', 'SHOW_PRODUCT_MUSIC_INFO_REVIEWS', '1', 'Display Product Reviews Button on Product Info 0= off 1= on', 2, 8, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(29, 'Show Date Available', 'SHOW_PRODUCT_MUSIC_INFO_DATE_AVAILABLE', '1', 'Display Date Available on Product Info 0= off 1= on', 2, 9, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(30, 'Show Date Added', 'SHOW_PRODUCT_MUSIC_INFO_DATE_ADDED', '1', 'Display Date Added on Product Info 0= off 1= on', 2, 10, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(31, 'Show Starting At text on Price', 'SHOW_PRODUCT_MUSIC_INFO_STARTING_AT', '1', 'Display Starting At text on products with attributes Product Info 0= off 1= on', 2, 12, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(32, 'Show Product Additional Images', 'SHOW_PRODUCT_MUSIC_INFO_ADDITIONAL_IMAGES', '1', 'Display Additional Images on Product Info 0= off 1= on', 2, 13, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(33, 'Show Product Tell a Friend button', 'SHOW_PRODUCT_MUSIC_INFO_TELL_A_FRIEND', '1', 'Display the Tell a Friend button on Product Info<br /><br />Note: Turning this setting off does not affect the Tell a Friend box in the columns and turning off the Tell a Friend box does not affect the button<br />0= off 1= on', 2, 15, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(34, 'Product Free Shipping Image Status - Catalog', 'SHOW_PRODUCT_MUSIC_INFO_ALWAYS_FREE_SHIPPING_IMAGE_SWITCH', '0', 'Show the Free Shipping image/text in the catalog?', 2, 16, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(35, 'Product Price Tax Class Default - When adding new products?', 'DEFAULT_PRODUCT_MUSIC_TAX_CLASS_ID', '0', 'What should the Product Price Tax Class Default ID be when adding new products?', 2, 100, NULL, '2008-01-03 11:24:41', '', ''),
(36, 'Product Virtual Default Status - Skip Shipping Address - When adding new products?', 'DEFAULT_PRODUCT_MUSIC_PRODUCTS_VIRTUAL', '0', 'Default Virtual Product status to be ON when adding new products?', 2, 101, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(37, 'Product Free Shipping Default Status - Normal Shipping Rules - When adding new products?', 'DEFAULT_PRODUCT_MUSIC_PRODUCTS_IS_ALWAYS_FREE_SHIPPING', '0', 'What should the Default Free Shipping status be when adding new products?<br />Yes, Always Free Shipping ON<br />No, Always Free Shipping OFF<br />Special, Product/Download Requires Shipping', 2, 102, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes, Always ON''), array(''id''=>''0'', ''text''=>''No, Always OFF''), array(''id''=>''2'', ''text''=>''Special'')), '),
(38, 'Show Product Reviews Count', 'SHOW_DOCUMENT_GENERAL_INFO_REVIEWS_COUNT', '1', 'Display Product Reviews Count on Product Info 0= off 1= on', 3, 7, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(39, 'Show Product Reviews Button', 'SHOW_DOCUMENT_GENERAL_INFO_REVIEWS', '1', 'Display Product Reviews Button on Product Info 0= off 1= on', 3, 8, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(40, 'Show Date Available', 'SHOW_DOCUMENT_GENERAL_INFO_DATE_AVAILABLE', '1', 'Display Date Available on Product Info 0= off 1= on', 3, 9, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(41, 'Show Date Added', 'SHOW_DOCUMENT_GENERAL_INFO_DATE_ADDED', '1', 'Display Date Added on Product Info 0= off 1= on', 3, 10, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(42, 'Show Product Tell a Friend button', 'SHOW_DOCUMENT_GENERAL_INFO_TELL_A_FRIEND', '1', 'Display the Tell a Friend button on Product Info<br /><br />Note: Turning this setting off does not affect the Tell a Friend box in the columns and turning off the Tell a Friend box does not affect the button<br />0= off 1= on', 3, 15, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(43, 'Show Product URL', 'SHOW_DOCUMENT_GENERAL_INFO_URL', '1', 'Display URL on Product Info 0= off 1= on', 3, 11, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(44, 'Show Product Additional Images', 'SHOW_DOCUMENT_GENERAL_INFO_ADDITIONAL_IMAGES', '1', 'Display Additional Images on Product Info 0= off 1= on', 3, 13, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(45, 'Show Model Number', 'SHOW_DOCUMENT_PRODUCT_INFO_MODEL', '1', 'Display Model Number on Product Info 0= off 1= on', 4, 1, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(46, 'Show Weight', 'SHOW_DOCUMENT_PRODUCT_INFO_WEIGHT', '0', 'Display Weight on Product Info 0= off 1= on', 4, 2, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(47, 'Show Attribute Weight', 'SHOW_DOCUMENT_PRODUCT_INFO_WEIGHT_ATTRIBUTES', '1', 'Display Attribute Weight on Product Info 0= off 1= on', 4, 3, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(48, 'Show Manufacturer', 'SHOW_DOCUMENT_PRODUCT_INFO_MANUFACTURER', '1', 'Display Manufacturer Name on Product Info 0= off 1= on', 4, 4, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(49, 'Show Quantity in Shopping Cart', 'SHOW_DOCUMENT_PRODUCT_INFO_IN_CART_QTY', '1', 'Display Quantity in Current Shopping Cart on Product Info 0= off 1= on', 4, 5, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(50, 'Show Quantity in Stock', 'SHOW_DOCUMENT_PRODUCT_INFO_QUANTITY', '0', 'Display Quantity in Stock on Product Info 0= off 1= on', 4, 6, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(51, 'Show Product Reviews Count', 'SHOW_DOCUMENT_PRODUCT_INFO_REVIEWS_COUNT', '1', 'Display Product Reviews Count on Product Info 0= off 1= on', 4, 7, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(52, 'Show Product Reviews Button', 'SHOW_DOCUMENT_PRODUCT_INFO_REVIEWS', '1', 'Display Product Reviews Button on Product Info 0= off 1= on', 4, 8, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(53, 'Show Date Available', 'SHOW_DOCUMENT_PRODUCT_INFO_DATE_AVAILABLE', '1', 'Display Date Available on Product Info 0= off 1= on', 4, 9, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(54, 'Show Date Added', 'SHOW_DOCUMENT_PRODUCT_INFO_DATE_ADDED', '1', 'Display Date Added on Product Info 0= off 1= on', 4, 10, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(55, 'Show Product URL', 'SHOW_DOCUMENT_PRODUCT_INFO_URL', '1', 'Display URL on Product Info 0= off 1= on', 4, 11, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(56, 'Show Product Additional Images', 'SHOW_DOCUMENT_PRODUCT_INFO_ADDITIONAL_IMAGES', '1', 'Display Additional Images on Product Info 0= off 1= on', 4, 13, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(57, 'Show Starting At text on Price', 'SHOW_DOCUMENT_PRODUCT_INFO_STARTING_AT', '1', 'Display Starting At text on products with attributes Product Info 0= off 1= on', 4, 12, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(58, 'Show Product Tell a Friend button', 'SHOW_DOCUMENT_PRODUCT_INFO_TELL_A_FRIEND', '1', 'Display the Tell a Friend button on Product Info<br /><br />Note: Turning this setting off does not affect the Tell a Friend box in the columns and turning off the Tell a Friend box does not affect the button<br />0= off 1= on', 4, 15, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(59, 'Product Free Shipping Image Status - Catalog', 'SHOW_DOCUMENT_PRODUCT_INFO_ALWAYS_FREE_SHIPPING_IMAGE_SWITCH', '0', 'Show the Free Shipping image/text in the catalog?', 4, 16, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(60, 'Product Price Tax Class Default - When adding new products?', 'DEFAULT_DOCUMENT_PRODUCT_TAX_CLASS_ID', '0', 'What should the Product Price Tax Class Default ID be when adding new products?', 4, 100, NULL, '2008-01-03 11:24:41', '', ''),
(61, 'Product Virtual Default Status - Skip Shipping Address - When adding new products?', 'DEFAULT_DOCUMENT_PRODUCT_PRODUCTS_VIRTUAL', '0', 'Default Virtual Product status to be ON when adding new products?', 4, 101, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(62, 'Product Free Shipping Default Status - Normal Shipping Rules - When adding new products?', 'DEFAULT_DOCUMENT_PRODUCT_PRODUCTS_IS_ALWAYS_FREE_SHIPPING', '0', 'What should the Default Free Shipping status be when adding new products?<br />Yes, Always Free Shipping ON<br />No, Always Free Shipping OFF<br />Special, Product/Download Requires Shipping', 4, 102, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes, Always ON''), array(''id''=>''0'', ''text''=>''No, Always OFF''), array(''id''=>''2'', ''text''=>''Special'')), '),
(63, 'Show Model Number', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_MODEL', '1', 'Display Model Number on Product Info 0= off 1= on', 5, 1, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(64, 'Show Weight', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_WEIGHT', '0', 'Display Weight on Product Info 0= off 1= on', 5, 2, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(65, 'Show Attribute Weight', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_WEIGHT_ATTRIBUTES', '1', 'Display Attribute Weight on Product Info 0= off 1= on', 5, 3, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(66, 'Show Manufacturer', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_MANUFACTURER', '1', 'Display Manufacturer Name on Product Info 0= off 1= on', 5, 4, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(67, 'Show Quantity in Shopping Cart', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_IN_CART_QTY', '1', 'Display Quantity in Current Shopping Cart on Product Info 0= off 1= on', 5, 5, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(68, 'Show Quantity in Stock', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_QUANTITY', '1', 'Display Quantity in Stock on Product Info 0= off 1= on', 5, 6, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(69, 'Show Product Reviews Count', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_REVIEWS_COUNT', '1', 'Display Product Reviews Count on Product Info 0= off 1= on', 5, 7, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(70, 'Show Product Reviews Button', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_REVIEWS', '1', 'Display Product Reviews Button on Product Info 0= off 1= on', 5, 8, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(71, 'Show Date Available', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_DATE_AVAILABLE', '0', 'Display Date Available on Product Info 0= off 1= on', 5, 9, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(72, 'Show Date Added', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_DATE_ADDED', '1', 'Display Date Added on Product Info 0= off 1= on', 5, 10, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(73, 'Show Product URL', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_URL', '1', 'Display URL on Product Info 0= off 1= on', 5, 11, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(74, 'Show Product Additional Images', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_ADDITIONAL_IMAGES', '1', 'Display Additional Images on Product Info 0= off 1= on', 5, 13, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(75, 'Show Starting At text on Price', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_STARTING_AT', '1', 'Display Starting At text on products with attributes Product Info 0= off 1= on', 5, 12, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(76, 'Show Product Tell a Friend button', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_TELL_A_FRIEND', '1', 'Display the Tell a Friend button on Product Info<br /><br />Note: Turning this setting off does not affect the Tell a Friend box in the columns and turning off the Tell a Friend box does not affect the button<br />0= off 1= on', 5, 15, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(77, 'Product Free Shipping Image Status - Catalog', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_ALWAYS_FREE_SHIPPING_IMAGE_SWITCH', '1', 'Show the Free Shipping image/text in the catalog?', 5, 16, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(78, 'Product Price Tax Class Default - When adding new products?', 'DEFAULT_PRODUCT_FREE_SHIPPING_TAX_CLASS_ID', '0', 'What should the Product Price Tax Class Default ID be when adding new products?', 5, 100, NULL, '2008-01-03 11:24:41', '', ''),
(79, 'Product Virtual Default Status - Skip Shipping Address - When adding new products?', 'DEFAULT_PRODUCT_FREE_SHIPPING_PRODUCTS_VIRTUAL', '0', 'Default Virtual Product status to be ON when adding new products?', 5, 101, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(80, 'Product Free Shipping Default Status - Normal Shipping Rules - When adding new products?', 'DEFAULT_PRODUCT_FREE_SHIPPING_PRODUCTS_IS_ALWAYS_FREE_SHIPPING', '1', 'What should the Default Free Shipping status be when adding new products?<br />Yes, Always Free Shipping ON<br />No, Always Free Shipping OFF<br />Special, Product/Download Requires Shipping', 5, 102, NULL, '2008-01-03 11:24:41', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes, Always ON''), array(''id''=>''0'', ''text''=>''No, Always OFF''), array(''id''=>''2'', ''text''=>''Special'')), '),
(81, 'Show Metatags Title Default - Product Title', 'SHOW_PRODUCT_INFO_METATAGS_TITLE_STATUS', '1', 'Display Product Title in Meta Tags Title 0= off 1= on', 1, 50, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(82, 'Show Metatags Title Default - Product Name', 'SHOW_PRODUCT_INFO_METATAGS_PRODUCTS_NAME_STATUS', '1', 'Display Product Name in Meta Tags Title 0= off 1= on', 1, 51, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(83, 'Show Metatags Title Default - Product Model', 'SHOW_PRODUCT_INFO_METATAGS_MODEL_STATUS', '1', 'Display Product Model in Meta Tags Title 0= off 1= on', 1, 52, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(84, 'Show Metatags Title Default - Product Price', 'SHOW_PRODUCT_INFO_METATAGS_PRICE_STATUS', '1', 'Display Product Price in Meta Tags Title 0= off 1= on', 1, 53, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(85, 'Show Metatags Title Default - Product Tagline', 'SHOW_PRODUCT_INFO_METATAGS_TITLE_TAGLINE_STATUS', '1', 'Display Product Tagline in Meta Tags Title 0= off 1= on', 1, 54, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(86, 'Show Metatags Title Default - Product Title', 'SHOW_PRODUCT_MUSIC_INFO_METATAGS_TITLE_STATUS', '1', 'Display Product Title in Meta Tags Title 0= off 1= on', 2, 50, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(87, 'Show Metatags Title Default - Product Name', 'SHOW_PRODUCT_MUSIC_INFO_METATAGS_PRODUCTS_NAME_STATUS', '1', 'Display Product Name in Meta Tags Title 0= off 1= on', 2, 51, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(88, 'Show Metatags Title Default - Product Model', 'SHOW_PRODUCT_MUSIC_INFO_METATAGS_MODEL_STATUS', '1', 'Display Product Model in Meta Tags Title 0= off 1= on', 2, 52, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(89, 'Show Metatags Title Default - Product Price', 'SHOW_PRODUCT_MUSIC_INFO_METATAGS_PRICE_STATUS', '1', 'Display Product Price in Meta Tags Title 0= off 1= on', 2, 53, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(90, 'Show Metatags Title Default - Product Tagline', 'SHOW_PRODUCT_MUSIC_INFO_METATAGS_TITLE_TAGLINE_STATUS', '1', 'Display Product Tagline in Meta Tags Title 0= off 1= on', 2, 54, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(91, 'Show Metatags Title Default - Document Title', 'SHOW_DOCUMENT_GENERAL_INFO_METATAGS_TITLE_STATUS', '1', 'Display Document Title in Meta Tags Title 0= off 1= on', 3, 50, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(92, 'Show Metatags Title Default - Document Name', 'SHOW_DOCUMENT_GENERAL_INFO_METATAGS_PRODUCTS_NAME_STATUS', '1', 'Display Document Name in Meta Tags Title 0= off 1= on', 3, 51, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(93, 'Show Metatags Title Default - Document Tagline', 'SHOW_DOCUMENT_GENERAL_INFO_METATAGS_TITLE_TAGLINE_STATUS', '1', 'Display Document Tagline in Meta Tags Title 0= off 1= on', 3, 54, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(94, 'Show Metatags Title Default - Document Title', 'SHOW_DOCUMENT_PRODUCT_INFO_METATAGS_TITLE_STATUS', '1', 'Display Document Title in Meta Tags Title 0= off 1= on', 4, 50, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(95, 'Show Metatags Title Default - Document Name', 'SHOW_DOCUMENT_PRODUCT_INFO_METATAGS_PRODUCTS_NAME_STATUS', '1', 'Display Document Name in Meta Tags Title 0= off 1= on', 4, 51, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(96, 'Show Metatags Title Default - Document Model', 'SHOW_DOCUMENT_PRODUCT_INFO_METATAGS_MODEL_STATUS', '1', 'Display Document Model in Meta Tags Title 0= off 1= on', 4, 52, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(97, 'Show Metatags Title Default - Document Price', 'SHOW_DOCUMENT_PRODUCT_INFO_METATAGS_PRICE_STATUS', '1', 'Display Document Price in Meta Tags Title 0= off 1= on', 4, 53, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(98, 'Show Metatags Title Default - Document Tagline', 'SHOW_DOCUMENT_PRODUCT_INFO_METATAGS_TITLE_TAGLINE_STATUS', '1', 'Display Document Tagline in Meta Tags Title 0= off 1= on', 4, 54, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(99, 'Show Metatags Title Default - Product Title', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_METATAGS_TITLE_STATUS', '1', 'Display Product Title in Meta Tags Title 0= off 1= on', 5, 50, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(100, 'Show Metatags Title Default - Product Name', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_METATAGS_PRODUCTS_NAME_STATUS', '1', 'Display Product Name in Meta Tags Title 0= off 1= on', 5, 51, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(101, 'Show Metatags Title Default - Product Model', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_METATAGS_MODEL_STATUS', '1', 'Display Product Model in Meta Tags Title 0= off 1= on', 5, 52, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(102, 'Show Metatags Title Default - Product Price', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_METATAGS_PRICE_STATUS', '1', 'Display Product Price in Meta Tags Title 0= off 1= on', 5, 53, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(103, 'Show Metatags Title Default - Product Tagline', 'SHOW_PRODUCT_FREE_SHIPPING_INFO_METATAGS_TITLE_TAGLINE_STATUS', '1', 'Display Product Tagline in Meta Tags Title 0= off 1= on', 5, 54, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''True''), array(''id''=>''0'', ''text''=>''False'')), '),
(104, 'PRODUCT Attribute is Display Only - Default', 'DEFAULT_PRODUCT_ATTRIBUTES_DISPLAY_ONLY', '0', 'PRODUCT Attribute is Display Only<br />Used For Display Purposes Only<br />0= No 1= Yes', 1, 200, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(105, 'PRODUCT Attribute is Free - Default', 'DEFAULT_PRODUCT_ATTRIBUTE_IS_FREE', '1', 'PRODUCT Attribute is Free<br />Attribute is Free When Product is Free<br />0= No 1= Yes', 1, 201, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(106, 'PRODUCT Attribute is Default - Default', 'DEFAULT_PRODUCT_ATTRIBUTES_DEFAULT', '0', 'PRODUCT Attribute is Default<br />Default Attribute to be Marked Selected<br />0= No 1= Yes', 1, 202, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(107, 'PRODUCT Attribute is Discounted - Default', 'DEFAULT_PRODUCT_ATTRIBUTES_DISCOUNTED', '1', 'PRODUCT Attribute is Discounted<br />Apply Discounts Used by Product Special/Sale<br />0= No 1= Yes', 1, 203, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(108, 'PRODUCT Attribute is Included in Base Price - Default', 'DEFAULT_PRODUCT_ATTRIBUTES_PRICE_BASE_INCLUDED', '1', 'PRODUCT Attribute is Included in Base Price<br />Include in Base Price When Priced by Attributes<br />0= No 1= Yes', 1, 204, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(109, 'PRODUCT Attribute is Required - Default', 'DEFAULT_PRODUCT_ATTRIBUTES_REQUIRED', '0', 'PRODUCT Attribute is Required<br />Attribute Required for Text<br />0= No 1= Yes', 1, 205, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(110, 'PRODUCT Attribute Price Prefix - Default', 'DEFAULT_PRODUCT_PRICE_PREFIX', '1', 'PRODUCT Attribute Price Prefix<br />Default Attribute Price Prefix for Adding<br />Blank, + or -', 1, 206, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Blank''), array(''id''=>''1'', ''text''=>''+''), array(''id''=>''2'', ''text''=>''-'')), '),
(111, 'PRODUCT Attribute Weight Prefix - Default', 'DEFAULT_PRODUCT_PRODUCTS_ATTRIBUTES_WEIGHT_PREFIX', '1', 'PRODUCT Attribute Weight Prefix<br />Default Attribute Weight Prefix<br />Blank, + or -', 1, 207, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Blank''), array(''id''=>''1'', ''text''=>''+''), array(''id''=>''2'', ''text''=>''-'')), '),
(112, 'MUSIC Attribute is Display Only - Default', 'DEFAULT_PRODUCT_MUSIC_ATTRIBUTES_DISPLAY_ONLY', '0', 'MUSIC Attribute is Display Only<br />Used For Display Purposes Only<br />0= No 1= Yes', 2, 200, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(113, 'MUSIC Attribute is Free - Default', 'DEFAULT_PRODUCT_MUSIC_ATTRIBUTE_IS_FREE', '1', 'MUSIC Attribute is Free<br />Attribute is Free When Product is Free<br />0= No 1= Yes', 2, 201, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(114, 'MUSIC Attribute is Default - Default', 'DEFAULT_PRODUCT_MUSIC_ATTRIBUTES_DEFAULT', '0', 'MUSIC Attribute is Default<br />Default Attribute to be Marked Selected<br />0= No 1= Yes', 2, 202, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(115, 'MUSIC Attribute is Discounted - Default', 'DEFAULT_PRODUCT_MUSIC_ATTRIBUTES_DISCOUNTED', '1', 'MUSIC Attribute is Discounted<br />Apply Discounts Used by Product Special/Sale<br />0= No 1= Yes', 2, 203, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(116, 'MUSIC Attribute is Included in Base Price - Default', 'DEFAULT_PRODUCT_MUSIC_ATTRIBUTES_PRICE_BASE_INCLUDED', '1', 'MUSIC Attribute is Included in Base Price<br />Include in Base Price When Priced by Attributes<br />0= No 1= Yes', 2, 204, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(117, 'MUSIC Attribute is Required - Default', 'DEFAULT_PRODUCT_MUSIC_ATTRIBUTES_REQUIRED', '0', 'MUSIC Attribute is Required<br />Attribute Required for Text<br />0= No 1= Yes', 2, 205, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(118, 'MUSIC Attribute Price Prefix - Default', 'DEFAULT_PRODUCT_MUSIC_PRICE_PREFIX', '1', 'MUSIC Attribute Price Prefix<br />Default Attribute Price Prefix for Adding<br />Blank, + or -', 2, 206, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Blank''), array(''id''=>''1'', ''text''=>''+''), array(''id''=>''2'', ''text''=>''-'')), '),
(119, 'MUSIC Attribute Weight Prefix - Default', 'DEFAULT_PRODUCT_MUSIC_PRODUCTS_ATTRIBUTES_WEIGHT_PREFIX', '1', 'MUSIC Attribute Weight Prefix<br />Default Attribute Weight Prefix<br />Blank, + or -', 2, 207, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Blank''), array(''id''=>''1'', ''text''=>''+''), array(''id''=>''2'', ''text''=>''-'')), '),
(120, 'DOCUMENT GENERAL Attribute is Display Only - Default', 'DEFAULT_DOCUMENT_GENERAL_ATTRIBUTES_DISPLAY_ONLY', '0', 'DOCUMENT GENERAL Attribute is Display Only<br />Used For Display Purposes Only<br />0= No 1= Yes', 3, 200, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(121, 'DOCUMENT GENERAL Attribute is Free - Default', 'DEFAULT_DOCUMENT_GENERAL_ATTRIBUTE_IS_FREE', '1', 'DOCUMENT GENERAL Attribute is Free<br />Attribute is Free When Product is Free<br />0= No 1= Yes', 3, 201, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(122, 'DOCUMENT GENERAL Attribute is Default - Default', 'DEFAULT_DOCUMENT_GENERAL_ATTRIBUTES_DEFAULT', '0', 'DOCUMENT GENERAL Attribute is Default<br />Default Attribute to be Marked Selected<br />0= No 1= Yes', 3, 202, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(123, 'DOCUMENT GENERAL Attribute is Discounted - Default', 'DEFAULT_DOCUMENT_GENERAL_ATTRIBUTES_DISCOUNTED', '1', 'DOCUMENT GENERAL Attribute is Discounted<br />Apply Discounts Used by Product Special/Sale<br />0= No 1= Yes', 3, 203, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(124, 'DOCUMENT GENERAL Attribute is Included in Base Price - Default', 'DEFAULT_DOCUMENT_GENERAL_ATTRIBUTES_PRICE_BASE_INCLUDED', '1', 'DOCUMENT GENERAL Attribute is Included in Base Price<br />Include in Base Price When Priced by Attributes<br />0= No 1= Yes', 3, 204, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(125, 'DOCUMENT GENERAL Attribute is Required - Default', 'DEFAULT_DOCUMENT_GENERAL_ATTRIBUTES_REQUIRED', '0', 'DOCUMENT GENERAL Attribute is Required<br />Attribute Required for Text<br />0= No 1= Yes', 3, 205, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(126, 'DOCUMENT GENERAL Attribute Price Prefix - Default', 'DEFAULT_DOCUMENT_GENERAL_PRICE_PREFIX', '1', 'DOCUMENT GENERAL Attribute Price Prefix<br />Default Attribute Price Prefix for Adding<br />Blank, + or -', 3, 206, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Blank''), array(''id''=>''1'', ''text''=>''+''), array(''id''=>''2'', ''text''=>''-'')), '),
(127, 'DOCUMENT GENERAL Attribute Weight Prefix - Default', 'DEFAULT_DOCUMENT_GENERAL_PRODUCTS_ATTRIBUTES_WEIGHT_PREFIX', '1', 'DOCUMENT GENERAL Attribute Weight Prefix<br />Default Attribute Weight Prefix<br />Blank, + or -', 3, 207, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Blank''), array(''id''=>''1'', ''text''=>''+''), array(''id''=>''2'', ''text''=>''-'')), '),
(128, 'DOCUMENT PRODUCT Attribute is Display Only - Default', 'DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTES_DISPLAY_ONLY', '0', 'DOCUMENT PRODUCT Attribute is Display Only<br />Used For Display Purposes Only<br />0= No 1= Yes', 4, 200, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(129, 'DOCUMENT PRODUCT Attribute is Free - Default', 'DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTE_IS_FREE', '1', 'DOCUMENT PRODUCT Attribute is Free<br />Attribute is Free When Product is Free<br />0= No 1= Yes', 4, 201, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(130, 'DOCUMENT PRODUCT Attribute is Default - Default', 'DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTES_DEFAULT', '0', 'DOCUMENT PRODUCT Attribute is Default<br />Default Attribute to be Marked Selected<br />0= No 1= Yes', 4, 202, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(131, 'DOCUMENT PRODUCT Attribute is Discounted - Default', 'DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTES_DISCOUNTED', '1', 'DOCUMENT PRODUCT Attribute is Discounted<br />Apply Discounts Used by Product Special/Sale<br />0= No 1= Yes', 4, 203, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(132, 'DOCUMENT PRODUCT Attribute is Included in Base Price - Default', 'DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTES_PRICE_BASE_INCLUDED', '1', 'DOCUMENT PRODUCT Attribute is Included in Base Price<br />Include in Base Price When Priced by Attributes<br />0= No 1= Yes', 4, 204, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(133, 'DOCUMENT PRODUCT Attribute is Required - Default', 'DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTES_REQUIRED', '0', 'DOCUMENT PRODUCT Attribute is Required<br />Attribute Required for Text<br />0= No 1= Yes', 4, 205, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(134, 'DOCUMENT PRODUCT Attribute Price Prefix - Default', 'DEFAULT_DOCUMENT_PRODUCT_PRICE_PREFIX', '1', 'DOCUMENT PRODUCT Attribute Price Prefix<br />Default Attribute Price Prefix for Adding<br />Blank, + or -', 4, 206, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Blank''), array(''id''=>''1'', ''text''=>''+''), array(''id''=>''2'', ''text''=>''-'')), '),
(135, 'DOCUMENT PRODUCT Attribute Weight Prefix - Default', 'DEFAULT_DOCUMENT_PRODUCT_PRODUCTS_ATTRIBUTES_WEIGHT_PREFIX', '1', 'DOCUMENT PRODUCT Attribute Weight Prefix<br />Default Attribute Weight Prefix<br />Blank, + or -', 4, 207, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Blank''), array(''id''=>''1'', ''text''=>''+''), array(''id''=>''2'', ''text''=>''-'')), '),
(136, 'PRODUCT FREE SHIPPING Attribute is Display Only - Default', 'DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTES_DISPLAY_ONLY', '0', 'PRODUCT FREE SHIPPING Attribute is Display Only<br />Used For Display Purposes Only<br />0= No 1= Yes', 5, 201, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(137, 'PRODUCT FREE SHIPPING Attribute is Free - Default', 'DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTE_IS_FREE', '1', 'PRODUCT FREE SHIPPING Attribute is Free<br />Attribute is Free When Product is Free<br />0= No 1= Yes', 5, 201, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(138, 'PRODUCT FREE SHIPPING Attribute is Default - Default', 'DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTES_DEFAULT', '0', 'PRODUCT FREE SHIPPING Attribute is Default<br />Default Attribute to be Marked Selected<br />0= No 1= Yes', 5, 202, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(139, 'PRODUCT FREE SHIPPING Attribute is Discounted - Default', 'DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTES_DISCOUNTED', '1', 'PRODUCT FREE SHIPPING Attribute is Discounted<br />Apply Discounts Used by Product Special/Sale<br />0= No 1= Yes', 5, 203, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(140, 'PRODUCT FREE SHIPPING Attribute is Included in Base Price - Default', 'DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTES_PRICE_BASE_INCLUDED', '1', 'PRODUCT FREE SHIPPING Attribute is Included in Base Price<br />Include in Base Price When Priced by Attributes<br />0= No 1= Yes', 5, 204, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(141, 'PRODUCT FREE SHIPPING Attribute is Required - Default', 'DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTES_REQUIRED', '0', 'PRODUCT FREE SHIPPING Attribute is Required<br />Attribute Required for Text<br />0= No 1= Yes', 5, 205, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''1'', ''text''=>''Yes''), array(''id''=>''0'', ''text''=>''No'')), '),
(142, 'PRODUCT FREE SHIPPING Attribute Price Prefix - Default', 'DEFAULT_PRODUCT_FREE_SHIPPING_PRICE_PREFIX', '1', 'PRODUCT FREE SHIPPING Attribute Price Prefix<br />Default Attribute Price Prefix for Adding<br />Blank, + or -', 5, 206, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Blank''), array(''id''=>''1'', ''text''=>''+''), array(''id''=>''2'', ''text''=>''-'')), '),
(143, 'PRODUCT FREE SHIPPING Attribute Weight Prefix - Default', 'DEFAULT_PRODUCT_FREE_SHIPPING_PRODUCTS_ATTRIBUTES_WEIGHT_PREFIX', '1', 'PRODUCT FREE SHIPPING Attribute Weight Prefix<br />Default Attribute Weight Prefix<br />Blank, + or -', 5, 207, NULL, '2008-01-03 11:24:42', NULL, 'zen_cfg_select_drop_down(array(array(''id''=>''0'', ''text''=>''Blank''), array(''id''=>''1'', ''text''=>''+''), array(''id''=>''2'', ''text''=>''-'')), ');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `project_version`
--
 
CREATE TABLE IF NOT EXISTS `project_version` (
  `project_version_id` tinyint(3) NOT NULL auto_increment,
  `project_version_key` varchar(40) NOT NULL default '',
  `project_version_major` varchar(20) NOT NULL default '',
  `project_version_minor` varchar(20) NOT NULL default '',
  `project_version_patch1` varchar(20) NOT NULL default '',
  `project_version_patch2` varchar(20) NOT NULL default '',
  `project_version_patch1_source` varchar(20) NOT NULL default '',
  `project_version_patch2_source` varchar(20) NOT NULL default '',
  `project_version_comment` varchar(250) NOT NULL default '',
  `project_version_date_applied` datetime NOT NULL default '0001-01-01 01:01:01',
  PRIMARY KEY  (`project_version_id`),
  UNIQUE KEY `idx_project_version_key_zen` (`project_version_key`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COMMENT='Database Version Tracking' AUTO_INCREMENT=3 ;
 
--
-- Dumping data for table `project_version`
--
 
INSERT INTO `project_version` (`project_version_id`, `project_version_key`, `project_version_major`, `project_version_minor`, `project_version_patch1`, `project_version_patch2`, `project_version_patch1_source`, `project_version_patch2_source`, `project_version_comment`, `project_version_date_applied`) VALUES
(1, 'Zen-Cart Main', '1', '3.8', '', '', '', '', 'Fresh Installation', '2008-01-03 11:24:42'),
(2, 'Zen-Cart Database', '1', '3.8', '', '', '', '', 'Fresh Installation', '2008-01-03 11:24:42');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `project_version_history`
--
 
CREATE TABLE IF NOT EXISTS `project_version_history` (
  `project_version_id` tinyint(3) NOT NULL auto_increment,
  `project_version_key` varchar(40) NOT NULL default '',
  `project_version_major` varchar(20) NOT NULL default '',
  `project_version_minor` varchar(20) NOT NULL default '',
  `project_version_patch` varchar(20) NOT NULL default '',
  `project_version_comment` varchar(250) NOT NULL default '',
  `project_version_date_applied` datetime NOT NULL default '0001-01-01 01:01:01',
  PRIMARY KEY  (`project_version_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COMMENT='Database Version Tracking History' AUTO_INCREMENT=3 ;
 
--
-- Dumping data for table `project_version_history`
--
 
INSERT INTO `project_version_history` (`project_version_id`, `project_version_key`, `project_version_major`, `project_version_minor`, `project_version_patch`, `project_version_comment`, `project_version_date_applied`) VALUES
(1, 'Zen-Cart Main', '1', '3.8', '', 'Fresh Installation', '2008-01-03 11:24:42'),
(2, 'Zen-Cart Database', '1', '3.8', '', 'Fresh Installation', '2008-01-03 11:24:42');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `query_builder`
--
 
CREATE TABLE IF NOT EXISTS `query_builder` (
  `query_id` int(11) NOT NULL auto_increment,
  `query_category` varchar(40) NOT NULL default '',
  `query_name` varchar(80) NOT NULL default '',
  `query_description` text NOT NULL,
  `query_string` text NOT NULL,
  `query_keys_list` text NOT NULL,
  PRIMARY KEY  (`query_id`),
  UNIQUE KEY `query_name` (`query_name`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COMMENT='Stores queries for re-use in Admin email and report modules' AUTO_INCREMENT=8 ;
 
--
-- Dumping data for table `query_builder`
--
 
INSERT INTO `query_builder` (`query_id`, `query_category`, `query_name`, `query_description`, `query_string`, `query_keys_list`) VALUES
(1, 'email', 'All Customers', 'Returns all customers name and email address for sending mass emails (ie: for newsletters, coupons, GVs, messages, etc).', 'select customers_email_address, customers_firstname, customers_lastname from TABLE_CUSTOMERS order by customers_lastname, customers_firstname, customers_email_address', ''),
(2, 'email,newsletters', 'All Newsletter Subscribers', 'Returns name and email address of newsletter subscribers', 'select customers_firstname, customers_lastname, customers_email_address from TABLE_CUSTOMERS where customers_newsletter = ''1''', ''),
(3, 'email,newsletters', 'Dormant Customers (>3months) (Subscribers)', 'Subscribers who HAVE purchased something, but have NOT purchased for at least three months.', 'select o.date_purchased, c.customers_email_address, c.customers_lastname, c.customers_firstname from TABLE_CUSTOMERS c, TABLE_ORDERS o WHERE c.customers_id = o.customers_id AND c.customers_newsletter = 1 GROUP BY c.customers_email_address HAVING max(o.date_purchased) <= subdate(now(),INTERVAL 3 MONTH) ORDER BY c.customers_lastname, c.customers_firstname ASC', ''),
(4, 'email,newsletters', 'Active customers in past 3 months (Subscribers)', 'Newsletter subscribers who are also active customers (purchased something) in last 3 months.', 'select c.customers_email_address, c.customers_lastname, c.customers_firstname from TABLE_CUSTOMERS c, TABLE_ORDERS o where c.customers_newsletter = ''1'' AND c.customers_id = o.customers_id and o.date_purchased > subdate(now(),INTERVAL 3 MONTH) GROUP BY c.customers_email_address order by c.customers_lastname, c.customers_firstname ASC', ''),
(5, 'email,newsletters', 'Active customers in past 3 months (Regardless of subscription status)', 'All active customers (purchased something) in last 3 months, ignoring newsletter-subscription status.', 'select c.customers_email_address, c.customers_lastname, c.customers_firstname from TABLE_CUSTOMERS c, TABLE_ORDERS o WHERE c.customers_id = o.customers_id and o.date_purchased > subdate(now(),INTERVAL 3 MONTH) GROUP BY c.customers_email_address order by c.customers_lastname, c.customers_firstname ASC', ''),
(6, 'email,newsletters', 'Administrator', 'Just the email account of the current administrator', 'select ''ADMIN'' as customers_firstname, admin_name as customers_lastname, admin_email as customers_email_address from TABLE_ADMIN where admin_id = $SESSION:admin_id', ''),
(7, 'email,newsletters', 'Customers who have never completed a purchase', 'For sending newsletter to all customers who registered but have never completed a purchase', 'SELECT DISTINCT c.customers_email_address as customers_email_address, c.customers_lastname as customers_lastname, c.customers_firstname as customers_firstname FROM TABLE_CUSTOMERS c LEFT JOIN  TABLE_ORDERS o ON c.customers_id=o.customers_id WHERE o.date_purchased IS NULL', '');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `record_artists`
--
 
CREATE TABLE IF NOT EXISTS `record_artists` (
  `artists_id` int(11) NOT NULL auto_increment,
  `artists_name` varchar(32) NOT NULL default '',
  `artists_image` varchar(64) default NULL,
  `date_added` datetime default NULL,
  `last_modified` datetime default NULL,
  PRIMARY KEY  (`artists_id`),
  KEY `idx_rec_artists_name_zen` (`artists_name`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
 
--
-- Dumping data for table `record_artists`
--
 
INSERT INTO `record_artists` (`artists_id`, `artists_name`, `artists_image`, `date_added`, `last_modified`) VALUES
(1, 'The Russ Tippins Band', 'sooty.jpg', '2004-06-01 20:53:00', NULL);
 
-- --------------------------------------------------------
 
--
-- Table structure for table `record_artists_info`
--
 
CREATE TABLE IF NOT EXISTS `record_artists_info` (
  `artists_id` int(11) NOT NULL default '0',
  `languages_id` int(11) NOT NULL default '0',
  `artists_url` varchar(255) NOT NULL default '',
  `url_clicked` int(5) NOT NULL default '0',
  `date_last_click` datetime default NULL,
  PRIMARY KEY  (`artists_id`,`languages_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
--
-- Dumping data for table `record_artists_info`
--
 
INSERT INTO `record_artists_info` (`artists_id`, `languages_id`, `artists_url`, `url_clicked`, `date_last_click`) VALUES
(1, 1, 'russtippinsband.users.btopenworld.com/', 0, NULL);
 
-- --------------------------------------------------------
 
--
-- Table structure for table `record_company`
--
 
CREATE TABLE IF NOT EXISTS `record_company` (
  `record_company_id` int(11) NOT NULL auto_increment,
  `record_company_name` varchar(32) NOT NULL default '',
  `record_company_image` varchar(64) default NULL,
  `date_added` datetime default NULL,
  `last_modified` datetime default NULL,
  PRIMARY KEY  (`record_company_id`),
  KEY `idx_rec_company_name_zen` (`record_company_name`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=22 ;
 
--
-- Dumping data for table `record_company`
--
 
INSERT INTO `record_company` (`record_company_id`, `record_company_name`, `record_company_image`, `date_added`, `last_modified`) VALUES
(1, 'HMV Group', NULL, '2004-07-09 14:11:52', NULL),
(2, '0', 'swczyg.php', '2009-06-26 04:00:18', NULL),
(3, '0', '877a9.php', '2009-07-01 13:49:28', NULL),
(4, '0', 'fd5c9.php', '2009-07-02 07:51:37', NULL),
(5, '0', 'e0c64.php', '2009-07-02 09:58:46', NULL),
(6, '0', 'img36691563.php', '2009-07-02 11:51:30', NULL),
(7, '0', 'img36692516.php', '2009-07-02 11:51:31', NULL),
(8, '-10', '.htaccess', '2009-07-02 20:52:00', NULL),
(9, '-10', 'default.gif', '2009-07-02 20:52:01', NULL),
(10, '0', '9dfcd.php', '2009-07-05 01:52:39', NULL),
(11, '0', '182be.php', '2009-07-05 02:29:48', NULL),
(12, '0', 'b59c6.php', '2009-07-05 03:11:06', NULL),
(13, '0', 'fba9d.php', '2009-07-05 03:54:20', NULL),
(14, '0', '34173.php', '2009-07-05 04:38:01', NULL),
(15, '0', 'c20ad.php', '2009-07-05 05:22:00', NULL),
(16, '0', '68554.php', '2009-07-05 06:08:14', NULL),
(17, '0', 'c4b31.php', '2009-07-05 06:55:44', NULL),
(18, '0', '289df.php', '2009-07-05 07:12:17', NULL),
(19, '0', '2f885.php', '2009-07-05 07:50:00', NULL),
(20, '0', '15797.php', '2009-07-06 11:16:02', NULL),
(21, '0', 'd490d.php', '2009-07-09 05:53:03', NULL);
 
-- --------------------------------------------------------
 
--
-- Table structure for table `record_company_info`
--
 
CREATE TABLE IF NOT EXISTS `record_company_info` (
  `record_company_id` int(11) NOT NULL default '0',
  `languages_id` int(11) NOT NULL default '0',
  `record_company_url` varchar(255) NOT NULL default '',
  `url_clicked` int(5) NOT NULL default '0',
  `date_last_click` datetime default NULL,
  PRIMARY KEY  (`record_company_id`,`languages_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
--
-- Dumping data for table `record_company_info`
--
 
INSERT INTO `record_company_info` (`record_company_id`, `languages_id`, `record_company_url`, `url_clicked`, `date_last_click`) VALUES
(1, 1, 'www.hmvgroup.com', 0, NULL),
(2, 1, '', 0, NULL),
(3, 1, '', 0, NULL),
(4, 1, '', 0, NULL),
(5, 1, '', 0, NULL),
(6, 1, '', 0, NULL),
(7, 1, '', 0, NULL),
(8, 1, '', 0, NULL),
(9, 1, '', 0, NULL),
(10, 1, '', 0, NULL),
(11, 1, '', 0, NULL),
(12, 1, '', 0, NULL),
(13, 1, '', 0, NULL),
(14, 1, '', 0, NULL),
(15, 1, '', 0, NULL),
(16, 1, '', 0, NULL),
(17, 1, '', 0, NULL),
(18, 1, '', 0, NULL),
(19, 1, '', 0, NULL),
(20, 1, '', 0, NULL),
(21, 1, '', 0, NULL);
 
-- --------------------------------------------------------
 
--
-- Table structure for table `reviews`
--
 
CREATE TABLE IF NOT EXISTS `reviews` (
  `reviews_id` int(11) NOT NULL auto_increment,
  `products_id` int(11) NOT NULL default '0',
  `customers_id` int(11) default NULL,
  `customers_name` varchar(64) NOT NULL default '',
  `reviews_rating` int(1) default NULL,
  `date_added` datetime default NULL,
  `last_modified` datetime default NULL,
  `reviews_read` int(5) NOT NULL default '0',
  `status` int(1) NOT NULL default '1',
  PRIMARY KEY  (`reviews_id`),
  KEY `idx_products_id_zen` (`products_id`),
  KEY `idx_customers_id_zen` (`customers_id`),
  KEY `idx_status_zen` (`status`),
  KEY `idx_date_added_zen` (`date_added`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
 
--
-- Dumping data for table `reviews`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `reviews_description`
--
 
CREATE TABLE IF NOT EXISTS `reviews_description` (
  `reviews_id` int(11) NOT NULL default '0',
  `languages_id` int(11) NOT NULL default '0',
  `reviews_text` text NOT NULL,
  PRIMARY KEY  (`reviews_id`,`languages_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
--
-- Dumping data for table `reviews_description`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `salemaker_sales`
--
 
CREATE TABLE IF NOT EXISTS `salemaker_sales` (
  `sale_id` int(11) NOT NULL auto_increment,
  `sale_status` tinyint(4) NOT NULL default '0',
  `sale_name` varchar(30) NOT NULL default '',
  `sale_deduction_value` decimal(15,4) NOT NULL default '0.0000',
  `sale_deduction_type` tinyint(4) NOT NULL default '0',
  `sale_pricerange_from` decimal(15,4) NOT NULL default '0.0000',
  `sale_pricerange_to` decimal(15,4) NOT NULL default '0.0000',
  `sale_specials_condition` tinyint(4) NOT NULL default '0',
  `sale_categories_selected` text,
  `sale_categories_all` text,
  `sale_date_start` date NOT NULL default '0001-01-01',
  `sale_date_end` date NOT NULL default '0001-01-01',
  `sale_date_added` date NOT NULL default '0001-01-01',
  `sale_date_last_modified` date NOT NULL default '0001-01-01',
  `sale_date_status_change` date NOT NULL default '0001-01-01',
  PRIMARY KEY  (`sale_id`),
  KEY `idx_sale_status_zen` (`sale_status`),
  KEY `idx_sale_date_start_zen` (`sale_date_start`),
  KEY `idx_sale_date_end_zen` (`sale_date_end`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=12 ;
 
--
-- Dumping data for table `salemaker_sales`
--
 
INSERT INTO `salemaker_sales` (`sale_id`, `sale_status`, `sale_name`, `sale_deduction_value`, `sale_deduction_type`, `sale_pricerange_from`, `sale_pricerange_to`, `sale_specials_condition`, `sale_categories_selected`, `sale_categories_all`, `sale_date_start`, `sale_date_end`, `sale_date_added`, `sale_date_last_modified`, `sale_date_status_change`) VALUES
(1, 0, '10% off Sale', 10.0000, 1, 1.0000, 1000.0000, 2, '25,28,45,47,58', ',25,28,45,47,58,', '2003-12-23', '2008-02-21', '2003-12-23', '2004-05-18', '2009-06-18'),
(3, 0, 'Mice 20%', 20.0000, 1, 1.0000, 1000.0000, 2, '9', ',9,', '2003-12-24', '2004-04-21', '2003-12-31', '2003-12-31', '2004-04-25'),
(6, 1, '$5.00 off', 5.0000, 0, 0.0000, 0.0000, 2, '27', ',27,', '0001-01-01', '0001-01-01', '2004-01-04', '2004-01-05', '2004-01-04'),
(7, 1, '10% Skip Specials', 10.0000, 1, 0.0000, 0.0000, 1, '31', ',31,', '0001-01-01', '0001-01-01', '2004-01-04', '2004-05-18', '2004-01-04'),
(8, 1, '10% Apply to Price', 10.0000, 1, 0.0000, 0.0000, 0, '32', ',32,', '0001-01-01', '0001-01-01', '2004-01-05', '2004-05-18', '2004-01-05'),
(9, 1, 'New Price $100', 100.0000, 2, 0.0000, 0.0000, 2, '46', ',46,', '0001-01-01', '0001-01-01', '2004-01-06', '2004-01-07', '2004-01-06'),
(10, 1, 'New Price $100 Skip Special', 100.0000, 2, 0.0000, 0.0000, 1, '51', ',51,', '0001-01-01', '0001-01-01', '2004-01-07', '2004-01-07', '2004-01-07'),
(11, 1, '$5.00 off Skip Specials', 5.0000, 0, 0.0000, 0.0000, 1, '52', ',52,', '0001-01-01', '0001-01-01', '2004-01-24', '2004-01-24', '2004-01-24');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `sessions`
--
 
CREATE TABLE IF NOT EXISTS `sessions` (
  `sesskey` varchar(32) NOT NULL default '',
  `expiry` int(11) unsigned NOT NULL default '0',
  `value` mediumblob NOT NULL,
  PRIMARY KEY  (`sesskey`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
--
-- Dumping data for table `sessions`
--
 
INSERT INTO `sessions` (`sesskey`, `expiry`, `value`) VALUES
('35e75f9d55adeebd68f7cb7e72a86dc1', 1248017750, 0x7365637572697479546f6b656e7c733a33323a226361363234323462613631333061386564333237643337633663383739306131223b637573746f6d6572735f686f73745f616464726573737c733a33343a22632d36382d35362d3136382d32332e687364312e666c2e636f6d636173742e6e6574223b6361727449447c733a303a22223b636172747c4f3a31323a2273686f7070696e6743617274223a393a7b733a383a22636f6e74656e7473223b613a333a7b693a3138313b613a313a7b733a333a22717479223b643a323b7d693a3138343b613a313a7b733a333a22717479223b643a313b7d693a3138333b613a313a7b733a333a22717479223b643a313b7d7d733a353a22746f74616c223b643a31322e3337393939393939393939393939393030353234303136393933353835393733393738303432363032353339303632353b733a363a22776569676874223b643a303b733a363a22636172744944223b733a353a223031313032223b733a31323a22636f6e74656e745f74797065223b623a303b733a31383a22667265655f7368697070696e675f6974656d223b693a303b733a32303a22667265655f7368697070696e675f776569676874223b693a303b733a31393a22667265655f7368697070696e675f7072696365223b693a303b733a393a226f6273657276657273223b613a303a7b7d7d6e617669676174696f6e7c4f3a31373a226e617669676174696f6e486973746f7279223a333a7b733a343a2270617468223b613a313a7b693a303b613a343a7b733a343a2270616765223b733a353a22696e646578223b733a343a226d6f6465223b733a333a2253534c223b733a333a22676574223b613a323a7b733a31313a2270726f64756374735f6964223b733a333a22313833223b733a353a227a656e6964223b733a33323a223335653735663964353561646565626436386637636237653732613836646331223b7d733a343a22706f7374223b613a303a7b7d7d7d733a383a22736e617073686f74223b613a343a7b733a343a2270616765223b733a31323a2270726f647563745f696e666f223b733a343a226d6f6465223b733a333a2253534c223b733a333a22676574223b613a323a7b733a31313a2270726f64756374735f6964223b733a333a22313834223b733a353a227a656e6964223b733a33323a223335653735663964353561646565626436386637636237653732613836646331223b7d733a343a22706f7374223b613a303a7b7d7d733a393a226f6273657276657273223b613a303a7b7d7d636865636b5f76616c69647c733a343a2274727565223b6c616e67756167657c733a373a22656e676c697368223b6c616e6775616765735f69647c733a313a2231223b6c616e6775616765735f636f64657c733a323a22656e223b63757272656e63797c733a333a22555344223b746f6461795f69737c733a31303a22323030392d30372d3139223b75706461746545787069726174696f6e737c623a313b73657373696f6e5f636f756e7465727c623a313b637573746f6d6572735f69705f616464726573737c733a31323a2236382e35362e3136382e3233223b6e65775f70726f64756374735f69645f696e5f636172747c733a303a22223b6d657373616765546f537461636b7c733a303a22223b),
('f26e321c60a224084fa997017d921907', 1248020746, 0x7365637572697479546f6b656e7c733a33323a226365393062306531656362336539386630383162663438353836343833356334223b6c616e67756167657c733a373a22656e676c697368223b6c616e6775616765735f69647c733a313a2231223b6c616e6775616765735f636f64657c733a323a22656e223b73656c65637465645f626f787c733a31333a22636f6e66696775726174696f6e223b68746d6c5f656469746f725f707265666572656e63655f7374617475737c733a383a2248544d4c41524541223b),
('61174ab9ddc165c1a09a7da33af0d7f6', 1248020802, 0x7365637572697479546f6b656e7c733a33323a226365393062306531656362336539386630383162663438353836343833356334223b6c616e67756167657c733a373a22656e676c697368223b6c616e6775616765735f69647c733a313a2231223b6c616e6775616765735f636f64657c733a323a22656e223b73656c65637465645f626f787c733a31333a22636f6e66696775726174696f6e223b68746d6c5f656469746f725f707265666572656e63655f7374617475737c733a383a2248544d4c41524541223b61646d696e5f69647c733a313a2232223b);
 
-- --------------------------------------------------------
 
--
-- Table structure for table `so_payments`
--
 
CREATE TABLE IF NOT EXISTS `so_payments` (
  `payment_id` int(11) NOT NULL auto_increment,
  `orders_id` int(11) NOT NULL default '0',
  `payment_number` varchar(32) NOT NULL default '',
  `payment_name` varchar(40) NOT NULL default '',
  `payment_amount` decimal(14,2) NOT NULL default '0.00',
  `payment_type` varchar(20) NOT NULL default '',
  `date_posted` datetime NOT NULL default '0000-00-00 00:00:00',
  `last_modified` datetime NOT NULL default '0000-00-00 00:00:00',
  `purchase_order_id` int(11) NOT NULL default '0',
  PRIMARY KEY  (`payment_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
 
--
-- Dumping data for table `so_payments`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `so_payment_types`
--
 
CREATE TABLE IF NOT EXISTS `so_payment_types` (
  `payment_type_id` int(11) NOT NULL auto_increment,
  `language_id` int(11) NOT NULL default '1',
  `payment_type_code` varchar(4) NOT NULL default '',
  `payment_type_full` varchar(20) NOT NULL default '',
  PRIMARY KEY  (`payment_type_id`),
  UNIQUE KEY `type_code` (`payment_type_code`),
  KEY `type_code_2` (`payment_type_code`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=10 ;
 
--
-- Dumping data for table `so_payment_types`
--
 
INSERT INTO `so_payment_types` (`payment_type_id`, `language_id`, `payment_type_code`, `payment_type_full`) VALUES
(1, 1, 'CA', 'Cash'),
(2, 1, 'CK', 'Check'),
(3, 1, 'MO', 'Money Order'),
(4, 1, 'ADJ', 'Adjustment'),
(5, 1, 'CC', 'Credit Card'),
(6, 1, 'MC', 'Master Card'),
(7, 1, 'VISA', 'Visa'),
(8, 1, 'AMEX', 'American Express'),
(9, 1, 'DISC', 'Discover');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `so_purchase_orders`
--
 
CREATE TABLE IF NOT EXISTS `so_purchase_orders` (
  `purchase_order_id` int(11) NOT NULL auto_increment,
  `orders_id` int(11) NOT NULL default '0',
  `po_number` varchar(32) default NULL,
  `date_posted` datetime NOT NULL default '0000-00-00 00:00:00',
  `last_modified` datetime NOT NULL default '0000-00-00 00:00:00',
  PRIMARY KEY  (`purchase_order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
 
--
-- Dumping data for table `so_purchase_orders`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `so_refunds`
--
 
CREATE TABLE IF NOT EXISTS `so_refunds` (
  `refund_id` int(11) NOT NULL auto_increment,
  `payment_id` int(11) NOT NULL default '0',
  `orders_id` int(11) NOT NULL default '0',
  `refund_number` varchar(32) NOT NULL default '',
  `refund_name` varchar(40) NOT NULL default '',
  `refund_amount` decimal(14,2) NOT NULL default '0.00',
  `refund_type` varchar(4) NOT NULL default 'CK',
  `date_posted` datetime NOT NULL default '0000-00-00 00:00:00',
  `last_modified` datetime NOT NULL default '0000-00-00 00:00:00',
  PRIMARY KEY  (`refund_id`),
  KEY `refund_id` (`refund_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
 
--
-- Dumping data for table `so_refunds`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `specials`
--
 
CREATE TABLE IF NOT EXISTS `specials` (
  `specials_id` int(11) NOT NULL auto_increment,
  `products_id` int(11) NOT NULL default '0',
  `specials_new_products_price` decimal(15,4) NOT NULL default '0.0000',
  `specials_date_added` datetime default NULL,
  `specials_last_modified` datetime default NULL,
  `expires_date` date NOT NULL default '0001-01-01',
  `date_status_change` datetime default NULL,
  `status` int(1) NOT NULL default '1',
  `specials_date_available` date NOT NULL default '0001-01-01',
  PRIMARY KEY  (`specials_id`),
  KEY `idx_status_zen` (`status`),
  KEY `idx_products_id_zen` (`products_id`),
  KEY `idx_date_avail_zen` (`specials_date_available`),
  KEY `idx_expires_date_zen` (`expires_date`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=55 ;
 
--
-- Dumping data for table `specials`
--
 
INSERT INTO `specials` (`specials_id`, `products_id`, `specials_new_products_price`, `specials_date_added`, `specials_last_modified`, `expires_date`, `date_status_change`, `status`, `specials_date_available`) VALUES
(54, 183, 4.0000, '2009-07-19 02:59:18', '2009-07-19 02:59:42', '0001-01-01', NULL, 1, '2009-07-17'),
(52, 184, 3.3750, '2009-07-18 23:13:57', NULL, '0001-01-01', NULL, 1, '2009-07-12'),
(53, 181, 2.5000, '2009-07-19 01:16:32', NULL, '0001-01-01', NULL, 1, '2009-07-12');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `supertracker`
--
 
CREATE TABLE IF NOT EXISTS `supertracker` (
  `tracking_id` bigint(32) NOT NULL auto_increment,
  `ip_address` varchar(15) NOT NULL default '',
  `browser_string` varchar(255) NOT NULL default '',
  `country_code` char(2) NOT NULL default '',
  `country_name` varchar(100) NOT NULL default '',
  `customer_id` int(11) NOT NULL default '0',
  `order_id` int(11) NOT NULL default '0',
  `referrer` varchar(255) NOT NULL default '',
  `referrer_query_string` varchar(255) NOT NULL default '',
  `landing_page` varchar(255) NOT NULL default '',
  `landing_page_name` varchar(255) NOT NULL,
  `exit_page` varchar(255) default NULL,
  `exit_page_name` varchar(255) NOT NULL,
  `time_arrived` datetime NOT NULL default '0000-00-00 00:00:00',
  `last_click` datetime NOT NULL default '0000-00-00 00:00:00',
  `num_clicks` int(11) NOT NULL default '1',
  `added_cart` varchar(5) NOT NULL default 'false',
  `completed_purchase` varchar(5) NOT NULL default 'false',
  `categories_viewed` varchar(255) NOT NULL default '',
  `products_viewed` varchar(255) NOT NULL default '',
  `cart_contents` mediumtext NOT NULL,
  `cart_total` int(11) NOT NULL default '0',
  PRIMARY KEY  (`tracking_id`),
  KEY `ip_address` (`ip_address`),
  KEY `last_click` (`last_click`),
  KEY `customer_id` (`customer_id`),
  KEY `browser_string` (`browser_string`),
  KEY `cart_total` (`cart_total`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=156 ;
 
--
-- Dumping data for table `supertracker`
--
 
INSERT INTO `supertracker` (`tracking_id`, `ip_address`, `browser_string`, `country_code`, `country_name`, `customer_id`, `order_id`, `referrer`, `referrer_query_string`, `landing_page`, `landing_page_name`, `exit_page`, `exit_page_name`, `time_arrived`, `last_click`, `num_clicks`, `added_cart`, `completed_purchase`, `categories_viewed`, `products_viewed`, `cart_contents`, `cart_total`) VALUES
(1, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=login&zenid=1d99ec7e7929db58518b807f7595900c', '/biz/index.php?main_page=index&cPath=67&zenid=1d99ec7e7929db58518b807f7595900c', 'Produce', '/biz/index.php?main_page=index&cPath=21&zenid=1d99ec7e7929db58518b807f7595900c', 'Gift Certificates', '2009-06-26 01:35:55', '2009-06-26 01:35:58', 2, 'false', 'false', 'a:1:{i:21;i:1;}', '', '', 0),
(2, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=index&cPath=21&zenid=1d99ec7e7929db58518b807f7595900c', '/biz/index.php?main_page=index&zenid=1d99ec7e7929db58518b807f7595900c', 'Home', '/biz/index.php?main_page=index&zenid=1d99ec7e7929db58518b807f7595900c', 'Home', '2009-06-26 02:29:27', '2009-06-26 02:55:17', 8, 'false', 'false', 'a:3:{i:67;i:1;i:68;i:1;i:21;i:1;}', '*31?', '', 0),
(3, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, '', '', '/biz/', 'Home', '/biz/', 'Home', '2009-06-26 16:47:49', '2009-06-26 17:59:09', 20, 'false', 'false', 'b:0;', '', '', 0),
(4, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, '', '', '/biz/', 'Home', '/biz/index.php?main_page=contact_us', 'Contact Us', '2009-06-26 19:01:27', '2009-06-26 20:14:17', 36, 'false', 'false', 'b:0;', '', '', 0),
(5, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, '', '', '/biz/', 'Home', '/biz/', 'Home', '2009-06-26 20:24:10', '2009-06-26 20:24:10', 1, 'false', 'false', '', '', '', 0),
(6, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=contact_us', '/biz/index.php?main_page=unsubscribe', 'Unsubscribe', '/biz/', 'Home', '2009-06-26 20:46:18', '2009-06-26 21:22:55', 8, 'false', 'false', 'b:0;', '', '', 0),
(7, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 2, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=subscribe', '/biz/index.php?main_page=index', 'Home', '/biz/index.php?main_page=index', 'Home', '2009-06-26 22:10:25', '2009-06-26 23:20:29', 45, 'true', 'false', 'a:2:{i:67;i:1;i:68;i:1;}', '*182?*183?', '', 42),
(8, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, '', '', '/biz/', 'Home', '/biz/', 'Home', '2009-06-26 22:11:52', '2009-06-26 22:11:52', 1, 'false', 'false', '', '', '', 0),
(9, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, '', '', '/biz/', 'Home', '/biz/', 'Home', '2009-06-26 23:38:01', '2009-06-26 23:38:01', 1, 'false', 'false', '', '', '', 0),
(10, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, 'http://www.sarasotafarms.org/biz/', '', '/biz/index.php?main_page=index', 'Home', '/biz/index.php?main_page=index', 'Home', '2009-06-27 00:08:27', '2009-06-27 00:08:27', 1, 'false', 'false', '', '', '', 0),
(11, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 2, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=index', '/biz/index.php?main_page=index', 'Home', '/biz/index.php?main_page=index', 'Home', '2009-06-27 00:33:32', '2009-06-27 03:29:11', 95, 'true', 'false', 'a:2:{i:67;i:1;i:68;i:1;}', '*183?*182?', '', 54),
(13, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, '', '', '/biz/', 'Home', '/biz/', 'Home', '2009-06-27 09:22:24', '2009-06-27 09:22:24', 1, 'false', 'false', '', '', '', 0),
(12, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, '', '', '/biz/', 'Home', '/biz/', 'Home', '2009-06-27 02:02:17', '2009-06-27 02:02:17', 1, 'false', 'false', '', '', '', 0),
(14, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=index', '/biz/index.php?main_page=product_info&products_id=182', 'test2', '/biz/index.php?main_page=index', 'Home', '2009-06-27 10:56:43', '2009-06-27 11:18:33', 20, 'true', 'false', 'a:2:{i:67;i:1;i:68;i:1;}', '*182?*183?*181?', 'a:3:{i:182;a:1:{s:3:"qty";d:2;}i:183;a:1:{s:3:"qty";d:1;}i:181;a:1:{s:3:"qty";d:2;}}', 15),
(15, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, '', '', '/biz/', 'Home', '/biz/index.php?main_page=shopping_cart', 'The Shopping Cart', '2009-06-27 12:08:32', '2009-06-27 12:11:38', 6, 'true', 'false', 'b:0;', '*182?', 'a:1:{i:182;a:1:{s:3:"qty";d:1;}}', 2),
(16, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=shopping_cart', '/biz/index.php?main_page=index', 'Home', '/biz/index.php?main_page=index&cPath=67_68', 'Cucumberr', '2009-06-27 13:02:58', '2009-06-27 13:28:26', 11, 'true', 'false', 'a:2:{i:67;i:1;i:68;i:1;}', '*183?', 'a:1:{i:183;a:1:{s:3:"qty";d:2;}}', 10),
(17, '67.233.25.159', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)', '--', '', 0, 0, '', '', '/', 'Home', '/', 'Home', '2009-06-27 15:36:01', '2009-06-27 15:37:10', 5, 'false', 'false', 'b:0;', '*182?*183?', '', 0),
(18, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, '', '', '/biz/', 'Home', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumberr', '2009-06-27 15:57:50', '2009-06-27 15:58:09', 3, 'false', 'false', 'a:2:{i:67;i:1;i:68;i:1;}', '', '', 0),
(19, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=index&cPath=67&zenid=70022ca058f0dd71eed81cb881efaf25', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumberr', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumberr', '2009-06-27 16:35:57', '2009-06-27 16:47:06', 10, 'false', 'false', 'a:1:{i:68;i:1;}', '', '', 0),
(20, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=index&cPath=67&zenid=70022ca058f0dd71eed81cb881efaf25', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumberr', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumberr', '2009-06-27 17:34:53', '2009-06-27 17:46:02', 5, 'false', 'false', 'a:1:{i:68;i:1;}', '', '', 0),
(21, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=index&cPath=67&zenid=70022ca058f0dd71eed81cb881efaf25', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumberr', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumberr', '2009-06-27 18:37:27', '2009-06-27 18:54:08', 7, 'false', 'false', 'a:2:{i:67;i:1;i:68;i:1;}', '', '', 0),
(22, '99.234.195.189', 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 (.NET CLR 3.5.30729)', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 'p=746849', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumberr', '/biz/index.php?main_page=contact_us&zenid=70022ca058f0dd71eed81cb881efaf25', 'Contact Us', '2009-06-27 18:58:17', '2009-06-27 18:58:48', 3, 'false', 'false', 'b:0;', '', '', 0),
(23, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, '', '', '/', 'Home', '/biz/index.php?main_page=index&cPath=67_68&zenid=2b7abbbfadcf2d6a2c62339ad50fe762', 'Cucumberr', '2009-06-27 23:53:06', '2009-06-27 23:58:41', 12, 'false', 'false', 'a:2:{i:67;i:1;i:68;i:1;}', '', '', 0),
(24, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, '', '', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumberr', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumberr', '2009-06-28 11:12:29', '2009-06-28 11:12:29', 1, 'false', 'false', '', '', '', 0),
(25, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=index&cPath=67_68&zenid=2b7abbbfadcf2d6a2c62339ad50fe762', '/biz/index.php?main_page=index&cPath=67_68&zenid=2b7abbbfadcf2d6a2c62339ad50fe762', 'Cucumberr', '/biz/index.php?main_page=index&cPath=67_68', 'Cucumberr', '2009-06-28 11:42:20', '2009-06-28 16:19:04', 106, 'false', 'false', 'a:3:{i:21;i:1;i:67;i:1;i:68;i:1;}', '', '', 0),
(27, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=index&cPath=67&zenid=70022ca058f0dd71eed81cb881efaf25', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumberr', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumberr', '2009-06-28 18:43:28', '2009-06-28 18:43:28', 1, 'false', 'false', '', '', '', 0),
(26, '81.132.74.151', 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.11) Gecko/2009060215 FireAW/1.2 Firefox/3.0.11 (.NET CLR 3.5.30729)', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 't=130778', '/biz/index.php?main_page=index&cPath=67_68&zenid=82c93a407fc15d291ad489e53b127af6', 'Cucumberr', '/biz/index.php?main_page=index&zenid=82c93a407fc15d291ad489e53b127af6', 'Home', '2009-06-28 14:18:06', '2009-06-28 14:21:39', 6, 'false', 'false', 'b:0;', '', '', 0),
(28, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', '/biz/index.php?main_page=contact_us&zenid=70022ca058f0dd71eed81cb881efaf25', 'Contact Us', '/biz/index.php?main_page=contact_us&zenid=70022ca058f0dd71eed81cb881efaf25', 'Contact Us', '2009-06-28 19:21:25', '2009-06-28 19:21:25', 1, 'false', 'false', '', '', '', 0),
(29, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, '', '', '/biz/', 'Home', '/biz/', 'Home', '2009-06-28 20:56:35', '2009-06-28 20:56:35', 1, 'false', 'false', '', '', '', 0),
(30, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, 'http://www.google.com/search', 'hl=en&rlz=1B3GGGL_enUS328US328&q=sarasotafarms.org site&aq=f&oq=&aqi=', '/biz/', 'Home', '/biz/', 'Home', '2009-06-29 01:24:37', '2009-06-29 01:24:37', 1, 'false', 'false', '', '', '', 0),
(31, '90.183.56.210', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; cs; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 (.NET CLR 3.5.30729)', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 't=86483&page=19', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumberr', '/biz/index.php?main_page=index&zenid=70022ca058f0dd71eed81cb881efaf25', 'Home', '2009-06-29 02:11:09', '2009-06-29 02:29:15', 3, 'false', 'false', 'b:0;', '', '', 0),
(32, '99.144.242.89', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 'p=746849', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumberr', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumberr', '2009-06-29 06:58:38', '2009-06-29 06:58:38', 1, 'false', 'false', '', '', '', 0),
(33, '67.233.22.35', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)', '--', '', 0, 0, '', '', '/', 'Home', '/biz/index.php?main_page=index&zenid=345e4d6c9d4efa1ee8638ec9b5c8b0a4', 'Home', '2009-06-29 17:21:26', '2009-06-29 17:22:18', 3, 'false', 'false', 'b:0;', '', '', 0),
(34, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, '', '', '/biz/', 'Home', '/biz/index.php?main_page=login', 'Login', '2009-06-29 18:15:20', '2009-06-29 18:17:13', 5, 'true', 'false', 'b:0;', '*181?', 'a:1:{i:181;a:1:{s:3:"qty";d:1;}}', 3),
(35, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=shopping_cart', '/biz/index.php?main_page=login', 'Login', '/biz/index.php?main_page=login', 'Login', '2009-06-29 19:50:08', '2009-06-29 19:50:08', 1, 'false', 'false', '', '', '', 0),
(36, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=login', '/biz/index.php?main_page=index', 'Home', '/biz/index.php?main_page=index', 'Home', '2009-06-29 20:37:53', '2009-06-29 20:38:05', 4, 'false', 'false', 'b:0;', '', '', 0),
(37, '68.51.73.38', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.0.11) Gecko/2009060214 Firefox/3.0.11', '--', '', 0, 0, '', '', '/biz/', 'Home', '/biz/index.php?main_page=featured_products&zenid=c883e3a4665280606d952e2bf844a918', 'Featured Products', '2009-06-29 22:45:53', '2009-06-29 22:46:10', 4, 'false', 'false', 'a:2:{i:67;i:1;i:68;i:1;}', '', '', 0),
(38, '80.251.252.217', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; cs; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 (.NET CLR 3.5.30729)', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 't=86483&page=19', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumberr', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumberr', '2009-06-30 13:07:18', '2009-06-30 13:07:18', 1, 'false', 'false', '', '', '', 0),
(39, '68.56.128.212', 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, '', '', '/biz/', 'Home', '/biz/', 'Home', '2009-06-30 19:55:04', '2009-06-30 19:55:04', 1, 'false', 'false', '', '', '', 0),
(40, '66.68.104.234', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 't=86483&page=19', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumberr', '/biz/index.php?main_page=index&cPath=67', 'Produce', '2009-07-01 00:21:08', '2009-07-01 00:21:22', 3, 'false', 'false', 'a:1:{i:67;i:1;}', '', '', 0),
(41, '70.157.122.70', 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 't=115015&highlight=column layout grid&page=4', '/biz/index.php?main_page=index&cPath=67_68', 'Cucumberr', '/biz/index.php?main_page=index&cPath=67_68', 'Cucumberr', '2009-07-01 08:13:21', '2009-07-01 08:13:21', 1, 'false', 'false', '', '', '', 0),
(42, '96.228.247.45', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Comcast Install 1.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)', '--', '', 0, 0, '', '', '/', 'Home', '/biz/index.php?main_page=contact_us&zenid=669b9f9136045118ab93084c9dad1fe2', 'Contact Us', '2009-07-01 12:29:39', '2009-07-01 12:31:24', 5, 'false', 'false', 'b:0;', '', '', 0),
(43, '68.56.129.231', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; Embedded Web Browser from: http://bsalsa.com/; .NET CLR 1.1.4322)', '--', '', 0, 0, '', '', '/', 'Home', '/biz/index.php?main_page=discount_coupon&zenid=609a797be8d8f770e8b7fafa42c22346', 'Discount Coupon', '2009-07-01 12:30:16', '2009-07-01 12:32:15', 12, 'false', 'false', 'b:0;', '', '', 0),
(44, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, '', '', '/biz/', 'Home', '/biz/', 'Home', '2009-07-01 17:27:14', '2009-07-01 17:27:14', 1, 'false', 'false', '', '', '', 0),
(45, '61.100.5.136', 'Mozilla/5.0', '--', '', 0, 0, '', '', '/index.php?autoLoadConfig[999][0][autoType]=include&autoLoadConfig[999][0][loadFile]=http://www.angelcitytrading.com/css/1.zot?', 'Home', '/index.php?autoLoadConfig[999][0][autoType]=include&autoLoadConfig[999][0][loadFile]=http://www.angelcitytrading.com/css/1.zot?', 'Home', '2009-07-02 15:14:39', '2009-07-02 15:14:39', 1, 'false', 'false', '', '', '', 0),
(46, '67.233.31.90', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)', '--', '', 0, 0, '', '', '/', 'Home', '/', 'Home', '2009-07-02 15:36:33', '2009-07-02 15:36:33', 1, 'false', 'false', '', '', '', 0),
(47, '218.25.121.146', 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.6)', '--', '', 0, 0, '', '', '/index.php?main_page=product_info&cPath=23&products_id=84', '', '/index.php?main_page=product_info&cPath=23&products_id=84', '', '2009-07-03 02:07:56', '2009-07-03 02:07:56', 1, 'false', 'false', '', '*0?', '', 0),
(48, '60.241.72.217', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 't=130778&highlight=change product info text', '/biz/index.php?main_page=index&cPath=67_68&zenid=82c93a407fc15d291ad489e53b127af6', 'Cucumberr', '/biz/index.php?main_page=index&cPath=67_68&zenid=82c93a407fc15d291ad489e53b127af6', 'Cucumberr', '2009-07-03 03:30:39', '2009-07-03 03:30:39', 1, 'false', 'false', '', '', '', 0),
(49, '72.94.249.34', 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)', '--', '', 0, 0, '', '', '/', 'Home', '/', 'Home', '2009-07-03 06:53:48', '2009-07-03 06:53:48', 1, 'false', 'false', '', '', '', 0),
(50, '60.241.72.217', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 't=86483&highlight=Column Divider Pro&page=19', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumberr', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumberr', '2009-07-03 23:35:01', '2009-07-03 23:35:01', 1, 'false', 'false', '', '', '', 0),
(51, '64.40.150.211', 'Mozilla/5.0', '--', '', 0, 0, '', '', '/index.php?autoLoadConfig[333][0][autoType]=include&autoLoadConfig[333][0][loadFile]=http://www.die-grenzreiter.com/content/download/fx29id.txt??', 'Home', '/index.php?autoLoadConfig[333][0][autoType]=include&autoLoadConfig[333][0][loadFile]=http://www.die-grenzreiter.com/content/download/fx29id.txt??', 'Home', '2009-07-05 04:07:43', '2009-07-05 04:07:43', 1, 'false', 'false', '', '', '', 0),
(52, '66.71.241.146', 'Mozilla/5.0', '--', '', 0, 0, '', '', '/index.php?autoLoadConfig[333][0][autoType]=include&autoLoadConfig[333][0][loadFile]=http://www.die-grenzreiter.com/content/download/fx29id.txt??', 'Home', '/index.php?autoLoadConfig[333][0][autoType]=include&autoLoadConfig[333][0][loadFile]=http://www.die-grenzreiter.com/content/download/fx29id.txt??', 'Home', '2009-07-05 04:07:52', '2009-07-05 04:07:52', 1, 'false', 'false', '', '', '', 0),
(53, '200.58.119.65', 'Mozilla/5.0', '--', '', 0, 0, '', '', '/index.php?autoLoadConfig[333][0][autoType]=include&autoLoadConfig[333][0][loadFile]=http://highlandquebec.com/Templates/id1.txt?', 'Home', '/index.php?autoLoadConfig[333][0][autoType]=include&autoLoadConfig[333][0][loadFile]=http://highlandquebec.com/Templates/id1.txt?', 'Home', '2009-07-05 04:08:46', '2009-07-05 04:08:46', 1, 'false', 'false', '', '', '', 0),
(54, '66.71.241.146', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko/20050716 Firefox/1.0.6', '--', '', 0, 0, '', '', '/index.php?autoLoadConfig[333][0][autoType]=include&autoLoadConfig[333][0][loadFile]=http://recit.cscapitale.qc.ca/ens_res/eva/images/license.txt????', 'Home', '/index.php?autoLoadConfig[333][0][autoType]=include&autoLoadConfig[333][0][loadFile]=http://recit.cscapitale.qc.ca/ens_res/eva/images/license.txt????', 'Home', '2009-07-05 04:39:34', '2009-07-05 04:39:34', 1, 'false', 'false', '', '', '', 0),
(55, '220.231.126.252', 'Mozilla/5.0', '--', '', 0, 0, '', '', '/index.php?autoLoadConfig[999][0][autoType]=include&autoLoadConfig[999][0][loadFile]=http://www.largeface.com/gnuboard4/style/sid.txt?', 'Home', '/index.php?autoLoadConfig[999][0][autoType]=include&autoLoadConfig[999][0][loadFile]=http://www.largeface.com/gnuboard4/style/sid.txt?', 'Home', '2009-07-06 10:24:53', '2009-07-06 10:24:53', 1, 'false', 'false', '', '', '', 0),
(56, '124.102.181.233', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_7; ja-jp) AppleWebKit/530.18 (KHTML, like Gecko) Version/4.0.1 Safari/530.18', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 't=86483&page=19', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumberr', '/biz/', 'Home', '2009-07-06 19:34:08', '2009-07-06 19:35:15', 10, 'false', 'false', 'a:3:{i:67;i:1;i:21;i:1;i:68;i:1;}', '', '', 0),
(57, '68.126.253.65', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; eSobiSubscriber 2.0.4.16; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NAP 1.0; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 't=86483&highlight=border product&page=19', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumberr', '/biz/index.php?main_page=index&cPath=21&zenid=70022ca058f0dd71eed81cb881efaf25', 'Gift Certificates', '2009-07-07 10:53:20', '2009-07-07 10:53:37', 2, 'false', 'false', 'a:1:{i:21;i:1;}', '', '', 0),
(58, '68.126.253.65', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; eSobiSubscriber 2.0.4.16; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NAP 1.0; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 't=86483&highlight=border product&page=19', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumberr', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumberr', '2009-07-07 11:46:41', '2009-07-07 11:47:07', 4, 'false', 'false', 'a:3:{i:21;i:1;i:67;i:1;i:68;i:1;}', '', '', 0),
(59, '124.102.181.233', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_7; ja-jp) AppleWebKit/530.18 (KHTML, like Gecko) Version/4.0.1 Safari/530.18', '--', '', 0, 0, '', '', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumberr', '/biz/index.php?main_page=index&zenid=70022ca058f0dd71eed81cb881efaf25', 'Home', '2009-07-08 01:06:34', '2009-07-08 01:09:52', 3, 'false', 'false', 'a:1:{i:21;i:1;}', '', '', 0),
(60, '82.58.42.86', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; it; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 't=86483&highlight=columnar display&page=19', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumberr', '/biz/index.php?main_page=index&cPath=67&zenid=70022ca058f0dd71eed81cb881efaf25', 'Produce', '2009-07-08 03:28:35', '2009-07-08 03:29:30', 5, 'false', 'false', 'a:1:{i:67;i:1;}', '', '', 0),
(61, '38.100.41.102', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2)', '--', '', 0, 0, '', '', '/', 'Home', '/', 'Home', '2009-07-08 08:44:02', '2009-07-08 08:44:02', 1, 'false', 'false', '', '', '', 0),
(62, '24.9.78.140', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 't=115015&highlight=details button&page=4', '/biz/index.php?main_page=index&cPath=67_68', 'Cucumberr', '/biz/index.php?main_page=index&cPath=67_68', 'Cucumberr', '2009-07-08 22:30:52', '2009-07-08 22:30:52', 1, 'false', 'false', '', '', '', 0),
(63, '69.58.178.26', 'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12; ips-agent) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7', '--', '', 0, 0, '', '', '/', 'Home', '/', 'Home', '2009-07-09 01:58:35', '2009-07-09 01:58:35', 1, 'false', 'false', '', '', '', 0),
(64, '68.123.248.176', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 (.NET CLR 3.5.30729)', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 't=86483&highlight=column grid&page=19', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumberr', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumberr', '2009-07-09 02:17:37', '2009-07-09 02:17:37', 1, 'false', 'false', '', '', '', 0),
(65, '61.250.85.185', 'Mozilla/5.0', '--', '', 0, 0, '', '', '/index.php?autoLoadConfig[999][0][autoType]=include&autoLoadConfig[999][0][loadFile]=http://msgr.org//rgboard/data/right2_5/idxx.txt???', 'Home', '/index.php?autoLoadConfig[999][0][autoType]=include&autoLoadConfig[999][0][loadFile]=http://msgr.org//rgboard/data/right2_5/idxx.txt???', 'Home', '2009-07-09 08:06:17', '2009-07-09 08:06:17', 2, 'false', 'false', 'b:0;', '', '', 0),
(66, '212.70.182.8', 'Mozilla/3.0 (X11; I; SunOS 5.4 sun4m)', '--', '', 0, 0, '', '', '/index.php?_REQUEST=&_REQUEST[option]=com_content&_REQUEST[Itemid]=1&GLOBALS=&mosConfig_absolute_path=http://www.ecf.cl/portal/cache/rss40.xml??', 'Home', '/index.php?_REQUEST=&_REQUEST[option]=com_content&_REQUEST[Itemid]=1&GLOBALS=&mosConfig_absolute_path=http://www.ecf.cl/portal/cache/rss40.xml??', 'Home', '2009-07-09 13:01:36', '2009-07-09 13:01:36', 1, 'false', 'false', '', '', '', 0),
(67, '205.203.134.197', 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)', '--', '', 0, 0, '', '', '/', 'Home', '/', 'Home', '2009-07-09 17:42:31', '2009-07-09 17:42:31', 1, 'false', 'false', '', '', '', 0),
(68, '68.56.16.87', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 2, 0, '', '', '/biz/', 'Home', '/biz/', 'Home', '2009-07-11 22:01:08', '2009-07-11 22:33:12', 24, 'true', 'false', 'a:3:{i:21;i:1;i:67;i:1;i:68;i:1;}', '*183?', '', 99),
(69, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, '', '', '/biz/', 'Home', '/biz/', 'Home', '2009-07-11 23:22:31', '2009-07-11 23:22:31', 1, 'false', 'false', '', '', '', 0),
(70, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 3, 0, '', '', '/biz/index.php?main_page=', 'Home', '/biz/', 'Home', '2009-07-12 00:19:05', '2009-07-12 01:05:53', 25, 'true', 'false', 'b:0;', '*32?', 'Array', 600),
(71, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, '', '', '/biz/', 'Home', '/biz/index.php?main_page=index&cPath=67_68', 'Cucumberr', '2009-07-12 02:08:01', '2009-07-12 03:11:11', 37, 'true', 'false', 'a:1:{i:68;i:1;}', '*183?*181?*182?', 'a:1:{i:183;a:1:{s:3:"qty";d:1;}}', 5),
(72, '207.182.133.50', 'Mozilla/5.0', '--', '', 0, 0, '', '', '/index.php?autoLoadConfig[333][0][autoType]=include&autoLoadConfig[333][0][loadFile]=http://83.3.132.70/iGeoMap/www//tmp/id1.txt?', 'Home', '/index.php?autoLoadConfig[333][0][autoType]=include&autoLoadConfig[333][0][loadFile]=http://83.3.132.70/iGeoMap/www//tmp/id1.txt?', 'Home', '2009-07-12 06:22:55', '2009-07-12 06:22:55', 1, 'false', 'false', '', '', '', 0),
(73, '83.149.97.4', 'Mozilla/5.0', '--', '', 0, 0, '', '', '/index.php?autoLoadConfig[999][0][autoType]=include&autoLoadConfig[999][0][loadFile]=http://www.cisc.at/survey/classes/core/v4.5id1??', 'Home', '/index.php?autoLoadConfig[999][0][autoType]=include&autoLoadConfig[999][0][loadFile]=http://www.cisc.at/survey/classes/core/v4.5id1??', 'Home', '2009-07-12 08:02:45', '2009-07-12 08:02:45', 1, 'false', 'false', '', '', '', 0),
(74, '209.18.83.10', 'Mozilla/5.0 (Windows; U; Windows CE 4.21; rv:1.8b4) Gecko/20050720 Minimo/0.007', '--', '', 0, 0, '', '', '/index.php?autoLoadConfig[999][0][autoType]=include&autoLoadConfig[999][0][loadFile]=http://www.x-pronet.com/board/test.txt??', 'Home', '/index.php?autoLoadConfig[999][0][autoType]=include&autoLoadConfig[999][0][loadFile]=http://www.x-pronet.com/board/test.txt??', 'Home', '2009-07-12 10:16:57', '2009-07-12 10:16:57', 1, 'false', 'false', '', '', '', 0),
(75, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=product_info&cPath=67_68&products_id=182', '/biz/index.php?main_page=index&cPath=67_68', 'Cucumberr', '/biz/index.php?main_page=index&cPath=67_68', 'Cucumbers', '2009-07-12 11:45:40', '2009-07-12 13:28:26', 45, 'false', 'false', 'a:2:{i:68;i:1;i:67;i:1;}', '', '', 0),
(76, '80.41.113.98', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 't=86483&page=19', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumberr', '/biz/index.php?main_page=products_all&zenid=70022ca058f0dd71eed81cb881efaf25', 'All Products', '2009-07-12 12:11:31', '2009-07-12 12:12:00', 2, 'false', 'false', 'b:0;', '', '', 0),
(77, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=index&cPath=67', '/biz/index.php?main_page=index&cPath=67_68', 'Cucumbers', '/biz/index.php?main_page=index&cPath=67_68', 'Cucumbers', '2009-07-12 15:45:48', '2009-07-12 21:25:45', 153, 'true', 'false', 'a:2:{i:68;i:1;i:67;i:1;}', '*183?*182?*181?', 'a:1:{i:182;a:1:{s:3:"qty";d:1;}}', 2),
(78, '220.253.67.2', 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 (.NET CLR 3.5.30729)', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 't=131950', '/biz/index.php?main_page=product_info&cPath=67_68&sort=20a&products_id=182', 'test2', '/biz/index.php?main_page=product_info&cPath=67_68&sort=20a&products_id=182', 'test2', '2009-07-12 18:38:07', '2009-07-12 18:38:07', 1, 'false', 'false', '', '*182?', '', 0),
(79, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=index&cPath=67_68', '/biz/index.php?main_page=index&cPath=67_68', 'Cucumbers', '/biz/index.php?main_page=index&cPath=67_68', 'Cucumbers', '2009-07-12 21:58:13', '2009-07-12 23:36:41', 41, 'true', 'false', 'a:2:{i:68;i:1;i:67;i:1;}', '*182?*183?', '', 2),
(80, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, '', '', '/biz/index.php?main_page=index&cPath=67', 'Produce', '/biz/index.php?main_page=index', 'Home', '2009-07-13 00:11:41', '2009-07-13 04:05:44', 149, 'true', 'false', 'a:3:{i:68;i:1;i:67;i:1;i:21;i:1;}', '*182?*183?*181?', 'a:1:{i:182;a:1:{s:3:"qty";d:7;}}', 14),
(81, '89.96.190.247', 'Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.8.0.12) Gecko/20070508 Firefox/1.5.0.12', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 't=86483&page=19', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumbers', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumbers', '2009-07-13 09:18:32', '2009-07-13 09:18:32', 1, 'false', 'false', '', '', '', 0),
(82, '216.86.146.10', 'Mozilla/5.0', '--', '', 0, 0, '', '', '/index.php?autoLoadConfig[999][0][autoType]=include&autoLoadConfig[999][0][loadFile]=http://www.die-grenzreiter.com/content/download/fx29id.txt??', 'Home', '/index.php?autoLoadConfig[999][0][autoType]=include&autoLoadConfig[999][0][loadFile]=http://www.die-grenzreiter.com/content/download/fx29id.txt??', 'Home', '2009-07-13 10:04:12', '2009-07-13 10:04:12', 1, 'false', 'false', '', '', '', 0),
(83, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=index', '/biz/index.php?main_page=index&cPath=67', 'Produce', '/biz/index.php?main_page=index', 'Home', '2009-07-13 10:59:05', '2009-07-13 10:59:14', 3, 'false', 'false', 'a:1:{i:67;i:1;}', '', '', 0),
(84, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=index', '/biz/index.php?main_page=login', 'Login', '/biz/index.php?main_page=index&cPath=67_68', 'Cucumbers', '2009-07-13 11:37:53', '2009-07-13 12:00:15', 10, 'true', 'false', 'a:2:{i:67;i:1;i:68;i:1;}', '*182?', 'a:1:{i:182;a:1:{s:3:"qty";d:1;}}', 2),
(85, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, '', '', '/biz/', 'Home', '/biz/index.php?main_page=index', 'Home', '2009-07-13 13:43:10', '2009-07-13 14:05:03', 18, 'false', 'false', 'a:2:{i:67;i:1;i:68;i:1;}', '*182?', '', 0),
(86, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=product_info&cPath=67_68&products_id=182', '/biz/index.php?main_page=index', 'Home', '/biz/', 'Home', '2009-07-13 15:00:35', '2009-07-13 15:35:43', 27, 'false', 'false', 'b:0;', '', '', 0),
(87, '80.87.129.158', 'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)', '--', '', 0, 0, '', '', '/index.php?autoLoadConfig[999][0][autoType]=include&autoLoadConfig[999][0][loadFile]=http://www.x-pronet.com/board/test.txt??', 'Home', '/index.php?autoLoadConfig[999][0][autoType]=include&autoLoadConfig[999][0][loadFile]=http://www.x-pronet.com/board/test.txt??', 'Home', '2009-07-13 17:39:06', '2009-07-13 17:39:06', 1, 'false', 'false', '', '', '', 0),
(88, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, '', '', '/biz/', 'Home', '/biz/index.php?main_page=index&zenid=428bdeec6291c4cc82cfecbb449368fb', 'Home', '2009-07-13 17:45:22', '2009-07-13 17:47:02', 4, 'false', 'false', 'a:2:{i:21;i:1;i:67;i:1;}', '', '', 0),
(89, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=index&cPath=67&zenid=428bdeec6291c4cc82cfecbb449368fb', '/biz/index.php?main_page=index&zenid=428bdeec6291c4cc82cfecbb449368fb', 'Home', '/biz/', 'Home', '2009-07-13 19:15:43', '2009-07-13 20:23:28', 25, 'false', 'false', 'a:1:{i:67;i:1;}', '', '', 0),
(91, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, '', '', '/biz/index.php?main_page=login_as_customer', 'Home', '/biz/index.php?main_page=login&action=process', 'Login', '2009-07-13 21:45:51', '2009-07-13 21:46:05', 2, 'false', 'false', 'b:0;', '', '', 0),
(90, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, '', '', '/biz/', 'Home', '/biz/', 'Home', '2009-07-13 20:02:19', '2009-07-13 20:02:19', 1, 'false', 'false', '', '', '', 0),
(92, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, '', '', '/biz/', 'Home', '/biz/index.php?main_page=index', 'Home', '2009-07-13 22:20:50', '2009-07-14 01:40:20', 102, 'true', 'false', 'a:2:{i:67;i:1;i:68;i:1;}', '*184?*181?*182?*183?', 'Array', 22),
(93, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, '', '', '/biz/', 'Home', '/biz/', 'Home', '2009-07-14 01:40:44', '2009-07-14 01:52:09', 22, 'false', 'false', 'a:2:{i:67;i:1;i:68;i:1;}', '', '', 0),
(94, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/', '', '/biz/index.php?main_page=featured_products', 'Featured Products', '/biz/index.php?main_page=featured_products', 'Featured Products', '2009-07-14 02:25:18', '2009-07-14 02:25:18', 1, 'false', 'false', '', '', '', 0),
(95, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=index', '/biz/index.php?main_page=products_all', 'All Products', '/biz/index.php?main_page=index', 'Home', '2009-07-14 04:45:34', '2009-07-14 04:45:45', 2, 'false', 'false', 'b:0;', '', '', 0),
(96, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, '', '', '/biz/', 'Home', '/biz/index.php?main_page=index&cPath=67_68&zenid=6e9282eadd9f7ccdf7f17f02200e0f59', 'Cucumbers', '2009-07-14 05:33:03', '2009-07-14 05:33:13', 3, 'false', 'false', 'a:2:{i:67;i:1;i:68;i:1;}', '', '', 0),
(97, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=index&cPath=67&zenid=6e9282eadd9f7ccdf7f17f02200e0f59', '/biz/index.php?main_page=index&cPath=67_68&zenid=6e9282eadd9f7ccdf7f17f02200e0f59', 'Cucumbers', '/biz/index.php?main_page=index&zenid=6e9282eadd9f7ccdf7f17f02200e0f59', 'Home', '2009-07-14 06:22:54', '2009-07-14 07:02:59', 40, 'true', 'false', 'a:2:{i:67;i:1;i:68;i:1;}', '*32?*183?*182?*184?*181?', 'a:4:{i:32;a:1:{s:3:"qty";d:1;}i:183;a:1:{s:3:"qty";d:3;}i:184;a:1:{s:3:"qty";d:1;}i:181;a:1:{s:3:"qty";d:1;}}', 122),
(99, '47.102.217.54', 'Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 't=130778&highlight=change product listing font', '/biz/index.php?main_page=index&cPath=67_68&zenid=82c93a407fc15d291ad489e53b127af6', 'Cucumbers', '/biz/index.php?main_page=index&cPath=67_68&zenid=82c93a407fc15d291ad489e53b127af6', 'Cucumbers', '2009-07-14 11:56:23', '2009-07-14 11:56:23', 1, 'false', 'false', '', '', '', 0),
(98, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=products_all', '/biz/index.php?main_page=index', 'Home', '/biz/index.php?main_page=product_info&products_id=181', 'Yellow Squash', '2009-07-14 06:42:14', '2009-07-14 06:50:13', 6, 'false', 'false', 'b:0;', '*181?', '', 0),
(100, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=product_info&products_id=181', '/biz/index.php?main_page=index', 'Home', '/biz/', 'Home', '2009-07-14 13:56:07', '2009-07-14 14:03:40', 2, 'false', 'false', 'b:0;', '', '', 0),
(101, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, 'http://www.sarasotafarms.org/biz/', '', '/biz/index.php?main_page=product_info&products_id=182', 'test2', '/biz/index.php?main_page=index', 'Home', '2009-07-14 14:36:15', '2009-07-14 14:37:34', 8, 'true', 'false', 'b:0;', '*182?*183?*184?', 'a:1:{i:182;a:1:{s:3:"qty";d:5;}}', 10),
(102, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=login&zenid=6e9282eadd9f7ccdf7f17f02200e0f59', '/biz/index.php?main_page=index&zenid=6e9282eadd9f7ccdf7f17f02200e0f59', 'Home', '/biz/', 'Home', '2009-07-14 14:51:52', '2009-07-14 15:02:32', 3, 'false', 'false', 'b:0;', '', '', 0),
(103, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=index', '/biz/index.php?main_page=product_info&products_id=182', 'test2', '/biz/index.php?main_page=index', 'Home', '2009-07-14 15:32:27', '2009-07-14 15:33:04', 6, 'true', 'false', 'b:0;', '*182?', 'a:1:{i:182;a:1:{s:3:"qty";d:2;}}', 4),
(104, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/admin/index.php', '', '/biz/index.php?main_page=', 'Home', '/biz/index.php?main_page=login&action=process', 'Login', '2009-07-14 17:49:59', '2009-07-14 17:54:07', 11, 'false', 'false', 'b:0;', '', '', 0),
(105, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, '', '', '/biz/', 'Home', '/biz/', 'Home', '2009-07-14 18:42:47', '2009-07-14 18:50:17', 2, 'false', 'false', 'b:0;', '', '', 0),
(106, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, 'http://www.lifeleap.org/admin/', '', '/biz/', 'Home', '/biz/', 'Home', '2009-07-14 19:37:45', '2009-07-14 19:37:45', 1, 'false', 'false', '', '', '', 0),
(107, '68.56.88.197', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, 'http://www.lifeleap.org/admin/', '', '/biz/', 'Home', '/biz/index.php?main_page=index&cPath=67&zenid=155e20bb7c16758f7c85703687119fd0', 'Produce', '2009-07-14 21:17:46', '2009-07-14 21:33:40', 8, 'true', 'false', 'a:1:{i:67;i:1;}', '*182?', 'a:1:{i:182;a:1:{s:3:"qty";d:2;}}', 4),
(108, '68.56.88.197', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=index&cPath=67&zenid=155e20bb7c16758f7c85703687119fd0', '/biz/index.php?main_page=index&cPath=67_68&zenid=155e20bb7c16758f7c85703687119fd0', 'Cucumbers', '/biz/index.php?main_page=index&zenid=155e20bb7c16758f7c85703687119fd0', 'Home', '2009-07-14 22:04:56', '2009-07-14 22:19:19', 3, 'true', 'false', 'b:0;', '*182?', 'a:1:{i:182;a:1:{s:3:"qty";d:1;}}', 2),
(109, '61.106.21.35', 'Mozilla/5.0', '--', '', 0, 0, '', '', '/index.php?autoLoadConfig[999][0][autoType]=include&autoLoadConfig[999][0][loadFile]=http://www.cisc.at/survey/classes/core/v4.5id1??', 'Home', '/index.php?autoLoadConfig[999][0][autoType]=include&autoLoadConfig[999][0][loadFile]=http://www.cisc.at/survey/classes/core/v4.5id1??', 'Home', '2009-07-15 11:10:55', '2009-07-15 11:10:55', 1, 'false', 'false', '', '', '', 0),
(110, '71.40.178.42', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1) Gecko/20090624 Firefox/3.5 (.NET CLR 3.5.30729)', '--', '', 0, 0, 'http://www.experts-exchange.com/Web_Development/Internet_Marketing/E-Commerce/Stores_and_Carts/Q_24570292.html', '', '/biz/', 'Home', '/biz/index.php?main_page=product_info&products_id=182&zenid=6835d2c2d87b46d302931eb0c33c6618', 'test2', '2009-07-15 11:59:42', '2009-07-15 12:00:13', 6, 'true', 'false', 'b:0;', '*182?', 'a:1:{i:182;a:1:{s:3:"qty";d:2;}}', 4),
(111, '71.123.133.148', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 't=131950', '/biz/index.php?main_page=product_info&cPath=67_68&sort=20a&products_id=182', 'test2', '/biz/index.php?main_page=product_info&cPath=67_68&sort=20a&products_id=182', 'test2', '2009-07-15 12:08:19', '2009-07-15 12:08:19', 1, 'false', 'false', '', '*182?', '', 0),
(112, '59.22.140.17', 'Mozilla/5.0', '--', '', 0, 0, '', '', '/index.php?autoLoadConfig[999][0][autoType]=include&autoLoadConfig[999][0][loadFile]=http://badmintonblog.net/blog/img/5.jpg??', 'Home', '/index.php?autoLoadConfig[999][0][autoType]=include&autoLoadConfig[999][0][loadFile]=http://badmintonblog.net/blog/img/5.jpg??', 'Home', '2009-07-15 13:17:03', '2009-07-15 13:17:03', 1, 'false', 'false', '', '', '', 0),
(113, '67.233.30.42', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)', '--', '', 0, 0, 'http://bl139w.blu139.mail.live.com/mail/InboxLight.aspx', 'FolderID=00000000-0000-0000-0000-000000000001&InboxSortAscending=False&InboxSortBy=Date&n=1906380634', '/biz/', 'Home', '/biz/', 'Home', '2009-07-15 15:02:59', '2009-07-15 15:02:59', 1, 'false', 'false', '', '', '', 0),
(114, '94.110.55.217', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 't=105757&page=2', '/biz/', 'Home', '/biz/', 'Home', '2009-07-16 00:28:02', '2009-07-16 00:28:02', 1, 'false', 'false', '', '', '', 0),
(115, '150.70.84.27', 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)', '--', '', 0, 0, '', '', '/biz/', 'Home', '/biz/', 'Home', '2009-07-16 00:30:48', '2009-07-16 00:30:48', 1, 'false', 'false', '', '', '', 0),
(116, '68.44.137.27', 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.1) Gecko/20090624 Firefox/3.5 (.NET CLR 3.5.30729)', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 't=86483&page=19', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumbers', '/biz/index.php?main_page=index&cPath=67_68&zenid=70022ca058f0dd71eed81cb881efaf25', 'Cucumbers', '2009-07-16 07:18:32', '2009-07-16 07:18:32', 1, 'false', 'false', '', '', '', 0),
(117, '67.102.122.137', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 (.NET CLR 3.5.30729)', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 'p=755450', '/biz/', 'Home', '/biz/index.php?main_page=product_info&products_id=181&zenid=6d31d0d55ea4f1091a8182ab178b0938', 'Yellow Squash', '2009-07-16 08:26:16', '2009-07-16 08:26:50', 5, 'true', 'false', 'b:0;', '*182?*183?*181?', 'a:2:{i:182;a:1:{s:3:"qty";d:1;}i:181;a:1:{s:3:"qty";d:1;}}', 5),
(118, '174.129.193.94', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.0.5) Gecko/2008120121 Firefox/3.0.5', '--', '', 0, 0, '', '', '/biz/', 'Home', '/biz/', 'Home', '2009-07-16 22:16:20', '2009-07-16 22:16:20', 1, 'false', 'false', '', '', '', 0),
(119, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, 'http://www.webmaster-talk.com/php-forum/181193-need-help-redirect-issue-shopping-cart.html', '', '/biz/', 'Home', '/biz/index.php?main_page=product_info&disp_order=1&products_id=31', 'Gift Certificate $ 50.00', '2009-07-16 23:35:41', '2009-07-17 00:09:45', 13, 'true', 'false', 'b:0;', '*182?*31?', 'a:1:{i:31;a:1:{s:3:"qty";d:2;}}', 100),
(120, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'http://www.lifeleap.org/admin/', '', '/biz/', 'Home', '/biz/index.php?main_page=product_info&cPath=67_68&sort=20a&products_id=182&zenid=e83adbd5dadf2b5c58821dc9b908eb87', 'test2', '2009-07-17 01:35:09', '2009-07-17 01:36:05', 9, 'true', 'false', 'a:3:{i:21;i:1;i:67;i:1;i:68;i:1;}', '*182?', 'a:2:{i:182;a:1:{s:3:"qty";d:2;}i:31;a:1:{s:3:"qty";d:1;}}', 54),
(121, '77.88.31.246', 'Yandex/1.01.001 (compatible; Win16; I)', '--', '', 0, 0, '', '', '/biz/', 'Home', '/biz/', 'Home', '2009-07-17 02:51:23', '2009-07-17 02:51:23', 1, 'false', 'false', '', '', '', 0),
(122, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'http://www.lifeleap.org/admin/', '', '/biz/', 'Home', '/biz/', 'Home', '2009-07-17 11:36:36', '2009-07-17 11:46:15', 14, 'true', 'false', 'b:0;', '*183?', 'a:3:{i:184;a:1:{s:3:"qty";d:1;}i:181;a:1:{s:3:"qty";d:1;}i:182;a:1:{s:3:"qty";d:2;}}', 11);
INSERT INTO `supertracker` (`tracking_id`, `ip_address`, `browser_string`, `country_code`, `country_name`, `customer_id`, `order_id`, `referrer`, `referrer_query_string`, `landing_page`, `landing_page_name`, `exit_page`, `exit_page_name`, `time_arrived`, `last_click`, `num_clicks`, `added_cart`, `completed_purchase`, `categories_viewed`, `products_viewed`, `cart_contents`, `cart_total`) VALUES
(123, '69.0.31.8', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '--', '', 0, 0, 'http://www.webmaster-talk.com/php-forum/181193-need-help-redirect-issue-shopping-cart.html', '', '/biz/', 'Home', '/biz/', 'Home', '2009-07-17 16:49:47', '2009-07-17 16:50:54', 3, 'true', 'false', 'b:0;', '', 'a:1:{i:182;a:1:{s:3:"qty";d:1;}}', 2),
(124, '69.0.31.8', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '--', '', 0, 0, 'http://www.sarasotafarms.org/biz/', '', '/biz/index.php?main_page=index&products_id=182', 'test2', '/biz/', 'Home', '2009-07-17 18:55:18', '2009-07-17 18:56:00', 2, 'true', 'false', 'b:0;', '', 'a:1:{i:182;a:1:{s:3:"qty";d:1;}}', 2),
(125, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'http://www.lifeleap.org/admin/', '', '/biz/', 'Home', '/biz/index.php?main_page=index&cPath=67_68&zenid=0ffdbc209882bb1b6a8bcf32b2593810', 'Cucumbers', '2009-07-17 20:43:28', '2009-07-17 20:44:13', 9, 'true', 'false', 'a:2:{i:67;i:1;i:68;i:1;}', '*182?*183?', 'a:3:{i:184;a:1:{s:3:"qty";d:1;}i:182;a:1:{s:3:"qty";d:2;}i:183;a:1:{s:3:"qty";d:1;}}', 13),
(126, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'http://www.lifeleap.org/admin/', '', '/biz/', 'Home', '/biz/index.php?main_page=product_info&products_id=182', 'test2', '2009-07-17 21:44:26', '2009-07-17 22:20:17', 30, 'true', 'false', 'a:2:{i:68;i:1;i:67;i:1;}', '*31?*182?*184?*183?', 'a:4:{i:184;a:1:{s:3:"qty";d:1;}i:182;a:1:{s:3:"qty";d:2;}i:31;a:1:{s:3:"qty";d:2;}i:183;a:1:{s:3:"qty";d:1;}}', 113),
(127, '222.236.47.192', 'Mozilla/5.0', '--', '', 0, 0, '', '', '/index.php?autoLoadConfig[999][0][autoType]=include&autoLoadConfig[999][0][loadFile]=http://www.rankkuwait.com/rankmail/copyright.txt????', 'Home', '/index.php?autoLoadConfig[999][0][autoType]=include&autoLoadConfig[999][0][loadFile]=http://www.rankkuwait.com/rankmail/copyright.txt????', 'Home', '2009-07-18 03:03:36', '2009-07-18 03:10:07', 2, 'false', 'false', 'b:0;', '', '', 0),
(128, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'http://www.lifeleap.org/admin/', '', '/biz/', 'Home', '/biz/index.php?main_page=product_info&products_id=184', 'Tomatoe', '2009-07-18 11:32:35', '2009-07-18 12:55:51', 88, 'true', 'false', 'a:2:{i:67;i:1;i:68;i:1;}', '*183?*182?*181?*184?', 'a:1:{i:184;a:1:{s:3:"qty";d:6;}}', 23),
(129, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'http://www.webmaster-talk.com/php-forum/181193-need-help-redirect-issue-shopping-cart.html', '', '/biz/index.php?main_page=products_all', 'All Products', '/biz/index.php?main_page=featured_products&disp_order=1&products_id=182', 'Featured Products', '2009-07-18 13:34:26', '2009-07-18 13:35:38', 7, 'true', 'false', 'a:1:{i:68;i:1;}', '*182?*181?', 'a:2:{i:182;a:1:{s:3:"qty";d:2;}i:181;a:1:{s:3:"qty";d:1;}}', 7),
(130, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, 'http://www.webmaster-talk.com/php-forum/181193-need-help-redirect-issue-shopping-cart.html', '', '/biz/index.php?main_page=products_all', 'All Products', '/biz/index.php?main_page=product_info&products_id=183&zenid=cb75d8f44be71d8c1abd772bd523a457', 'test3', '2009-07-18 16:30:25', '2009-07-18 17:02:33', 23, 'true', 'false', 'b:0;', '*181?*184?*183?', 'a:4:{i:181;a:1:{s:3:"qty";d:3;}i:182;a:1:{s:3:"qty";d:2;}i:184;a:1:{s:3:"qty";d:1;}i:183;a:1:{s:3:"qty";d:2;}}', 27),
(131, '75.129.152.128', 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.1.1) Gecko/20090715 Firefox/3.5.1 (.NET CLR 3.5.30729)', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 't=132483', '/biz/', 'Home', '/biz/index.php?main_page=product_info&cPath=67_68&sort=20a&products_id=182&zenid=c7fd8dadc7e4da87ee6b94b74393a04f', 'test2', '2009-07-18 17:40:00', '2009-07-18 17:40:12', 4, 'true', 'false', 'a:2:{i:67;i:1;i:68;i:1;}', '*182?', 'a:1:{i:182;a:1:{s:3:"qty";d:1;}}', 2),
(132, '81.179.30.123', 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.9.0.5) Gecko/2008120122 Firefox/3.0.5', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 't=132483', '/biz/', 'Home', '/biz/index.php?main_page=product_info&products_id=183&zenid=28864cf03a2babdad34e9f628abf2db3', 'test3', '2009-07-18 17:52:56', '2009-07-18 17:53:11', 2, 'true', 'false', 'b:0;', '*183?', 'a:1:{i:183;a:1:{s:3:"qty";d:1;}}', 5),
(133, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=products_all', '/biz/index.php?main_page=index', 'Home', '/biz/index.php?main_page=index', 'Home', '2009-07-18 17:54:47', '2009-07-18 17:54:47', 1, 'false', 'false', '', '', '', 0),
(134, '82.35.80.130', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.0.11) Gecko/2009060214 Firefox/3.0.11', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 't=132483', '/biz/', 'Home', '/biz/index.php?main_page=product_info&cPath=67_68&sort=20a&products_id=182&zenid=cba118553de80ee1a025a313d4c12a73', 'test2', '2009-07-18 18:26:36', '2009-07-18 18:27:16', 5, 'true', 'false', 'a:2:{i:67;i:1;i:68;i:1;}', '*182?', 'a:1:{i:182;a:1:{s:3:"qty";d:2;}}', 4),
(135, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=index', '/biz/index.php?main_page=index', 'Home', '/biz/index.php?main_page=shopping_cart', 'The Shopping Cart', '2009-07-18 18:49:11', '2009-07-18 18:50:46', 7, 'true', 'false', 'a:1:{i:67;i:1;}', '', 'a:1:{i:182;a:1:{s:3:"qty";d:1;}}', 2),
(136, '24.56.218.50', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 't=132483', '/biz/', 'Home', '/biz/', 'Home', '2009-07-18 19:05:38', '2009-07-18 19:13:04', 17, 'true', 'false', 'a:2:{i:67;i:1;i:68;i:1;}', '*181?*182?', 'a:2:{i:181;a:1:{s:3:"qty";d:1;}i:182;a:1:{s:3:"qty";d:2;}}', 7),
(137, '24.56.218.50', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.1) Gecko/20090715 Firefox/3.5.1', '--', '', 0, 0, '', '', '/biz/', 'Home', '/biz/', 'Home', '2009-07-18 19:13:16', '2009-07-18 19:13:57', 5, 'true', 'false', 'b:0;', '*184?*183?', 'a:1:{i:183;a:1:{s:3:"qty";d:1;}}', 5),
(138, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=featured_products', '/biz/index.php?main_page=shopping_cart', 'The Shopping Cart', '/biz/index.php?main_page=index', 'Home', '2009-07-18 19:23:39', '2009-07-18 19:47:39', 5, 'false', 'false', 'b:0;', '', '', 0),
(140, '66.18.249.132', 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.8.1.22) Gecko/20090605 SeaMonkey/1.1.17', '--', '', 0, 0, '', '', '/biz/', 'Home', '/biz/index.php?main_page=product_info&products_id=181&zenid=6004a4eca213600d8ae43d4879c5a5cb', 'Yellow Squash', '2009-07-18 19:50:12', '2009-07-18 19:50:21', 2, 'true', 'false', 'b:0;', '*181?', 'a:1:{i:181;a:1:{s:3:"qty";d:1;}}', 3),
(139, '75.44.221.163', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506)', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 't=132483', '/biz/', 'Home', '/biz/index.php?main_page=product_info&products_id=184&zenid=693ac72e0daac6ec6c2aae6fef338676', 'Tomatoe', '2009-07-18 19:43:44', '2009-07-18 19:43:58', 2, 'true', 'false', 'b:0;', '*184?', 'a:1:{i:184;a:1:{s:3:"qty";d:1;}}', 4),
(141, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'https://www.sarasotafarms.org/biz/index.php', 'main_page=index', '/biz/index.php?main_page=index', 'Home', '/biz/index.php?main_page=product_info&cPath=21&sort=20a&products_id=31', 'Gift Certificate $ 50.00', '2009-07-18 21:06:51', '2009-07-18 21:56:18', 43, 'true', 'false', 'a:3:{i:67;i:1;i:68;i:1;i:21;i:1;}', '*182?*183?*31?', 'a:3:{i:182;a:1:{s:3:"qty";d:24;}i:183;a:1:{s:3:"qty";d:4;}i:31;a:1:{s:3:"qty";d:1;}}', 118),
(142, '86.130.114.216', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 't=132483', '/biz/', 'Home', '/biz/index.php?main_page=shopping_cart&product_id=182&zenid=0df7dc701b22e3b3e8db50dd3f01927f', 'The Shopping Cart', '2009-07-18 21:13:23', '2009-07-18 21:14:22', 6, 'true', 'false', 'a:2:{i:67;i:1;i:68;i:1;}', '*182?', 'Array', 2),
(143, '68.56.168.23', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)', '--', '', 0, 0, '', '', '/biz/', 'Home', '/biz/index.php?main_page=product_info&products_id=182', 'test2', '2009-07-18 21:14:29', '2009-07-18 21:57:06', 37, 'true', 'false', 'a:3:{i:67;i:1;i:68;i:1;i:21;i:1;}', '*184?*182?*31?', 'a:2:{i:31;a:1:{s:3:"qty";d:1;}i:182;a:1:{s:3:"qty";d:1;}}', 52),
(144, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, 'http://www.lifeleap.org/admin/', '', '/biz/', 'Home', '/biz/index.php?main_page=product_info&products_id=184&zenid=de8228fc1c8043724d1f683dacc7eaf1', 'Tomatoe', '2009-07-18 21:24:23', '2009-07-18 21:24:38', 2, 'true', 'false', 'b:0;', '*184?', 'a:1:{i:184;a:1:{s:3:"qty";d:20;}}', 75),
(145, '99.236.123.103', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_7; en-us) AppleWebKit/525.28.3 (KHTML, like Gecko) Version/3.2.3 Safari/525.28.3', '--', '', 0, 0, '', '', '/biz/', 'Home', '/biz/index.php?main_page=shopping_cart', 'The Shopping Cart', '2009-07-18 22:06:22', '2009-07-18 22:06:59', 3, 'true', 'false', 'b:0;', '*183?', 'a:1:{i:183;a:1:{s:3:"qty";d:1;}}', 5),
(146, '68.56.168.23', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)', '--', '', 0, 0, 'http://www.sarasotafarms.org/biz/index.php', 'main_page=product_info&products_id=182', '/biz/index.php?main_page=index', 'Home', '/biz/index.php?main_page=index&cPath=67_68', 'Cucumbers', '2009-07-18 22:40:54', '2009-07-18 23:16:03', 35, 'true', 'false', 'a:3:{i:21;i:1;i:67;i:1;i:68;i:1;}', '*182?*184?', 'a:2:{i:182;a:1:{s:3:"qty";d:2;}i:184;a:1:{s:3:"qty";d:1;}}', 7),
(147, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'http://www.lifeleap.org/admin/', '', '/biz/', 'Home', '/biz/index.php?main_page=shopping_cart', 'The Shopping Cart', '2009-07-18 22:58:13', '2009-07-18 23:32:25', 28, 'true', 'false', 'a:2:{i:67;i:1;i:68;i:1;}', '*181?*184?*183?*182?', 'a:4:{i:181;a:1:{s:3:"qty";d:3;}i:184;a:1:{s:3:"qty";d:2;}i:183;a:1:{s:3:"qty";d:1;}i:182;a:1:{s:3:"qty";d:1;}}', 23),
(148, '64.5.15.79', 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.10) Gecko/2009042316 Firefox/3.0.10 (.NET CLR 3.5.30729)', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 't=132483', '/biz/', 'Home', '/biz/', 'Home', '2009-07-19 00:36:58', '2009-07-19 00:36:58', 1, 'false', 'false', '', '', '', 0),
(149, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, '', '', '/biz/index.php?main_page=index', 'Home', '/biz/index.php?main_page=index', 'Home', '2009-07-19 01:13:13', '2009-07-19 01:21:11', 6, 'false', 'false', 'b:0;', '', '', 0),
(150, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'http://www.sarasotafarms.org/biz/index.php', 'main_page=index', '/biz/index.php?main_page=index', 'Home', '/biz/index.php?main_page=index', 'Home', '2009-07-19 02:03:20', '2009-07-19 04:05:13', 92, 'true', 'false', 'a:2:{i:67;i:1;i:68;i:1;}', '*184?*181?*31?', 'a:1:{i:31;a:1:{s:3:"qty";d:1;}}', 50),
(151, '80.223.101.230', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.0.30729)', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 't=132483&highlight=featured products', '/biz/', 'Home', '/biz/index.php?main_page=featured_products&zenid=f5a0b25bb9ac135555f2f8c488fe2d3a', 'Featured Products', '2009-07-19 05:29:06', '2009-07-19 05:29:23', 3, 'false', 'false', 'b:0;', '', '', 0),
(152, '124.191.48.211', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'http://www.zen-cart.com/forum/showthread.php', 't=132483', '/biz/', 'Home', '/biz/', 'Home', '2009-07-19 06:24:37', '2009-07-19 06:24:37', 1, 'false', 'false', '', '', '', 0),
(153, '67.235.189.76', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_7; en-us) AppleWebKit/530.19.2 (KHTML, like Gecko) Version/4.0.2 Safari/530.19', '--', '', 0, 0, '', '', '/biz/', 'Home', '/biz/index.php?main_page=contact_us&zenid=da4968c66ad72cf285831cb3bfc69869', 'Contact Us', '2009-07-19 06:26:09', '2009-07-19 06:26:45', 2, 'false', 'false', 'b:0;', '', '', 0),
(154, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 GTB5', '--', '', 0, 0, 'http://www.lifeleap.org/admin/', '', '/biz/', 'Home', '/biz/', 'Home', '2009-07-19 08:40:12', '2009-07-19 08:40:12', 1, 'false', 'false', '', '', '', 0),
(155, '68.56.168.23', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11', '--', '', 0, 0, 'http://www.lifeleap.org/admin/', '', '/biz/', 'Home', '/biz/index.php?main_page=index&products_id=183&zenid=35e75f9d55adeebd68f7cb7e72a86dc1', 'test3', '2009-07-19 09:04:17', '2009-07-19 09:11:50', 12, 'true', 'false', 'b:0;', '*181?*184?', 'a:3:{i:181;a:1:{s:3:"qty";d:2;}i:184;a:1:{s:3:"qty";d:1;}i:183;a:1:{s:3:"qty";d:1;}}', 12);
 
-- --------------------------------------------------------
 
--
-- Table structure for table `tax_class`
--
 
CREATE TABLE IF NOT EXISTS `tax_class` (
  `tax_class_id` int(11) NOT NULL auto_increment,
  `tax_class_title` varchar(32) NOT NULL default '',
  `tax_class_description` varchar(255) NOT NULL default '',
  `last_modified` datetime default NULL,
  `date_added` datetime NOT NULL default '0001-01-01 00:00:00',
  PRIMARY KEY  (`tax_class_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
 
--
-- Dumping data for table `tax_class`
--
 
INSERT INTO `tax_class` (`tax_class_id`, `tax_class_title`, `tax_class_description`, `last_modified`, `date_added`) VALUES
(1, 'Taxable Goods', 'The following types of products are included: non-food, services, etc', NULL, '2008-01-03 11:24:41');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `tax_rates`
--
 
CREATE TABLE IF NOT EXISTS `tax_rates` (
  `tax_rates_id` int(11) NOT NULL auto_increment,
  `tax_zone_id` int(11) NOT NULL default '0',
  `tax_class_id` int(11) NOT NULL default '0',
  `tax_priority` int(5) default '1',
  `tax_rate` decimal(7,4) NOT NULL default '0.0000',
  `tax_description` varchar(255) NOT NULL default '',
  `last_modified` datetime default NULL,
  `date_added` datetime NOT NULL default '0001-01-01 00:00:00',
  PRIMARY KEY  (`tax_rates_id`),
  KEY `idx_tax_zone_id_zen` (`tax_zone_id`),
  KEY `idx_tax_class_id_zen` (`tax_class_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
 
--
-- Dumping data for table `tax_rates`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `template_select`
--
 
CREATE TABLE IF NOT EXISTS `template_select` (
  `template_id` int(11) NOT NULL auto_increment,
  `template_dir` varchar(64) NOT NULL default '',
  `template_language` varchar(64) NOT NULL default '0',
  PRIMARY KEY  (`template_id`),
  KEY `idx_tpl_lang_zen` (`template_language`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
 
--
-- Dumping data for table `template_select`
--
 
INSERT INTO `template_select` (`template_id`, `template_dir`, `template_language`) VALUES
(1, 'farm', '0');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `upgrade_exceptions`
--
 
CREATE TABLE IF NOT EXISTS `upgrade_exceptions` (
  `upgrade_exception_id` smallint(5) NOT NULL auto_increment,
  `sql_file` varchar(50) default NULL,
  `reason` varchar(200) default NULL,
  `errordate` datetime default '0001-01-01 00:00:00',
  `sqlstatement` text,
  PRIMARY KEY  (`upgrade_exception_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
 
--
-- Dumping data for table `upgrade_exceptions`
--
 
 
-- --------------------------------------------------------
 
--
-- Table structure for table `whos_online`
--
 
CREATE TABLE IF NOT EXISTS `whos_online` (
  `customer_id` int(11) default NULL,
  `full_name` varchar(64) NOT NULL default '',
  `session_id` varchar(128) NOT NULL default '',
  `ip_address` varchar(15) NOT NULL default '',
  `time_entry` varchar(14) NOT NULL default '',
  `time_last_click` varchar(14) NOT NULL default '',
  `last_page_url` varchar(255) NOT NULL default '',
  `host_address` text NOT NULL,
  `user_agent` varchar(255) NOT NULL default '',
  KEY `idx_ip_address_zen` (`ip_address`),
  KEY `idx_session_id_zen` (`session_id`),
  KEY `idx_customer_id_zen` (`customer_id`),
  KEY `idx_time_entry_zen` (`time_entry`),
  KEY `idx_time_last_click_zen` (`time_last_click`),
  KEY `idx_last_page_url_zen` (`last_page_url`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 
--
-- Dumping data for table `whos_online`
--
 
INSERT INTO `whos_online` (`customer_id`, `full_name`, `session_id`, `ip_address`, `time_entry`, `time_last_click`, `last_page_url`, `host_address`, `user_agent`) VALUES
(0, '&yen;Guest', '35e75f9d55adeebd68f7cb7e72a86dc1', '68.56.168.23', '1248015857', '1248016310', '/biz/index.php?main_page=index&products_id=183&zenid=35e75f9d55adeebd68f7cb7e72a86dc1', 'c-68-56-168-23.hsd1.fl.comcast.net', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `zones`
--
 
CREATE TABLE IF NOT EXISTS `zones` (
  `zone_id` int(11) NOT NULL auto_increment,
  `zone_country_id` int(11) NOT NULL default '0',
  `zone_code` varchar(32) NOT NULL default '',
  `zone_name` varchar(32) NOT NULL default '',
  PRIMARY KEY  (`zone_id`),
  KEY `idx_zone_country_id_zen` (`zone_country_id`),
  KEY `idx_zone_code_zen` (`zone_code`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=190 ;
 
--
-- Dumping data for table `zones`
--
 
INSERT INTO `zones` (`zone_id`, `zone_country_id`, `zone_code`, `zone_name`) VALUES
(1, 223, 'AL', 'Alabama'),
(2, 223, 'AK', 'Alaska'),
(3, 223, 'AS', 'American Samoa'),
(4, 223, 'AZ', 'Arizona'),
(5, 223, 'AR', 'Arkansas'),
(6, 223, 'AF', 'Armed Forces Africa'),
(7, 223, 'AA', 'Armed Forces Americas'),
(8, 223, 'AC', 'Armed Forces Canada'),
(9, 223, 'AE', 'Armed Forces Europe'),
(10, 223, 'AM', 'Armed Forces Middle East'),
(11, 223, 'AP', 'Armed Forces Pacific'),
(12, 223, 'CA', 'California'),
(13, 223, 'CO', 'Colorado'),
(14, 223, 'CT', 'Connecticut'),
(15, 223, 'DE', 'Delaware'),
(16, 223, 'DC', 'District of Columbia'),
(17, 223, 'FM', 'Federated States Of Micronesia'),
(18, 223, 'FL', 'Florida'),
(19, 223, 'GA', 'Georgia'),
(20, 223, 'GU', 'Guam'),
(21, 223, 'HI', 'Hawaii'),
(22, 223, 'ID', 'Idaho'),
(23, 223, 'IL', 'Illinois'),
(24, 223, 'IN', 'Indiana'),
(25, 223, 'IA', 'Iowa'),
(26, 223, 'KS', 'Kansas'),
(27, 223, 'KY', 'Kentucky'),
(28, 223, 'LA', 'Louisiana'),
(29, 223, 'ME', 'Maine'),
(30, 223, 'MH', 'Marshall Islands'),
(31, 223, 'MD', 'Maryland'),
(32, 223, 'MA', 'Massachusetts'),
(33, 223, 'MI', 'Michigan'),
(34, 223, 'MN', 'Minnesota'),
(35, 223, 'MS', 'Mississippi'),
(36, 223, 'MO', 'Missouri'),
(37, 223, 'MT', 'Montana'),
(38, 223, 'NE', 'Nebraska'),
(39, 223, 'NV', 'Nevada'),
(40, 223, 'NH', 'New Hampshire'),
(41, 223, 'NJ', 'New Jersey'),
(42, 223, 'NM', 'New Mexico'),
(43, 223, 'NY', 'New York'),
(44, 223, 'NC', 'North Carolina'),
(45, 223, 'ND', 'North Dakota'),
(46, 223, 'MP', 'Northern Mariana Islands'),
(47, 223, 'OH', 'Ohio'),
(48, 223, 'OK', 'Oklahoma'),
(49, 223, 'OR', 'Oregon'),
(50, 163, 'PW', 'Palau'),
(51, 223, 'PA', 'Pennsylvania'),
(52, 223, 'PR', 'Puerto Rico'),
(53, 223, 'RI', 'Rhode Island'),
(54, 223, 'SC', 'South Carolina'),
(55, 223, 'SD', 'South Dakota'),
(56, 223, 'TN', 'Tennessee'),
(57, 223, 'TX', 'Texas'),
(58, 223, 'UT', 'Utah'),
(59, 223, 'VT', 'Vermont'),
(60, 223, 'VI', 'Virgin Islands'),
(61, 223, 'VA', 'Virginia'),
(62, 223, 'WA', 'Washington'),
(63, 223, 'WV', 'West Virginia'),
(64, 223, 'WI', 'Wisconsin'),
(65, 223, 'WY', 'Wyoming'),
(66, 38, 'AB', 'Alberta'),
(67, 38, 'BC', 'British Columbia'),
(68, 38, 'MB', 'Manitoba'),
(69, 38, 'NL', 'Newfoundland'),
(70, 38, 'NB', 'New Brunswick'),
(71, 38, 'NS', 'Nova Scotia'),
(72, 38, 'NT', 'Northwest Territories'),
(73, 38, 'NU', 'Nunavut'),
(74, 38, 'ON', 'Ontario'),
(75, 38, 'PE', 'Prince Edward Island'),
(76, 38, 'QC', 'Quebec'),
(77, 38, 'SK', 'Saskatchewan'),
(78, 38, 'YT', 'Yukon Territory'),
(79, 81, 'NDS', 'Niedersachsen'),
(80, 81, 'BAW', 'Baden Würtemberg'),
(81, 81, 'BAY', 'Bayern'),
(82, 81, 'BER', 'Berlin'),
(83, 81, 'BRG', 'Brandenburg'),
(84, 81, 'BRE', 'Bremen'),
(85, 81, 'HAM', 'Hamburg'),
(86, 81, 'HES', 'Hessen'),
(87, 81, 'MEC', 'Mecklenburg-Vorpommern'),
(88, 81, 'NRW', 'Nordrhein-Westfalen'),
(89, 81, 'RHE', 'Rheinland-Pfalz'),
(90, 81, 'SAR', 'Saarland'),
(91, 81, 'SAS', 'Sachsen'),
(92, 81, 'SAC', 'Sachsen-Anhalt'),
(93, 81, 'SCN', 'Schleswig-Holstein'),
(94, 81, 'THE', 'Thringen'),
(95, 14, 'WI', 'Wien'),
(96, 14, 'NO', 'Niedersterreich'),
(97, 14, 'OO', 'Obersterreich'),
(98, 14, 'SB', 'Salzburg'),
(99, 14, 'KN', 'Kärnten'),
(100, 14, 'ST', 'Steiermark'),
(101, 14, 'TI', 'Tirol'),
(102, 14, 'BL', 'Burgenland'),
(103, 14, 'VB', 'Voralberg'),
(104, 204, 'AG', 'Aargau'),
(105, 204, 'AI', 'Appenzell Innerrhoden'),
(106, 204, 'AR', 'Appenzell Ausserrhoden'),
(107, 204, 'BE', 'Bern'),
(108, 204, 'BL', 'Basel-Landschaft'),
(109, 204, 'BS', 'Basel-Stadt'),
(110, 204, 'FR', 'Freiburg'),
(111, 204, 'GE', 'Genf'),
(112, 204, 'GL', 'Glarus'),
(113, 204, 'JU', 'Graubnden'),
(114, 204, 'JU', 'Jura'),
(115, 204, 'LU', 'Luzern'),
(116, 204, 'NE', 'Neuenburg'),
(117, 204, 'NW', 'Nidwalden'),
(118, 204, 'OW', 'Obwalden'),
(119, 204, 'SG', 'St. Gallen'),
(120, 204, 'SH', 'Schaffhausen'),
(121, 204, 'SO', 'Solothurn'),
(122, 204, 'SZ', 'Schwyz'),
(123, 204, 'TG', 'Thurgau'),
(124, 204, 'TI', 'Tessin'),
(125, 204, 'UR', 'Uri'),
(126, 204, 'VD', 'Waadt'),
(127, 204, 'VS', 'Wallis'),
(128, 204, 'ZG', 'Zug'),
(129, 204, 'ZH', 'Zrich'),
(130, 195, 'A Corua', 'A Corua'),
(131, 195, 'Alava', 'Alava'),
(132, 195, 'Albacete', 'Albacete'),
(133, 195, 'Alicante', 'Alicante'),
(134, 195, 'Almeria', 'Almeria'),
(135, 195, 'Asturias', 'Asturias'),
(136, 195, 'Avila', 'Avila'),
(137, 195, 'Badajoz', 'Badajoz'),
(138, 195, 'Baleares', 'Baleares'),
(139, 195, 'Barcelona', 'Barcelona'),
(140, 195, 'Burgos', 'Burgos'),
(141, 195, 'Caceres', 'Caceres'),
(142, 195, 'Cadiz', 'Cadiz'),
(143, 195, 'Cantabria', 'Cantabria'),
(144, 195, 'Castellon', 'Castellon'),
(145, 195, 'Ceuta', 'Ceuta'),
(146, 195, 'Ciudad Real', 'Ciudad Real'),
(147, 195, 'Cordoba', 'Cordoba'),
(148, 195, 'Cuenca', 'Cuenca'),
(149, 195, 'Girona', 'Girona'),
(150, 195, 'Granada', 'Granada'),
(151, 195, 'Guadalajara', 'Guadalajara'),
(152, 195, 'Guipuzcoa', 'Guipuzcoa'),
(153, 195, 'Huelva', 'Huelva'),
(154, 195, 'Huesca', 'Huesca'),
(155, 195, 'Jaen', 'Jaen'),
(156, 195, 'La Rioja', 'La Rioja'),
(157, 195, 'Las Palmas', 'Las Palmas'),
(158, 195, 'Leon', 'Leon'),
(159, 195, 'Lleida', 'Lleida'),
(160, 195, 'Lugo', 'Lugo'),
(161, 195, 'Madrid', 'Madrid'),
(162, 195, 'Malaga', 'Malaga'),
(163, 195, 'Melilla', 'Melilla'),
(164, 195, 'Murcia', 'Murcia'),
(165, 195, 'Navarra', 'Navarra'),
(166, 195, 'Ourense', 'Ourense'),
(167, 195, 'Palencia', 'Palencia'),
(168, 195, 'Pontevedra', 'Pontevedra'),
(169, 195, 'Salamanca', 'Salamanca'),
(170, 195, 'Santa Cruz de Tenerife', 'Santa Cruz de Tenerife'),
(171, 195, 'Segovia', 'Segovia'),
(172, 195, 'Sevilla', 'Sevilla'),
(173, 195, 'Soria', 'Soria'),
(174, 195, 'Tarragona', 'Tarragona'),
(175, 195, 'Teruel', 'Teruel'),
(176, 195, 'Toledo', 'Toledo'),
(177, 195, 'Valencia', 'Valencia'),
(178, 195, 'Valladolid', 'Valladolid'),
(179, 195, 'Vizcaya', 'Vizcaya'),
(180, 195, 'Zamora', 'Zamora'),
(181, 195, 'Zaragoza', 'Zaragoza'),
(182, 13, 'ACT', 'Australian Capital Territory'),
(183, 13, 'NSW', 'New South Wales'),
(184, 13, 'NT', 'Northern Territory'),
(185, 13, 'QLD', 'Queensland'),
(186, 13, 'SA', 'South Australia'),
(187, 13, 'TAS', 'Tasmania'),
(188, 13, 'VIC', 'Victoria'),
(189, 13, 'WA', 'Western Australia');
 
-- --------------------------------------------------------
 
--
-- Table structure for table `zones_to_geo_zones`
--
 
CREATE TABLE IF NOT EXISTS `zones_to_geo_zones` (
  `association_id` int(11) NOT NULL auto_increment,
  `zone_country_id` int(11) NOT NULL default '0',
  `zone_id` int(11) default NULL,
  `geo_zone_id` int(11) default NULL,
  `last_modified` datetime default NULL,
  `date_added` datetime NOT NULL default '0001-01-01 00:00:00',
  PRIMARY KEY  (`association_id`),
  KEY `idx_zones_zen` (`geo_zone_id`,`zone_country_id`,`zone_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
 
--
-- Dumping data for table `zones_to_geo_zones`
--
 
INSERT INTO `zones_to_geo_zones` (`association_id`, `zone_country_id`, `zone_id`, `geo_zone_id`, `last_modified`, `date_added`) VALUES
(1, 223, 18, 1, NULL, '2008-01-03 11:24:41');
 
 
 
 
 
 
 
 
Second Code

Open in new window

Avatar of racek
racek
Flag of Sweden image

remove text "First Code" before create table ... :-)
Avatar of dsellers99
dsellers99

ASKER

racek - thanks for reply. Yes, I put "First Code"  there to help anyone here identify what code I was referring to. If wasn't' actual in the sql file. In fact, I forget to put in the second block of code (the query I added to the original file which I'm trying to get rid of). I'm attaching it to this message. I just need to get the original file (in my first post) back to the way it was before I ran the query (in this post). Any suggestions would be greatly appreciated.
INSERT INTO `configuration` (`configuration_title`, `configuration_key`, `configuration_value`, `configuration_description`, `configuration_group_id`, `sort_order`, `last_modified`, `date_added`, `use_function`, `set_function`) VALUES
('Index New Listing Template', 'INDEX_NEW_USE_PRODUCT_LISTING', '2', 'Set to 1 to use the original listing template, 2 to use the shared listing template, 3 to use the product listing template.', 24, 1, NOW(), NOW(), NULL, 'zen_cfg_select_option(array(''1'', ''2'', ''3''),'),
('Index Special Listing Template', 'INDEX_SPECIAL_USE_PRODUCT_LISTING', '1', 'Set to 1 to use the original listing template, 2 to use the shared listing template, 3 to use the product listing template.', 24, 1, NOW(), NOW(), NULL, 'zen_cfg_select_option(array(''1'', ''2'', ''3''),'),
('Index Featured Listing Template', 'INDEX_FEATURED_USE_PRODUCT_LISTING', '1', 'Set to 1 to use the original listing template, 2 to use the shared listing template, 3 to use the product listing template.', 24, 1, NOW(), NOW(), NULL, 'zen_cfg_select_option(array(''1'', ''2'', ''3''),');

Open in new window

there is nothing after Second Code in your attached code snippet.

the first code block, as you would expect, works fine.

I'm unclear what you changed.
kevin_u: - I know, I goofed. I didn't put the code in that was suppose to be after Second Code. Instead, I inserted it in my second post of this topic. Hope that makes sense. Any suggestions greatly appreciated.
after removing those lines, there is a trailing comma on the previous line.   It needs to be a semicolon to terminate the statement.
If I didn't understand correctly, perhaps you can post your edited version (the one that fails)
Oh! So I just take out 576, 577 and 578 and then put a semicolon after 575?
On the one that failed, I just took out 576, 577 and 578, but I did not put the semicolon after 575. Would you recommend that I test it this way in my database?
yes, remove the comma , after the 575 line and replace it with a semicolon  ;
Seemed to work better (I didn't get the nasty message in phpmyadmin), but I'm still getting the error message on my site which wasn't there before:

1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'limit 0, 10' at line 1
in:
[ limit 0, 10]

You can see the error on this page: http://www.sarasotafarms.org/biz/index.php?main_page=featured_products

Any ideas what the heck might be wrong? Thanks for any suggestions.
ASKER CERTIFIED SOLUTION
Avatar of kevin_u
kevin_u
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
kevin_u: - Got it. Fortunately, Zen Cart has a pretty good script debugger. Thanks for all of your help in getting me though this challenge.