PageRenderTime 71ms CodeModel.GetById 32ms RepoModel.GetById 0ms app.codeStats 2ms

/zencart_svn.sql

https://github.com/happyxlq/zencart_svn
SQL | 4212 lines | 3381 code | 344 blank | 487 comment | 0 complexity | 4708e3af963ec54480c7549e19c50a27 MD5 | raw file
Possible License(s): BSD-3-Clause, LGPL-2.1

Large files files are truncated, but you can click here to view the full file

  1. -- phpMyAdmin SQL Dump
  2. -- version 2.10.2
  3. -- http://www.phpmyadmin.net
  4. --
  5. -- 主机: localhost
  6. -- 生成日期: 2010 09 27 02:15
  7. -- 服务器版本: 5.0.45
  8. -- PHP 版本: 5.2.3
  9. SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
  10. --
  11. -- 数据库: `zencart_svn`
  12. --
  13. -- --------------------------------------------------------
  14. --
  15. -- 表的结构 `address_book`
  16. --
  17. CREATE TABLE `address_book` (
  18. `address_book_id` int(11) NOT NULL auto_increment,
  19. `customers_id` int(11) NOT NULL default '0',
  20. `entry_gender` char(1) NOT NULL default '',
  21. `entry_company` varchar(64) default NULL,
  22. `entry_firstname` varchar(32) NOT NULL default '',
  23. `entry_lastname` varchar(32) NOT NULL default '',
  24. `entry_street_address` varchar(64) NOT NULL default '',
  25. `entry_suburb` varchar(32) default NULL,
  26. `entry_postcode` varchar(10) NOT NULL default '',
  27. `entry_city` varchar(32) NOT NULL default '',
  28. `entry_state` varchar(32) default NULL,
  29. `entry_country_id` int(11) NOT NULL default '0',
  30. `entry_zone_id` int(11) NOT NULL default '0',
  31. PRIMARY KEY (`address_book_id`),
  32. KEY `idx_address_book_customers_id_zen` (`customers_id`)
  33. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ;
  34. --
  35. -- 导出表中的数据 `address_book`
  36. --
  37. INSERT INTO `address_book` VALUES (3, 3, 'm', NULL, 'sadasd', 'asdasd', 'asdasd', 'asdasd', 'asasd', 'asdasd', ' asdasd', 1, 0);
  38. -- --------------------------------------------------------
  39. --
  40. -- 表的结构 `address_format`
  41. --
  42. CREATE TABLE `address_format` (
  43. `address_format_id` int(11) NOT NULL auto_increment,
  44. `address_format` varchar(128) NOT NULL default '',
  45. `address_summary` varchar(48) NOT NULL default '',
  46. PRIMARY KEY (`address_format_id`)
  47. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ;
  48. --
  49. -- 导出表中的数据 `address_format`
  50. --
  51. INSERT INTO `address_format` VALUES (1, '$firstname $lastname$cr$streets$cr$city, $postcode$cr$statecomma$country', '$city / $country');
  52. INSERT INTO `address_format` VALUES (2, '$firstname $lastname$cr$streets$cr$city, $state $postcode$cr$country', '$city, $state / $country');
  53. INSERT INTO `address_format` VALUES (3, '$firstname $lastname$cr$streets$cr$city$cr$postcode - $statecomma$country', '$state / $country');
  54. INSERT INTO `address_format` VALUES (4, '$firstname $lastname$cr$streets$cr$city ($postcode)$cr$country', '$postcode / $country');
  55. INSERT INTO `address_format` VALUES (5, '$firstname $lastname$cr$streets$cr$postcode $city$cr$country', '$city / $country');
  56. INSERT INTO `address_format` VALUES (6, '$firstname $lastname$cr$streets$cr$city$cr$state$cr$postcode$cr$country', '$postcode / $country');
  57. INSERT INTO `address_format` VALUES (7, '$postcode$cr$state $city$cr$streets$cr$company$cr$firstname $lastname', '$city / $country');
  58. -- --------------------------------------------------------
  59. --
  60. -- 表的结构 `admin`
  61. --
  62. CREATE TABLE `admin` (
  63. `admin_id` int(11) NOT NULL auto_increment,
  64. `admin_name` varchar(32) NOT NULL default '',
  65. `admin_email` varchar(96) NOT NULL default '',
  66. `admin_pass` varchar(40) NOT NULL default '',
  67. `admin_level` tinyint(1) NOT NULL default '1',
  68. PRIMARY KEY (`admin_id`),
  69. KEY `idx_admin_name_zen` (`admin_name`),
  70. KEY `idx_admin_email_zen` (`admin_email`)
  71. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
  72. --
  73. -- 导出表中的数据 `admin`
  74. --
  75. INSERT INTO `admin` VALUES (1, 'admin', 'admin@admin.com', '4775258a309283cb681318eb743e8325:f8', 1);
  76. -- --------------------------------------------------------
  77. --
  78. -- 表的结构 `admin_activity_log`
  79. --
  80. CREATE TABLE `admin_activity_log` (
  81. `log_id` int(15) NOT NULL auto_increment,
  82. `access_date` datetime NOT NULL default '0001-01-01 00:00:00',
  83. `admin_id` int(11) NOT NULL default '0',
  84. `page_accessed` varchar(80) NOT NULL default '',
  85. `page_parameters` text,
  86. `ip_address` varchar(15) NOT NULL default '',
  87. PRIMARY KEY (`log_id`),
  88. KEY `idx_page_accessed_zen` (`page_accessed`),
  89. KEY `idx_access_date_zen` (`access_date`),
  90. KEY `idx_ip_zen` (`ip_address`)
  91. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=285 ;
  92. --
  93. -- 导出表中的数据 `admin_activity_log`
  94. --
  95. INSERT INTO `admin_activity_log` VALUES (1, '2010-09-25 11:37:13', 0, 'login.php ', '', '172.16.2.26');
  96. INSERT INTO `admin_activity_log` VALUES (2, '2010-09-25 11:37:17', 0, 'login.php admin', '', '172.16.2.26');
  97. INSERT INTO `admin_activity_log` VALUES (3, '2010-09-25 11:37:20', 1, 'categories.php', '', '172.16.2.26');
  98. INSERT INTO `admin_activity_log` VALUES (4, '2010-09-25 11:37:21', 1, 'categories.php', 'cPath=13&', '172.16.2.26');
  99. INSERT INTO `admin_activity_log` VALUES (5, '2010-09-25 11:37:22', 1, 'categories.php', 'cPath=13_14&', '172.16.2.26');
  100. INSERT INTO `admin_activity_log` VALUES (6, '2010-09-25 11:37:22', 1, 'product.php', 'page=1&product_type=1&cPath=13_14&pID=25&action=new_product&', '172.16.2.26');
  101. INSERT INTO `admin_activity_log` VALUES (7, '2010-09-25 15:20:55', 0, 'login.php ', '', '172.16.2.26');
  102. INSERT INTO `admin_activity_log` VALUES (8, '2010-09-25 15:20:58', 0, 'login.php admin', '', '172.16.2.26');
  103. INSERT INTO `admin_activity_log` VALUES (9, '2010-09-25 15:21:07', 1, 'configuration.php', 'gID=1&', '172.16.2.26');
  104. INSERT INTO `admin_activity_log` VALUES (10, '2010-09-25 15:48:52', 1, 'configuration.php', 'gID=1&cID=2&action=edit&', '172.16.2.26');
  105. INSERT INTO `admin_activity_log` VALUES (11, '2010-09-25 15:48:55', 1, 'configuration.php', 'gID=1&cID=1&action=edit&', '172.16.2.26');
  106. INSERT INTO `admin_activity_log` VALUES (12, '2010-09-25 16:11:42', 0, 'login.php ', '', '172.16.2.26');
  107. INSERT INTO `admin_activity_log` VALUES (13, '2010-09-25 16:11:46', 0, 'login.php admin', '', '172.16.2.26');
  108. INSERT INTO `admin_activity_log` VALUES (14, '2010-09-25 16:11:51', 1, 'configuration.php', 'gID=1&', '172.16.2.26');
  109. INSERT INTO `admin_activity_log` VALUES (15, '2010-09-25 16:11:56', 1, 'configuration.php', 'gID=19&', '172.16.2.26');
  110. INSERT INTO `admin_activity_log` VALUES (16, '2010-09-25 16:12:01', 1, 'configuration.php', 'gID=19&cID=412&action=edit&', '172.16.2.26');
  111. INSERT INTO `admin_activity_log` VALUES (17, '2010-09-25 16:12:08', 1, 'ezpages.php', '', '172.16.2.26');
  112. INSERT INTO `admin_activity_log` VALUES (18, '2010-09-25 16:12:10', 1, 'define_pages_editor.php', '', '172.16.2.26');
  113. INSERT INTO `admin_activity_log` VALUES (19, '2010-09-25 16:12:14', 1, 'define_pages_editor.php', 'securityToken=01178c68d966bada1dac4b42d1fa4f42&define_it=4&action=new_page&', '172.16.2.26');
  114. INSERT INTO `admin_activity_log` VALUES (20, '2010-09-25 16:12:17', 1, 'define_pages_editor.php', 'lngdir=schinese&filename=define_main_page.php&action=save&', '172.16.2.26');
  115. INSERT INTO `admin_activity_log` VALUES (21, '2010-09-25 16:12:17', 1, 'define_pages_editor.php', '', '172.16.2.26');
  116. INSERT INTO `admin_activity_log` VALUES (22, '2010-09-25 16:49:10', 1, 'product_types.php', '', '172.16.2.26');
  117. INSERT INTO `admin_activity_log` VALUES (23, '2010-09-25 16:49:13', 1, 'product_types.php', 'page=1&ptID=1&action=layout&', '172.16.2.26');
  118. INSERT INTO `admin_activity_log` VALUES (24, '2010-09-25 16:49:16', 1, 'product_types.php', 'ptID=1&cID=15&action=layout_edit&', '172.16.2.26');
  119. INSERT INTO `admin_activity_log` VALUES (25, '2010-09-25 16:49:20', 1, 'product_types.php', 'ptID=1&cID=15&action=layout_save&', '172.16.2.26');
  120. INSERT INTO `admin_activity_log` VALUES (26, '2010-09-25 16:49:20', 1, 'product_types.php', 'gID=&cID=15&ptID=1&action=layout&', '172.16.2.26');
  121. INSERT INTO `admin_activity_log` VALUES (27, '2010-09-25 17:16:51', 1, 'configuration.php', 'gID=22&', '172.16.2.26');
  122. INSERT INTO `admin_activity_log` VALUES (28, '2010-09-25 17:16:55', 1, 'configuration.php', 'securityToken=01178c68d966bada1dac4b42d1fa4f42&language=en&', '172.16.2.26');
  123. INSERT INTO `admin_activity_log` VALUES (29, '2010-09-25 17:45:49', 1, 'developers_tool_kit.php', '', '172.16.2.26');
  124. INSERT INTO `admin_activity_log` VALUES (30, '2010-09-25 17:45:55', 1, 'developers_tool_kit.php', 'action=locate_all_files&', '172.16.2.26');
  125. INSERT INTO `admin_activity_log` VALUES (31, '2010-09-26 09:18:56', 0, 'login.php ', '', '172.16.2.26');
  126. INSERT INTO `admin_activity_log` VALUES (32, '2010-09-26 09:19:04', 0, 'login.php admin', '', '172.16.2.26');
  127. INSERT INTO `admin_activity_log` VALUES (33, '2010-09-26 09:19:14', 1, 'ezpages.php', '', '172.16.2.26');
  128. INSERT INTO `admin_activity_log` VALUES (34, '2010-09-26 09:19:17', 1, 'ezpages.php', 'action=new&', '172.16.2.26');
  129. INSERT INTO `admin_activity_log` VALUES (35, '2010-09-26 09:20:05', 1, 'ezpages.php', 'action=insert&', '172.16.2.26');
  130. INSERT INTO `admin_activity_log` VALUES (36, '2010-09-26 09:20:05', 1, 'ezpages.php', 'ezID=14&', '172.16.2.26');
  131. INSERT INTO `admin_activity_log` VALUES (37, '2010-09-26 09:20:11', 1, 'ezpages.php', 'page=1&ezID=14&', '172.16.2.26');
  132. INSERT INTO `admin_activity_log` VALUES (38, '2010-09-26 09:20:15', 1, 'ezpages.php', 'page=1&ezID=14&action=new&', '172.16.2.26');
  133. INSERT INTO `admin_activity_log` VALUES (39, '2010-09-26 09:20:25', 1, 'ezpages.php', 'page=1&action=update&', '172.16.2.26');
  134. INSERT INTO `admin_activity_log` VALUES (40, '2010-09-26 09:20:26', 1, 'ezpages.php', 'page=1&ezID=14&', '172.16.2.26');
  135. INSERT INTO `admin_activity_log` VALUES (41, '2010-09-26 09:20:32', 1, 'ezpages.php', 'page=1&ezID=14&action=new&', '172.16.2.26');
  136. INSERT INTO `admin_activity_log` VALUES (42, '2010-09-26 09:21:01', 1, 'ezpages.php', 'page=1&action=update&', '172.16.2.26');
  137. INSERT INTO `admin_activity_log` VALUES (43, '2010-09-26 09:21:01', 1, 'ezpages.php', 'page=1&ezID=14&', '172.16.2.26');
  138. INSERT INTO `admin_activity_log` VALUES (44, '2010-09-26 09:21:30', 1, 'ezpages.php', 'page=1&ezID=14&', '172.16.2.26');
  139. INSERT INTO `admin_activity_log` VALUES (45, '2010-09-26 09:21:30', 1, 'ezpages.php', 'action=page_open_new_window&current=0&ezID=14&page=1&', '172.16.2.26');
  140. INSERT INTO `admin_activity_log` VALUES (46, '2010-09-26 09:21:30', 1, 'ezpages.php', 'page=1&ezID=14&', '172.16.2.26');
  141. INSERT INTO `admin_activity_log` VALUES (47, '2010-09-26 09:21:32', 1, 'ezpages.php', 'page=1&ezID=14&', '172.16.2.26');
  142. INSERT INTO `admin_activity_log` VALUES (48, '2010-09-26 09:21:32', 1, 'ezpages.php', 'action=page_is_ssl&current=0&ezID=14&page=1&', '172.16.2.26');
  143. INSERT INTO `admin_activity_log` VALUES (49, '2010-09-26 09:21:32', 1, 'ezpages.php', 'page=1&ezID=14&', '172.16.2.26');
  144. INSERT INTO `admin_activity_log` VALUES (50, '2010-09-26 09:21:42', 1, 'ezpages.php', 'page=1&ezID=14&action=new&', '172.16.2.26');
  145. INSERT INTO `admin_activity_log` VALUES (51, '2010-09-26 09:21:45', 1, 'ezpages.php', 'page=1&action=update&', '172.16.2.26');
  146. INSERT INTO `admin_activity_log` VALUES (52, '2010-09-26 09:21:45', 1, 'ezpages.php', 'page=1&ezID=14&', '172.16.2.26');
  147. INSERT INTO `admin_activity_log` VALUES (53, '2010-09-26 09:31:52', 1, 'developers_tool_kit.php', '', '172.16.2.26');
  148. INSERT INTO `admin_activity_log` VALUES (54, '2010-09-26 09:31:59', 1, 'developers_tool_kit.php', 'action=locate_all_files&', '172.16.2.26');
  149. INSERT INTO `admin_activity_log` VALUES (55, '2010-09-26 09:34:12', 1, 'ezpages.php', '', '172.16.2.26');
  150. INSERT INTO `admin_activity_log` VALUES (56, '2010-09-26 09:34:14', 1, 'ezpages.php', 'page=1&ezID=14&', '172.16.2.26');
  151. INSERT INTO `admin_activity_log` VALUES (57, '2010-09-26 09:34:15', 1, 'ezpages.php', 'page=1&ezID=14&action=new&', '172.16.2.26');
  152. INSERT INTO `admin_activity_log` VALUES (58, '2010-09-26 09:34:18', 1, 'ezpages.php', 'page=1&ezID=14&', '172.16.2.26');
  153. INSERT INTO `admin_activity_log` VALUES (59, '2010-09-26 09:34:20', 1, 'ezpages.php', 'page=1&ezID=14&action=delete&', '172.16.2.26');
  154. INSERT INTO `admin_activity_log` VALUES (60, '2010-09-26 09:34:22', 1, 'ezpages.php', 'page=1&ezID=14&action=deleteconfirm&', '172.16.2.26');
  155. INSERT INTO `admin_activity_log` VALUES (61, '2010-09-26 09:34:22', 1, 'ezpages.php', 'page=1&', '172.16.2.26');
  156. INSERT INTO `admin_activity_log` VALUES (62, '2010-09-26 09:34:25', 1, 'ezpages.php', 'action=new&', '172.16.2.26');
  157. INSERT INTO `admin_activity_log` VALUES (63, '2010-09-26 09:34:47', 1, 'ezpages.php', 'action=insert&', '172.16.2.26');
  158. INSERT INTO `admin_activity_log` VALUES (64, '2010-09-26 09:34:47', 1, 'ezpages.php', 'ezID=15&', '172.16.2.26');
  159. INSERT INTO `admin_activity_log` VALUES (65, '2010-09-26 09:35:05', 1, 'ezpages.php', 'page=1&ezID=15&action=delete&', '172.16.2.26');
  160. INSERT INTO `admin_activity_log` VALUES (66, '2010-09-26 09:35:06', 1, 'ezpages.php', 'page=1&ezID=15&action=deleteconfirm&', '172.16.2.26');
  161. INSERT INTO `admin_activity_log` VALUES (67, '2010-09-26 09:35:06', 1, 'ezpages.php', 'page=1&', '172.16.2.26');
  162. INSERT INTO `admin_activity_log` VALUES (68, '2010-09-26 09:37:14', 1, 'ezpages.php', 'page=1&', '172.16.2.26');
  163. INSERT INTO `admin_activity_log` VALUES (69, '2010-09-26 09:37:16', 1, 'dsf_shipping.php', '', '172.16.2.26');
  164. INSERT INTO `admin_activity_log` VALUES (70, '2010-09-26 09:37:25', 1, 'dsf_shipping.php', 'action=do_install&', '172.16.2.26');
  165. INSERT INTO `admin_activity_log` VALUES (71, '2010-09-26 09:37:28', 1, 'dsf_shipping.php', 'action=account_info&', '172.16.2.26');
  166. INSERT INTO `admin_activity_log` VALUES (72, '2010-09-26 09:37:34', 1, 'dsf_shipping.php', '', '172.16.2.26');
  167. INSERT INTO `admin_activity_log` VALUES (73, '2010-09-26 09:37:37', 1, 'dsf_shipping.php', 'action=account_edit&', '172.16.2.26');
  168. INSERT INTO `admin_activity_log` VALUES (74, '2010-09-26 09:37:39', 1, 'dsf_shipping.php', 'action=account_info&', '172.16.2.26');
  169. INSERT INTO `admin_activity_log` VALUES (75, '2010-09-26 09:37:43', 1, 'dsf_shipping.php', 'action=account_edit&', '172.16.2.26');
  170. INSERT INTO `admin_activity_log` VALUES (76, '2010-09-26 09:37:47', 1, 'dsf_shipping.php', 'action=account_info&', '172.16.2.26');
  171. INSERT INTO `admin_activity_log` VALUES (77, '2010-09-26 09:37:54', 1, 'modules.php', 'set=payment&', '172.16.2.26');
  172. INSERT INTO `admin_activity_log` VALUES (78, '2010-09-26 09:38:03', 1, 'modules.php', 'set=shipping&', '172.16.2.26');
  173. INSERT INTO `admin_activity_log` VALUES (79, '2010-09-26 09:38:06', 1, 'dsf_shipping.php', '', '172.16.2.26');
  174. INSERT INTO `admin_activity_log` VALUES (80, '2010-09-26 09:38:12', 1, 'dsf_shipping.php', '', '172.16.2.26');
  175. INSERT INTO `admin_activity_log` VALUES (81, '2010-09-26 09:38:13', 1, 'dsf_shipping.php', '', '172.16.2.26');
  176. INSERT INTO `admin_activity_log` VALUES (82, '2010-09-26 09:38:14', 1, 'dsf_shipping.php', 'page=1&sID=36&action=shipping_info&', '172.16.2.26');
  177. INSERT INTO `admin_activity_log` VALUES (83, '2010-09-26 09:38:15', 1, 'dsf_shipping.php', 'page=1&sID=33&action=shipping_info&', '172.16.2.26');
  178. INSERT INTO `admin_activity_log` VALUES (84, '2010-09-26 09:38:15', 1, 'dsf_shipping.php', 'page=1&sID=30&action=shipping_info&', '172.16.2.26');
  179. INSERT INTO `admin_activity_log` VALUES (85, '2010-09-26 09:38:16', 1, 'dsf_shipping.php', 'page=1&sID=29&action=shipping_info&', '172.16.2.26');
  180. INSERT INTO `admin_activity_log` VALUES (86, '2010-09-26 09:52:05', 1, 'dsf_shipping.php', '', '172.16.2.26');
  181. INSERT INTO `admin_activity_log` VALUES (87, '2010-09-26 09:52:07', 1, 'dsf_shipping.php', 'securityToken=f42829a83e6f22c5bcb86fa9eff5e36c&language=en&', '172.16.2.26');
  182. INSERT INTO `admin_activity_log` VALUES (88, '2010-09-26 09:52:10', 1, 'dsf_shipping.php', 'page=1&sID=30&action=shipping_info&', '172.16.2.26');
  183. INSERT INTO `admin_activity_log` VALUES (89, '2010-09-26 09:52:11', 1, 'dsf_shipping.php', 'page=1&sID=24&action=shipping_info&', '172.16.2.26');
  184. INSERT INTO `admin_activity_log` VALUES (90, '2010-09-26 09:52:11', 1, 'dsf_shipping.php', 'page=1&sID=22&action=shipping_info&', '172.16.2.26');
  185. INSERT INTO `admin_activity_log` VALUES (91, '2010-09-26 09:52:12', 1, 'dsf_shipping.php', 'page=1&sID=20&action=shipping_info&', '172.16.2.26');
  186. INSERT INTO `admin_activity_log` VALUES (92, '2010-09-26 09:52:16', 1, 'dsf_shipping.php', '', '172.16.2.26');
  187. INSERT INTO `admin_activity_log` VALUES (93, '2010-09-26 09:52:17', 1, 'modules.php', 'set=ordertotal&', '172.16.2.26');
  188. INSERT INTO `admin_activity_log` VALUES (94, '2010-09-26 09:52:18', 1, 'modules.php', 'set=shipping&', '172.16.2.26');
  189. INSERT INTO `admin_activity_log` VALUES (95, '2010-09-26 09:52:20', 1, 'modules.php', 'set=payment&', '172.16.2.26');
  190. INSERT INTO `admin_activity_log` VALUES (96, '2010-09-26 09:53:32', 1, 'configuration.php', 'gID=1&', '172.16.2.26');
  191. INSERT INTO `admin_activity_log` VALUES (97, '2010-09-26 09:53:39', 1, 'configuration.php', 'gID=5&', '172.16.2.26');
  192. INSERT INTO `admin_activity_log` VALUES (98, '2010-09-26 09:53:48', 1, 'configuration.php', 'gID=5&cID=134&action=edit&', '172.16.2.26');
  193. INSERT INTO `admin_activity_log` VALUES (99, '2010-09-26 09:53:50', 1, 'configuration.php', 'gID=5&cID=133&action=edit&', '172.16.2.26');
  194. INSERT INTO `admin_activity_log` VALUES (100, '2010-09-26 09:55:32', 1, 'dsf_shipping.php', '', '172.16.2.26');
  195. INSERT INTO `admin_activity_log` VALUES (101, '2010-09-26 09:55:45', 1, 'dsf_shipping.php', 'action=account_add&', '172.16.2.26');
  196. INSERT INTO `admin_activity_log` VALUES (102, '2010-09-26 09:55:47', 1, 'dsf_shipping.php', 'action=account_add&', '172.16.2.26');
  197. INSERT INTO `admin_activity_log` VALUES (103, '2010-09-26 09:55:48', 1, 'dsf_shipping.php', 'action=account_add&', '172.16.2.26');
  198. INSERT INTO `admin_activity_log` VALUES (104, '2010-09-26 09:55:49', 1, 'dsf_shipping.php', 'action=account_add&', '172.16.2.26');
  199. INSERT INTO `admin_activity_log` VALUES (105, '2010-09-26 09:57:02', 1, 'dsf_shipping.php', 'action=do_install&', '172.16.2.26');
  200. INSERT INTO `admin_activity_log` VALUES (106, '2010-09-26 09:57:11', 1, 'dsf_shipping.php', 'action=account_info&', '172.16.2.26');
  201. INSERT INTO `admin_activity_log` VALUES (107, '2010-09-26 09:57:16', 1, 'dsf_shipping.php', 'action=account_del&', '172.16.2.26');
  202. INSERT INTO `admin_activity_log` VALUES (108, '2010-09-26 09:57:20', 1, 'dsf_shipping.php', 'action=account_delete&', '172.16.2.26');
  203. INSERT INTO `admin_activity_log` VALUES (109, '2010-09-26 09:57:20', 1, 'dsf_shipping.php', '', '172.16.2.26');
  204. INSERT INTO `admin_activity_log` VALUES (110, '2010-09-26 09:57:32', 1, 'dsf_shipping.php', '', '172.16.2.26');
  205. INSERT INTO `admin_activity_log` VALUES (111, '2010-09-26 09:58:25', 1, 'dsf_shipping.php', 'action=do_install&', '172.16.2.26');
  206. INSERT INTO `admin_activity_log` VALUES (112, '2010-09-26 09:58:29', 1, 'dsf_shipping.php', 'action=account_info&', '172.16.2.26');
  207. INSERT INTO `admin_activity_log` VALUES (113, '2010-09-26 10:01:29', 1, 'dsf_shipping.php', 'action=account_edit&', '172.16.2.26');
  208. INSERT INTO `admin_activity_log` VALUES (114, '2010-09-26 10:01:31', 1, 'dsf_shipping.php', 'page=1&sID=9&action=shipping_info&', '172.16.2.26');
  209. INSERT INTO `admin_activity_log` VALUES (115, '2010-09-26 10:01:32', 1, 'dsf_shipping.php', 'page=1&sID=9&action=shipping_edit&', '172.16.2.26');
  210. INSERT INTO `admin_activity_log` VALUES (116, '2010-09-26 10:01:34', 1, 'dsf_shipping.php', 'page=1&sID=1&action=shipping_info&', '172.16.2.26');
  211. INSERT INTO `admin_activity_log` VALUES (117, '2010-09-26 10:01:36', 1, 'dsf_shipping.php', 'page=1&sID=1&action=shipping_edit&', '172.16.2.26');
  212. INSERT INTO `admin_activity_log` VALUES (118, '2010-09-26 10:01:39', 1, 'dsf_shipping.php', 'page=1&sID=1&action=shipping_save&', '172.16.2.26');
  213. INSERT INTO `admin_activity_log` VALUES (119, '2010-09-26 10:01:39', 1, 'dsf_shipping.php', 'page=1&sID=1&', '172.16.2.26');
  214. INSERT INTO `admin_activity_log` VALUES (120, '2010-09-26 10:06:36', 1, 'developers_tool_kit.php', '', '172.16.2.26');
  215. INSERT INTO `admin_activity_log` VALUES (121, '2010-09-26 10:06:51', 1, 'developers_tool_kit.php', 'action=locate_all_files&', '172.16.2.26');
  216. INSERT INTO `admin_activity_log` VALUES (122, '2010-09-26 10:52:27', 1, 'developers_tool_kit.php', 'action=locate_configuration&', '172.16.2.26');
  217. INSERT INTO `admin_activity_log` VALUES (123, '2010-09-26 10:52:39', 1, 'configuration.php', 'gID=32&cID=568&', '172.16.2.26');
  218. INSERT INTO `admin_activity_log` VALUES (124, '2010-09-26 10:52:45', 1, 'configuration.php', 'gID=32&cID=568&action=edit&', '172.16.2.26');
  219. INSERT INTO `admin_activity_log` VALUES (125, '2010-09-26 10:52:52', 1, 'configuration.php', 'gID=32&cID=568&', '172.16.2.26');
  220. INSERT INTO `admin_activity_log` VALUES (126, '2010-09-26 10:53:21', 1, 'configuration.php', 'gID=32&cID=564&action=edit&', '172.16.2.26');
  221. INSERT INTO `admin_activity_log` VALUES (127, '2010-09-26 10:54:07', 1, 'configuration.php', 'gID=32&cID=568&action=edit&', '172.16.2.26');
  222. INSERT INTO `admin_activity_log` VALUES (128, '2010-09-26 10:54:10', 1, 'configuration.php', 'gID=32&cID=568&action=save&', '172.16.2.26');
  223. INSERT INTO `admin_activity_log` VALUES (129, '2010-09-26 10:54:10', 1, 'configuration.php', 'gID=32&cID=568&', '172.16.2.26');
  224. INSERT INTO `admin_activity_log` VALUES (130, '2010-09-26 13:27:31', 0, 'login.php ', '', '172.16.2.26');
  225. INSERT INTO `admin_activity_log` VALUES (131, '2010-09-26 13:27:37', 0, 'login.php admin', '', '172.16.2.26');
  226. INSERT INTO `admin_activity_log` VALUES (132, '2010-09-26 13:27:41', 1, 'developers_tool_kit.php', '', '172.16.2.26');
  227. INSERT INTO `admin_activity_log` VALUES (133, '2010-09-26 13:28:07', 1, 'developers_tool_kit.php', 'action=locate_all_files&', '172.16.2.26');
  228. INSERT INTO `admin_activity_log` VALUES (134, '2010-09-26 13:31:24', 1, 'developers_tool_kit.php', 'action=locate_class&', '172.16.2.26');
  229. INSERT INTO `admin_activity_log` VALUES (135, '2010-09-26 13:53:30', 1, 'developers_tool_kit.php', 'action=locate_class&', '172.16.2.26');
  230. INSERT INTO `admin_activity_log` VALUES (136, '2010-09-26 14:00:46', 1, 'developers_tool_kit.php', 'action=locate_function&', '172.16.2.26');
  231. INSERT INTO `admin_activity_log` VALUES (137, '2010-09-26 14:24:28', 1, 'developers_tool_kit.php', 'action=locate_all_files&', '172.16.2.26');
  232. INSERT INTO `admin_activity_log` VALUES (138, '2010-09-26 14:25:27', 1, 'developers_tool_kit.php', 'action=locate_all_files&', '172.16.2.26');
  233. INSERT INTO `admin_activity_log` VALUES (139, '2010-09-26 14:29:25', 1, 'configuration.php', 'gID=1&', '172.16.2.26');
  234. INSERT INTO `admin_activity_log` VALUES (140, '2010-09-26 14:29:29', 1, 'configuration.php', 'gID=8&', '172.16.2.26');
  235. INSERT INTO `admin_activity_log` VALUES (141, '2010-09-26 14:29:31', 1, 'configuration.php', 'gID=19&', '172.16.2.26');
  236. INSERT INTO `admin_activity_log` VALUES (142, '2010-09-26 14:29:34', 1, 'configuration.php', 'gID=24&', '172.16.2.26');
  237. INSERT INTO `admin_activity_log` VALUES (143, '2010-09-26 14:30:23', 1, 'developers_tool_kit.php', '', '172.16.2.26');
  238. INSERT INTO `admin_activity_log` VALUES (144, '2010-09-26 14:30:31', 1, 'developers_tool_kit.php', 'action=locate_all_files&', '172.16.2.26');
  239. INSERT INTO `admin_activity_log` VALUES (145, '2010-09-26 14:38:57', 1, 'layout_controller.php', '', '172.16.2.26');
  240. INSERT INTO `admin_activity_log` VALUES (146, '2010-09-26 14:39:02', 1, 'layout_controller.php', 'page=&cID=75&', '172.16.2.26');
  241. INSERT INTO `admin_activity_log` VALUES (147, '2010-09-26 14:40:38', 1, 'layout_controller.php', 'page=&cID=73&', '172.16.2.26');
  242. INSERT INTO `admin_activity_log` VALUES (148, '2010-09-26 14:40:43', 1, 'layout_controller.php', 'page=&cID=73&action=edit&', '172.16.2.26');
  243. INSERT INTO `admin_activity_log` VALUES (149, '2010-09-26 14:55:25', 0, 'login.php ', '', '172.16.2.26');
  244. INSERT INTO `admin_activity_log` VALUES (150, '2010-09-26 15:30:44', 0, 'login.php admin', '', '172.16.2.26');
  245. INSERT INTO `admin_activity_log` VALUES (151, '2010-09-26 15:45:34', 1, 'login.php', '', '172.16.2.26');
  246. INSERT INTO `admin_activity_log` VALUES (152, '2010-09-26 15:45:38', 1, 'login.php', '', '172.16.2.26');
  247. INSERT INTO `admin_activity_log` VALUES (153, '2010-09-26 15:45:48', 1, 'modules.php', 'set=shipping&', '172.16.2.26');
  248. INSERT INTO `admin_activity_log` VALUES (154, '2010-09-26 15:45:50', 1, 'modules.php', 'set=shipping&module=zones&', '172.16.2.26');
  249. INSERT INTO `admin_activity_log` VALUES (155, '2010-09-26 15:45:52', 1, 'modules.php', 'set=shipping&module=zones&action=install&', '172.16.2.26');
  250. INSERT INTO `admin_activity_log` VALUES (156, '2010-09-26 15:45:52', 1, 'modules.php', 'set=shipping&module=zones&action=edit&', '172.16.2.26');
  251. INSERT INTO `admin_activity_log` VALUES (157, '2010-09-26 15:45:56', 1, 'modules.php', 'set=shipping&module=zones&action=save&', '172.16.2.26');
  252. INSERT INTO `admin_activity_log` VALUES (158, '2010-09-26 15:45:56', 1, 'modules.php', 'set=shipping&module=zones&', '172.16.2.26');
  253. INSERT INTO `admin_activity_log` VALUES (159, '2010-09-26 16:15:06', 0, 'login.php ', '', '172.16.2.26');
  254. INSERT INTO `admin_activity_log` VALUES (160, '2010-09-26 16:15:10', 0, 'login.php admin', '', '172.16.2.26');
  255. INSERT INTO `admin_activity_log` VALUES (161, '2010-09-26 16:15:18', 1, 'configuration.php', 'gID=17&', '172.16.2.26');
  256. INSERT INTO `admin_activity_log` VALUES (162, '2010-09-26 16:15:21', 1, 'configuration.php', 'gID=32&', '172.16.2.26');
  257. INSERT INTO `admin_activity_log` VALUES (163, '2010-09-26 16:15:36', 1, 'configuration.php', 'gID=15&', '172.16.2.26');
  258. INSERT INTO `admin_activity_log` VALUES (164, '2010-09-26 16:15:39', 1, 'configuration.php', 'gID=15&cID=296&action=edit&', '172.16.2.26');
  259. INSERT INTO `admin_activity_log` VALUES (165, '2010-09-26 16:15:48', 1, 'configuration.php', 'gID=15&cID=296&action=save&', '172.16.2.26');
  260. INSERT INTO `admin_activity_log` VALUES (166, '2010-09-26 16:15:48', 1, 'configuration.php', 'gID=15&cID=296&', '172.16.2.26');
  261. INSERT INTO `admin_activity_log` VALUES (167, '2010-09-26 16:17:16', 1, 'configuration.php', 'gID=15&cID=296&action=edit&', '172.16.2.26');
  262. INSERT INTO `admin_activity_log` VALUES (168, '2010-09-26 16:17:18', 1, 'configuration.php', 'gID=15&cID=296&action=save&', '172.16.2.26');
  263. INSERT INTO `admin_activity_log` VALUES (169, '2010-09-26 16:17:18', 1, 'configuration.php', 'gID=15&cID=296&', '172.16.2.26');
  264. INSERT INTO `admin_activity_log` VALUES (170, '2010-09-26 16:21:10', 1, 'configuration.php', 'gID=15&cID=294&action=edit&', '172.16.2.26');
  265. INSERT INTO `admin_activity_log` VALUES (171, '2010-09-26 16:21:11', 1, 'configuration.php', 'gID=15&cID=294&action=edit&', '172.16.2.26');
  266. INSERT INTO `admin_activity_log` VALUES (172, '2010-09-26 16:21:20', 1, 'configuration.php', 'gID=15&cID=294&action=save&', '172.16.2.26');
  267. INSERT INTO `admin_activity_log` VALUES (173, '2010-09-26 16:21:20', 1, 'configuration.php', 'gID=15&cID=294&', '172.16.2.26');
  268. INSERT INTO `admin_activity_log` VALUES (174, '2010-09-26 16:22:52', 1, 'configuration.php', 'gID=15&cID=294&action=edit&', '172.16.2.26');
  269. INSERT INTO `admin_activity_log` VALUES (175, '2010-09-26 16:23:00', 1, 'configuration.php', 'gID=15&cID=294&action=save&', '172.16.2.26');
  270. INSERT INTO `admin_activity_log` VALUES (176, '2010-09-26 16:23:00', 1, 'configuration.php', 'gID=15&cID=294&', '172.16.2.26');
  271. INSERT INTO `admin_activity_log` VALUES (177, '2010-09-26 16:23:18', 1, 'configuration.php', 'gID=1&', '172.16.2.26');
  272. INSERT INTO `admin_activity_log` VALUES (178, '2010-09-26 16:23:27', 1, 'configuration.php', 'gID=2&', '172.16.2.26');
  273. INSERT INTO `admin_activity_log` VALUES (179, '2010-09-26 16:23:29', 1, 'configuration.php', 'gID=3&', '172.16.2.26');
  274. INSERT INTO `admin_activity_log` VALUES (180, '2010-09-26 16:23:36', 1, 'configuration.php', 'gID=15&', '172.16.2.26');
  275. INSERT INTO `admin_activity_log` VALUES (181, '2010-09-26 16:24:04', 1, 'configuration.php', 'gID=32&', '172.16.2.26');
  276. INSERT INTO `admin_activity_log` VALUES (182, '2010-09-26 16:24:19', 1, 'configuration.php', 'gID=32&cID=568&action=edit&', '172.16.2.26');
  277. INSERT INTO `admin_activity_log` VALUES (183, '2010-09-26 16:24:40', 1, 'configuration.php', 'gID=32&cID=568&action=save&', '172.16.2.26');
  278. INSERT INTO `admin_activity_log` VALUES (184, '2010-09-26 16:24:40', 1, 'configuration.php', 'gID=32&cID=568&', '172.16.2.26');
  279. INSERT INTO `admin_activity_log` VALUES (185, '2010-09-26 16:41:37', 1, 'developers_tool_kit.php', '', '172.16.2.26');
  280. INSERT INTO `admin_activity_log` VALUES (186, '2010-09-26 16:41:43', 1, 'developers_tool_kit.php', 'action=locate_all_files&', '172.16.2.26');
  281. INSERT INTO `admin_activity_log` VALUES (187, '2010-09-26 16:42:33', 1, 'developers_tool_kit.php', 'action=locate_all_files&', '172.16.2.26');
  282. INSERT INTO `admin_activity_log` VALUES (188, '2010-09-26 18:04:18', 0, 'login.php ', '', '172.16.2.26');
  283. INSERT INTO `admin_activity_log` VALUES (189, '2010-09-26 18:04:25', 0, 'login.php admin', '', '172.16.2.26');
  284. INSERT INTO `admin_activity_log` VALUES (190, '2010-09-26 18:04:28', 1, 'configuration.php', 'gID=1&', '172.16.2.26');
  285. INSERT INTO `admin_activity_log` VALUES (191, '2010-09-26 18:04:30', 1, 'configuration.php', 'gID=1&cID=593&action=edit&', '172.16.2.26');
  286. INSERT INTO `admin_activity_log` VALUES (192, '2010-09-26 18:04:43', 1, 'configuration.php', 'gID=1&cID=593&action=save&', '172.16.2.26');
  287. INSERT INTO `admin_activity_log` VALUES (193, '2010-09-26 18:04:43', 1, 'configuration.php', 'gID=1&cID=593&', '172.16.2.26');
  288. INSERT INTO `admin_activity_log` VALUES (194, '2010-09-26 18:10:43', 0, 'login.php ', '', '172.16.2.252');
  289. INSERT INTO `admin_activity_log` VALUES (195, '2010-09-26 18:10:51', 0, 'login.php ', '', '172.16.2.252');
  290. INSERT INTO `admin_activity_log` VALUES (196, '2010-09-26 18:10:56', 0, 'login.php admin', '', '172.16.2.252');
  291. INSERT INTO `admin_activity_log` VALUES (197, '2010-09-26 18:11:09', 1, 'ezpages.php', '', '172.16.2.252');
  292. INSERT INTO `admin_activity_log` VALUES (198, '2010-09-26 18:11:12', 1, 'ezpages.php', 'action=new&', '172.16.2.252');
  293. INSERT INTO `admin_activity_log` VALUES (199, '2010-09-26 18:11:28', 1, 'ezpages.php', 'action=insert&', '172.16.2.252');
  294. INSERT INTO `admin_activity_log` VALUES (200, '2010-09-26 18:11:28', 1, 'ezpages.php', 'ezID=16&', '172.16.2.252');
  295. INSERT INTO `admin_activity_log` VALUES (201, '2010-09-26 18:11:33', 1, 'ezpages.php', 'page=1&ezID=16&', '172.16.2.252');
  296. INSERT INTO `admin_activity_log` VALUES (202, '2010-09-26 18:11:34', 1, 'ezpages.php', 'page=1&ezID=16&action=new&', '172.16.2.252');
  297. INSERT INTO `admin_activity_log` VALUES (203, '2010-09-26 18:11:38', 1, 'ezpages.php', 'page=1&action=update&', '172.16.2.252');
  298. INSERT INTO `admin_activity_log` VALUES (204, '2010-09-26 18:11:38', 1, 'ezpages.php', 'page=1&ezID=16&', '172.16.2.252');
  299. INSERT INTO `admin_activity_log` VALUES (205, '2010-09-26 18:11:41', 1, 'ezpages.php', 'action=status_footer&current=0&ezID=16&page=1&', '172.16.2.252');
  300. INSERT INTO `admin_activity_log` VALUES (206, '2010-09-26 18:11:41', 1, 'ezpages.php', 'page=1&ezID=16&', '172.16.2.252');
  301. INSERT INTO `admin_activity_log` VALUES (207, '2010-09-26 18:11:42', 1, 'ezpages.php', 'page=1&ezID=16&', '172.16.2.252');
  302. INSERT INTO `admin_activity_log` VALUES (208, '2010-09-26 18:11:43', 1, 'ezpages.php', 'action=status_header&current=0&ezID=16&page=1&', '172.16.2.252');
  303. INSERT INTO `admin_activity_log` VALUES (209, '2010-09-26 18:11:43', 1, 'ezpages.php', 'page=1&ezID=16&', '172.16.2.252');
  304. INSERT INTO `admin_activity_log` VALUES (210, '2010-09-26 18:11:43', 1, 'ezpages.php', 'page=1&ezID=16&', '172.16.2.252');
  305. INSERT INTO `admin_activity_log` VALUES (211, '2010-09-26 18:12:04', 1, 'ezpages.php', 'page=1&ezID=16&action=new&', '172.16.2.252');
  306. INSERT INTO `admin_activity_log` VALUES (212, '2010-09-26 18:12:21', 1, 'ezpages.php', 'page=1&action=update&', '172.16.2.252');
  307. INSERT INTO `admin_activity_log` VALUES (213, '2010-09-26 18:12:21', 1, 'ezpages.php', 'page=1&ezID=16&', '172.16.2.252');
  308. INSERT INTO `admin_activity_log` VALUES (214, '2010-09-26 18:12:36', 1, 'ezpages.php', 'page=1&ezID=16&action=delete&', '172.16.2.252');
  309. INSERT INTO `admin_activity_log` VALUES (215, '2010-09-26 18:12:38', 1, 'ezpages.php', 'page=1&ezID=16&action=deleteconfirm&', '172.16.2.252');
  310. INSERT INTO `admin_activity_log` VALUES (216, '2010-09-26 18:12:38', 1, 'ezpages.php', 'page=1&', '172.16.2.252');
  311. INSERT INTO `admin_activity_log` VALUES (217, '2010-09-26 18:13:27', 0, 'login.php admin', '', '172.16.2.252');
  312. INSERT INTO `admin_activity_log` VALUES (218, '2010-09-26 18:16:06', 1, 'reviews.php', '', '172.16.2.252');
  313. INSERT INTO `admin_activity_log` VALUES (219, '2010-09-26 18:16:08', 1, 'reviews.php', 'action=setflag&flag=1&rID=5&', '172.16.2.252');
  314. INSERT INTO `admin_activity_log` VALUES (220, '2010-09-26 18:16:08', 1, 'reviews.php', 'page=1&rID=5&action=preview&', '172.16.2.252');
  315. INSERT INTO `admin_activity_log` VALUES (221, '2010-09-26 18:16:08', 1, 'reviews.php', 'rID=5&', '172.16.2.252');
  316. INSERT INTO `admin_activity_log` VALUES (222, '2010-09-26 18:16:10', 1, 'reviews.php', 'page=1&rID=4&', '172.16.2.252');
  317. INSERT INTO `admin_activity_log` VALUES (223, '2010-09-26 18:16:10', 1, 'reviews.php', 'action=setflag&flag=1&rID=4&', '172.16.2.252');
  318. INSERT INTO `admin_activity_log` VALUES (224, '2010-09-26 18:16:10', 1, 'reviews.php', 'rID=4&', '172.16.2.252');
  319. INSERT INTO `admin_activity_log` VALUES (225, '2010-09-26 18:16:10', 1, 'reviews.php', 'page=1&rID=3&', '172.16.2.252');
  320. INSERT INTO `admin_activity_log` VALUES (226, '2010-09-26 18:16:10', 1, 'reviews.php', 'action=setflag&flag=1&rID=3&', '172.16.2.252');
  321. INSERT INTO `admin_activity_log` VALUES (227, '2010-09-26 18:16:11', 1, 'reviews.php', 'rID=3&', '172.16.2.252');
  322. INSERT INTO `admin_activity_log` VALUES (228, '2010-09-27 09:21:25', 0, 'login.php ', '', '172.16.2.26');
  323. INSERT INTO `admin_activity_log` VALUES (229, '2010-09-27 09:21:29', 0, 'login.php admin', '', '172.16.2.26');
  324. INSERT INTO `admin_activity_log` VALUES (230, '2010-09-27 09:21:33', 1, 'developers_tool_kit.php', '', '172.16.2.26');
  325. INSERT INTO `admin_activity_log` VALUES (231, '2010-09-27 09:21:37', 1, 'developers_tool_kit.php', 'action=locate_all_files&', '172.16.2.26');
  326. INSERT INTO `admin_activity_log` VALUES (232, '2010-09-27 09:32:58', 1, 'developers_tool_kit.php', 'action=locate_configuration&', '172.16.2.26');
  327. INSERT INTO `admin_activity_log` VALUES (233, '2010-09-27 09:33:05', 1, 'developers_tool_kit.php', 'action=locate_all_files&', '172.16.2.26');
  328. INSERT INTO `admin_activity_log` VALUES (234, '2010-09-27 09:43:07', 1, 'categories.php', '', '172.16.2.26');
  329. INSERT INTO `admin_activity_log` VALUES (235, '2010-09-27 09:43:10', 1, 'customers.php', '', '172.16.2.26');
  330. INSERT INTO `admin_activity_log` VALUES (236, '2010-09-27 09:43:14', 1, 'customers.php', 'page=1&cID=2&action=confirm&', '172.16.2.26');
  331. INSERT INTO `admin_activity_log` VALUES (237, '2010-09-27 09:43:15', 1, 'customers.php', 'page=1&cID=2&action=deleteconfirm&', '172.16.2.26');
  332. INSERT INTO `admin_activity_log` VALUES (238, '2010-09-27 09:43:15', 1, 'customers.php', 'page=1&', '172.16.2.26');
  333. INSERT INTO `admin_activity_log` VALUES (239, '2010-09-27 09:43:17', 1, 'customers.php', 'page=1&cID=1&action=confirm&', '172.16.2.26');
  334. INSERT INTO `admin_activity_log` VALUES (240, '2010-09-27 09:43:18', 1, 'customers.php', 'page=1&cID=1&action=deleteconfirm&', '172.16.2.26');
  335. INSERT INTO `admin_activity_log` VALUES (241, '2010-09-27 09:43:18', 1, 'customers.php', 'page=1&', '172.16.2.26');
  336. INSERT INTO `admin_activity_log` VALUES (242, '2010-09-27 09:43:21', 1, 'configuration.php', 'gID=1&', '172.16.2.26');
  337. INSERT INTO `admin_activity_log` VALUES (243, '2010-09-27 09:43:28', 1, 'configuration.php', 'gID=1&cID=594&action=edit&', '172.16.2.26');
  338. INSERT INTO `admin_activity_log` VALUES (244, '2010-09-27 09:43:51', 1, 'reviews.php', '', '172.16.2.26');
  339. INSERT INTO `admin_activity_log` VALUES (245, '2010-09-27 09:43:55', 1, 'template_select.php', '', '172.16.2.26');
  340. INSERT INTO `admin_activity_log` VALUES (246, '2010-09-27 09:43:56', 1, 'layout_controller.php', '', '172.16.2.26');
  341. INSERT INTO `admin_activity_log` VALUES (247, '2010-09-27 09:43:58', 1, 'banner_manager.php', '', '172.16.2.26');
  342. INSERT INTO `admin_activity_log` VALUES (248, '2010-09-27 09:44:00', 1, 'mail.php', '', '172.16.2.26');
  343. INSERT INTO `admin_activity_log` VALUES (249, '2010-09-27 09:44:01', 1, 'admin.php', '', '172.16.2.26');
  344. INSERT INTO `admin_activity_log` VALUES (250, '2010-09-27 09:44:03', 1, 'image_handler.php', '', '172.16.2.26');
  345. INSERT INTO `admin_activity_log` VALUES (251, '2010-09-27 09:44:06', 1, 'coupon_admin.php', '', '172.16.2.26');
  346. INSERT INTO `admin_activity_log` VALUES (252, '2010-09-27 09:44:08', 1, 'media_manager.php', '', '172.16.2.26');
  347. INSERT INTO `admin_activity_log` VALUES (253, '2010-09-27 09:44:09', 1, 'record_artists.php', '', '172.16.2.26');
  348. INSERT INTO `admin_activity_log` VALUES (254, '2010-09-27 09:44:10', 1, 'record_company.php', '', '172.16.2.26');
  349. INSERT INTO `admin_activity_log` VALUES (255, '2010-09-27 09:44:11', 1, 'music_genre.php', '', '172.16.2.26');
  350. INSERT INTO `admin_activity_log` VALUES (256, '2010-09-27 09:44:12', 1, 'media_manager.php', '', '172.16.2.26');
  351. INSERT INTO `admin_activity_log` VALUES (257, '2010-09-27 09:44:13', 1, 'media_types.php', '', '172.16.2.26');
  352. INSERT INTO `admin_activity_log` VALUES (258, '2010-09-27 09:44:14', 1, 'template_select.php', '', '172.16.2.26');
  353. INSERT INTO `admin_activity_log` VALUES (259, '2010-09-27 09:44:15', 1, 'stats_products_viewed.php', '', '172.16.2.26');
  354. INSERT INTO `admin_activity_log` VALUES (260, '2010-09-27 09:44:16', 1, 'currencies.php', '', '172.16.2.26');
  355. INSERT INTO `admin_activity_log` VALUES (261, '2010-09-27 09:44:18', 1, 'countries.php', '', '172.16.2.26');
  356. INSERT INTO `admin_activity_log` VALUES (262, '2010-09-27 09:44:24', 1, 'zones.php', '', '172.16.2.26');
  357. INSERT INTO `admin_activity_log` VALUES (263, '2010-09-27 09:44:26', 1, 'geo_zones.php', '', '172.16.2.26');
  358. INSERT INTO `admin_activity_log` VALUES (264, '2010-09-27 09:44:29', 1, 'tax_classes.php', '', '172.16.2.26');
  359. INSERT INTO `admin_activity_log` VALUES (265, '2010-09-27 09:44:31', 1, 'tax_rates.php', '', '172.16.2.26');
  360. INSERT INTO `admin_activity_log` VALUES (266, '2010-09-27 09:44:32', 1, 'customers.php', '', '172.16.2.26');
  361. INSERT INTO `admin_activity_log` VALUES (267, '2010-09-27 09:44:33', 1, 'orders.php', '', '172.16.2.26');
  362. INSERT INTO `admin_activity_log` VALUES (268, '2010-09-27 09:44:35', 1, 'group_pricing.php', '', '172.16.2.26');
  363. INSERT INTO `admin_activity_log` VALUES (269, '2010-09-27 09:44:39', 1, 'paypal.php', '', '172.16.2.26');
  364. INSERT INTO `admin_activity_log` VALUES (270, '2010-09-27 09:44:41', 1, 'modules.php', 'set=payment&', '172.16.2.26');
  365. INSERT INTO `admin_activity_log` VALUES (271, '2010-09-27 09:44:43', 1, 'modules.php', 'set=shipping&', '172.16.2.26');
  366. INSERT INTO `admin_activity_log` VALUES (272, '2010-09-27 09:44:45', 1, 'modules.php', 'set=ordertotal&', '172.16.2.26');
  367. INSERT INTO `admin_activity_log` VALUES (273, '2010-09-27 09:44:46', 1, 'dsf_shipping.php', '', '172.16.2.26');
  368. INSERT INTO `admin_activity_log` VALUES (274, '2010-09-27 09:44:48', 1, 'categories.php', '', '172.16.2.26');
  369. INSERT INTO `admin_activity_log` VALUES (275, '2010-09-27 09:44:49', 1, 'products_price_manager.php', '', '172.16.2.26');
  370. INSERT INTO `admin_activity_log` VALUES (276, '2010-09-27 09:44:50', 1, 'product_types.php', '', '172.16.2.26');
  371. INSERT INTO `admin_activity_log` VALUES (277, '2010-09-27 09:44:52', 1, 'options_name_manager.php', '', '172.16.2.26');
  372. INSERT INTO `admin_activity_log` VALUES (278, '2010-09-27 09:44:54', 1, 'option_values.php', '', '172.16.2.26');
  373. INSERT INTO `admin_activity_log` VALUES (279, '2010-09-27 09:44:56', 1, 'quick_updates.php', '', '172.16.2.26');
  374. INSERT INTO `admin_activity_log` VALUES (280, '2010-09-27 09:44:58', 1, 'categories.php', '', '172.16.2.26');
  375. INSERT INTO `admin_activity_log` VALUES (281, '2010-09-27 09:45:00', 1, 'configuration.php', 'gID=2&', '172.16.2.26');
  376. INSERT INTO `admin_activity_log` VALUES (282, '2010-09-27 10:00:25', 1, 'developers_tool_kit.php', '', '172.16.2.26');
  377. INSERT INTO `admin_activity_log` VALUES (283, '2010-09-27 10:00:32', 1, 'developers_tool_kit.php', 'action=locate_function&', '172.16.2.26');
  378. INSERT INTO `admin_activity_log` VALUES (284, '2010-09-27 10:00:45', 1, 'developers_tool_kit.php', 'action=locate_all_files&', '172.16.2.26');
  379. -- --------------------------------------------------------
  380. --
  381. -- 表的结构 `authorizenet`
  382. --
  383. CREATE TABLE `authorizenet` (
  384. `id` int(11) unsigned NOT NULL auto_increment,
  385. `customer_id` int(11) NOT NULL default '0',
  386. `order_id` int(11) NOT NULL default '0',
  387. `response_code` int(1) NOT NULL default '0',
  388. `response_text` varchar(255) NOT NULL default '',
  389. `authorization_type` varchar(50) NOT NULL default '',
  390. `transaction_id` bigint(20) default NULL,
  391. `sent` longtext NOT NULL,
  392. `received` longtext NOT NULL,
  393. `time` varchar(50) NOT NULL default '',
  394. `session_id` varchar(255) NOT NULL default '',
  395. PRIMARY KEY (`id`)
  396. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  397. --
  398. -- 导出表中的数据 `authorizenet`
  399. --
  400. -- --------------------------------------------------------
  401. --
  402. -- 表的结构 `banners`
  403. --
  404. CREATE TABLE `banners` (
  405. `banners_id` int(11) NOT NULL auto_increment,
  406. `banners_title` varchar(64) NOT NULL default '',
  407. `banners_url` varchar(255) NOT NULL default '',
  408. `banners_image` varchar(64) NOT NULL default '',
  409. `banners_group` varchar(15) NOT NULL default '',
  410. `banners_html_text` text,
  411. `expires_impressions` int(7) default '0',
  412. `expires_date` datetime default NULL,
  413. `date_scheduled` datetime default NULL,
  414. `date_added` datetime NOT NULL default '0001-01-01 00:00:00',
  415. `date_status_change` datetime default NULL,
  416. `status` int(1) NOT NULL default '1',
  417. `banners_open_new_windows` int(1) NOT NULL default '1',
  418. `banners_on_ssl` int(1) NOT NULL default '1',
  419. `banners_sort_order` int(11) NOT NULL default '0',
  420. PRIMARY KEY (`banners_id`),
  421. KEY `idx_status_group_zen` (`status`,`banners_group`),
  422. KEY `idx_expires_date_zen` (`expires_date`),
  423. KEY `idx_date_scheduled_zen` (`date_scheduled`)
  424. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=10 ;
  425. --
  426. -- 导出表中的数据 `banners`
  427. --
  428. -- --------------------------------------------------------
  429. --
  430. -- 表的结构 `banners_history`
  431. --
  432. CREATE TABLE `banners_history` (
  433. `banners_history_id` int(11) NOT NULL auto_increment,
  434. `banners_id` int(11) NOT NULL default '0',
  435. `banners_shown` int(5) NOT NULL default '0',
  436. `banners_clicked` int(5) NOT NULL default '0',
  437. `banners_history_date` datetime NOT NULL default '0001-01-01 00:00:00',
  438. PRIMARY KEY (`banners_history_id`),
  439. KEY `idx_banners_id_zen` (`banners_id`)
  440. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  441. --
  442. -- 导出表中的数据 `banners_history`
  443. --
  444. -- --------------------------------------------------------
  445. --
  446. -- 表的结构 `categories`
  447. --
  448. CREATE TABLE `categories` (
  449. `categories_id` int(11) NOT NULL auto_increment,
  450. `categories_image` varchar(64) default NULL,
  451. `parent_id` int(11) NOT NULL default '0',
  452. `sort_order` int(3) default NULL,
  453. `date_added` datetime default NULL,
  454. `last_modified` datetime default NULL,
  455. `categories_status` tinyint(1) NOT NULL default '1',
  456. PRIMARY KEY (`categories_id`),
  457. KEY `idx_parent_id_cat_id_zen` (`parent_id`,`categories_id`),
  458. KEY `idx_status_zen` (`categories_status`),
  459. KEY `idx_sort_order_zen` (`sort_order`)
  460. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=50 ;
  461. --
  462. -- 导出表中的数据 `categories`
  463. --
  464. INSERT INTO `categories` VALUES (2, NULL, 0, 0, '2010-09-10 15:37:29', NULL, 1);
  465. INSERT INTO `categories` VALUES (4, 'HF153.jpg', 2, 0, '2010-09-10 15:37:56', '2010-09-13 17:06:53', 1);
  466. INSERT INTO `categories` VALUES (5, 'SZ04581530.jpg', 2, 0, '2010-09-10 17:56:58', '2010-09-13 17:06:42', 1);
  467. INSERT INTO `categories` VALUES (6, 'SFA338.jpg', 0, 0, '2010-09-10 18:26:55', '2010-09-14 09:21:23', 1);
  468. INSERT INTO `categories` VALUES (7, 'QW124.jpg', 6, 0, '2010-09-10 18:28:43', '2010-09-13 17:10:43', 1);
  469. INSERT INTO `categories` VALUES (9, 'E4U-175.jpg', 2, 0, '2010-09-13 09:36:50', '2010-09-13 17:07:04', 1);
  470. INSERT INTO `categories` VALUES (10, 'SZ09890044.jpg', 2, 0, '2010-09-13 09:59:22', '2010-09-13 17:07:16', 1);
  471. INSERT INTO `categories` VALUES (11, 'SZM574.jpg', 6, 0, '2010-09-13 10:32:47', '2010-09-13 17:10:31', 1);
  472. INSERT INTO `categories` VALUES (12, 'SFA1014.jpg', 6, 0, '2010-09-13 10:42:41', '2010-09-13 17:10:56', 1);
  473. INSERT INTO `categories` VALUES (13, NULL, 0, 0, '2010-09-13 11:01:30', NULL, 0);
  474. INSERT INTO `categories` VALUES (14, 'SZC711.jpg', 13, 0, '2010-09-13 11:04:47', '2010-09-13 17:06:14', 0);
  475. INSERT INTO `categories` VALUES (15, 'SZC740.jpg', 13, 0, '2010-09-13 11:24:03', '2010-09-13 17:06:23', 0);
  476. INSERT INTO `categories` VALUES (16, NULL, 0, 0, '2010-09-13 11:40:39', NULL, 1);
  477. INSERT INTO `categories` VALUES (17, '00075997.jpg', 16, 0, '2010-09-13 11:41:11', '2010-09-13 17:09:21', 1);
  478. INSERT INTO `categories` VALUES (18, 'CEV052.jpg', 16, 0, '2010-09-13 11:49:27', '2010-09-13 17:09:05', 1);
  479. INSERT INTO `categories` VALUES (19, 'SZM871.jpg', 16, 0, '2010-09-13 13:45:45', '2010-09-13 17:08:43', 1);
  480. INSERT INTO `categories` VALUES (20, 'YPY279.jpg', 16, 0, '2010-09-13 13:51:50', '2010-09-13 17:08:31', 1);
  481. INSERT INTO `categories` VALUES (21, 'SFA1014.jpg', 16, 0, '2010-09-13 13:57:28', '2010-09-13 17:09:35', 1);
  482. INSERT INTO `categories` VALUES (22, NULL, 0, 0, '2010-09-13 14:03:09', NULL, 1);
  483. INSERT INTO `categories` VALUES (23, 'DSZZ055.jpg', 22, 0, '2010-09-13 14:03:38', '2010-09-13 17:11:53', 1);
  484. INSERT INTO `categories` VALUES (24, 'WSM0228.jpg', 22, 0, '2010-09-13 14:16:08', '2010-09-13 17:11:39', 1);
  485. INSERT INTO `categories` VALUES (25, '00094990.jpg', 22, 0, '2010-09-13 14:24:45', '2010-09-16 16:03:22', 1);
  486. INSERT INTO `categories` VALUES (27, NULL, 0, 0, '2010-09-13 14:34:15', NULL, 1);
  487. INSERT INTO `categories` VALUES (28, '00114259.jpg', 27, 0, '2010-09-13 14:34:34', '2010-09-13 17:13:10', 1);
  488. INSERT INTO `categories` VALUES (29, '0923-T19.jpg', 27, 0, '2010-09-13 14:44:44', '2010-09-13 17:13:20', 1);
  489. INSERT INTO `categories` VALUES (30, '00061371.jpg', 27, 0, '2010-09-13 14:58:36', '2010-09-13 17:13:32', 1);
  490. INSERT INTO `categories` VALUES (31, '0718-28031.jpg', 27, 0, '2010-09-13 15:05:59', '2010-09-13 17:12:52', 1);
  491. INSERT INTO `categories` VALUES (32, NULL, 0, 0, '2010-09-13 15:15:14', NULL, 1);
  492. INSERT INTO `categories` VALUES (33, '0801-10562.jpg', 32, 0, '2010-09-13 15:15:31', '2010-09-13 17:14:00', 1);
  493. INSERT INTO `categories` VALUES (34, '0801-10587.jpg', 32, 0, '2010-09-13 15:25:02', '2010-09-13 17:14:08', 1);
  494. INSERT INTO `categories` VALUES (35, NULL, 0, 0, '2010-09-13 15:32:40', NULL, 1);
  495. INSERT INTO `categories` VALUES (36, 'GZZQL0003.jpg', 35, 0, '2010-09-13 15:32:57', '2010-09-13 17:15:38', 1);
  496. INSERT INTO `categories` VALUES (37, '0478-0809-5.jpg', 35, 0, '2010-09-13 15:40:09', '2010-09-13 17:15:25', 1);
  497. INSERT INTO `categories` VALUES (38, 'YCSM0924-B012A.jpg', 35, 0, '2010-09-13 15:53:04', '2010-09-13 17:15:47', 1);
  498. INSERT INTO `categories` VALUES (39, NULL, 0, 0, '2010-09-13 15:59:04', NULL, 1);
  499. INSERT INTO `categories` VALUES (40, 'H300404896730.jpg', 39, 0, '2010-09-13 15:59:43', '2010-09-13 17:16:17', 1);
  500. INSERT INTO `categories` VALUES (41, NULL, 0, 0, '2010-09-13 16:15:41', NULL, 1);
  501. INSERT INTO `categories` VALUES (42, '00081966.jpg', 41, 0, '2010-09-13 16:16:32', '2010-09-13 17:14:41', 1);
  502. INSERT INTO `categories` VALUES (43, '00124525.jpg', 41, 0, '2010-09-13 16:21:38', '2010-09-13 17:14:49', 1);
  503. INSERT INTO `categories` VALUES (44, '1734184498482294a243fb2.jpg', 0, 0, '2010-09-13 16:29:03', '2010-09-16 17:47:08', 1);
  504. INSERT INTO `categories` VALUES (46, '27020.jpg', 0, 0, '2010-09-13 16:55:39', '2010-09-13 17:07:54', 1);
  505. INSERT INTO `categories` VALUES (48, NULL, 0, 0, '2010-09-13 17:01:16', NULL, 1);
  506. INSERT INTO `categories` VALUES (49, '00094915.jpg', 48, 0, '2010-09-13 17:01:47', '2010-09-13 17:12:18', 1);
  507. -- --------------------------------------------------------
  508. --
  509. -- 表的结构 `categories_description`
  510. --
  511. CREATE TABLE `categories_description` (
  512. `categories_id` int(11) NOT NULL default '0',
  513. `language_id` int(11) NOT NULL default '1',
  514. `categories_name` varchar(32) NOT NULL default '',
  515. `categories_description` text NOT NULL,
  516. PRIMARY KEY (`categories_id`,`language_id`),
  517. KEY `idx_categories_name_zen` (`categories_name`)
  518. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  519. --
  520. -- 导出表中的数据 `categories_description`
  521. --
  522. INSERT INTO `categories_description` VALUES (2, 2, 'Cell Phones', '');
  523. INSERT INTO `categories_description` VALUES (2, 1, 'Cell Phones', '');
  524. INSERT INTO `categories_description` VALUES (4, 2, 'HiPhone', '');
  525. INSERT INTO `categories_description` VALUES (4, 1, 'HiPhone', '');
  526. INSERT INTO `categories_description` VALUES (5, 2, 'Bar Phone', '');
  527. INSERT INTO `categories_description` VALUES (5, 1, 'Bar Phone', '');
  528. INSERT INTO `categories_description` VALUES (6, 2, 'Electronics', '');
  529. INSERT INTO `categories_description` VALUES (6, 1, 'Electronics', '');
  530. INSERT INTO `categories_description` VALUES (7, 2, 'Security Systems', '');
  531. INSERT INTO `categories_description` VALUES (7, 1, 'Security Systems', '');
  532. INSERT INTO `categories_description` VALUES (9, 2, 'slide phone', '');
  533. INSERT INTO `categories_description` VALUES (9, 1, 'slide phone', '');
  534. INSERT INTO `categories_description` VALUES (10, 2, 'Watch Cell Phone', '');
  535. INSERT INTO `categories_description` VALUES (10, 1, 'Watch Cell Phone', '');
  536. INSERT INTO `categories_description` VALUES (11, 2, 'MP3 and Media Player', '');
  537. INSERT INTO `categories_description` VALUES (11, 1, 'MP3 and Media Player', '');
  538. INSERT INTO `categories_description` VALUES (12, 2, 'Video Game', '');
  539. INSERT INTO `categories_description` VALUES (12, 1, 'Video Game', '');
  540. INSERT INTO `categories_description` VALUES (13, 2, 'Car Electronics', '');
  541. INSERT INTO `categories_description` VALUES (13, 1, 'Car Electronics', '');
  542. INSERT INTO `categories_description` VALUES (14, 2, 'Car DVD Players', '');
  543. INSERT INTO `categories_description` VALUES (14, 1, 'Car DVD Players', '');
  544. INSERT INTO `categories_description` VALUES (15, 2, 'Car Lights', '');
  545. INSERT INTO `categories_description` VALUES (15, 1, 'Car Lights', '');
  546. INSERT INTO `categories_description` VALUES (16, 2, 'Computers', '');
  547. INSERT INTO `categories_description` VALUES (16, 1, 'Computers', '');
  548. INSERT INTO `categories_description` VALUES (17, 2, 'Laptops, Notebooks', '');

Large files files are truncated, but you can click here to view the full file