Пример #1
0
function install_db($jb_db_host, $jb_db_name, $jb_db_user, $jb_db_pass)
{
    $sql = "\n\nCREATE TABLE `applications` (\n  `app_id` int(11) NOT NULL auto_increment,\n  `user_id` int(11) NOT NULL default '0',\n  `post_id` int(11) NOT NULL default '0',\n  `app_date` datetime NOT NULL default '0000-00-00 00:00:00',\n  `cover_letter` text NOT NULL,\n  `employer_id` int(11) NOT NULL default '0',\n  `employer_name` varchar(255) NOT NULL default '',\n  `data1` varchar(255) NOT NULL default '',\n  `data2` varchar(255) NOT NULL default '',\n  `data3` varchar(255) NOT NULL default '',\n  PRIMARY KEY  (`app_id`)\n)  AUTO_INCREMENT=1 ;;;\n\n\nCREATE TABLE `cat_name_translations` (\n  `category_id` int(11) NOT NULL default '0',\n  `lang` char(2) NOT NULL default '',\n  `category_name` text NOT NULL,\n  PRIMARY KEY  (`category_id`,`lang`),\n  KEY `category_id` (`category_id`)\n) ;;;\n\n \n\nINSERT INTO `cat_name_translations` VALUES (0, '', '');;;\nINSERT INTO `cat_name_translations` VALUES (0, 'CN', '');;;\nINSERT INTO `cat_name_translations` VALUES (0, 'EN', '');;;\nINSERT INTO `cat_name_translations` VALUES (0, 'ES', '');;;\nINSERT INTO `cat_name_translations` VALUES (0, 'KO', '');;;\nINSERT INTO `cat_name_translations` VALUES (0, 'PL', '');;;\nINSERT INTO `cat_name_translations` VALUES (1, '', 'Location');;;\nINSERT INTO `cat_name_translations` VALUES (1, 'CN', 'Location');;;\nINSERT INTO `cat_name_translations` VALUES (1, 'EN', 'Location');;;\nINSERT INTO `cat_name_translations` VALUES (1, 'ES', 'Location');;;\nINSERT INTO `cat_name_translations` VALUES (1, 'KO', '&#50948;&#52824;');;;\nINSERT INTO `cat_name_translations` VALUES (1, 'PL', 'Location');;;\nINSERT INTO `cat_name_translations` VALUES (20, '', 'Job Type');;;\nINSERT INTO `cat_name_translations` VALUES (20, 'CN', 'Job Type');;;\nINSERT INTO `cat_name_translations` VALUES (20, 'EN', 'Job Type');;;\nINSERT INTO `cat_name_translations` VALUES (20, 'ES', 'Job Type');;;\nINSERT INTO `cat_name_translations` VALUES (20, 'KO', 'Job Type');;;\nINSERT INTO `cat_name_translations` VALUES (20, 'PL', 'Job Type');;;\nINSERT INTO `cat_name_translations` VALUES (21, '', 'Part-time');;;\nINSERT INTO `cat_name_translations` VALUES (21, 'CN', 'Part-time');;;\nINSERT INTO `cat_name_translations` VALUES (21, 'EN', 'Part-time');;;\nINSERT INTO `cat_name_translations` VALUES (21, 'ES', 'Part-time');;;\nINSERT INTO `cat_name_translations` VALUES (21, 'KO', 'Part-time');;;\nINSERT INTO `cat_name_translations` VALUES (21, 'PL', 'Part-time');;;\nINSERT INTO `cat_name_translations` VALUES (22, '', 'Full-time');;;\nINSERT INTO `cat_name_translations` VALUES (22, 'CN', 'Full-time');;;\nINSERT INTO `cat_name_translations` VALUES (22, 'EN', 'Full-time');;;\nINSERT INTO `cat_name_translations` VALUES (22, 'ES', 'Full-time');;;\nINSERT INTO `cat_name_translations` VALUES (22, 'KO', 'Full-time');;;\nINSERT INTO `cat_name_translations` VALUES (22, 'PL', 'Full-time');;;\nINSERT INTO `cat_name_translations` VALUES (23, '', 'Job Classification');;;\nINSERT INTO `cat_name_translations` VALUES (23, 'CN', 'Job Classification');;;\nINSERT INTO `cat_name_translations` VALUES (23, 'EN', 'Job Classification');;;\nINSERT INTO `cat_name_translations` VALUES (23, 'ES', 'Job Classification');;;\nINSERT INTO `cat_name_translations` VALUES (23, 'KO', 'Job Classification');;;\nINSERT INTO `cat_name_translations` VALUES (23, 'PL', 'Job Classification');;;\nINSERT INTO `cat_name_translations` VALUES (26, '', 'Part-time & Full-time');;;\nINSERT INTO `cat_name_translations` VALUES (26, 'CN', 'Part-time & Full-time');;;\nINSERT INTO `cat_name_translations` VALUES (26, 'EN', 'Part-time & Full-time');;;\nINSERT INTO `cat_name_translations` VALUES (26, 'ES', 'Part-time & Full-time');;;\nINSERT INTO `cat_name_translations` VALUES (26, 'KO', 'Part-time & Full-time');;;\nINSERT INTO `cat_name_translations` VALUES (26, 'PL', 'Part-time & Full-time');;;\nINSERT INTO `cat_name_translations` VALUES (34, 'CN', 'Nationalit');;;\nINSERT INTO `cat_name_translations` VALUES (34, 'EN', 'Nationalit');;;\nINSERT INTO `cat_name_translations` VALUES (34, 'ES', 'Nationalit');;;\nINSERT INTO `cat_name_translations` VALUES (34, 'KO', '&#54620;&#44397;');;;\nINSERT INTO `cat_name_translations` VALUES (34, 'PL', 'Nationalit');;;\nINSERT INTO `cat_name_translations` VALUES (35, 'CN', 'American');;;\nINSERT INTO `cat_name_translations` VALUES (35, 'EN', 'American');;;\nINSERT INTO `cat_name_translations` VALUES (35, 'ES', 'American');;;\nINSERT INTO `cat_name_translations` VALUES (35, 'KO', 'American');;;\nINSERT INTO `cat_name_translations` VALUES (35, 'PL', 'American');;;\nINSERT INTO `cat_name_translations` VALUES (36, 'CN', 'Canadian');;;\nINSERT INTO `cat_name_translations` VALUES (36, 'EN', 'Canadian');;;\nINSERT INTO `cat_name_translations` VALUES (36, 'ES', 'Canadian');;;\nINSERT INTO `cat_name_translations` VALUES (36, 'KO', 'Canadian');;;\nINSERT INTO `cat_name_translations` VALUES (36, 'PL', 'Canadian');;;\nINSERT INTO `cat_name_translations` VALUES (37, 'CN', 'Australian');;;\nINSERT INTO `cat_name_translations` VALUES (37, 'EN', 'Australian');;;\nINSERT INTO `cat_name_translations` VALUES (37, 'ES', 'Australian');;;\nINSERT INTO `cat_name_translations` VALUES (37, 'KO', 'Australian');;;\nINSERT INTO `cat_name_translations` VALUES (37, 'PL', 'Australian');;;\nINSERT INTO `cat_name_translations` VALUES (38, 'CN', 'New Zealander');;;\nINSERT INTO `cat_name_translations` VALUES (38, 'EN', 'New Zealander');;;\nINSERT INTO `cat_name_translations` VALUES (38, 'ES', 'New Zealander');;;\nINSERT INTO `cat_name_translations` VALUES (38, 'KO', 'New Zealander');;;\nINSERT INTO `cat_name_translations` VALUES (38, 'PL', 'New Zealander');;;\nINSERT INTO `cat_name_translations` VALUES (39, 'CN', 'South African');;;\nINSERT INTO `cat_name_translations` VALUES (39, 'EN', 'South African');;;\nINSERT INTO `cat_name_translations` VALUES (39, 'ES', 'South African');;;\nINSERT INTO `cat_name_translations` VALUES (39, 'KO', 'South African');;;\nINSERT INTO `cat_name_translations` VALUES (39, 'PL', 'South African');;;\nINSERT INTO `cat_name_translations` VALUES (40, 'CN', 'English');;;\nINSERT INTO `cat_name_translations` VALUES (40, 'EN', 'English');;;\nINSERT INTO `cat_name_translations` VALUES (40, 'ES', 'English');;;\nINSERT INTO `cat_name_translations` VALUES (40, 'KO', 'English');;;\nINSERT INTO `cat_name_translations` VALUES (40, 'PL', 'English');;;\nINSERT INTO `cat_name_translations` VALUES (41, 'CN', 'Irish');;;\nINSERT INTO `cat_name_translations` VALUES (41, 'EN', 'Irish');;;\nINSERT INTO `cat_name_translations` VALUES (41, 'ES', 'Irish');;;\nINSERT INTO `cat_name_translations` VALUES (41, 'KO', 'Irish');;;\nINSERT INTO `cat_name_translations` VALUES (41, 'PL', 'Irish');;;\nINSERT INTO `cat_name_translations` VALUES (42, 'CN', 'Other');;;\nINSERT INTO `cat_name_translations` VALUES (42, 'EN', 'Other');;;\nINSERT INTO `cat_name_translations` VALUES (42, 'ES', 'Other');;;\nINSERT INTO `cat_name_translations` VALUES (42, 'KO', 'Other');;;\nINSERT INTO `cat_name_translations` VALUES (42, 'PL', 'Other');;;\nINSERT INTO `cat_name_translations` VALUES (65, 'CN', 'New York');;;\nINSERT INTO `cat_name_translations` VALUES (65, 'EN', 'New York City');;;\nINSERT INTO `cat_name_translations` VALUES (65, 'ES', 'New York');;;\nINSERT INTO `cat_name_translations` VALUES (65, 'KO', 'New York');;;\nINSERT INTO `cat_name_translations` VALUES (65, 'PL', 'New York');;;\nINSERT INTO `cat_name_translations` VALUES (66, 'CN', 'Dallas');;;\nINSERT INTO `cat_name_translations` VALUES (66, 'EN', 'Dallas');;;\nINSERT INTO `cat_name_translations` VALUES (66, 'ES', 'Dallas');;;\nINSERT INTO `cat_name_translations` VALUES (66, 'KO', 'Dallas');;;\nINSERT INTO `cat_name_translations` VALUES (66, 'PL', 'Dallas');;;\nINSERT INTO `cat_name_translations` VALUES (67, 'CN', 'Atlanta');;;\nINSERT INTO `cat_name_translations` VALUES (67, 'EN', 'Atlanta');;;\nINSERT INTO `cat_name_translations` VALUES (67, 'ES', 'Atlanta');;;\nINSERT INTO `cat_name_translations` VALUES (67, 'KO', 'Atlanta');;;\nINSERT INTO `cat_name_translations` VALUES (67, 'PL', 'Atlanta');;;\nINSERT INTO `cat_name_translations` VALUES (68, 'CN', 'Denver');;;\nINSERT INTO `cat_name_translations` VALUES (68, 'EN', 'Denver');;;\nINSERT INTO `cat_name_translations` VALUES (68, 'ES', 'Denver');;;\nINSERT INTO `cat_name_translations` VALUES (68, 'KO', 'Denver');;;\nINSERT INTO `cat_name_translations` VALUES (68, 'PL', 'Denver');;;\nINSERT INTO `cat_name_translations` VALUES (69, 'CN', 'Detroit');;;\nINSERT INTO `cat_name_translations` VALUES (69, 'EN', 'Detroit');;;\nINSERT INTO `cat_name_translations` VALUES (69, 'ES', 'Detroit');;;\nINSERT INTO `cat_name_translations` VALUES (69, 'KO', 'Detroit');;;\nINSERT INTO `cat_name_translations` VALUES (69, 'PL', 'Detroit');;;\nINSERT INTO `cat_name_translations` VALUES (70, 'CN', 'Honolulu');;;\nINSERT INTO `cat_name_translations` VALUES (70, 'EN', 'Honolulu');;;\nINSERT INTO `cat_name_translations` VALUES (70, 'ES', 'Honolulu');;;\nINSERT INTO `cat_name_translations` VALUES (70, 'KO', 'Honolulu');;;\nINSERT INTO `cat_name_translations` VALUES (70, 'PL', 'Honolulu');;;\nINSERT INTO `cat_name_translations` VALUES (71, 'CN', 'Las Vegas');;;\nINSERT INTO `cat_name_translations` VALUES (71, 'EN', 'Las Vegas');;;\nINSERT INTO `cat_name_translations` VALUES (71, 'ES', 'Las Vegas');;;\nINSERT INTO `cat_name_translations` VALUES (71, 'KO', 'Las Vegas');;;\nINSERT INTO `cat_name_translations` VALUES (71, 'PL', 'Las Vegas');;;\nINSERT INTO `cat_name_translations` VALUES (72, 'CN', 'Kansas City');;;\nINSERT INTO `cat_name_translations` VALUES (72, 'EN', 'Kansas City');;;\nINSERT INTO `cat_name_translations` VALUES (72, 'ES', 'Kansas City');;;\nINSERT INTO `cat_name_translations` VALUES (72, 'KO', 'Kansas City');;;\nINSERT INTO `cat_name_translations` VALUES (72, 'PL', 'Kansas City');;;\nINSERT INTO `cat_name_translations` VALUES (73, 'CN', 'San Francisco');;;\nINSERT INTO `cat_name_translations` VALUES (73, 'EN', 'San Francisco');;;\nINSERT INTO `cat_name_translations` VALUES (73, 'ES', 'San Francisco');;;\nINSERT INTO `cat_name_translations` VALUES (73, 'KO', 'San Francisco');;;\nINSERT INTO `cat_name_translations` VALUES (73, 'PL', 'San Francisco');;;\nINSERT INTO `cat_name_translations` VALUES (74, 'CN', 'Miami');;;\nINSERT INTO `cat_name_translations` VALUES (74, 'EN', 'Miami');;;\nINSERT INTO `cat_name_translations` VALUES (74, 'ES', 'Miami');;;\nINSERT INTO `cat_name_translations` VALUES (74, 'KO', 'Miami');;;\nINSERT INTO `cat_name_translations` VALUES (74, 'PL', 'Miami');;;\nINSERT INTO `cat_name_translations` VALUES (75, 'CN', 'Boston');;;\nINSERT INTO `cat_name_translations` VALUES (75, 'EN', 'Boston');;;\nINSERT INTO `cat_name_translations` VALUES (75, 'ES', 'Boston');;;\nINSERT INTO `cat_name_translations` VALUES (75, 'KO', 'Boston');;;\nINSERT INTO `cat_name_translations` VALUES (75, 'PL', 'Boston');;;\nINSERT INTO `cat_name_translations` VALUES (76, 'CN', 'Los Angeles');;;\nINSERT INTO `cat_name_translations` VALUES (76, 'EN', 'Los Angeles');;;\nINSERT INTO `cat_name_translations` VALUES (76, 'ES', 'Los Angeles');;;\nINSERT INTO `cat_name_translations` VALUES (76, 'KO', 'Los Angeles');;;\nINSERT INTO `cat_name_translations` VALUES (76, 'PL', 'Los Angeles');;;\nINSERT INTO `cat_name_translations` VALUES (77, 'CN', 'Washington, D.C.');;;\nINSERT INTO `cat_name_translations` VALUES (77, 'EN', 'Washington, D.C.');;;\nINSERT INTO `cat_name_translations` VALUES (77, 'ES', 'Washington, D.C.');;;\nINSERT INTO `cat_name_translations` VALUES (77, 'KO', 'Washington, D.C.');;;\nINSERT INTO `cat_name_translations` VALUES (77, 'PL', 'Washington, D.C.');;;\nINSERT INTO `cat_name_translations` VALUES (78, 'CN', 'Education & Training');;;\nINSERT INTO `cat_name_translations` VALUES (78, 'EN', 'Education & Training');;;\nINSERT INTO `cat_name_translations` VALUES (78, 'ES', 'Education & Training');;;\nINSERT INTO `cat_name_translations` VALUES (78, 'KO', 'Education & Training');;;\nINSERT INTO `cat_name_translations` VALUES (78, 'PL', 'Education & Training');;;\nINSERT INTO `cat_name_translations` VALUES (79, 'CN', 'Manufacturing/Operations');;;\nINSERT INTO `cat_name_translations` VALUES (79, 'EN', 'Manufacturing/Operations');;;\nINSERT INTO `cat_name_translations` VALUES (79, 'ES', 'Manufacturing/Operations');;;\nINSERT INTO `cat_name_translations` VALUES (79, 'KO', 'Manufacturing/Operations');;;\nINSERT INTO `cat_name_translations` VALUES (79, 'PL', 'Manufacturing/Operations');;;\nINSERT INTO `cat_name_translations` VALUES (80, 'CN', 'Retail');;;\nINSERT INTO `cat_name_translations` VALUES (80, 'EN', 'Retail');;;\nINSERT INTO `cat_name_translations` VALUES (80, 'ES', 'Retail');;;\nINSERT INTO `cat_name_translations` VALUES (80, 'KO', 'Retail');;;\nINSERT INTO `cat_name_translations` VALUES (80, 'PL', 'Retail');;;\nINSERT INTO `cat_name_translations` VALUES (81, 'CN', 'Healthcare & Community');;;\nINSERT INTO `cat_name_translations` VALUES (81, 'EN', 'Healthcare & Community');;;\nINSERT INTO `cat_name_translations` VALUES (81, 'ES', 'Healthcare & Community');;;\nINSERT INTO `cat_name_translations` VALUES (81, 'KO', 'Healthcare & Community');;;\nINSERT INTO `cat_name_translations` VALUES (81, 'PL', 'Healthcare & Community');;;\nINSERT INTO `cat_name_translations` VALUES (82, 'CN', 'Accounting');;;\nINSERT INTO `cat_name_translations` VALUES (82, 'EN', 'Accounting');;;\nINSERT INTO `cat_name_translations` VALUES (82, 'ES', 'Accounting');;;\nINSERT INTO `cat_name_translations` VALUES (82, 'KO', 'Accounting');;;\nINSERT INTO `cat_name_translations` VALUES (82, 'PL', 'Accounting');;;\nINSERT INTO `cat_name_translations` VALUES (83, 'CN', 'I.T. & T.');;;\nINSERT INTO `cat_name_translations` VALUES (83, 'EN', 'I.T. & T.');;;\nINSERT INTO `cat_name_translations` VALUES (83, 'ES', 'I.T. & T.');;;\nINSERT INTO `cat_name_translations` VALUES (83, 'KO', 'I.T. & T. ');;;\nINSERT INTO `cat_name_translations` VALUES (83, 'PL', 'I.T. & T.');;;\nINSERT INTO `cat_name_translations` VALUES (84, 'CN', 'Sales & Marketing');;;\nINSERT INTO `cat_name_translations` VALUES (84, 'EN', 'Sales & Marketing');;;\nINSERT INTO `cat_name_translations` VALUES (84, 'ES', 'Sales & Marketing');;;\nINSERT INTO `cat_name_translations` VALUES (84, 'KO', 'Sales & Marketing');;;\nINSERT INTO `cat_name_translations` VALUES (84, 'PL', 'Sales & Marketing');;;\nINSERT INTO `cat_name_translations` VALUES (85, 'CN', 'Legal');;;\nINSERT INTO `cat_name_translations` VALUES (85, 'EN', 'Legal');;;\nINSERT INTO `cat_name_translations` VALUES (85, 'ES', 'Legal');;;\nINSERT INTO `cat_name_translations` VALUES (85, 'KO', 'Legal ');;;\nINSERT INTO `cat_name_translations` VALUES (85, 'PL', 'Legal');;;\nINSERT INTO `cat_name_translations` VALUES (86, 'CN', 'Hospitality & Tourism');;;\nINSERT INTO `cat_name_translations` VALUES (86, 'EN', 'Hospitality & Tourism');;;\nINSERT INTO `cat_name_translations` VALUES (86, 'ES', 'Hospitality & Tourism');;;\nINSERT INTO `cat_name_translations` VALUES (86, 'KO', 'Hospitality & Tourism');;;\nINSERT INTO `cat_name_translations` VALUES (86, 'PL', 'Hospitality & Tourism');;;\nINSERT INTO `cat_name_translations` VALUES (87, 'CN', 'Engineering');;;\nINSERT INTO `cat_name_translations` VALUES (87, 'EN', 'Engineering');;;\nINSERT INTO `cat_name_translations` VALUES (87, 'ES', 'Engineering');;;\nINSERT INTO `cat_name_translations` VALUES (87, 'KO', 'Engineering');;;\nINSERT INTO `cat_name_translations` VALUES (87, 'PL', 'Engineering');;;\nINSERT INTO `cat_name_translations` VALUES (88, 'CN', 'Administration');;;\nINSERT INTO `cat_name_translations` VALUES (88, 'EN', 'Administration');;;\nINSERT INTO `cat_name_translations` VALUES (88, 'ES', 'Administration');;;\nINSERT INTO `cat_name_translations` VALUES (88, 'KO', 'Administration ');;;\nINSERT INTO `cat_name_translations` VALUES (88, 'PL', 'Administration');;;\nINSERT INTO `cat_name_translations` VALUES (89, 'CN', 'Construction');;;\nINSERT INTO `cat_name_translations` VALUES (89, 'EN', 'Construction');;;\nINSERT INTO `cat_name_translations` VALUES (89, 'ES', 'Construction');;;\nINSERT INTO `cat_name_translations` VALUES (89, 'KO', 'Construction ');;;\nINSERT INTO `cat_name_translations` VALUES (89, 'PL', 'Construction');;;\n\nCREATE TABLE `categories` (\n  `category_id` int(11) NOT NULL default '0',\n  `category_name` varchar(255) NOT NULL default '',\n  `parent_category_id` int(11) NOT NULL default '0',\n  `obj_count` int(11) NOT NULL default '0',\n  `form_id` int(11) NOT NULL default '0',\n  `allow_records` set('Y','N') NOT NULL default 'Y',\n  `list_order` smallint(6) NOT NULL default '1',\n  `search_set` text NOT NULL,\n  `seo_fname` varchar(100) default NULL,\n  `seo_title` varchar(255) default NULL,\n  `seo_desc` varchar(255) default NULL,\n  `seo_keys` varchar(255) default NULL,\n  `has_child` SET( 'Y', 'N' ) NULL,\n  PRIMARY KEY  (`category_id`),\n  KEY `parent_category_id` (`parent_category_id`),\n  KEY `seo_fname` (`seo_fname`)\n) ;;;\n \n\nINSERT INTO `categories` VALUES (1, 'Location', 0, 1, 1, 'Y', 1, '1,67,75,66,68,69,70,72,71,76,74,65,73,77','','','','', NULL);;;\nINSERT INTO `categories` VALUES (20, 'Job Type', 0, 1, 1, 'N', 1, '20,22,21,26','','','','', NULL);;;\nINSERT INTO `categories` VALUES (21, 'Part-time', 20, 0, 1, 'Y', 1, '21','','','','', NULL);;;\nINSERT INTO `categories` VALUES (22, 'Full-time', 20, 1, 1, 'Y', 1, '22','','','','', NULL);;;\nINSERT INTO `categories` VALUES (23, 'Job Classification', 0, 1, 1, 'Y', 1, '23,82,88,89,78,87,81,86,83,85,79,80,84,90,91','','','','', NULL);;;\nINSERT INTO `categories` VALUES (26, 'Part-time & Full-time', 20, 0, 1, 'Y', 1, '26','','','','', NULL);;;\nINSERT INTO `categories` VALUES (34, 'Nationalit', 0, 0, 2, 'Y', 1, '34,35,37,36,40,41,38,42,39','','','','', NULL);;;\nINSERT INTO `categories` VALUES (35, 'American', 34, 0, 2, 'Y', 1, '35','','','','', NULL);;;\nINSERT INTO `categories` VALUES (36, 'Canadian', 34, 0, 2, 'Y', 1, '36','','','','', NULL);;;\nINSERT INTO `categories` VALUES (37, 'Australian', 34, 0, 2, 'Y', 1, '37','','','','', NULL);;;\nINSERT INTO `categories` VALUES (38, 'New Zealander', 34, 0, 2, 'Y', 1, '38','','','','', NULL);;;\nINSERT INTO `categories` VALUES (39, 'South African', 34, 0, 2, 'Y', 1, '39','','','','', NULL);;;\nINSERT INTO `categories` VALUES (40, 'English', 34, 0, 2, 'Y', 1, '40','','','','', NULL);;;\nINSERT INTO `categories` VALUES (41, 'Irish', 34, 0, 2, 'Y', 1, '41','','','','', NULL);;;\nINSERT INTO `categories` VALUES (42, 'Other', 34, 0, 2, 'Y', 1, '42','','','','', NULL);;;\nINSERT INTO `categories` VALUES (65, 'New York', 1, 0, 1, 'Y', 1, '65','','','','', NULL);;;\nINSERT INTO `categories` VALUES (66, 'Dallas', 1, 0, 1, 'Y', 1, '66','','','','', NULL);;;\nINSERT INTO `categories` VALUES (67, 'Atlanta', 1, 1, 1, 'Y', 1, '67','','','','', NULL);;;\nINSERT INTO `categories` VALUES (68, 'Denver', 1, 0, 1, 'Y', 1, '68','','','','', NULL);;;\nINSERT INTO `categories` VALUES (69, 'Detroit', 1, 0, 1, 'Y', 1, '69','','','','', NULL);;;\nINSERT INTO `categories` VALUES (70, 'Honolulu', 1, 0, 1, 'Y', 1, '70','','','','', NULL);;;\nINSERT INTO `categories` VALUES (71, 'Las Vegas', 1, 0, 1, 'Y', 1, '71','','','','', NULL);;;\nINSERT INTO `categories` VALUES (72, 'Kansas City', 1, 0, 1, 'Y', 1, '72','','','','', NULL);;;\nINSERT INTO `categories` VALUES (73, 'San Francisco', 1, 0, 1, 'Y', 1, '73','','','','', NULL);;;\nINSERT INTO `categories` VALUES (74, 'Miami', 1, 0, 1, 'Y', 1, '74','','','','', NULL);;;\nINSERT INTO `categories` VALUES (75, 'Boston', 1, 0, 1, 'Y', 1, '75','','','','', NULL);;;\nINSERT INTO `categories` VALUES (76, 'Los Angeles', 1, 0, 1, 'Y', 1, '76','','','','', NULL);;;\nINSERT INTO `categories` VALUES (77, 'Washington, D.C.', 1, 0, 1, 'Y', 1, '77','','','','', NULL);;;\nINSERT INTO `categories` VALUES (78, 'Education & Training', 23, 0, 1, 'Y', 1, '78','','','','', NULL);;;\nINSERT INTO `categories` VALUES (79, 'Manufacturing/Operations', 23, 0, 1, 'Y', 1, '79','','','','', NULL);;;\nINSERT INTO `categories` VALUES (80, 'Retail', 23, 0, 1, 'Y', 1, '80','','','','', NULL);;;\nINSERT INTO `categories` VALUES (81, 'Healthcare & Community', 23, 0, 1, 'Y', 1, '81','','','','', NULL);;;\nINSERT INTO `categories` VALUES (82, 'Accounting', 23, 1, 1, 'Y', 1, '82','','','','', NULL);;;\nINSERT INTO `categories` VALUES (83, 'I.T. & T.', 23, 0, 1, 'Y', 1, '83','','','','', NULL);;;\nINSERT INTO `categories` VALUES (84, 'Sales & Marketing', 23, 0, 1, 'Y', 1, '84','','','','', NULL);;;\nINSERT INTO `categories` VALUES (85, 'Legal', 23, 0, 1, 'Y', 1, '85','','','','', NULL);;;\nINSERT INTO `categories` VALUES (86, 'Hospitality & Tourism', 23, 0, 1, 'Y', 1, '86','','','','', NULL);;;\nINSERT INTO `categories` VALUES (87, 'Engineering', 23, 0, 1, 'Y', 1, '87','','','','', NULL);;;\nINSERT INTO `categories` VALUES (88, 'Administration', 23, 0, 1, 'Y', 1, '88','','','','', NULL);;;\nINSERT INTO `categories` VALUES (89, 'Construction', 23, 0, 1, 'Y', 1, '89','','','','', NULL);;;\n\n\nCREATE TABLE `codes` (\n  `field_id` varchar(30) NOT NULL default '',\n  `code` varchar(5) NOT NULL default '',\n  `description` varchar(30) NOT NULL default '',\n  PRIMARY KEY  (`field_id`,`code`)\n) ;;;\n\n \n\nINSERT INTO `codes` VALUES ('37', '0', '0-2 Yr');;;\nINSERT INTO `codes` VALUES ('37', '11+', '11+ Yr');;;\nINSERT INTO `codes` VALUES ('37', '36', '3-6 Yr');;;\nINSERT INTO `codes` VALUES ('37', '710', '7-10 Yr');;;\nINSERT INTO `codes` VALUES ('46', 'AA', 'AAAA');;;\nINSERT INTO `codes` VALUES ('46', 'BB', 'BBBB');;;\nINSERT INTO `codes` VALUES ('46', 'CC', 'CCCC');;;\nINSERT INTO `codes` VALUES ('46', 'DD', 'DDDD');;;\nINSERT INTO `codes` VALUES ('47', 'A', 'codea');;;\nINSERT INTO `codes` VALUES ('47', 'B', 'codeb');;;\nINSERT INTO `codes` VALUES ('47', 'C', 'codec');;;\nINSERT INTO `codes` VALUES ('48', 'O', 'One');;;\nINSERT INTO `codes` VALUES ('48', 'T', 'Two');;;\nINSERT INTO `codes` VALUES ('48', 'Th', 'Three');;;\nINSERT INTO `codes` VALUES ('55', 'BA', 'Bachelor''s');;;\nINSERT INTO `codes` VALUES ('55', 'Col', 'Student - College');;;\nINSERT INTO `codes` VALUES ('55', 'Dip', 'Diploma');;;\nINSERT INTO `codes` VALUES ('55', 'Doc', 'Doctorate (Other)');;;\nINSERT INTO `codes` VALUES ('55', 'HI', 'High School');;;\nINSERT INTO `codes` VALUES ('55', 'JD', 'JD');;;\nINSERT INTO `codes` VALUES ('55', 'Law', 'Student - Law School');;;\nINSERT INTO `codes` VALUES ('55', 'MA', 'Master''s');;;\nINSERT INTO `codes` VALUES ('55', 'MBA', 'MBA');;;\nINSERT INTO `codes` VALUES ('55', 'Med', 'Student - Med School');;;\nINSERT INTO `codes` VALUES ('55', 'PhD', 'PhD');;;\nINSERT INTO `codes` VALUES ('55', 'PhDc', 'PhD Candidate');;;\nINSERT INTO `codes` VALUES ('55', 'PhDmd', 'MD-PhD');;;\nINSERT INTO `codes` VALUES ('67', 'G', 'Government institution');;;\nINSERT INTO `codes` VALUES ('67', 'I', 'Individual');;;\nINSERT INTO `codes` VALUES ('67', 'P', 'Private Organization');;;\nINSERT INTO `codes` VALUES ('67', 'R', 'Recruitment / Consulting');;;\n\n \n\nCREATE TABLE `codes_translations` (\n  `field_id` int(11) NOT NULL default '0',\n  `code` varchar(10) NOT NULL default '',\n  `description` varchar(255) NOT NULL default '',\n  `lang` char(2) NOT NULL default '',\n  PRIMARY KEY  (`field_id`,`code`,`lang`)\n) ;;;\n\n\n\nINSERT INTO `codes_translations` VALUES (37, '0', '0-2 Yr', '');;;\nINSERT INTO `codes_translations` VALUES (37, '0', '0-2 Yr', 'CN');;;\nINSERT INTO `codes_translations` VALUES (37, '0', '0-2 Yr', 'EN');;;\nINSERT INTO `codes_translations` VALUES (37, '0', '0-2 Yr', 'ES');;;\nINSERT INTO `codes_translations` VALUES (37, '0', '0-2 Yr', 'KO');;;\nINSERT INTO `codes_translations` VALUES (37, '0', '0-2 Yr', 'PL');;;\nINSERT INTO `codes_translations` VALUES (37, '11+', '11+ Yr', '');;;\nINSERT INTO `codes_translations` VALUES (37, '11+', '11+ Yr', 'CN');;;\nINSERT INTO `codes_translations` VALUES (37, '11+', '11+ Yr', 'EN');;;\nINSERT INTO `codes_translations` VALUES (37, '11+', '11+ Yr', 'ES');;;\nINSERT INTO `codes_translations` VALUES (37, '11+', '11+ Yr', 'KO');;;\nINSERT INTO `codes_translations` VALUES (37, '11+', '11+ Yr', 'PL');;;\nINSERT INTO `codes_translations` VALUES (37, '36', '3-6 Yr', '');;;\nINSERT INTO `codes_translations` VALUES (37, '36', '3-6 Yr', 'CN');;;\nINSERT INTO `codes_translations` VALUES (37, '36', '3-6 Yr', 'EN');;;\nINSERT INTO `codes_translations` VALUES (37, '36', '3-6 Yr', 'ES');;;\nINSERT INTO `codes_translations` VALUES (37, '36', '3-6 Yr', 'KO');;;\nINSERT INTO `codes_translations` VALUES (37, '36', '3-6 Yr', 'PL');;;\nINSERT INTO `codes_translations` VALUES (37, '710', '7-10 Yr', '');;;\nINSERT INTO `codes_translations` VALUES (37, '710', '7-10 Yr', 'CN');;;\nINSERT INTO `codes_translations` VALUES (37, '710', '7-10 Yr', 'EN');;;\nINSERT INTO `codes_translations` VALUES (37, '710', '7-10 Yr', 'ES');;;\nINSERT INTO `codes_translations` VALUES (37, '710', '7-10 Yr', 'KO');;;\nINSERT INTO `codes_translations` VALUES (37, '710', '7-10 Yr', 'PL');;;\nINSERT INTO `codes_translations` VALUES (46, 'AA', 'AAAA', '');;;\nINSERT INTO `codes_translations` VALUES (46, 'AA', 'AAAA', 'CN');;;\nINSERT INTO `codes_translations` VALUES (46, 'AA', 'AAAA', 'EN');;;\nINSERT INTO `codes_translations` VALUES (46, 'AA', 'AAAA', 'ES');;;\nINSERT INTO `codes_translations` VALUES (46, 'AA', 'AAAA', 'KO');;;\nINSERT INTO `codes_translations` VALUES (46, 'AA', 'AAAA', 'PL');;;\nINSERT INTO `codes_translations` VALUES (46, 'BB', 'BBBB', '');;;\nINSERT INTO `codes_translations` VALUES (46, 'BB', 'BBBB', 'CN');;;\nINSERT INTO `codes_translations` VALUES (46, 'BB', 'BBBB', 'EN');;;\nINSERT INTO `codes_translations` VALUES (46, 'BB', 'BBBB', 'ES');;;\nINSERT INTO `codes_translations` VALUES (46, 'BB', 'BBBB', 'KO');;;\nINSERT INTO `codes_translations` VALUES (46, 'BB', 'BBBB', 'PL');;;\nINSERT INTO `codes_translations` VALUES (46, 'CC', 'CCCC', '');;;\nINSERT INTO `codes_translations` VALUES (46, 'CC', 'CCCC', 'CN');;;\nINSERT INTO `codes_translations` VALUES (46, 'CC', 'CCCC', 'EN');;;\nINSERT INTO `codes_translations` VALUES (46, 'CC', 'CCCC', 'ES');;;\nINSERT INTO `codes_translations` VALUES (46, 'CC', 'CCCC', 'KO');;;\nINSERT INTO `codes_translations` VALUES (46, 'CC', 'CCCC', 'PL');;;\nINSERT INTO `codes_translations` VALUES (46, 'DD', 'DDDD', '');;;\nINSERT INTO `codes_translations` VALUES (46, 'DD', 'DDDD', 'CN');;;\nINSERT INTO `codes_translations` VALUES (46, 'DD', 'DDDD', 'EN');;;\nINSERT INTO `codes_translations` VALUES (46, 'DD', 'DDDD', 'ES');;;\nINSERT INTO `codes_translations` VALUES (46, 'DD', 'DDDD', 'KO');;;\nINSERT INTO `codes_translations` VALUES (46, 'DD', 'DDDD', 'PL');;;\nINSERT INTO `codes_translations` VALUES (47, 'A', 'codea', '');;;\nINSERT INTO `codes_translations` VALUES (47, 'A', 'codea', 'CN');;;\nINSERT INTO `codes_translations` VALUES (47, 'A', 'codea', 'EN');;;\nINSERT INTO `codes_translations` VALUES (47, 'A', 'codea', 'ES');;;\nINSERT INTO `codes_translations` VALUES (47, 'A', 'codea', 'KO');;;\nINSERT INTO `codes_translations` VALUES (47, 'A', 'codea', 'PL');;;\nINSERT INTO `codes_translations` VALUES (47, 'B', 'codeb', '');;;\nINSERT INTO `codes_translations` VALUES (47, 'B', 'codeb', 'CN');;;\nINSERT INTO `codes_translations` VALUES (47, 'B', 'codeb', 'EN');;;\nINSERT INTO `codes_translations` VALUES (47, 'B', 'codeb', 'ES');;;\nINSERT INTO `codes_translations` VALUES (47, 'B', 'codeb', 'KO');;;\nINSERT INTO `codes_translations` VALUES (47, 'B', 'codeb', 'PL');;;\nINSERT INTO `codes_translations` VALUES (47, 'C', 'codec', '');;;\nINSERT INTO `codes_translations` VALUES (47, 'C', 'codec', 'CN');;;\nINSERT INTO `codes_translations` VALUES (47, 'C', 'codec', 'EN');;;\nINSERT INTO `codes_translations` VALUES (47, 'C', 'codec', 'ES');;;\nINSERT INTO `codes_translations` VALUES (47, 'C', 'codec', 'KO');;;\nINSERT INTO `codes_translations` VALUES (47, 'C', 'codec', 'PL');;;\nINSERT INTO `codes_translations` VALUES (48, 'O', 'One', '');;;\nINSERT INTO `codes_translations` VALUES (48, 'O', 'One', 'CN');;;\nINSERT INTO `codes_translations` VALUES (48, 'O', 'One', 'EN');;;\nINSERT INTO `codes_translations` VALUES (48, 'O', 'One', 'ES');;;\nINSERT INTO `codes_translations` VALUES (48, 'O', 'One', 'KO');;;\nINSERT INTO `codes_translations` VALUES (48, 'O', 'One', 'PL');;;\nINSERT INTO `codes_translations` VALUES (48, 'T', 'Two', '');;;\nINSERT INTO `codes_translations` VALUES (48, 'T', 'Two', 'CN');;;\nINSERT INTO `codes_translations` VALUES (48, 'T', 'Two', 'EN');;;\nINSERT INTO `codes_translations` VALUES (48, 'T', 'Two', 'ES');;;\nINSERT INTO `codes_translations` VALUES (48, 'T', 'Two', 'KO');;;\nINSERT INTO `codes_translations` VALUES (48, 'T', 'Two', 'PL');;;\nINSERT INTO `codes_translations` VALUES (48, 'Th', 'Three', '');;;\nINSERT INTO `codes_translations` VALUES (48, 'Th', 'Three', 'CN');;;\nINSERT INTO `codes_translations` VALUES (48, 'Th', 'Three', 'EN');;;\nINSERT INTO `codes_translations` VALUES (48, 'Th', 'Three', 'ES');;;\nINSERT INTO `codes_translations` VALUES (48, 'Th', 'Three', 'KO');;;\nINSERT INTO `codes_translations` VALUES (48, 'Th', 'Three', 'PL');;;\nINSERT INTO `codes_translations` VALUES (55, 'BA', 'Bachelor''s', '');;;\nINSERT INTO `codes_translations` VALUES (55, 'BA', 'Bachelor''s', 'CN');;;\nINSERT INTO `codes_translations` VALUES (55, 'BA', 'Bachelor''s', 'EN');;;\nINSERT INTO `codes_translations` VALUES (55, 'BA', 'Bachelor''s', 'ES');;;\nINSERT INTO `codes_translations` VALUES (55, 'BA', 'Bachelor''s', 'KO');;;\nINSERT INTO `codes_translations` VALUES (55, 'BA', 'Bachelor''s', 'PL');;;\nINSERT INTO `codes_translations` VALUES (55, 'Col', 'Student - College', '');;;\nINSERT INTO `codes_translations` VALUES (55, 'Col', 'Student - College', 'CN');;;\nINSERT INTO `codes_translations` VALUES (55, 'Col', 'Student - College', 'EN');;;\nINSERT INTO `codes_translations` VALUES (55, 'Col', 'Student - College', 'ES');;;\nINSERT INTO `codes_translations` VALUES (55, 'Col', 'Student - College', 'KO');;;\nINSERT INTO `codes_translations` VALUES (55, 'Col', 'Student - College', 'PL');;;\nINSERT INTO `codes_translations` VALUES (55, 'Dip', 'Diploma', '');;;\nINSERT INTO `codes_translations` VALUES (55, 'Dip', 'Diploma', 'CN');;;\nINSERT INTO `codes_translations` VALUES (55, 'Dip', 'Diploma', 'EN');;;\nINSERT INTO `codes_translations` VALUES (55, 'Dip', 'Diploma', 'ES');;;\nINSERT INTO `codes_translations` VALUES (55, 'Dip', 'Diploma', 'KO');;;\nINSERT INTO `codes_translations` VALUES (55, 'Dip', 'Diploma', 'PL');;;\nINSERT INTO `codes_translations` VALUES (55, 'Doc', 'Doctorate (Other)', '');;;\nINSERT INTO `codes_translations` VALUES (55, 'Doc', 'Doctorate (Other)', 'CN');;;\nINSERT INTO `codes_translations` VALUES (55, 'Doc', 'Doctorate (Other)', 'EN');;;\nINSERT INTO `codes_translations` VALUES (55, 'Doc', 'Doctorate (Other)', 'ES');;;\nINSERT INTO `codes_translations` VALUES (55, 'Doc', 'Doctorate (Other)', 'KO');;;\nINSERT INTO `codes_translations` VALUES (55, 'Doc', 'Doctorate (Other)', 'PL');;;\nINSERT INTO `codes_translations` VALUES (55, 'HI', 'High School', '');;;\nINSERT INTO `codes_translations` VALUES (55, 'HI', 'High School', 'CN');;;\nINSERT INTO `codes_translations` VALUES (55, 'HI', 'High School', 'EN');;;\nINSERT INTO `codes_translations` VALUES (55, 'HI', 'High School', 'ES');;;\nINSERT INTO `codes_translations` VALUES (55, 'HI', 'High School', 'KO');;;\nINSERT INTO `codes_translations` VALUES (55, 'HI', 'High School', 'PL');;;\nINSERT INTO `codes_translations` VALUES (55, 'JD', 'JD', '');;;\nINSERT INTO `codes_translations` VALUES (55, 'JD', 'JD', 'CN');;;\nINSERT INTO `codes_translations` VALUES (55, 'JD', 'JD', 'EN');;;\nINSERT INTO `codes_translations` VALUES (55, 'JD', 'JD', 'ES');;;\nINSERT INTO `codes_translations` VALUES (55, 'JD', 'JD', 'KO');;;\nINSERT INTO `codes_translations` VALUES (55, 'JD', 'JD', 'PL');;;\nINSERT INTO `codes_translations` VALUES (55, 'Law', 'Student - Law School', '');;;\nINSERT INTO `codes_translations` VALUES (55, 'Law', 'Student - Law School', 'CN');;;\nINSERT INTO `codes_translations` VALUES (55, 'Law', 'Student - Law School', 'EN');;;\nINSERT INTO `codes_translations` VALUES (55, 'Law', 'Student - Law School', 'ES');;;\nINSERT INTO `codes_translations` VALUES (55, 'Law', 'Student - Law School', 'KO');;;\nINSERT INTO `codes_translations` VALUES (55, 'Law', 'Student - Law School', 'PL');;;\nINSERT INTO `codes_translations` VALUES (55, 'MA', 'Master''s', '');;;\nINSERT INTO `codes_translations` VALUES (55, 'MA', 'Master''s', 'CN');;;\nINSERT INTO `codes_translations` VALUES (55, 'MA', 'Master''s', 'EN');;;\nINSERT INTO `codes_translations` VALUES (55, 'MA', 'Master''s', 'ES');;;\nINSERT INTO `codes_translations` VALUES (55, 'MA', 'Master''s', 'KO');;;\nINSERT INTO `codes_translations` VALUES (55, 'MA', 'Master''s', 'PL');;;\nINSERT INTO `codes_translations` VALUES (55, 'MBA', 'MBA', '');;;\nINSERT INTO `codes_translations` VALUES (55, 'MBA', 'MBA', 'CN');;;\nINSERT INTO `codes_translations` VALUES (55, 'MBA', 'MBA', 'EN');;;\nINSERT INTO `codes_translations` VALUES (55, 'MBA', 'MBA', 'ES');;;\nINSERT INTO `codes_translations` VALUES (55, 'MBA', 'MBA', 'KO');;;\nINSERT INTO `codes_translations` VALUES (55, 'MBA', 'MBA', 'PL');;;\nINSERT INTO `codes_translations` VALUES (55, 'Med', 'Student - Med School', '');;;\nINSERT INTO `codes_translations` VALUES (55, 'Med', 'Student - Med School', 'CN');;;\nINSERT INTO `codes_translations` VALUES (55, 'Med', 'Student - Med School', 'EN');;;\nINSERT INTO `codes_translations` VALUES (55, 'Med', 'Student - Med School', 'ES');;;\nINSERT INTO `codes_translations` VALUES (55, 'Med', 'Student - Med School', 'KO');;;\nINSERT INTO `codes_translations` VALUES (55, 'Med', 'Student - Med School', 'PL');;;\nINSERT INTO `codes_translations` VALUES (55, 'PhD', 'PhD', '');;;\nINSERT INTO `codes_translations` VALUES (55, 'PhD', 'PhD', 'CN');;;\nINSERT INTO `codes_translations` VALUES (55, 'PhD', 'PhD', 'EN');;;\nINSERT INTO `codes_translations` VALUES (55, 'PhD', 'PhD', 'ES');;;\nINSERT INTO `codes_translations` VALUES (55, 'PhD', 'PhD', 'KO');;;\nINSERT INTO `codes_translations` VALUES (55, 'PhD', 'PhD', 'PL');;;\nINSERT INTO `codes_translations` VALUES (55, 'PhDc', 'PhD Candidate', '');;;\nINSERT INTO `codes_translations` VALUES (55, 'PhDc', 'PhD Candidate', 'CN');;;\nINSERT INTO `codes_translations` VALUES (55, 'PhDc', 'PhD Candidate', 'EN');;;\nINSERT INTO `codes_translations` VALUES (55, 'PhDc', 'PhD Candidate', 'ES');;;\nINSERT INTO `codes_translations` VALUES (55, 'PhDc', 'PhD Candidate', 'KO');;;\nINSERT INTO `codes_translations` VALUES (55, 'PhDc', 'PhD Candidate', 'PL');;;\nINSERT INTO `codes_translations` VALUES (55, 'PhDmd', 'MD-PhD', '');;;\nINSERT INTO `codes_translations` VALUES (55, 'PhDmd', 'MD-PhD', 'CN');;;\nINSERT INTO `codes_translations` VALUES (55, 'PhDmd', 'MD-PhD', 'EN');;;\nINSERT INTO `codes_translations` VALUES (55, 'PhDmd', 'MD-PhD', 'ES');;;\nINSERT INTO `codes_translations` VALUES (55, 'PhDmd', 'MD-PhD', 'KO');;;\nINSERT INTO `codes_translations` VALUES (55, 'PhDmd', 'MD-PhD', 'PL');;;\nINSERT INTO `codes_translations` VALUES (67, 'G', 'Government institution', '');;;\nINSERT INTO `codes_translations` VALUES (67, 'G', 'Government institution', 'CN');;;\nINSERT INTO `codes_translations` VALUES (67, 'G', 'Government institution', 'EN');;;\nINSERT INTO `codes_translations` VALUES (67, 'G', 'Government institution', 'ES');;;\nINSERT INTO `codes_translations` VALUES (67, 'G', 'Government institution', 'KO');;;\nINSERT INTO `codes_translations` VALUES (67, 'G', 'Government institution', 'PL');;;\nINSERT INTO `codes_translations` VALUES (67, 'I', 'Individual', '');;;\nINSERT INTO `codes_translations` VALUES (67, 'I', 'Individual', 'CN');;;\nINSERT INTO `codes_translations` VALUES (67, 'I', 'Individual', 'EN');;;\nINSERT INTO `codes_translations` VALUES (67, 'I', 'Individual', 'ES');;;\nINSERT INTO `codes_translations` VALUES (67, 'I', 'Individual &#50668;&#44592;', 'KO');;;\nINSERT INTO `codes_translations` VALUES (67, 'I', 'Individual', 'PL');;;\nINSERT INTO `codes_translations` VALUES (67, 'P', 'Private Organization', '');;;\nINSERT INTO `codes_translations` VALUES (67, 'P', 'Private Organization', 'CN');;;\nINSERT INTO `codes_translations` VALUES (67, 'P', 'Private Organization', 'EN');;;\nINSERT INTO `codes_translations` VALUES (67, 'P', 'Private Organization', 'ES');;;\nINSERT INTO `codes_translations` VALUES (67, 'P', 'Private Organization', 'KO');;;\nINSERT INTO `codes_translations` VALUES (67, 'P', 'Private Organization', 'PL');;;\nINSERT INTO `codes_translations` VALUES (67, 'R', 'Recruitment / Consulting', '');;;\nINSERT INTO `codes_translations` VALUES (67, 'R', 'Recruitment / Consulting', 'CN');;;\nINSERT INTO `codes_translations` VALUES (67, 'R', 'Recruitment / Consulting', 'EN');;;\nINSERT INTO `codes_translations` VALUES (67, 'R', 'Recruitment / Consulting', 'ES');;;\nINSERT INTO `codes_translations` VALUES (67, 'R', 'Recruitment / Consulting', 'KO');;;\nINSERT INTO `codes_translations` VALUES (67, 'R', 'Recruitment / Consulting', 'PL');;;\n\n\nCREATE TABLE `currencies` (\n  `code` char(3) NOT NULL default '',\n  `name` varchar(50) NOT NULL default '',\n  `rate` decimal(10,4) NOT NULL default '1.0000',\n  `is_default` set('Y','N') NOT NULL default 'N',\n  `sign` varchar(8) NOT NULL default '',\n  `decimal_places` smallint(6) NOT NULL default '0',\n  `decimal_point` char(3) NOT NULL default '',\n  `thousands_sep` char(3) NOT NULL default '',\n  PRIMARY KEY  (`code`)\n) ;;;\n\n\nINSERT INTO `currencies` VALUES ('AUD', 'Australian Dollar', 1.3228, 'N', '\$', 2, '.', ',');;;\nINSERT INTO `currencies` VALUES ('CAD', 'Canadian Dollar', 1.1998, 'N', '\$', 2, '.', ',');;;\nINSERT INTO `currencies` VALUES ('EUR', 'Euro', 0.8138, 'N', '&#8364;', 2, '.', ',');;;\nINSERT INTO `currencies` VALUES ('GBP', 'British Pound', 0.5555, 'N', '&pound;', 2, '.', ',');;;\nINSERT INTO `currencies` VALUES ('JPY', 'Japanese Yen', 110.1950, 'N', '&yen;', 0, '.', ',');;;\nINSERT INTO `currencies` VALUES ('KRW', 'Korean Won', 1028.8000, 'N', '&#8361;', 0, '.', ',');;;\nINSERT INTO `currencies` VALUES ('USD', 'U.S. Dollar', 1.0000, 'Y', '\$', 2, '.', ',');;;\n\n \n\nCREATE TABLE `email_template_translations` (\n  `EmailID` int(11) NOT NULL default '0',\n  `lang` varchar(10) NOT NULL default '',\n  `EmailText` text NOT NULL,\n  `EmailFromAddress` varchar(255) NOT NULL default '',\n  `EmailSubject` varchar(255) NOT NULL default '',\n  `EmailFromName` varchar(255) NOT NULL default '',\n  `sub_template` text NOT NULL,\n  PRIMARY KEY  (`EmailID`,`lang`)\n) ;;;\n\n\n\nINSERT INTO `email_template_translations` VALUES (1, 'CN', 'Dear %FNAME% %LNAME%,\r\n\r\nYou have successfully signed up to %SITE_NAME%.\r\n\r\nIf you ever encounter any problems, bugs or just have \r\nany questions or suggestions, feel free to contact \r\nus: %SITE_CONTACT_EMAIL%;\r\n\r\n\r\nYou have registered with the following details - \r\n\r\nMember ID: %MEMBERID%\r\nPassword: %PASSWORD% \r\n\r\n', '*****@*****.**', 'Successfully Signed Up as %MEMBERID%', 'Job Board', '');;;\nINSERT INTO `email_template_translations` VALUES (1, 'EN', 'Dear %FNAME% %LNAME%,\r\n\r\nYou have successfully signed up to %SITE_NAME%.\r\n\r\nIf you ever encounter any problems, bugs or just have \r\nany questions or suggestions, feel free to contact \r\nus: %SITE_CONTACT_EMAIL%;\r\n\r\n\r\nYou have registered with the following details - \r\n\r\nMember ID: %MEMBERID%\r\nPassword: %PASSWORD% \r\n\r\n\r\n', '*****@*****.**', 'Successfully Signed Up as %MEMBERID%', 'Example', '');;;\nINSERT INTO `email_template_translations` VALUES (1, 'ES', 'Dear %FNAME% %LNAME%,\r\n\r\nYou have successfully signed up to %SITE_NAME%.\r\n\r\nIf you ever encounter any problems, bugs or just have \r\nany questions or suggestions, feel free to contact \r\nus: %SITE_CONTACT_EMAIL%;\r\n\r\n\r\nYou have registered with the following details - \r\n\r\nMember ID: %MEMBERID%\r\nPassword: %PASSWORD% \r\n\r\n', '*****@*****.**', 'Successfully Signed Up as %MEMBERID%', 'Job Board', '');;;\nINSERT INTO `email_template_translations` VALUES (1, 'KO', 'Dear %FNAME% %LNAME%,\r\n\r\nYou have successfully signed up to %SITE_NAME%.\r\n\r\nIf you ever encounter any problems, bugs or just have \r\nany questions or suggestions, feel free to contact \r\nus: %SITE_CONTACT_EMAIL%;\r\n\r\n\r\nYou have registered with the following details - \r\n\r\nMember ID: %MEMBERID%\r\nPassword: %PASSWORD% \r\n\r\n', '*****@*****.**', 'Successfully Signed Up as %MEMBERID%', 'Job Board', '');;;\nINSERT INTO `email_template_translations` VALUES (1, 'PL', 'Dear %FNAME% %LNAME%,\r\n\r\nYou have successfully signed up to %SITE_NAME%.\r\n\r\nIf you ever encounter any problems, bugs or just have \r\nany questions or suggestions, feel free to contact \r\nus: %SITE_CONTACT_EMAIL%;\r\n\r\n\r\nYou have registered with the following details - \r\n\r\nMember ID: %MEMBERID%\r\nPassword: %PASSWORD% \r\n\r\n', '*****@*****.**', 'Successfully Signed Up as %MEMBERID%', 'Job Board', '');;;\nINSERT INTO `email_template_translations` VALUES (2, 'CN', 'Dear %FNAME% %LNAME%,\r\n\r\nYou have successfully signed for a %SITE_NAME% Employer''s Account. \r\nYou have registered with the following details - \r\n\r\nMember ID: %MEMBERID%\r\nPassword: %PASSWORD% \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have any questions / problems. \r\n\r\nKind Regards,\r\n\r\nJob Board team.', '*****@*****.**', 'Successfully Signed Up as %MEMBERID%', 'Job Board', '');;;\nINSERT INTO `email_template_translations` VALUES (2, 'EN', 'Dear %FNAME% %LNAME%,\r\n\r\nYou have successfully signed for a %SITE_NAME% Employer''s Account. \r\nYou have registered with the following details - \r\n\r\nMember ID: %MEMBERID%\r\nPassword: %PASSWORD% \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have any questions / problems. \r\n\r\nKind Regards,\r\n\r\nWebmaster.', '*****@*****.**', 'Successfully Signed Up as %MEMBERID%', 'Example', '');;;\nINSERT INTO `email_template_translations` VALUES (2, 'ES', 'Dear %FNAME% %LNAME%,\r\n\r\nYou have successfully signed for a %SITE_NAME% Employer''s Account. \r\nYou have registered with the following details - \r\n\r\nMember ID: %MEMBERID%\r\nPassword: %PASSWORD% \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have any questions / problems. \r\n\r\nKind Regards,\r\n\r\nJob Board team.', '*****@*****.**', 'Successfully Signed Up as %MEMBERID%', 'Job Board', '');;;\nINSERT INTO `email_template_translations` VALUES (2, 'KO', 'Dear %FNAME% %LNAME%,\r\n\r\nYou have successfully signed for a %SITE_NAME% Employer''s Account. Your account is not yet enabled. Your account will be manually reviewed and approved by %SITE_NAME%. We will inform you of the result soon. \r\nYou have registered with the following details - \r\n\r\nMember ID: %MEMBERID%\r\nPassword: %PASSWORD% \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have any questions / problems. \r\n', '*****@*****.**', 'Successfully Signed Up as %MEMBERID%', 'Job Board', '');;;\nINSERT INTO `email_template_translations` VALUES (2, 'PL', 'Dear %FNAME% %LNAME%,\r\n\r\nYou have successfully signed for a %SITE_NAME% Employer''s Account. \r\nYou have registered with the following details - \r\n\r\nMember ID: %MEMBERID%\r\nPassword: %PASSWORD% \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have any questions / problems. \r\n\r\nKind Regards,\r\n\r\nJob Board team.', '*****@*****.**', 'Successfully Signed Up as %MEMBERID%', 'Job Board', '');;;\nINSERT INTO `email_template_translations` VALUES (3, 'CN', 'Dear %FNAME% %LNAME%,\r\n\r\nYour %SITE_NAME% password has been reset!\r\n\r\nHere is your new password:\r\n\r\nMember ID: %MEMBERID%\r\nPassword: %PASSWORD%\r\n\r\nYou can sign into your account here: http://www.example.com \r\n\r\nRegards,\r\n\r\nWebmaster,\r\nJob Board!\r\n', '*****@*****.**', 'Reset Password', 'Job Board', '');;;\nINSERT INTO `email_template_translations` VALUES (3, 'EN', 'Dear %FNAME% %LNAME%,\r\n\r\nYour %SITE_NAME% password has been reset!\r\n\r\nHere is your new password:\r\n\r\nMember ID: %MEMBERID%\r\nPassword: %PASSWORD%\r\n\r\nYou can sign into your account here: http://www.example.com/ \r\n\r\nKind Regards,\r\n\r\nWebmaster', '*****@*****.**', 'Reset Password', 'Example', '');;;\nINSERT INTO `email_template_translations` VALUES (3, 'ES', 'Dear %FNAME% %LNAME%,\r\n\r\nYour %SITE_NAME% password has been reset!\r\n\r\nHere is your new password:\r\n\r\nMember ID: %MEMBERID%\r\nPassword: %PASSWORD%\r\n\r\nYou can sign into your account here: http://www.example.com \r\n\r\nRegards,\r\n\r\nWebmaster,\r\nJob Board!\r\n', '*****@*****.**', 'Reset Password', 'Job Board', '');;;\nINSERT INTO `email_template_translations` VALUES (3, 'KO', 'Dear %FNAME% %LNAME%,\r\n\r\nYour %SITE_NAME% password has been reset!\r\n\r\nHere is your new password:\r\n\r\nMember ID: %MEMBERID%\r\nPassword: %PASSWORD%\r\n\r\nYou can sign into your account here: http://www.example.com \r\n\r\nRegards,\r\n\r\nWebmaster,\r\nJob Board!\r\n', '*****@*****.**', 'Reset Password', 'Job Board', '');;;\nINSERT INTO `email_template_translations` VALUES (3, 'PL', 'Dear %FNAME% %LNAME%,\r\n\r\nYour %SITE_NAME% password has been reset!\r\n\r\nHere is your new password:\r\n\r\nMember ID: %MEMBERID%\r\nPassword: %PASSWORD%\r\n\r\nYou can sign into your account here: http://www.example.com \r\n\r\nRegards,\r\n\r\nWebmaster,\r\nJob Board!\r\n', '*****@*****.**', 'Reset Password', 'Job Board', '');;;\nINSERT INTO `email_template_translations` VALUES (4, 'CN', 'Dear %FNAME% %LNAME%,\r\n\r\nAn employer on %SITE_NAME% has requested for your contact details!\r\nHere are the details of the request:\r\n\r\nEmployer Name: %EMPLOYER_NAME%\r\nReply-to Email Address: %REPLY_TO%\r\n%MESSAGE%\r\n\r\nYou may reveal your contact details to this employer by simply visiting the following link: %PERMIT_LINK%\r\n\r\nYou may also contact the employer directly by replying to this email!\r\n\r\n\r\nBest Regards,\r\n\r\nTeam %SITE_NAME%', '*****@*****.**', 'Request for your contact details by an employer', 'Job Board', '');;;\nINSERT INTO `email_template_translations` VALUES (4, 'EN', 'Dear %FNAME% %LNAME%,\r\n\r\nAn employer on %SITE_NAME% has requested for your contact details!\r\nHere are the details of the request:\r\n\r\nEmployer Name: %EMPLOYER_NAME%\r\nReply-to Email Address: %REPLY_TO%\r\n%MESSAGE%\r\n\r\nYou may reveal your contact details to this employer by simply visiting the following link: %PERMIT_LINK%\r\n\r\nYou may also contact the employer directly by replying to this email!\r\n\r\n\r\nBest Regards,\r\n\r\nTeam %SITE_NAME%', '*****@*****.**', 'Request for your contact details by an employer', 'Example', '');;;\nINSERT INTO `email_template_translations` VALUES (4, 'ES', 'Dear %FNAME% %LNAME%,\r\n\r\nAn employer on %SITE_NAME% has requested for your contact details!\r\nHere are the details of the request:\r\n\r\nEmployer Name: %EMPLOYER_NAME%\r\nReply-to Email Address: %REPLY_TO%\r\n%MESSAGE%\r\n\r\nYou may reveal your contact details to this employer by simply visiting the following link: %PERMIT_LINK%\r\n\r\nYou may also contact the employer directly by replying to this email!\r\n\r\n\r\nBest Regards,\r\n\r\nTeam %SITE_NAME%', '*****@*****.**', 'Request for your contact details by an employer', 'Job Board', '');;;\nINSERT INTO `email_template_translations` VALUES (4, 'KO', 'Dear %FNAME% %LNAME%,\r\n\r\nAn employer on %SITE_NAME% has requested for your contact details!\r\nHere are the details of the request:\r\n\r\nEmployer Name: %EMPLOYER_NAME%\r\nReply-to Email Address: %REPLY_TO%\r\n%MESSAGE%\r\n\r\nYou may reveal your contact details to this employer by simply visiting the following link: %PERMIT_LINK%\r\n\r\nYou may also contact the employer directly by replying to this email!\r\n\r\n\r\nBest Regards,\r\n\r\nTeam %SITE_NAME%', '*****@*****.**', 'Request for your contact details by an employer', 'Job Board', '');;;\nINSERT INTO `email_template_translations` VALUES (4, 'PL', 'Dear %FNAME% %LNAME%,\r\n\r\nAn employer on %SITE_NAME% has requested for your contact details!\r\nHere are the details of the request:\r\n\r\nEmployer Name: %EMPLOYER_NAME%\r\nReply-to Email Address: %REPLY_TO%\r\n%MESSAGE%\r\n\r\nYou may reveal your contact details to this employer by simply visiting the following link: %PERMIT_LINK%\r\n\r\nYou may also contact the employer directly by replying to this email!\r\n\r\n\r\nBest Regards,\r\n\r\nTeam %SITE_NAME%', '*****@*****.**', 'Request for your contact details by an employer', 'Job Board', '');;;\nINSERT INTO `email_template_translations` VALUES (5, 'CN', 'Your %SITE_NAME% Daily Resume Alert!\r\n\r\nDear %FNAME% %LNAME%,\r\n\r\nYour Resume Alert on %SITE_NAME% has returned the following alert for you today:\r\n\r\n%RESUME_ALERTS% \r\n\r\n\r\n\r\n%SITE_NAME% Team %SITE_CONTACT_EMAIL%\r\n- If you want to View these resumes,or maintain your Daily Resume Alerts, \r\nplease visit this link:\r\n%EMPLOYER_LINK% \r\n', '*****@*****.**', 'Daily C.V. Alert', 'Job Board', '%DATE% : %RESUME_NAME% (%RESUME_COL4%)');;;\nINSERT INTO `email_template_translations` VALUES (5, 'EN', 'Your %SITE_NAME% Daily Resume Alert!\r\n\r\nDear %FNAME% %LNAME%,\r\n\r\nYour Resume Alert on %SITE_NAME% has returned the following alert for you today:\r\n\r\n%RESUME_ALERTS% \r\n\r\n\r\n\r\n%SITE_NAME% Team %SITE_CONTACT_EMAIL%\r\n- If you want to View these resumes,or maintain your Daily Resume Alerts, \r\nplease visit this link:\r\n%EMPLOYER_LINK% \r\n', '*****@*****.**', 'Daily C.V. Alert', 'Example', '%DATE% : %RESUME_NAME% (%NATIONALITY%)');;;\nINSERT INTO `email_template_translations` VALUES (5, 'ES', 'Your %SITE_NAME% Daily Resume Alert!\r\n\r\nDear %FNAME% %LNAME%,\r\n\r\nYour Resume Alert on %SITE_NAME% has returned the following alert for you today:\r\n\r\n%RESUME_ALERTS% \r\n\r\n\r\n\r\n%SITE_NAME% Team %SITE_CONTACT_EMAIL%\r\n- If you want to View these resumes,or maintain your Daily Resume Alerts, \r\nplease visit this link:\r\n%EMPLOYER_LINK% \r\n', '*****@*****.**', 'Daily C.V. Alert', 'Job Board', '%DATE% : %RESUME_NAME% (%RESUME_COL4%)');;;\nINSERT INTO `email_template_translations` VALUES (5, 'KO', 'Your %SITE_NAME% Daily Resume Alert!\r\n\r\nDear %FNAME% %LNAME%,\r\n\r\nYour Resume Alert on %SITE_NAME% has returned the following alert for you today:\r\n\r\n%RESUME_ALERTS% \r\n\r\n\r\n\r\n%SITE_NAME% Team %SITE_CONTACT_EMAIL%\r\n- If you want to View these resumes,or maintain your Daily Resume Alerts, \r\nplease visit this link:\r\n%EMPLOYER_LINK% \r\n', '*****@*****.**', 'Daily C.V. Alert', 'Job Board', '%DATE% : %RESUME_NAME% (%RESUME_COL4%)');;;\nINSERT INTO `email_template_translations` VALUES (5, 'PL', 'Your %SITE_NAME% Daily Resume Alert!\r\n\r\nDear %FNAME% %LNAME%,\r\n\r\nYour Resume Alert on %SITE_NAME% has returned the following alert for you today:\r\n\r\n%RESUME_ALERTS% \r\n\r\n\r\n\r\n%SITE_NAME% Team %SITE_CONTACT_EMAIL%\r\n- If you want to View these resumes,or maintain your Daily Resume Alerts, \r\nplease visit this link:\r\n%EMPLOYER_LINK% \r\n', '*****@*****.**', 'Daily C.V. Alert', 'Job Board', '%DATE% : %RESUME_NAME% (%RESUME_COL4%)');;;\nINSERT INTO `email_template_translations` VALUES (6, 'CN', '<h2><font face=''arial''>Your %SITE_NAME% Daily Resume Alert!</font></h2><p>\r\n<p><font size=''2'' face=''arial''>Dear %FNAME% %LNAME%,</font></p>\r\n<font face=''arial'' size=''2''>Your Resume Alert on %SITE_NAME% has returned the following alert for you today:</font><p>%RESUME_ALERTS%\r\n</p>\r\n<p>\r\n<p><font size=''2'' face=''arial''><b></b></font></p><p>\r\n<font face=\"arial\" size=\"2\">%SITE_NAME% Team %SITE_CONTACT_EMAIL%</font></p><p>\r\n<font face=\"arial\" size=\"2\">- If you want to View these resumes, or maintain your Daily Resume Alerts, please visit this link: %EMPLOYER_LINK%</a>\r\n</font></p>', '*****@*****.**', '', 'Job Board', '<font face=''arial'' size=''2''>%DATE% - %RESUME_NAME% (%RESUME_COL4%)</font>');;;\nINSERT INTO `email_template_translations` VALUES (6, 'EN', '<h2><font face=''arial''>Your %SITE_NAME% Daily Resume Alert!</font></h2><p>\r\n<p><font size=''2'' face=''arial''>Dear %FNAME% %LNAME%,</font></p>\r\n<font face=''arial'' size=''2''>Your Resume Alert on %SITE_NAME% has returned the following alert for you today:</font><p>%RESUME_ALERTS%\r\n</p>\r\n<p>\r\n<p><font size=''2'' face=''arial''><b></b></font></p><p>\r\n<font face=\"arial\" size=\"2\">%SITE_NAME% Team %SITE_CONTACT_EMAIL%</font></p><p>\r\n<font face=\"arial\" size=\"2\">- If you want to View these resumes, or maintain your Daily Resume Alerts, please visit this link: %EMPLOYER_LINK%</a>\r\n</font></p>\r\n', '*****@*****.**', 'Resume Alert', 'Example', '<font face=''arial'' size=''2''>%DATE% - %RESUME_NAME% </font>');;;\nINSERT INTO `email_template_translations` VALUES (6, 'ES', '<h2><font face=''arial''>Your %SITE_NAME% Daily Resume Alert!</font></h2><p>\r\n<p><font size=''2'' face=''arial''>Dear %FNAME% %LNAME%,</font></p>\r\n<font face=''arial'' size=''2''>Your Resume Alert on %SITE_NAME% has returned the following alert for you today:</font><p>%RESUME_ALERTS%\r\n</p>\r\n<p>\r\n<p><font size=''2'' face=''arial''><b></b></font></p><p>\r\n<font face=\"arial\" size=\"2\">%SITE_NAME% Team %SITE_CONTACT_EMAIL%</font></p><p>\r\n<font face=\"arial\" size=\"2\">- If you want to View these resumes, or maintain your Daily Resume Alerts, please visit this link: %EMPLOYER_LINK%</a>\r\n</font></p>', '*****@*****.**', '', 'Job Board', '<font face=''arial'' size=''2''>%DATE% - %RESUME_NAME% (%RESUME_COL4%)</font>');;;\nINSERT INTO `email_template_translations` VALUES (6, 'KO', '<h2><font face=''arial''>Your %SITE_NAME% Daily Resume Alert!</font></h2><p>\r\n<p><font size=''2'' face=''arial''>Dear %FNAME% %LNAME%,</font></p>\r\n<font face=''arial'' size=''2''>Your Resume Alert on %SITE_NAME% has returned the following alert for you today:</font><p>%RESUME_ALERTS%\r\n</p>\r\n<p>\r\n<p><font size=''2'' face=''arial''><b></b></font></p><p>\r\n<font face=\"arial\" size=\"2\">%SITE_NAME% Team %SITE_CONTACT_EMAIL%</font></p><p>\r\n<font face=\"arial\" size=\"2\">- If you want to View these resumes, or maintain your Daily Resume Alerts, please visit this link: %EMPLOYER_LINK%</a>\r\n</font></p>\r\n', '*****@*****.**', '', 'Job Board', '<font face=''arial'' size=''2''>%DATE% - %RESUME_NAME% (%RESUME_COL4%)</font>');;;\nINSERT INTO `email_template_translations` VALUES (6, 'PL', '<h2><font face=''arial''>Your %SITE_NAME% Daily Resume Alert!</font></h2><p>\r\n<p><font size=''2'' face=''arial''>Dear %FNAME% %LNAME%,</font></p>\r\n<font face=''arial'' size=''2''>Your Resume Alert on %SITE_NAME% has returned the following alert for you today:</font><p>%RESUME_ALERTS%\r\n</p>\r\n<p>\r\n<p><font size=''2'' face=''arial''><b></b></font></p><p>\r\n<font face=\"arial\" size=\"2\">%SITE_NAME% Team %SITE_CONTACT_EMAIL%</font></p><p>\r\n<font face=\"arial\" size=\"2\">- If you want to View these resumes, or maintain your Daily Resume Alerts, please visit this link: %EMPLOYER_LINK%</a>\r\n</font></p>', '*****@*****.**', '', 'Job Board', '<font face=''arial'' size=''2''>%DATE% - %RESUME_NAME% (%RESUME_COL4%)</font>');;;\nINSERT INTO `email_template_translations` VALUES (7, 'CN', 'Your SITE_NAME Daily Job Alert\r\n\r\nDear %FNAME% %LNAME%\r\n\r\nYour Daily Job Alert on %SITE_NAME% has returned the following alert for you today:\r\n\r\n%JOB_ALERTS% \r\n\r\n\r\n \r\n\r\n%SITE_NAME% Team test@example.com\r\n\r\n%SITE_CONTACT_EMAIL%\r\n- If you want to Cancel, or Edit your Daily Job Alerts, please visit this link: %CANDIDATE_LINK%\r\n', '*****@*****.**', 'Job Alert', 'Job Board', '%FORMATTED_DATE% : %TITLE% (%LOCATION%)\r\nLink: %BASE_HTTP_PATH%index.php?post_id=%POST_ID%');;;\nINSERT INTO `email_template_translations` VALUES (7, 'EN', 'Your %SITE_NAME% Daily Job Alert\r\n\r\nDear %FNAME% %LNAME%\r\n\r\nYour Daily Job Alert on %SITE_NAME% has returned the following alert for you today:\r\n\r\n%JOB_ALERTS% \r\n\r\n\r\n \r\n\r\n%SITE_NAME% Team test@example.com\r\n\r\n%SITE_CONTACT_EMAIL%\r\n- If you want to Cancel, or Edit your Daily Job Alerts, please visit this link: %CANDIDATE_LINK%\r\n', '*****@*****.**', 'Job Alert', 'Example', '%FORMATTED_DATE% : %TITLE% (%LOCATION%)\r\nLink: %BASE_HTTP_PATH%index.php?post_id=%POST_ID%');;;\nINSERT INTO `email_template_translations` VALUES (7, 'ES', 'Your SITE_NAME Daily Job Alert\r\n\r\nDear %FNAME% %LNAME%\r\n\r\nYour Daily Job Alert on %SITE_NAME% has returned the following alert for you today:\r\n\r\n%JOB_ALERTS% \r\n\r\n\r\n \r\n\r\n%SITE_NAME% Team test@example.com\r\n\r\n%SITE_CONTACT_EMAIL%\r\n- If you want to Cancel, or Edit your Daily Job Alerts, please visit this link: %CANDIDATE_LINK%\r\n', '*****@*****.**', 'Job Alert', 'Job Board', '%FORMATTED_DATE% : %TITLE% (%LOCATION%)\r\nLink: %BASE_HTTP_PATH%index.php?post_id=%POST_ID%');;;\nINSERT INTO `email_template_translations` VALUES (7, 'KO', 'Your SITE_NAME Daily Job Alert\r\n\r\nDear %FNAME% %LNAME%\r\n\r\nYour Daily Job Alert on %SITE_NAME% has returned the following alert for you today:\r\n\r\n%JOB_ALERTS% \r\n\r\n\r\n \r\n\r\n%SITE_NAME% Team test@example.com\r\n\r\n%SITE_CONTACT_EMAIL%\r\n- If you want to Cancel, or Edit your Daily Job Alerts, please visit this link: %CANDIDATE_LINK%\r\n', '*****@*****.**', 'Job Alert', 'Job Board', '%FORMATTED_DATE% : %TITLE% (%LOCATION%)\r\nLink: %BASE_HTTP_PATH%index.php?post_id=%POST_ID%');;;\nINSERT INTO `email_template_translations` VALUES (7, 'PL', 'Your SITE_NAME Daily Job Alert\r\n\r\nDear %FNAME% %LNAME%\r\n\r\nYour Daily Job Alert on %SITE_NAME% has returned the following alert for you today:\r\n\r\n%JOB_ALERTS% \r\n\r\n\r\n \r\n\r\n%SITE_NAME% Team test@example.com\r\n\r\n%SITE_CONTACT_EMAIL%\r\n- If you want to Cancel, or Edit your Daily Job Alerts, please visit this link: %CANDIDATE_LINK%\r\n', '*****@*****.**', 'Job Alert', 'Job Board', '%FORMATTED_DATE% : %TITLE% (%LOCATION%)\r\nLink: %BASE_HTTP_PATH%index.php?post_id=%POST_ID%');;;\nINSERT INTO `email_template_translations` VALUES (8, 'CN', '<img src=\"%SITE_LOGO_URL%\"><br><h2><font face=''arial''>Your %SITE_NAME% Daily Job Alert</font></h2>\r\n\r\n<p><font size=''2'' face=''arial''>Dear %FNAME% %LNAME%</font></p>\r\n\r\n<font face=''arial'' size=''2''>Your Daily Job Alert on %SITE_NAME% has returned the following alert for you today:</font><p></p>\r\n\r\n<p>\r\n%JOB_ALERTS%\r\n</p>\r\n<p>\r\n<b></b>\r\n</p>\r\n<p><font face=''arial'' size=''2''>%SITE_NAME% Team test@example.com<br>%SITE_CONTACT_EMAIL%</font></p>\r\n<p><font face=''arial'' size=''2''>- If you want to Cancel, or Edit your Daily Job Alerts, please visit this link: <a href=\"%CANDIDATE_LINK%\">%CANDIDATE_LINK%</a></font></p>', '*****@*****.**', 'Job Alert', 'Job Board', '<font face=''arial'' size=''2''>%FORMATTED_DATE% - <a href=''%BASE_HTTP_PATH%index.php?post_id=%POST_ID%''>%TITLE%</a></font> (%LOCATION%) <font face=''arial'' size=''1'' color=''#808080''>%DESCRIPTION%</font>');;;\nINSERT INTO `email_template_translations` VALUES (8, 'EN', '<img src=\"%SITE_LOGO_URL%\"><br><h2><font face=''arial''>Your %SITE_NAME% Daily Job Alert</font></h2>\r\n\r\n<p><font size=''2'' face=''arial''>Dear %FNAME% %LNAME%</font></p>\r\n\r\n<font face=''arial'' size=''2''>Your Daily Job Alert on %SITE_NAME% has returned the following alert for you today:</font><p></p>\r\n\r\n<p>\r\n%JOB_ALERTS%\r\n</p>\r\n<p>\r\n<b></b>\r\n</p>\r\n<p><font face=''arial'' size=''2''>%SITE_NAME% Team test@example.com<br>%SITE_CONTACT_EMAIL%</font></p>\r\n<p><font face=''arial'' size=''2''>- If you want to Cancel, or Edit your Daily Job Alerts, please visit this link: <a href=\"%CANDIDATE_LINK%\">%CANDIDATE_LINK%</a></font></p>', '*****@*****.**', 'Job Alert', 'Example', '<font face=''arial'' size=''2''>%FORMATTED_DATE% - <a href=''%BASE_HTTP_PATH%index.php?post_id=%POST_ID%''>%TITLE%</a></font> (%LOCATION%) <font face=''arial'' size=''1'' color=''#808080''>%DESCRIPTION%</font>');;;\nINSERT INTO `email_template_translations` VALUES (8, 'ES', '<img src=\"%SITE_LOGO_URL%\"><br><h2><font face=''arial''>Your %SITE_NAME% Daily Job Alert</font></h2>\r\n\r\n<p><font size=''2'' face=''arial''>Dear %FNAME% %LNAME%</font></p>\r\n\r\n<font face=''arial'' size=''2''>Your Daily Job Alert on %SITE_NAME% has returned the following alert for you today:</font><p></p>\r\n\r\n<p>\r\n%JOB_ALERTS%\r\n</p>\r\n<p>\r\n<b></b>\r\n</p>\r\n<p><font face=''arial'' size=''2''>%SITE_NAME% Team test@example.com<br>%SITE_CONTACT_EMAIL%</font></p>\r\n<p><font face=''arial'' size=''2''>- If you want to Cancel, or Edit your Daily Job Alerts, please visit this link: <a href=\"%CANDIDATE_LINK%\">%CANDIDATE_LINK%</a></font></p>', '*****@*****.**', 'Job Alert', 'Job Board', '<font face=''arial'' size=''2''>%FORMATTED_DATE% - <a href=''%BASE_HTTP_PATH%index.php?post_id=%POST_ID%''>%TITLE%</a></font> (%LOCATION%) <font face=''arial'' size=''1'' color=''#808080''>%DESCRIPTION%</font>');;;\nINSERT INTO `email_template_translations` VALUES (8, 'KO', '<img src=\"%SITE_LOGO_URL%\"><br><h2><font face=''arial''>Your %SITE_NAME% Daily Job Alert</font></h2>\r\n\r\n<p><font size=''2'' face=''arial''>Dear %FNAME% %LNAME%</font></p>\r\n\r\n<font face=''arial'' size=''2''>Your Daily Job Alert on %SITE_NAME% has returned the following alert for you today:</font><p></p>\r\n\r\n<p>\r\n%JOB_ALERTS%\r\n</p>\r\n<p>\r\n<b></b>\r\n</p>\r\n<p><font face=''arial'' size=''2''>%SITE_NAME% Team test@example.com<br>%SITE_CONTACT_EMAIL%</font></p>\r\n<p><font face=''arial'' size=''2''>- If you want to Cancel, or Edit your Daily Job Alerts, please visit this link: <a href=\"%CANDIDATE_LINK%\">%CANDIDATE_LINK%</a></font></p>', '*****@*****.**', 'Job Alert', 'Job Board', '<font face=''arial'' size=''2''>%FORMATTED_DATE% - <a href=''%BASE_HTTP_PATH%index.php?post_id=%POST_ID%''>%TITLE%</a></font> (%LOCATION%) <font face=''arial'' size=''1'' color=''#808080''>%DESCRIPTION%</font>');;;\nINSERT INTO `email_template_translations` VALUES (8, 'PL', '<img src=\"%SITE_LOGO_URL%\"><br><h2><font face=''arial''>Your %SITE_NAME% Daily Job Alert</font></h2>\r\n\r\n<p><font size=''2'' face=''arial''>Dear %FNAME% %LNAME%</font></p>\r\n\r\n<font face=''arial'' size=''2''>Your Daily Job Alert on %SITE_NAME% has returned the following alert for you today:</font><p></p>\r\n\r\n<p>\r\n%JOB_ALERTS%\r\n</p>\r\n<p>\r\n<b></b>\r\n</p>\r\n<p><font face=''arial'' size=''2''>%SITE_NAME% Team test@example.com<br>%SITE_CONTACT_EMAIL%</font></p>\r\n<p><font face=''arial'' size=''2''>- If you want to Cancel, or Edit your Daily Job Alerts, please visit this link: <a href=\"%CANDIDATE_LINK%\">%CANDIDATE_LINK%</a></font></p>', '*****@*****.**', 'Job Alert', 'Job Board', '<font face=''arial'' size=''2''>%FORMATTED_DATE% - <a href=''%BASE_HTTP_PATH%index.php?post_id=%POST_ID%''>%TITLE%</a></font> (%LOCATION%) <font face=''arial'' size=''1'' color=''#808080''>%DESCRIPTION%</font>');;;\nINSERT INTO `email_template_translations` VALUES (10, 'CN', 'Application Sent to: %POSTED_BY% (%EMPLOYER_EMAIL%)\r\n\r\nJob Post Titled:  \r\n - %JOB_TITLE%\r\nApplicant:\r\n - %APP_NAME% (%APP_EMAIL%)\r\nsubject:\r\n - %APP_SUBJECT%\r\nLetter:\r\n%APP_LETTER%\r\nAttachments:\r\n%APP_ATTACHMENT1%\r\n%APP_ATTACHMENT2%\r\n%APP_ATTACHMENT3%', '*****@*****.**', 'Application Confirmation', 'Job Board', '');;;\nINSERT INTO `email_template_translations` VALUES (10, 'EN', 'Application Sent to: %POSTED_BY% (%EMPLOYER_EMAIL%)\r\n\r\nJob Post Titled:  \r\n - %JOB_TITLE%\r\nApplicant:\r\n - %APP_NAME% (%APP_EMAIL%)\r\nsubject:\r\n - %APP_SUBJECT%\r\nLetter:\r\n%APP_LETTER%\r\nAttachments:\r\n%APP_ATTACHMENT1%\r\n%APP_ATTACHMENT2%\r\n%APP_ATTACHMENT3%', '*****@*****.**', 'Application Confirmation', 'Example', '');;;\nINSERT INTO `email_template_translations` VALUES (10, 'ES', 'Application Sent to: %POSTED_BY% (%EMPLOYER_EMAIL%)\r\n\r\nJob Post Titled:  \r\n - %JOB_TITLE%\r\nApplicant:\r\n - %APP_NAME% (%APP_EMAIL%)\r\nsubject:\r\n - %APP_SUBJECT%\r\nLetter:\r\n%APP_LETTER%\r\nAttachments:\r\n%APP_ATTACHMENT1%\r\n%APP_ATTACHMENT2%\r\n%APP_ATTACHMENT3%', '*****@*****.**', 'Application Confirmation', 'Job Board', '');;;\nINSERT INTO `email_template_translations` VALUES (10, 'KO', 'Application Sent to: %POSTED_BY% (%EMPLOYER_EMAIL%)\r\n\r\nJob Post Titled:  \r\n - %JOB_TITLE%\r\nApplicant:\r\n - %APP_NAME% (%APP_EMAIL%)\r\nsubject:\r\n - %APP_SUBJECT%\r\nLetter:\r\n%APP_LETTER%\r\nAttachments:\r\n%APP_ATTACHMENT1%\r\n%APP_ATTACHMENT2%\r\n%APP_ATTACHMENT3%', '*****@*****.**', 'Application Confirmation', 'Job Board', '');;;\nINSERT INTO `email_template_translations` VALUES (10, 'PL', 'Application Sent to: %POSTED_BY% (%EMPLOYER_EMAIL%)\r\n\r\nJob Post Titled:  \r\n - %JOB_TITLE%\r\nApplicant:\r\n - %APP_NAME% (%APP_EMAIL%)\r\nsubject:\r\n - %APP_SUBJECT%\r\nLetter:\r\n%APP_LETTER%\r\nAttachments:\r\n%APP_ATTACHMENT1%\r\n%APP_ATTACHMENT2%\r\n%APP_ATTACHMENT3%', '*****@*****.**', 'Application Confirmation', 'Job Board', '');;;\nINSERT INTO `email_template_translations` VALUES (60, 'CN', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nPosts: %QUANTITY% \r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Bank Deposit\r\n\r\nPlease deposit %INVOICE_AMOUNT% to the following account:\r\n\tBank: %BANK_NAME%\r\n        Bank Address: %BANK_ADDRESS%\r\n        SWIFT CODE: %BANK_AC_SWIFT%\r\n\tA/C Name: %AC_NAME%\r\n\tA/C Number: %AC_NUMBER%\r\n\r\nAfter making the deposit, please send an email to \r\ntest@example.com with the following \r\nOrder Number: %INVOICE_CODE% to help us speed up the process. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Order confirmed', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (60, 'EN', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nPosts: %QUANTITY% \r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Bank Deposit\r\n\r\nPlease deposit %INVOICE_AMOUNT% to the following account:\r\n\tBank: %BANK_NAME%\r\n        Bank Address: %BANK_ADDRESS%\r\n        SWIFT CODE: %BANK_AC_SWIFT%\r\n\tA/C Name: %AC_NAME%\r\n\tA/C Number: %AC_NUMBER%\r\n\r\nAfter making the deposit, please send an email to \r\ntest@example.com with the following \r\nOrder Number: %INVOICE_CODE% to help us speed up the process. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Order confirmed', 'Example', '');;;\nINSERT INTO `email_template_translations` VALUES (60, 'ES', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nPosts: %QUANTITY% \r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Bank Deposit\r\n\r\nPlease deposit %INVOICE_AMOUNT% to the following account:\r\n\tBank: %BANK_NAME%\r\n        Bank Address: %BANK_ADDRESS%\r\n        SWIFT CODE: %BANK_AC_SWIFT%\r\n\tA/C Name: %AC_NAME%\r\n\tA/C Number: %AC_NUMBER%\r\n\r\nAfter making the deposit, please send an email to \r\ntest@example.com with the following \r\nOrder Number: %INVOICE_CODE% to help us speed up the process. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Order confirmed', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (60, 'KO', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nPosts: %QUANTITY% \r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Bank Deposit\r\n\r\nPlease deposit %INVOICE_AMOUNT% to the following account:\r\n\tBank: %BANK_NAME%\r\n        Bank Address: %BANK_ADDRESS%\r\n        SWIFT CODE: %BANK_AC_SWIFT%\r\n\tA/C Name: %AC_NAME%\r\n\tA/C Number: %AC_NUMBER%\r\n\r\nAfter making the deposit, please send an email to \r\ntest@example.com with the following \r\nOrder Number: %INVOICE_CODE% to help us speed up the process. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Order confirmed', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (60, 'PL', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nPosts: %QUANTITY% \r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Bank Deposit\r\n\r\nPlease deposit %INVOICE_AMOUNT% to the following account:\r\n\tBank: %BANK_NAME%\r\n        Bank Address: %BANK_ADDRESS%\r\n        SWIFT CODE: %BANK_AC_SWIFT%\r\n\tA/C Name: %AC_NAME%\r\n\tA/C Number: %AC_NUMBER%\r\n\r\nAfter making the deposit, please send an email to \r\ntest@example.com with the following \r\nOrder Number: %INVOICE_CODE% to help us speed up the process. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Order confirmed', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (61, 'CN', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nPosts: %QUANTITY% \r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Check / Money Order\r\n\r\nPlease send Check / Money Order to:\r\n\tName: %PAYEE_NAME%\r\n        Address: %PAYEE_ADDRESS%\r\n        Amount: %INVOICE_AMOUNT%\r\n        Currency: %CHECK_CURRENCY%\r\n\r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Confirmed Order', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (61, 'EN', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nPosts: %QUANTITY% \r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Check / Money Order\r\n\r\nPlease send Check / Money Order to:\r\n\tName: %PAYEE_NAME%\r\n        Address: %PAYEE_ADDRESS%\r\n        Amount: %INVOICE_AMOUNT%\r\n        Currency: %CHECK_CURRENCY%\r\n\r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Confirmed Order', 'Example', '');;;\nINSERT INTO `email_template_translations` VALUES (61, 'ES', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nPosts: %QUANTITY% \r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Check / Money Order\r\n\r\nPlease send Check / Money Order to:\r\n\tName: %PAYEE_NAME%\r\n        Address: %PAYEE_ADDRESS%\r\n        Amount: %INVOICE_AMOUNT%\r\n        Currency: %CHECK_CURRENCY%\r\n\r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Confirmed Order', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (61, 'KO', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nPosts: %QUANTITY% \r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Check / Money Order\r\n\r\nPlease send Check / Money Order to:\r\n\tName: %PAYEE_NAME%\r\n        Address: %PAYEE_ADDRESS%\r\n        Amount: %INVOICE_AMOUNT%\r\n        Currency: %CHECK_CURRENCY%\r\n\r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Confirmed Order', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (61, 'PL', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nPosts: %QUANTITY% \r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Check / Money Order\r\n\r\nPlease send Check / Money Order to:\r\n\tName: %PAYEE_NAME%\r\n        Address: %PAYEE_ADDRESS%\r\n        Amount: %INVOICE_AMOUNT%\r\n        Currency: %CHECK_CURRENCY%\r\n\r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Confirmed Order', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (330, 'EN', 'A new order was placed on %SITE_NAME% by %USER%!\r\n\r\nTo manage, see here:\r\n%ADMIN_LINK%\r\n\r\n==================================\r\n\r\nOrder by: %LNAME%, %FNAME%\r\nUsername: %USER%\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nItem: %ITEM_NAME%\r\nOrder ID: #%INVOICE_CODE%\r\nPrice: %INVOICE_AMOUNT%\r\n', '*****@*****.**', 'A New order was placed on %SITE_NAME%', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (320, 'EN', 'A Resume resume was posted to / updated on %SITE_NAME%\r\n\r\nAdmin Link: \r\n%ADMIN_LINK%\r\n\r\n%RESUME_SUMMARY%\r\n\r\n\r\n', '*****@*****.**', 'A Resume was saved on %SITE_NAME%', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (310, 'EN', 'A new Post was posted to %SITE_NAME%\r\n\r\nAdmin Link: %ADMIN_LINK%\r\n\r\nTitle:\r\n%POST_TITLE%\r\nBy:\r\n%POSTED_BY%\r\nDate:\r\n%DATE%\r\nDescription:\r\n%POST_DESCRIPTION%\r\n', '*****@*****.**', 'A new Post was posted to %SITE_NAME%', 'Jamit Job Board', '');;;\nINSERT INTO `email_template_translations` VALUES (210, 'EN', 'Dear %FNAME% %LNAME%,\r\n\r\nWe would like to notify you that the following post had expired on %SITE_NAME%:\r\n\r\n%POST_DATE% - \"%POST_TITLE%\"\r\n\r\nStatistics:\r\n%VIEWS% views\r\n%APPS% Applications\r\n\r\nThis job post will no longer be visible in the job listings. You may log in to your employer''s account to view or re-post this job, or post a new job at any time.\r\n\r\nKind Regards,\r\n\r\n%SITE_NAME% team\r\n%SITE_URL%\r\n%SITE_CONTACT_EMAIL%', '*****@*****.**', 'Job post expired', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (220, 'EN', 'Dear %FNAME% %LNAME%,\r\n\r\nThank you for posting your job to %SITE_NAME%!\r\n\r\nWe have just approved the following job to be listed on our site:\r\n\r\n%POST_DATE% - \"%POST_TITLE%\"\r\n%POST_URL%\r\n\r\n\r\nThis job post will now become visible on the job listings. You may log in to your employer''s account to view or edit this job at any time.\r\n\r\nKind Regards,\r\n\r\n%SITE_NAME% team\r\n%SITE_URL%\r\n%SITE_CONTACT_EMAIL%', '*****@*****.**', 'Your job posting was Approved!', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (230, 'EN', 'Dear %FNAME% %LNAME%,\r\n\r\nThank you for posting your job to %SITE_NAME%.\r\n\r\nHowever, after reviewing your job post, we have decided to disapprove it.\r\n\r\nThe following job post was disapproved:\r\n\r\n%POST_DATE% - \"%POST_TITLE%\"\r\n\r\nReason for disapproval: %REASON%\r\n\r\nYou may log in to your employer''s account to edit this job so that we may review it again.\r\n\r\nKind Regards,\r\n\r\n%SITE_NAME% team\r\n%SITE_URL%\r\n%SITE_CONTACT_EMAIL%', '*****@*****.**', 'Your job posting was disapproved', 'Jamit Job Board', '');;;\nINSERT INTO `email_template_translations` VALUES (12, 'CN', '%APP_LETTER% \r\n\r\nThis email was sent from %SITE_NAME% %BASE_HTTP_PATH%\r\nOnline Resume Link: \r\n%RESUME_DB_LINK%\r\n', '', '', '', '');;;\nINSERT INTO `email_template_translations` VALUES (12, 'EN', '%APP_LETTER% \r\n\r\nThis email was sent from %SITE_NAME% %BASE_HTTP_PATH%\r\nOnline Resume Link: \r\n%RESUME_DB_LINK%\r\n', '', '', '', '');;;\nINSERT INTO `email_template_translations` VALUES (12, 'ES', '%APP_LETTER% \r\n\r\nThis email was sent from %SITE_NAME% %BASE_HTTP_PATH%\r\nOnline Resume Link: \r\n%RESUME_DB_LINK%\r\n', '', '', '', '');;;\nINSERT INTO `email_template_translations` VALUES (12, 'KO', '%APP_LETTER% \r\n\r\nThis email was sent from %SITE_NAME% %BASE_HTTP_PATH%\r\nOnline Resume Link: \r\n%RESUME_DB_LINK%\r\n', '', '', '', '');;;\nINSERT INTO `email_template_translations` VALUES (12, 'PL', '%APP_LETTER% \r\n\r\nThis email was sent from %SITE_NAME% %BASE_HTTP_PATH%\r\nOnline Resume Link: \r\n%RESUME_DB_LINK%\r\n', '', '', '', '');;;\nINSERT INTO `email_template_translations` VALUES (12, 'FR', '%APP_LETTER% \r\n\r\nThis email was sent from %SITE_NAME% %BASE_HTTP_PATH%\r\nOnline Resume Link: \r\n%RESUME_DB_LINK%\r\n', '', '', '', '');;;\nINSERT INTO `email_template_translations` VALUES (11, 'CN', '%MESSAGE%\r\n\r\n\r\n\r\n\r\n%SITE_URL%\r\n\r\nThis message was sent by somebody using the \r\nweb-email service provided by %SITE_NAME%.\r\n\r\nName: %EMPLOYER_NAME%\r\nSender''s User ID: %USER_ID%\r\nSender IP: %SENDER_IP%\r\n', '*****@*****.**', '', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (11, 'EN', '%MESSAGE%\r\n\r\n\r\n\r\n\r\n%SITE_URL%\r\n\r\nThis message was sent by somebody using the \r\nweb-email service provided by %SITE_NAME%.\r\n\r\nName: %EMPLOYER_NAME%\r\nSender''s User ID: %USER_ID%\r\nSender IP: %SENDER_IP%\r\n', '*****@*****.**', '', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (11, 'ES', '%MESSAGE%\r\n\r\n\r\n\r\n\r\n%SITE_URL%\r\n\r\nThis message was sent by somebody using the \r\nweb-email service provided by %SITE_NAME%.\r\n\r\nName: %EMPLOYER_NAME%\r\nSender''s User ID: %USER_ID%\r\nSender IP: %SENDER_IP%\r\n', '*****@*****.**', '', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (11, 'KO', '%MESSAGE%\r\n\r\n\r\n\r\n\r\n%SITE_URL%\r\n\r\nThis message was sent by somebody using the \r\nweb-email service provided by %SITE_NAME%.\r\n\r\nName: %EMPLOYER_NAME%\r\nSender''s User ID: %USER_ID%\r\nSender IP: %SENDER_IP%\r\n', '*****@*****.**', '', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (11, 'PL', '%MESSAGE%\r\n\r\n\r\n\r\n\r\n%SITE_URL%\r\n\r\nThis message was sent by somebody using the \r\nweb-email service provided by %SITE_NAME%.\r\n\r\nName: %EMPLOYER_NAME%\r\nSender''s User ID: %USER_ID%\r\nSender IP: %SENDER_IP%\r\n', '*****@*****.**', '', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (11, 'FR', '%MESSAGE%\r\n\r\n\r\n\r\n\r\n%SITE_URL%\r\n\r\nThis message was sent by somebody using the \r\nweb-email service provided by %SITE_NAME%.\r\n\r\nName: %EMPLOYER_NAME%\r\nSender''s User ID: %USER_ID%\r\nSender IP: %SENDER_IP%\r\n', '*****@*****.**', '', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (1, 'FR', 'Dear %FNAME% %LNAME%,\r\n\r\nYou have successfully signed up to %SITE_NAME%.\r\n\r\nIf you ever encounter any problems, bugs or just have \r\nany questions or suggestions, feel free to contact \r\nus: %SITE_CONTACT_EMAIL%;\r\n\r\n\r\nYou have registered with the following details - \r\n\r\nMember ID: %MEMBERID%\r\nPassword: %PASSWORD% \r\n\r\nhttp://www.example.com\r\n\r\n&#54620;&#44397;&#50612;', '*****@*****.**', 'Successfully Signed Up as %MEMBERID%', 'Example', '');;;\nINSERT INTO `email_template_translations` VALUES (2, 'FR', 'Dear %FNAME% %LNAME%,\r\n\r\nYou have successfully signed for a %SITE_NAME% Employer''s Account. \r\nYou have registered with the following details - \r\n\r\nMember ID: %MEMBERID%\r\nPassword: %PASSWORD% \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have any questions / problems. \r\n\r\nKind Regards,\r\n\r\nWebmaster.', '*****@*****.**', 'Successfully Signed Up as %MEMBERID%', 'Example', '');;;\nINSERT INTO `email_template_translations` VALUES (3, 'FR', 'Dear %FNAME% %LNAME%,\r\n\r\nYour %SITE_NAME% password has been reset!\r\n\r\nHere is your new password:\r\n\r\nMember ID: %MEMBERID%\r\nPassword: %PASSWORD%\r\n\r\nYou can sign into your account here: http://www.example.com/ \r\n\r\nKind Regards,\r\n\r\nWebmaster', '*****@*****.**', 'Reset Password', 'Example', '');;;\nINSERT INTO `email_template_translations` VALUES (4, 'FR', 'Dear %FNAME% %LNAME%,\r\n\r\nAn employer on %SITE_NAME% has requested for your contact details!\r\nHere are the details of the request:\r\n\r\nEmployer Name: %EMPLOYER_NAME%\r\nReply-to Email Address: %REPLY_TO%\r\n%MESSAGE%\r\n\r\nYou may reveal your contact details to this employer by simply visiting the following link: %PERMIT_LINK%\r\n\r\nYou may also contact the employer directly by replying to this email!\r\n\r\n\r\nBest Regards,\r\n\r\nTeam %SITE_NAME%', '*****@*****.**', 'Request for your contact details by an employer', 'Example', '');;;\nINSERT INTO `email_template_translations` VALUES (5, 'FR', 'Your %SITE_NAME% Daily Resume Alert!\r\n\r\nDear %FNAME% %LNAME%,\r\n\r\nYour Resume Alert on %SITE_NAME% has returned the following alert for you today:\r\n\r\n%RESUME_ALERTS% \r\n\r\n\r\n\r\n%SITE_NAME% Team %SITE_CONTACT_EMAIL%\r\n- If you want to View these resumes,or maintain your Daily Resume Alerts, \r\nplease visit this link:\r\n%EMPLOYER_LINK% \r\n', '*****@*****.**', 'Daily C.V. Alert', 'Example', '%DATE% : %RESUME_NAME% (%NATIONALITY%)');;;\nINSERT INTO `email_template_translations` VALUES (6, 'FR', '<h2><font face=''arial''>Your %SITE_NAME% Daily Resume Alert!</font></h2><p>\r\n<p><font size=''2'' face=''arial''>Dear %FNAME% %LNAME%,</font></p>\r\n<font face=''arial'' size=''2''>Your Resume Alert on %SITE_NAME% has returned the following alert for you today:</font><p>%RESUME_ALERTS%\r\n</p>\r\n<p>\r\n<p><font size=''2'' face=''arial''><b></b></font></p><p>\r\n<font face=\"arial\" size=\"2\">%SITE_NAME% Team %SITE_CONTACT_EMAIL%</font></p><p>\r\n<font face=\"arial\" size=\"2\">- If you want to View these resumes, or maintain your Daily Resume Alerts, please visit this link: %EMPLOYER_LINK%</a>\r\n</font></p>\r\n', '*****@*****.**', 'Resume Alert', 'Example', '<font face=''arial'' size=''2''>%DATE% - %RESUME_NAME% </font>');;;\nINSERT INTO `email_template_translations` VALUES (7, 'FR', 'Your SITE_NAME Daily Job Alert\r\n\r\nDear %FNAME% %LNAME%\r\n\r\nYour Daily Job Alert on %SITE_NAME% has returned the following alert for you today:\r\n\r\n%JOB_ALERTS% \r\n\r\n\r\n \r\n\r\n%SITE_NAME% Team test@example.com\r\n\r\n%SITE_CONTACT_EMAIL%\r\n- If you want to Cancel, or Edit your Daily Job Alerts, please visit this link: %CANDIDATE_LINK%\r\n', '*****@*****.**', 'Job Alert', 'Job Board', '%FORMATTED_DATE% : %TITLE% (%LOCATION%)\r\nLink: %BASE_HTTP_PATH%index.php?post_id=%POST_ID%');;;\nINSERT INTO `email_template_translations` VALUES (8, 'FR', '<img src=\"%SITE_LOGO_URL%\"><br><h2><font face=''arial''>Your %SITE_NAME% Daily Job Alert</font></h2>\r\n\r\n<p><font size=''2'' face=''arial''>Dear %FNAME% %LNAME%</font></p>\r\n\r\n<font face=''arial'' size=''2''>Your Daily Job Alert on %SITE_NAME% has returned the following alert for you today:</font><p></p>\r\n\r\n<p>\r\n%JOB_ALERTS%\r\n</p>\r\n<p>\r\n<b></b>\r\n</p>\r\n<p><font face=''arial'' size=''2''>%SITE_NAME% Team test@example.com<br>%SITE_CONTACT_EMAIL%</font></p>\r\n<p><font face=''arial'' size=''2''>- If you want to Cancel, or Edit your Daily Job Alerts, please visit this link: <a href=\"%CANDIDATE_LINK%\">%CANDIDATE_LINK%</a></font></p>', '*****@*****.**', 'Job Alert', 'Example', '<font face=''arial'' size=''2''>%FORMATTED_DATE% - <a href=''%BASE_HTTP_PATH%index.php?post_id=%POST_ID%''>%TITLE%</a></font> (%LOCATION%) <font face=''arial'' size=''1'' color=''#808080''>%DESCRIPTION%</font>');;;\nINSERT INTO `email_template_translations` VALUES (10, 'FR', 'Application Sent to: %POSTED_BY% (%EMPLOYER_EMAIL%)\r\n\r\nJob Post Titled:  \r\n - %JOB_TITLE%\r\nApplicant:\r\n - %APP_NAME% (%APP_EMAIL%)\r\nsubject:\r\n - %APP_SUBJECT%\r\nLetter:\r\n%APP_LETTER%\r\nAttachments:\r\n%APP_ATTACHMENT1%\r\n%APP_ATTACHMENT2%\r\n%APP_ATTACHMENT3%', '*****@*****.**', 'Application Confirmation', 'Example', '');;;\nINSERT INTO `email_template_translations` VALUES (60, 'FR', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nItem Name: %ITEM_NAME%\r\nPosts: %QUANTITY% \r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Bank Deposit\r\n\r\nPlease deposit %INVOICE_AMOUNT% to the following account:\r\n\tBank: %BANK_NAME%\r\n\tA/C Name: %AC_NAME%\r\n\tA/C Number: %AC_NUMBER%\r\n\r\nAfter making the deposit, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Order Confirmed', 'Hi Teacher', '');;;\nINSERT INTO `email_template_translations` VALUES (61, 'FR', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nItem Name: %ITEM_NAME%\r\nPosts: %QUANTITY% \r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Check / Money Order\r\n\r\nPlease send %INVOICE_AMOUNT% (%CHECK_CURRENCY%) to the following address:\r\n\tPayee Name: %PAYEE_NAME%\r\n\tAddress: \r\n        %PAYEE_ADDRESS%\r\n\t\r\n\r\nAfter mailing the check, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Order Confirmed', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (70, 'CN', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was successfully completed, thank you!\r\n\r\nWe have credited your order to your account, and you may now use your available balance to post your job advertisement(s) to %SITE_NAME%.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nItem Name: %ITEM_NAME%\r\nPosts: %QUANTITY% \r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Completed\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your balance and order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Posts'' -> ''Posting Credits''.\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Order completed!', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (70, 'EN', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was successfully completed, thank you!\r\n\r\nWe have credited your order to your account, and you may now use your available balance to post your job advertisement(s) to %SITE_NAME%.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nItem Name: %ITEM_NAME%\r\nPosts: %QUANTITY% \r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Completed\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your balance and order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Posts'' -> ''Posting Credits''.\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Order completed!', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (70, 'ES', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was successfully completed, thank you!\r\n\r\nWe have credited your order to your account, and you may now use your available balance to post your job advertisement(s) to %SITE_NAME%.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nItem Name: %ITEM_NAME%\r\nPosts: %QUANTITY% \r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Completed\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your balance and order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Posts'' -> ''Posting Credits''.\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Order completed!', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (70, 'KO', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was successfully completed, thank you!\r\n\r\nWe have credited your order to your account, and you may now use your available balance to post your job advertisement(s) to %SITE_NAME%.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nItem Name: %ITEM_NAME%\r\nPosts: %QUANTITY% \r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Completed\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your balance and order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Posts'' -> ''Posting Credits''.\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Order completed!', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (70, 'PL', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was successfully completed, thank you!\r\n\r\nWe have credited your order to your account, and you may now use your available balance to post your job advertisement(s) to %SITE_NAME%.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nItem Name: %ITEM_NAME%\r\nPosts: %QUANTITY% \r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Completed\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your balance and order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Posts'' -> ''Posting Credits''.\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Order completed!', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (70, 'FR', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was successfully completed, thank you!\r\n\r\nWe have credited your order to your account, and you may now use your available balance to post your job advertisement(s) to %SITE_NAME%.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nItem Name: %ITEM_NAME%\r\nPosts: %QUANTITY% \r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Completed\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your balance and order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Posts'' -> ''Posting Credits''.\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Order completed!', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (90, 'CN', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour subscription payment on %SITE_NAME% was successfully completed, thank you!\r\n\r\nWe have activated your subscription, and you may now log in to your account\r\nto access the resume database.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nSubscription Name: %ITEM_NAME%\r\nSubscription Months: %SUB_DURATION%\r\nStart Date: %SUB_START%\r\nEnd Date: %SUB_END%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Active\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your subscription order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Resumes'' -> ''Subscriptions''.\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Subscription now active!', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (90, 'EN', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour subscription payment on %SITE_NAME% was successfully completed, thank you!\r\n\r\nWe have activated your subscription, and you may now log in to your account\r\nto access the resume database.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nSubscription Name: %ITEM_NAME%\r\nSubscription Months: %SUB_DURATION%\r\nStart Date: %SUB_START%\r\nEnd Date: %SUB_END%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Active\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your subscription order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Resumes'' -> ''Subscriptions''.\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Subscription now active!', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (90, 'ES', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour subscription payment on %SITE_NAME% was successfully completed, thank you!\r\n\r\nWe have activated your subscription, and you may now log in to your account\r\nto access the resume database.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nSubscription Name: %ITEM_NAME%\r\nSubscription Months: %SUB_DURATION%\r\nStart Date: %SUB_START%\r\nEnd Date: %SUB_END%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Active\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your subscription order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Resumes'' -> ''Subscriptions''.\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Subscription now active!', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (90, 'KO', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour subscription payment on %SITE_NAME% was successfully completed, thank you!\r\n\r\nWe have activated your subscription, and you may now log in to your account\r\nto access the resume database.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nSubscription Name: %ITEM_NAME%\r\nSubscription Months: %SUB_DURATION%\r\nStart Date: %SUB_START%\r\nEnd Date: %SUB_END%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Active\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your subscription order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Resumes'' -> ''Subscriptions''.\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Subscription now active!', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (90, 'PL', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour subscription payment on %SITE_NAME% was successfully completed, thank you!\r\n\r\nWe have activated your subscription, and you may now log in to your account\r\nto access the resume database.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nSubscription Name: %ITEM_NAME%\r\nSubscription Months: %SUB_DURATION%\r\nStart Date: %SUB_START%\r\nEnd Date: %SUB_END%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Active\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your subscription order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Resumes'' -> ''Subscriptions''.\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Subscription now active!', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (90, 'FR', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour subscription payment on %SITE_NAME% was successfully completed, thank you!\r\n\r\nWe have activated your subscription, and you may now log in to your account\r\nto access the resume database.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nSubscription Name: %ITEM_NAME%\r\nSubscription Months: %SUB_DURATION%\r\nStart Date: %SUB_START%\r\nEnd Date: %SUB_END%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Active\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your subscription order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Resumes'' -> ''Subscriptions''.\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Subscription now active!', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (80, 'CN', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour subscription on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nSubscription Name: %ITEM_NAME%\r\nSubscription Months: %SUB_DURATION%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Active\r\nPayment Method: Bank\r\n\r\nPlease deposit %INVOICE_AMOUNT% to the following account:\r\n\tBank: %BANK_NAME%\r\n\tA/C Name: %AC_NAME%\r\n\tA/C Number: %AC_NUMBER%\r\n\r\nAfter making the deposit, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n', '*****@*****.**', 'Subscription order confirmed', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (80, 'EN', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour subscription on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nSubscription Name: %ITEM_NAME%\r\nSubscription Months: %SUB_DURATION%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Active\r\nPayment Method: Bank\r\n\r\nPlease deposit %INVOICE_AMOUNT% to the following account:\r\n\tBank: %BANK_NAME%\r\n\tA/C Name: %AC_NAME%\r\n\tA/C Number: %AC_NUMBER%\r\n\r\nAfter making the deposit, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n', '*****@*****.**', 'Subscription order confirmed', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (80, 'ES', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour subscription on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nSubscription Name: %ITEM_NAME%\r\nSubscription Months: %SUB_DURATION%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Active\r\nPayment Method: Bank\r\n\r\nPlease deposit %INVOICE_AMOUNT% to the following account:\r\n\tBank: %BANK_NAME%\r\n\tA/C Name: %AC_NAME%\r\n\tA/C Number: %AC_NUMBER%\r\n\r\nAfter making the deposit, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n', '*****@*****.**', 'Subscription order confirmed', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (80, 'KO', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour subscription on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nSubscription Name: %ITEM_NAME%\r\nSubscription Months: %SUB_DURATION%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Active\r\nPayment Method: Bank\r\n\r\nPlease deposit %INVOICE_AMOUNT% to the following account:\r\n\tBank: %BANK_NAME%\r\n\tA/C Name: %AC_NAME%\r\n\tA/C Number: %AC_NUMBER%\r\n\r\nAfter making the deposit, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n', '*****@*****.**', 'Subscription order confirmed', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (80, 'PL', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour subscription on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nSubscription Name: %ITEM_NAME%\r\nSubscription Months: %SUB_DURATION%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Active\r\nPayment Method: Bank\r\n\r\nPlease deposit %INVOICE_AMOUNT% to the following account:\r\n\tBank: %BANK_NAME%\r\n\tA/C Name: %AC_NAME%\r\n\tA/C Number: %AC_NUMBER%\r\n\r\nAfter making the deposit, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n', '*****@*****.**', 'Subscription order confirmed', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (80, 'FR', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour subscription on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nSubscription Name: %ITEM_NAME%\r\nSubscription Months: %SUB_DURATION%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Active\r\nPayment Method: Bank\r\n\r\nPlease deposit %INVOICE_AMOUNT% to the following account:\r\n\tBank: %BANK_NAME%\r\n\tA/C Name: %AC_NAME%\r\n\tA/C Number: %AC_NUMBER%\r\n\r\nAfter making the deposit, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n', '*****@*****.**', 'Subscription order confirmed', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (81, 'CN', 'Dear %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nSubscription Name: %ITEM_NAME%\r\nSubscription Months: %SUB_DURATION%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Check / Money Order\r\n\r\nPlease send %INVOICE_AMOUNT% (%CHECK_CURRENCY%) to the following address:\r\n\tPayee Name: %PAYEE_NAME%\r\n\tAddress: \r\n        %PAYEE_ADDRESS%\r\n\t\r\n\r\nAfter mailing the check, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email', '*****@*****.**', 'Subscription order confirmed', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (81, 'EN', 'Dear %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nSubscription Name: %ITEM_NAME%\r\nSubscription Months: %SUB_DURATION%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Check / Money Order\r\n\r\nPlease send %INVOICE_AMOUNT% (%CHECK_CURRENCY%) to the following address:\r\n\tPayee Name: %PAYEE_NAME%\r\n\tAddress: \r\n        %PAYEE_ADDRESS%\r\n\t\r\n\r\nAfter mailing the check, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email', '*****@*****.**', 'Subscription order confirmed', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (81, 'ES', 'Dear %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nSubscription Name: %ITEM_NAME%\r\nSubscription Months: %SUB_DURATION%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Check / Money Order\r\n\r\nPlease send %INVOICE_AMOUNT% (%CHECK_CURRENCY%) to the following address:\r\n\tPayee Name: %PAYEE_NAME%\r\n\tAddress: \r\n        %PAYEE_ADDRESS%\r\n\t\r\n\r\nAfter mailing the check, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email', '*****@*****.**', 'Subscription order confirmed', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (81, 'KO', 'Dear %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nSubscription Name: %ITEM_NAME%\r\nSubscription Months: %SUB_DURATION%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Check / Money Order\r\n\r\nPlease send %INVOICE_AMOUNT% (%CHECK_CURRENCY%) to the following address:\r\n\tPayee Name: %PAYEE_NAME%\r\n\tAddress: \r\n        %PAYEE_ADDRESS%\r\n\t\r\n\r\nAfter mailing the check, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email', '*****@*****.**', 'Subscription order confirmed', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (81, 'PL', 'Dear %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nSubscription Name: %ITEM_NAME%\r\nSubscription Months: %SUB_DURATION%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Check / Money Order\r\n\r\nPlease send %INVOICE_AMOUNT% (%CHECK_CURRENCY%) to the following address:\r\n\tPayee Name: %PAYEE_NAME%\r\n\tAddress: \r\n        %PAYEE_ADDRESS%\r\n\t\r\n\r\nAfter mailing the check, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email', '*****@*****.**', 'Subscription order confirmed', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (81, 'FR', 'Dear %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nSubscription Name: %ITEM_NAME%\r\nSubscription Months: %SUB_DURATION%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Check / Money Order\r\n\r\nPlease send %INVOICE_AMOUNT% (%CHECK_CURRENCY%) to the following address:\r\n\tPayee Name: %PAYEE_NAME%\r\n\tAddress: \r\n        %PAYEE_ADDRESS%\r\n\t\r\n\r\nAfter mailing the check, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email', '*****@*****.**', 'Subscription order confirmed', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (120, 'CN', 'Dear  %LNAME%, %FNAME%\r\n\r\nThis email is sent to notify you that your membership to %SITE_NAME% has expired.\r\n\r\nWe thank you for your patronage during your membership time, and we hope\r\nthat we can continue to serve you as our member in the future.\r\n\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nMembership Name: %ITEM_NAME%\r\nMembership Months: %MEM_DURATION%\r\nStart Date: %MEM_START%\r\nEnd Date: %MEM_END%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Expired\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your membership order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Account'' -> ''Membership Details''.\r\n\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Membership Expired', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (120, 'EN', 'Dear  %LNAME%, %FNAME%\r\n\r\nThis email is sent to notify you that your membership to %SITE_NAME% has expired.\r\n\r\nWe thank you for your patronage during your membership time, and we hope\r\nthat we can continue to serve you as our member in the future.\r\n\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nMembership Name: %ITEM_NAME%\r\nMembership Months: %MEM_DURATION%\r\nStart Date: %MEM_START%\r\nEnd Date: %MEM_END%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Expired\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your membership order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Account'' -> ''Membership Details''.\r\n\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Membership Expired', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (120, 'ES', 'Dear  %LNAME%, %FNAME%\r\n\r\nThis email is sent to notify you that your membership to %SITE_NAME% has expired.\r\n\r\nWe thank you for your patronage during your membership time, and we hope\r\nthat we can continue to serve you as our member in the future.\r\n\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nMembership Name: %ITEM_NAME%\r\nMembership Months: %MEM_DURATION%\r\nStart Date: %MEM_START%\r\nEnd Date: %MEM_END%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Expired\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your membership order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Account'' -> ''Membership Details''.\r\n\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Membership Expired', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (120, 'KO', 'Dear  %LNAME%, %FNAME%\r\n\r\nThis email is sent to notify you that your membership to %SITE_NAME% has expired.\r\n\r\nWe thank you for your patronage during your membership time, and we hope\r\nthat we can continue to serve you as our member in the future.\r\n\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nMembership Name: %ITEM_NAME%\r\nMembership Months: %MEM_DURATION%\r\nStart Date: %MEM_START%\r\nEnd Date: %MEM_END%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Expired\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your membership order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Account'' -> ''Membership Details''.\r\n\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Membership Expired', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (120, 'PL', 'Dear  %LNAME%, %FNAME%\r\n\r\nThis email is sent to notify you that your membership to %SITE_NAME% has expired.\r\n\r\nWe thank you for your patronage during your membership time, and we hope\r\nthat we can continue to serve you as our member in the future.\r\n\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nMembership Name: %ITEM_NAME%\r\nMembership Months: %MEM_DURATION%\r\nStart Date: %MEM_START%\r\nEnd Date: %MEM_END%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Expired\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your membership order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Account'' -> ''Membership Details''.\r\n\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Membership Expired', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (120, 'FR', 'Dear  %LNAME%, %FNAME%\r\n\r\nThis email is sent to notify you that your membership to %SITE_NAME% has expired.\r\n\r\nWe thank you for your patronage during your membership time, and we hope\r\nthat we can continue to serve you as our member in the future.\r\n\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nMembership Name: %ITEM_NAME%\r\nMembership Months: %MEM_DURATION%\r\nStart Date: %MEM_START%\r\nEnd Date: %MEM_END%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Expired\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your membership order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Account'' -> ''Membership Details''.\r\n\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Membership Expired', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (100, 'CN', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour membership on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nMembership Item: %ITEM_NAME%\r\nMembership Months: %MEM_DURATION%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Bank\r\n\r\nPlease deposit %INVOICE_AMOUNT% to the following account:\r\n\tBank: %BANK_NAME%\r\n\tA/C Name: %AC_NAME%\r\n\tA/C Number: %AC_NUMBER%\r\n\r\nAfter making the deposit, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n', '*****@*****.**', 'Membership Order Confirmed', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (100, 'EN', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour membership on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nMembership Item: %ITEM_NAME%\r\nMembership Months: %MEM_DURATION%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Bank\r\n\r\nPlease deposit %INVOICE_AMOUNT% to the following account:\r\n\tBank: %BANK_NAME%\r\n\tA/C Name: %AC_NAME%\r\n\tA/C Number: %AC_NUMBER%\r\n\r\nAfter making the deposit, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n', '*****@*****.**', 'Membership Order Confirmed', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (100, 'ES', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour membership on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nMembership Item: %ITEM_NAME%\r\nMembership Months: %MEM_DURATION%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Bank\r\n\r\nPlease deposit %INVOICE_AMOUNT% to the following account:\r\n\tBank: %BANK_NAME%\r\n\tA/C Name: %AC_NAME%\r\n\tA/C Number: %AC_NUMBER%\r\n\r\nAfter making the deposit, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n', '*****@*****.**', 'Membership Order Confirmed', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (100, 'KO', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour membership on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nMembership Item: %ITEM_NAME%\r\nMembership Months: %MEM_DURATION%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Bank\r\n\r\nPlease deposit %INVOICE_AMOUNT% to the following account:\r\n\tBank: %BANK_NAME%\r\n\tA/C Name: %AC_NAME%\r\n\tA/C Number: %AC_NUMBER%\r\n\r\nAfter making the deposit, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n', '*****@*****.**', 'Membership Order Confirmed', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (100, 'PL', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour membership on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nMembership Item: %ITEM_NAME%\r\nMembership Months: %MEM_DURATION%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Bank\r\n\r\nPlease deposit %INVOICE_AMOUNT% to the following account:\r\n\tBank: %BANK_NAME%\r\n\tA/C Name: %AC_NAME%\r\n\tA/C Number: %AC_NUMBER%\r\n\r\nAfter making the deposit, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n', '*****@*****.**', 'Membership Order Confirmed', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (100, 'FR', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour membership on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nMembership Item: %ITEM_NAME%\r\nMembership Months: %MEM_DURATION%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Bank\r\n\r\nPlease deposit %INVOICE_AMOUNT% to the following account:\r\n\tBank: %BANK_NAME%\r\n\tA/C Name: %AC_NAME%\r\n\tA/C Number: %AC_NUMBER%\r\n\r\nAfter making the deposit, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n', '*****@*****.**', 'Membership Order Confirmed', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (101, 'CN', 'Dear %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nMembership Name: %ITEM_NAME%\r\nMembership Months: %MEM_DURATION%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Check / Money Order\r\n\r\nPlease send %INVOICE_AMOUNT% (%CHECK_CURRENCY%) to the following address:\r\n\tPayee Name: %PAYEE_NAME%\r\n\tAddress: \r\n        %PAYEE_ADDRESS%\r\n\t\r\n\r\nAfter mailing the check, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email', '*****@*****.**', 'Membership Order Confirmed', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (101, 'EN', 'Dear %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nMembership Name: %ITEM_NAME%\r\nMembership Months: %MEM_DURATION%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Check / Money Order\r\n\r\nPlease send %INVOICE_AMOUNT% (%CHECK_CURRENCY%) to the following address:\r\n\tPayee Name: %PAYEE_NAME%\r\n\tAddress: \r\n        %PAYEE_ADDRESS%\r\n\t\r\n\r\nAfter mailing the check, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email', '*****@*****.**', 'Membership Order Confirmed', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (101, 'ES', 'Dear %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nMembership Name: %ITEM_NAME%\r\nMembership Months: %MEM_DURATION%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Check / Money Order\r\n\r\nPlease send %INVOICE_AMOUNT% (%CHECK_CURRENCY%) to the following address:\r\n\tPayee Name: %PAYEE_NAME%\r\n\tAddress: \r\n        %PAYEE_ADDRESS%\r\n\t\r\n\r\nAfter mailing the check, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email', '*****@*****.**', 'Membership Order Confirmed', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (101, 'KO', 'Dear %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nMembership Name: %ITEM_NAME%\r\nMembership Months: %MEM_DURATION%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Check / Money Order\r\n\r\nPlease send %INVOICE_AMOUNT% (%CHECK_CURRENCY%) to the following address:\r\n\tPayee Name: %PAYEE_NAME%\r\n\tAddress: \r\n        %PAYEE_ADDRESS%\r\n\t\r\n\r\nAfter mailing the check, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email', '*****@*****.**', 'Membership Order Confirmed', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (101, 'PL', 'Dear %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nMembership Name: %ITEM_NAME%\r\nMembership Months: %MEM_DURATION%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Check / Money Order\r\n\r\nPlease send %INVOICE_AMOUNT% (%CHECK_CURRENCY%) to the following address:\r\n\tPayee Name: %PAYEE_NAME%\r\n\tAddress: \r\n        %PAYEE_ADDRESS%\r\n\t\r\n\r\nAfter mailing the check, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email', '*****@*****.**', 'Membership Order Confirmed', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (101, 'FR', 'Dear %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nMembership Name: %ITEM_NAME%\r\nMembership Months: %MEM_DURATION%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Check / Money Order\r\n\r\nPlease send %INVOICE_AMOUNT% (%CHECK_CURRENCY%) to the following address:\r\n\tPayee Name: %PAYEE_NAME%\r\n\tAddress: \r\n        %PAYEE_ADDRESS%\r\n\t\r\n\r\nAfter mailing the check, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email', '*****@*****.**', 'Membership Order Confirmed', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (110, 'CN', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour membership payment on %SITE_NAME% was successfully completed, thank you!\r\n\r\nWe have activated your membership, and we welcome you as our new member. \r\nHere are your membership payment details:\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nMembership Name: %ITEM_NAME%\r\nMembership Months: %MEM_DURATION%\r\nStart Date: %MEM_START%\r\nEnd Date: %MEM_END%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Active\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your membership order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Account'' -> ''Membership Details''.\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Membership Activated', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (110, 'EN', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour membership payment on %SITE_NAME% was successfully completed, thank you!\r\n\r\nWe have activated your membership, and we welcome you as our new member. \r\nHere are your membership payment details:\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nMembership Name: %ITEM_NAME%\r\nMembership Months: %MEM_DURATION%\r\nStart Date: %MEM_START%\r\nEnd Date: %MEM_END%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Active\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your membership order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Account'' -> ''Membership Details''.\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Membership Activated', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (110, 'ES', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour membership payment on %SITE_NAME% was successfully completed, thank you!\r\n\r\nWe have activated your membership, and we welcome you as our new member. \r\nHere are your membership payment details:\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nMembership Name: %ITEM_NAME%\r\nMembership Months: %MEM_DURATION%\r\nStart Date: %MEM_START%\r\nEnd Date: %MEM_END%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Active\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your membership order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Account'' -> ''Membership Details''.\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Membership Activated', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (110, 'KO', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour membership payment on %SITE_NAME% was successfully completed, thank you!\r\n\r\nWe have activated your membership, and we welcome you as our new member. \r\nHere are your membership payment details:\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nMembership Name: %ITEM_NAME%\r\nMembership Months: %MEM_DURATION%\r\nStart Date: %MEM_START%\r\nEnd Date: %MEM_END%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Active\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your membership order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Account'' -> ''Membership Details''.\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Membership Activated', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (110, 'PL', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour membership payment on %SITE_NAME% was successfully completed, thank you!\r\n\r\nWe have activated your membership, and we welcome you as our new member. \r\nHere are your membership payment details:\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nMembership Name: %ITEM_NAME%\r\nMembership Months: %MEM_DURATION%\r\nStart Date: %MEM_START%\r\nEnd Date: %MEM_END%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Active\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your membership order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Account'' -> ''Membership Details''.\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Membership Activated', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (110, 'FR', 'Dear  %LNAME%, %FNAME%\r\n\r\nYour membership payment on %SITE_NAME% was successfully completed, thank you!\r\n\r\nWe have activated your membership, and we welcome you as our new member. \r\nHere are your membership payment details:\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nMembership Name: %ITEM_NAME%\r\nMembership Months: %MEM_DURATION%\r\nStart Date: %MEM_START%\r\nEnd Date: %MEM_END%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Active\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your membership order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Account'' -> ''Membership Details''.\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Membership Activated', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (130, 'CN', 'Dear  %LNAME%, %FNAME%\r\n\r\nThis email is sent to notify you that your subscription to %SITE_NAME% has expired.\r\n\r\nWe thank you for your patronage during your subscription time, and we hope\r\nthat we can continue to serve you as our subscriber in the future.\r\n\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nSubscription Name: %ITEM_NAME%\r\nSubscription Months: %SUB_DURATION%\r\nStart Date: %SUB_START%\r\nEnd Date: %SUB_END%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Expired\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your subscription order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Account'' -> ''Subscription''.\r\n\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Subscription Expired', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (130, 'EN', 'Dear  %LNAME%, %FNAME%\r\n\r\nThis email is sent to notify you that your subscription to %SITE_NAME% has expired.\r\n\r\nWe thank you for your patronage during your subscription time, and we hope\r\nthat we can continue to serve you as our subscriber in the future.\r\n\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nSubscription Name: %ITEM_NAME%\r\nSubscription Months: %SUB_DURATION%\r\nStart Date: %SUB_START%\r\nEnd Date: %SUB_END%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Expired\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your subscription order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Account'' -> ''Subscription''.\r\n\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Subscription Expired', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (130, 'ES', 'Dear  %LNAME%, %FNAME%\r\n\r\nThis email is sent to notify you that your subscription to %SITE_NAME% has expired.\r\n\r\nWe thank you for your patronage during your subscription time, and we hope\r\nthat we can continue to serve you as our subscriber in the future.\r\n\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nSubscription Name: %ITEM_NAME%\r\nSubscription Months: %SUB_DURATION%\r\nStart Date: %SUB_START%\r\nEnd Date: %SUB_END%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Expired\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your subscription order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Account'' -> ''Subscription''.\r\n\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Subscription Expired', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (130, 'KO', 'Dear  %LNAME%, %FNAME%\r\n\r\nThis email is sent to notify you that your subscription to %SITE_NAME% has expired.\r\n\r\nWe thank you for your patronage during your subscription time, and we hope\r\nthat we can continue to serve you as our subscriber in the future.\r\n\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nSubscription Name: %ITEM_NAME%\r\nSubscription Months: %SUB_DURATION%\r\nStart Date: %SUB_START%\r\nEnd Date: %SUB_END%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Expired\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your subscription order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Account'' -> ''Subscription''.\r\n\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Subscription Expired', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (130, 'PL', 'Dear  %LNAME%, %FNAME%\r\n\r\nThis email is sent to notify you that your subscription to %SITE_NAME% has expired.\r\n\r\nWe thank you for your patronage during your subscription time, and we hope\r\nthat we can continue to serve you as our subscriber in the future.\r\n\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nSubscription Name: %ITEM_NAME%\r\nSubscription Months: %SUB_DURATION%\r\nStart Date: %SUB_START%\r\nEnd Date: %SUB_END%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Expired\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your subscription order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Account'' -> ''Subscription''.\r\n\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Subscription Expired', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (130, 'FR', 'Dear  %LNAME%, %FNAME%\r\n\r\nThis email is sent to notify you that your subscription to %SITE_NAME% has expired.\r\n\r\nWe thank you for your patronage during your subscription time, and we hope\r\nthat we can continue to serve you as our subscriber in the future.\r\n\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nSubscription Name: %ITEM_NAME%\r\nSubscription Months: %SUB_DURATION%\r\nStart Date: %SUB_START%\r\nEnd Date: %SUB_END%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Expired\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your subscription order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Account'' -> ''Subscription''.\r\n\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Subscription Expired', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (330, 'CN', 'A new order was placed on %SITE_NAME% by %USER%!\r\n\r\nTo manage, see here:\r\n%ADMIN_LINK%\r\n\r\n==================================\r\n\r\nOrder by: %LNAME%, %FNAME%\r\nUsername: %USER%\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nItem: %ITEM_NAME%\r\nOrder ID: #%INVOICE_CODE%\r\nPrice: %INVOICE_AMOUNT%\r\n', '*****@*****.**', 'A New order was placed on %SITE_NAME%', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (330, 'ES', 'A new order was placed on %SITE_NAME% by %USER%!\r\n\r\nTo manage, see here:\r\n%ADMIN_LINK%\r\n\r\n==================================\r\n\r\nOrder by: %LNAME%, %FNAME%\r\nUsername: %USER%\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nItem: %ITEM_NAME%\r\nOrder ID: #%INVOICE_CODE%\r\nPrice: %INVOICE_AMOUNT%\r\n', '*****@*****.**', 'A New order was placed on %SITE_NAME%', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (330, 'KO', 'A new order was placed on %SITE_NAME% by %USER%!\r\n\r\nTo manage, see here:\r\n%ADMIN_LINK%\r\n\r\n==================================\r\n\r\nOrder by: %LNAME%, %FNAME%\r\nUsername: %USER%\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nItem: %ITEM_NAME%\r\nOrder ID: #%INVOICE_CODE%\r\nPrice: %INVOICE_AMOUNT%\r\n', '*****@*****.**', 'A New order was placed on %SITE_NAME%', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (330, 'PL', 'A new order was placed on %SITE_NAME% by %USER%!\r\n\r\nTo manage, see here:\r\n%ADMIN_LINK%\r\n\r\n==================================\r\n\r\nOrder by: %LNAME%, %FNAME%\r\nUsername: %USER%\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nItem: %ITEM_NAME%\r\nOrder ID: #%INVOICE_CODE%\r\nPrice: %INVOICE_AMOUNT%\r\n', '*****@*****.**', 'A New order was placed on %SITE_NAME%', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (330, 'FR', 'A new order was placed on %SITE_NAME% by %USER%!\r\n\r\nTo manage, see here:\r\n%ADMIN_LINK%\r\n\r\n==================================\r\n\r\nOrder by: %LNAME%, %FNAME%\r\nUsername: %USER%\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nItem: %ITEM_NAME%\r\nOrder ID: #%INVOICE_CODE%\r\nPrice: %INVOICE_AMOUNT%\r\n', '*****@*****.**', 'A New order was placed on %SITE_NAME%', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (320, 'CN', 'A Resume resume was posted to / updated on %SITE_NAME%\r\n\r\nAdmin Link: \r\n%ADMIN_LINK%\r\n\r\n%RESUME_SUMMARY%\r\n\r\n\r\n', '*****@*****.**', 'A Resume was saved on %SITE_NAME%', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (320, 'ES', 'A Resume resume was posted to / updated on %SITE_NAME%\r\n\r\nAdmin Link: \r\n%ADMIN_LINK%\r\n\r\n%RESUME_SUMMARY%\r\n\r\n\r\n', '*****@*****.**', 'A Resume was saved on %SITE_NAME%', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (320, 'KO', 'A Resume resume was posted to / updated on %SITE_NAME%\r\n\r\nAdmin Link: \r\n%ADMIN_LINK%\r\n\r\n%RESUME_SUMMARY%\r\n\r\n\r\n', '*****@*****.**', 'A Resume was saved on %SITE_NAME%', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (320, 'PL', 'A Resume resume was posted to / updated on %SITE_NAME%\r\n\r\nAdmin Link: \r\n%ADMIN_LINK%\r\n\r\n%RESUME_SUMMARY%\r\n\r\n\r\n', '*****@*****.**', 'A Resume was saved on %SITE_NAME%', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (320, 'FR', 'A Resume resume was posted to / updated on %SITE_NAME%\r\n\r\nAdmin Link: \r\n%ADMIN_LINK%\r\n\r\n%RESUME_SUMMARY%\r\n\r\n\r\n', '*****@*****.**', 'A Resume was saved on %SITE_NAME%', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (310, 'CN', 'A new Post was posted to %SITE_NAME%\r\n\r\nAdmin Link: %ADMIN_LINK%\r\n\r\nTitle:\r\n%POST_TITLE%\r\nBy:\r\n%POSTED_BY%\r\nDate:\r\n%DATE%\r\nDescription:\r\n%POST_DESCRIPTION%\r\n', '*****@*****.**', 'A new Post was posted to %SITE_NAME%', 'Jamit Job Board', '');;;\nINSERT INTO `email_template_translations` VALUES (310, 'ES', 'A new Post was posted to %SITE_NAME%\r\n\r\nAdmin Link: %ADMIN_LINK%\r\n\r\nTitle:\r\n%POST_TITLE%\r\nBy:\r\n%POSTED_BY%\r\nDate:\r\n%DATE%\r\nDescription:\r\n%POST_DESCRIPTION%\r\n', '*****@*****.**', 'A new Post was posted to %SITE_NAME%', 'Jamit Job Board', '');;;\nINSERT INTO `email_template_translations` VALUES (310, 'KO', 'A new Post was posted to %SITE_NAME%\r\n\r\nAdmin Link: %ADMIN_LINK%\r\n\r\nTitle:\r\n%POST_TITLE%\r\nBy:\r\n%POSTED_BY%\r\nDate:\r\n%DATE%\r\nDescription:\r\n%POST_DESCRIPTION%\r\n', '*****@*****.**', 'A new Post was posted to %SITE_NAME%', 'Jamit Job Board', '');;;\nINSERT INTO `email_template_translations` VALUES (310, 'PL', 'A new Post was posted to %SITE_NAME%\r\n\r\nAdmin Link: %ADMIN_LINK%\r\n\r\nTitle:\r\n%POST_TITLE%\r\nBy:\r\n%POSTED_BY%\r\nDate:\r\n%DATE%\r\nDescription:\r\n%POST_DESCRIPTION%\r\n', '*****@*****.**', 'A new Post was posted to %SITE_NAME%', 'Jamit Job Board', '');;;\nINSERT INTO `email_template_translations` VALUES (310, 'FR', 'A new Post was posted to %SITE_NAME%\r\n\r\nAdmin Link: %ADMIN_LINK%\r\n\r\nTitle:\r\n%POST_TITLE%\r\nBy:\r\n%POSTED_BY%\r\nDate:\r\n%DATE%\r\nDescription:\r\n%POST_DESCRIPTION%\r\n', '*****@*****.**', 'A new Post was posted to %SITE_NAME%', 'Jamit Job Board', '');;;\nINSERT INTO `email_template_translations` VALUES (210, 'CN', 'Dear %FNAME% %LNAME%,\r\n\r\nWe would like to notify you that the following post had expired on %SITE_NAME%:\r\n\r\n%POST_DATE% - \"%POST_TITLE%\"\r\n\r\nStatistics:\r\n%VIEWS% views\r\n%APPS% Applications\r\n\r\nThis job post will no longer be visible in the job listings. You may log in to your employer''s account to view or re-post this job, or post a new job at any time.\r\n\r\nKind Regards,\r\n\r\n%SITE_NAME% team\r\n%SITE_URL%\r\n%SITE_CONTACT_EMAIL%', '*****@*****.**', 'Job post expired', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (210, 'ES', 'Dear %FNAME% %LNAME%,\r\n\r\nWe would like to notify you that the following post had expired on %SITE_NAME%:\r\n\r\n%POST_DATE% - \"%POST_TITLE%\"\r\n\r\nStatistics:\r\n%VIEWS% views\r\n%APPS% Applications\r\n\r\nThis job post will no longer be visible in the job listings. You may log in to your employer''s account to view or re-post this job, or post a new job at any time.\r\n\r\nKind Regards,\r\n\r\n%SITE_NAME% team\r\n%SITE_URL%\r\n%SITE_CONTACT_EMAIL%', '*****@*****.**', 'Job post expired', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (210, 'KO', 'Dear %FNAME% %LNAME%,\r\n\r\nWe would like to notify you that the following post had expired on %SITE_NAME%:\r\n\r\n%POST_DATE% - \"%POST_TITLE%\"\r\n\r\nStatistics:\r\n%VIEWS% views\r\n%APPS% Applications\r\n\r\nThis job post will no longer be visible in the job listings. You may log in to your employer''s account to view or re-post this job, or post a new job at any time.\r\n\r\nKind Regards,\r\n\r\n%SITE_NAME% team\r\n%SITE_URL%\r\n%SITE_CONTACT_EMAIL%', '*****@*****.**', 'Job post expired', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (210, 'PL', 'Dear %FNAME% %LNAME%,\r\n\r\nWe would like to notify you that the following post had expired on %SITE_NAME%:\r\n\r\n%POST_DATE% - \"%POST_TITLE%\"\r\n\r\nStatistics:\r\n%VIEWS% views\r\n%APPS% Applications\r\n\r\nThis job post will no longer be visible in the job listings. You may log in to your employer''s account to view or re-post this job, or post a new job at any time.\r\n\r\nKind Regards,\r\n\r\n%SITE_NAME% team\r\n%SITE_URL%\r\n%SITE_CONTACT_EMAIL%', '*****@*****.**', 'Job post expired', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (210, 'FR', 'Dear %FNAME% %LNAME%,\r\n\r\nWe would like to notify you that the following post had expired on %SITE_NAME%:\r\n\r\n%POST_DATE% - \"%POST_TITLE%\"\r\n\r\nStatistics:\r\n%VIEWS% views\r\n%APPS% Applications\r\n\r\nThis job post will no longer be visible in the job listings. You may log in to your employer''s account to view or re-post this job, or post a new job at any time.\r\n\r\nKind Regards,\r\n\r\n%SITE_NAME% team\r\n%SITE_URL%\r\n%SITE_CONTACT_EMAIL%', '*****@*****.**', 'Job post expired', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (220, 'CN', 'Dear %FNAME% %LNAME%,\r\n\r\nThank you for posting your job to %SITE_NAME%!\r\n\r\nWe have just approved the following job to be listed on our site:\r\n\r\n%POST_DATE% - \"%POST_TITLE%\"\r\n%POST_URL%\r\n\r\n\r\nThis job post will now become visible on the job listings. You may log in to your employer''s account to view or edit this job at any time.\r\n\r\nKind Regards,\r\n\r\n%SITE_NAME% team\r\n%SITE_URL%\r\n%SITE_CONTACT_EMAIL%', '*****@*****.**', 'Your job posting was Approved!', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (220, 'ES', 'Dear %FNAME% %LNAME%,\r\n\r\nThank you for posting your job to %SITE_NAME%!\r\n\r\nWe have just approved the following job to be listed on our site:\r\n\r\n%POST_DATE% - \"%POST_TITLE%\"\r\n%POST_URL%\r\n\r\n\r\nThis job post will now become visible on the job listings. You may log in to your employer''s account to view or edit this job at any time.\r\n\r\nKind Regards,\r\n\r\n%SITE_NAME% team\r\n%SITE_URL%\r\n%SITE_CONTACT_EMAIL%', '*****@*****.**', 'Your job posting was Approved!', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (220, 'KO', 'Dear %FNAME% %LNAME%,\r\n\r\nThank you for posting your job to %SITE_NAME%!\r\n\r\nWe have just approved the following job to be listed on our site:\r\n\r\n%POST_DATE% - \"%POST_TITLE%\"\r\n%POST_URL%\r\n\r\n\r\nThis job post will now become visible on the job listings. You may log in to your employer''s account to view or edit this job at any time.\r\n\r\nKind Regards,\r\n\r\n%SITE_NAME% team\r\n%SITE_URL%\r\n%SITE_CONTACT_EMAIL%', '*****@*****.**', 'Your job posting was Approved!', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (220, 'PL', 'Dear %FNAME% %LNAME%,\r\n\r\nThank you for posting your job to %SITE_NAME%!\r\n\r\nWe have just approved the following job to be listed on our site:\r\n\r\n%POST_DATE% - \"%POST_TITLE%\"\r\n%POST_URL%\r\n\r\n\r\nThis job post will now become visible on the job listings. You may log in to your employer''s account to view or edit this job at any time.\r\n\r\nKind Regards,\r\n\r\n%SITE_NAME% team\r\n%SITE_URL%\r\n%SITE_CONTACT_EMAIL%', '*****@*****.**', 'Your job posting was Approved!', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (220, 'FR', 'Dear %FNAME% %LNAME%,\r\n\r\nThank you for posting your job to %SITE_NAME%!\r\n\r\nWe have just approved the following job to be listed on our site:\r\n\r\n%POST_DATE% - \"%POST_TITLE%\"\r\n%POST_URL%\r\n\r\n\r\nThis job post will now become visible on the job listings. You may log in to your employer''s account to view or edit this job at any time.\r\n\r\nKind Regards,\r\n\r\n%SITE_NAME% team\r\n%SITE_URL%\r\n%SITE_CONTACT_EMAIL%', '*****@*****.**', 'Your job posting was Approved!', 'Jamit Demo', '');;;\nINSERT INTO `email_template_translations` VALUES (230, 'CN', 'Dear %FNAME% %LNAME%,\r\n\r\nThank you for posting your job to %SITE_NAME%.\r\n\r\nHowever, after reviewing your job post, we have decided to disapprove it.\r\n\r\nThe following job post was disapproved:\r\n\r\n%POST_DATE% - \"%POST_TITLE%\"\r\n\r\nReason for disapproval: %REASON%\r\n\r\nYou may log in to your employer''s account to edit this job so that we may review it again.\r\n\r\nKind Regards,\r\n\r\n%SITE_NAME% team\r\n%SITE_URL%\r\n%SITE_CONTACT_EMAIL%', '*****@*****.**', 'Your job posting was disapproved', 'Jamit Job Board', '');;;\nINSERT INTO `email_template_translations` VALUES (230, 'ES', 'Dear %FNAME% %LNAME%,\r\n\r\nThank you for posting your job to %SITE_NAME%.\r\n\r\nHowever, after reviewing your job post, we have decided to disapprove it.\r\n\r\nThe following job post was disapproved:\r\n\r\n%POST_DATE% - \"%POST_TITLE%\"\r\n\r\nReason for disapproval: %REASON%\r\n\r\nYou may log in to your employer''s account to edit this job so that we may review it again.\r\n\r\nKind Regards,\r\n\r\n%SITE_NAME% team\r\n%SITE_URL%\r\n%SITE_CONTACT_EMAIL%', '*****@*****.**', 'Your job posting was disapproved', 'Jamit Job Board', '');;;\nINSERT INTO `email_template_translations` VALUES (230, 'KO', 'Dear %FNAME% %LNAME%,\r\n\r\nThank you for posting your job to %SITE_NAME%.\r\n\r\nHowever, after reviewing your job post, we have decided to disapprove it.\r\n\r\nThe following job post was disapproved:\r\n\r\n%POST_DATE% - \"%POST_TITLE%\"\r\n\r\nReason for disapproval: %REASON%\r\n\r\nYou may log in to your employer''s account to edit this job so that we may review it again.\r\n\r\nKind Regards,\r\n\r\n%SITE_NAME% team\r\n%SITE_URL%\r\n%SITE_CONTACT_EMAIL%', '*****@*****.**', 'Your job posting was disapproved', 'Jamit Job Board', '');;;\nINSERT INTO `email_template_translations` VALUES (230, 'PL', 'Dear %FNAME% %LNAME%,\r\n\r\nThank you for posting your job to %SITE_NAME%.\r\n\r\nHowever, after reviewing your job post, we have decided to disapprove it.\r\n\r\nThe following job post was disapproved:\r\n\r\n%POST_DATE% - \"%POST_TITLE%\"\r\n\r\nReason for disapproval: %REASON%\r\n\r\nYou may log in to your employer''s account to edit this job so that we may review it again.\r\n\r\nKind Regards,\r\n\r\n%SITE_NAME% team\r\n%SITE_URL%\r\n%SITE_CONTACT_EMAIL%', '*****@*****.**', 'Your job posting was disapproved', 'Jamit Job Board', '');;;\nINSERT INTO `email_template_translations` VALUES (230, 'FR', 'Dear %FNAME% %LNAME%,\r\n\r\nThank you for posting your job to %SITE_NAME%.\r\n\r\nHowever, after reviewing your job post, we have decided to disapprove it.\r\n\r\nThe following job post was disapproved:\r\n\r\n%POST_DATE% - \"%POST_TITLE%\"\r\n\r\nReason for disapproval: %REASON%\r\n\r\nYou may log in to your employer''s account to edit this job so that we may review it again.\r\n\r\nKind Regards,\r\n\r\n%SITE_NAME% team\r\n%SITE_URL%\r\n%SITE_CONTACT_EMAIL%', '*****@*****.**', 'Your job posting was disapproved', 'Jamit Job Board', '');;;\n\n\nINSERT INTO `email_template_translations` (`EmailID`, `lang`, `EmailText`, `EmailFromAddress`, `EmailSubject`, `EmailFromName`, `sub_template`) VALUES (44,  'EN', 'Hello %EMP_NAME%\r\n\r\n%CAN_NAME% has granted you access to their online resume on %SITE_NAME%!\r\n\r\nTo view this resume, please see this link:\r\n\r\nResume link: %RESUME_DB_LINK%\r\n\r\nThanks,\r\n\r\n%SITE_NAME%\r\n%SITE_URL%\r\n-------------\r\n\r\n', '*****@*****.**', '%CAN_NAME% granted you access to their resume on %SITE_NAME% ', 'Jamit Demo', '');;;\n\nINSERT INTO `email_template_translations` (`EmailID`, `lang`, `EmailText`, `EmailFromAddress`, `EmailSubject`, `EmailFromName`, `sub_template`) VALUES (44,  'FR', 'Hello %EMP_NAME%\r\n\r\n%CAN_NAME% has granted you access to their online resume on %SITE_NAME%!\r\n\r\nTo view this resume, please see this link:\r\n\r\nResume link: %RESUME_DB_LINK%\r\n\r\nThanks,\r\n\r\n%SITE_NAME%\r\n%SITE_URL%\r\n-------------\r\n\r\n', '*****@*****.**', '%CAN_NAME% granted you access to their resume on %SITE_NAME% ', 'Jamit Demo', '');;;\n\nINSERT INTO `email_template_translations` (`EmailID`, `lang`, `EmailText`, `EmailFromAddress`, `EmailSubject`, `EmailFromName`, `sub_template`) VALUES (44,  'KO', 'Hello %EMP_NAME%\r\n\r\n%CAN_NAME% has granted you access to their online resume on %SITE_NAME%!\r\n\r\nTo view this resume, please see this link:\r\n\r\nResume link: %RESUME_DB_LINK%\r\n\r\nThanks,\r\n\r\n%SITE_NAME%\r\n%SITE_URL%\r\n-------------\r\n\r\n', '*****@*****.**', '%CAN_NAME% granted you access to their resume on %SITE_NAME% ', 'Jamit Demo', '');;;\n\nINSERT INTO `email_template_translations` (`EmailID`, `lang`, `EmailText`, `EmailFromAddress`, `EmailSubject`, `EmailFromName`, `sub_template`) VALUES (44, 'ES', 'Hello %EMP_NAME%\r\n\r\n%CAN_NAME% has granted you access to their online resume on %SITE_NAME%!\r\n\r\nTo view this resume, please see this link:\r\n\r\nResume link: %RESUME_DB_LINK%\r\n\r\nThanks,\r\n\r\n%SITE_NAME%\r\n%SITE_URL%\r\n-------------\r\n\r\n', '*****@*****.**', '%CAN_NAME% granted you access to their resume on %SITE_NAME% ', 'Jamit Demo', '');;;\n\nINSERT INTO `email_template_translations` (`EmailID`, `lang`, `EmailText`, `EmailFromAddress`, `EmailSubject`, `EmailFromName`, `sub_template`) VALUES (44, 'PL', 'Hello %EMP_NAME%\r\n\r\n%CAN_NAME% has granted you access to their online resume on %SITE_NAME%!\r\n\r\nTo view this resume, please see this link:\r\n\r\nResume link: %RESUME_DB_LINK%\r\n\r\nThanks,\r\n\r\n%SITE_NAME%\r\n%SITE_URL%\r\n-------------\r\n\r\n', '*****@*****.**', '%CAN_NAME% granted you access to their resume on %SITE_NAME% ', 'Jamit Demo', '');;;\n\nINSERT INTO `email_template_translations` (`EmailID`, `lang`, `EmailText`, `EmailFromAddress`, `EmailSubject`, `EmailFromName`, `sub_template`) VALUES (44, 'CN', 'Hello %EMP_NAME%\r\n\r\n%CAN_NAME% has granted you access to their online resume on %SITE_NAME%!\r\n\r\nTo view this resume, please see this link:\r\n\r\nResume link: %RESUME_DB_LINK%\r\n\r\nThanks,\r\n\r\n%SITE_NAME%\r\n%SITE_URL%\r\n-------------\r\n\r\n', '*****@*****.**', '%CAN_NAME% granted you access to their resume on %SITE_NAME% ', 'Jamit Demo', '');;;\n\n\nCREATE TABLE `email_templates` (\n  `EmailText` text NOT NULL,\n  `EmailFromAddress` varchar(255) NOT NULL default '',\n  `EmailFromName` varchar(255) NOT NULL default '',\n  `EmailSubject` varchar(255) NOT NULL default '',\n  `EmailID` int(11) NOT NULL default '0',\n  `sub_template` text NOT NULL,\n  PRIMARY KEY  (`EmailID`)\n) ;;;\n\n";
    $sql .= "\n \n\nINSERT INTO `email_templates` VALUES ('Dear %FNAME% %LNAME%,\r\n\r\nYou have successfully signed up to %SITE_NAME%.\r\n\r\nIf you ever encounter any problems, bugs or just have \r\nany questions or suggestions, feel free to contact \r\nus: %SITE_CONTACT_EMAIL%;\r\n\r\n\r\nYou have registered with the following details - \r\n\r\nMember ID: %MEMBERID%\r\nPassword: %PASSWORD% \r\n\r\nhttp://www.example.com\r\n\r\n&#54620;&#44397;&#50612;', '*****@*****.**', 'Example', 'Successfully Signed Up as %MEMBERID%', 1, '');;;\nINSERT INTO `email_templates` VALUES ('Dear %FNAME% %LNAME%,\r\n\r\nYou have successfully signed for a %SITE_NAME% Employer''s Account. \r\nYou have registered with the following details - \r\n\r\nMember ID: %MEMBERID%\r\nPassword: %PASSWORD% \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have any questions / problems. \r\n\r\nKind Regards,\r\n\r\nWebmaster.', '*****@*****.**', 'Example', 'Successfully Signed Up as %MEMBERID%', 2, '');;;\nINSERT INTO `email_templates` VALUES ('Dear %FNAME% %LNAME%,\r\n\r\nYour %SITE_NAME% password has been reset!\r\n\r\nHere is your new password:\r\n\r\nMember ID: %MEMBERID%\r\nPassword: %PASSWORD%\r\n\r\nYou can sign into your account here: http://www.example.com/ \r\n\r\nKind Regards,\r\n\r\nWebmaster', '*****@*****.**', 'Example', 'Reset Password', 3, '');;;\nINSERT INTO `email_templates` VALUES ('Dear %FNAME% %LNAME%,\r\n\r\nAn employer on %SITE_NAME% has requested for your contact details!\r\nHere are the details of the request:\r\n\r\nEmployer Name: %EMPLOYER_NAME%\r\nReply-to Email Address: %REPLY_TO%\r\n%MESSAGE%\r\n\r\nYou may reveal your contact details to this employer by simply visiting the following link: %PERMIT_LINK%\r\n\r\nYou may also contact the employer directly by replying to this email!\r\n\r\n\r\nBest Regards,\r\n\r\nTeam %SITE_NAME%', '*****@*****.**', 'Example', 'Request for your contact details by an employer', 4, '');;;\nINSERT INTO `email_templates` VALUES ('Your %SITE_NAME% Daily Resume Alert!\r\n\r\nDear %FNAME% %LNAME%,\r\n\r\nYour Resume Alert on %SITE_NAME% has returned the following alert for you today:\r\n\r\n%RESUME_ALERTS% \r\n\r\n\r\n\r\n%SITE_NAME% Team %SITE_CONTACT_EMAIL%\r\n- If you want to View these resumes,or maintain your Daily Resume Alerts, \r\nplease visit this link:\r\n%EMPLOYER_LINK% \r\n', '*****@*****.**', 'Example', 'Daily C.V. Alert', 5, '%DATE% : %RESUME_NAME% (%NATIONALITY%)');;;\nINSERT INTO `email_templates` VALUES ('<h2><font face=''arial''>Your %SITE_NAME% Daily Resume Alert!</font></h2><p>\r\n<p><font size=''2'' face=''arial''>Dear %FNAME% %LNAME%,</font></p>\r\n<font face=''arial'' size=''2''>Your Resume Alert on %SITE_NAME% has returned the following alert for you today:</font><p>%RESUME_ALERTS%\r\n</p>\r\n<p>\r\n<p><font size=''2'' face=''arial''><b></b></font></p><p>\r\n<font face=\"arial\" size=\"2\">%SITE_NAME% Team %SITE_CONTACT_EMAIL%</font></p><p>\r\n<font face=\"arial\" size=\"2\">- If you want to View these resumes, or maintain your Daily Resume Alerts, please visit this link: %EMPLOYER_LINK%</a>\r\n</font></p>\r\n', '*****@*****.**', 'Example', 'Resume Alert', 6, '<font face=''arial'' size=''2''>%DATE% - %RESUME_NAME% </font>');;;\nINSERT INTO `email_templates` VALUES ('Your %SITE_NAME% Daily Job Alert\r\n\r\nDear %FNAME% %LNAME%\r\n\r\nYour Daily Job Alert on %SITE_NAME% has returned the following alert for you today:\r\n\r\n%JOB_ALERTS% \r\n\r\n\r\n \r\n\r\n%SITE_NAME% Team test@example.com\r\n\r\n%SITE_CONTACT_EMAIL%\r\n- If you want to Cancel, or Edit your Daily Job Alerts, please visit this link: %CANDIDATE_LINK%\r\n', '*****@*****.**', 'Example', 'Job Alert', 7, '');;;\nINSERT INTO `email_templates` VALUES ('<img src=\"%SITE_LOGO_URL%\"><br><h2><font face=''arial''>Your %SITE_NAME% Daily Job Alert</font></h2>\r\n\r\n<p><font size=''2'' face=''arial''>Dear %FNAME% %LNAME%</font></p>\r\n\r\n<font face=''arial'' size=''2''>Your Daily Job Alert on %SITE_NAME% has returned the following alert for you today:</font><p></p>\r\n\r\n<p>\r\n%JOB_ALERTS%\r\n</p>\r\n<p>\r\n<b></b>\r\n</p>\r\n<p><font face=''arial'' size=''2''>%SITE_NAME% Team test@example.com<br>%SITE_CONTACT_EMAIL%</font></p>\r\n<p><font face=''arial'' size=''2''>- If you want to Cancel, or Edit your Daily Job Alerts, please visit this link: <a href=\"%CANDIDATE_LINK%\">%CANDIDATE_LINK%</a></font></p>', '*****@*****.**', 'Example', 'Job Alert', 8, '');;;\nINSERT INTO `email_templates` VALUES ('Application Sent to: %POSTED_BY% (%EMPLOYER_EMAIL%)\r\n\r\nJob Post Titled:  \r\n - %JOB_TITLE%\r\nApplicant:\r\n - %APP_NAME% (%APP_EMAIL%)\r\nsubject:\r\n - %APP_SUBJECT%\r\nLetter:\r\n%APP_LETTER%\r\nAttachments:\r\n%APP_ATTACHMENT1%\r\n%APP_ATTACHMENT2%\r\n%APP_ATTACHMENT3%', '*****@*****.**', 'Example', 'Application Confirmation', 10, '');;;\nINSERT INTO `email_templates` (`EmailID`, `EmailText`, `EmailFromAddress`, `EmailSubject`, `EmailFromName`, `sub_template`) VALUES (60, 'Dear  %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nItem Name: %ITEM_NAME%\r\nPosts: %QUANTITY% \r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Bank Deposit\r\n--------------------------\r\n\r\nPlease deposit %INVOICE_AMOUNT% to the following account:\r\n\tBank: %BANK_NAME%\r\n\tA/C Name: %AC_NAME%\r\n\tA/C Number: %AC_NUMBER%\r\n\r\nAfter making the deposit, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Order Confirmed', 'Hi Teacher', '');;;\nINSERT INTO `email_templates` (`EmailID`, `EmailText`, `EmailFromAddress`, `EmailSubject`, `EmailFromName`, `sub_template`) VALUES (61, 'Dear  %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nItem Name: %ITEM_NAME%\r\nPosts: %QUANTITY% \r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Check / Money Order\r\n--------------------------\r\n\r\nPlease send %INVOICE_AMOUNT% (%CHECK_CURRENCY%) to the following address:\r\n\tPayee Name: %PAYEE_NAME%\r\n\tAddress: \r\n        %PAYEE_ADDRESS%\r\n\t\r\n\r\nAfter mailing the check, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Order Confirmed', 'Jamit Demo', '');;;\n\n\n\n\n\nINSERT INTO `email_templates` (`EmailID`, `EmailText`, `EmailFromAddress`, `EmailSubject`, `EmailFromName`, `sub_template`) VALUES (70, 'Dear  %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was successfully completed, thank you!\r\n\r\nWe have credited your order to your account, and you may now use your available balance to post your job advertisement(s) to %SITE_NAME%.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nItem Name: %ITEM_NAME%\r\nPosts: %QUANTITY% \r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Completed\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n--------------------------\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your balance and order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Posts'' -> ''Posting Credits''.\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Order completed!', 'Jamit Demo', '');;;\n\nINSERT INTO `email_templates` (`EmailID`, `EmailText`, `EmailFromAddress`, `EmailSubject`, `EmailFromName`, `sub_template`) VALUES (90, 'Dear  %LNAME%, %FNAME%\r\n\r\nYour subscription payment on %SITE_NAME% was successfully completed, thank you!\r\n\r\nWe have activated your subscription, and you may now log in to your account\r\nto access the resume database.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nSubscription Name: %ITEM_NAME%\r\nSubscription Months: %SUB_DURATION%\r\nStart Date: %SUB_START%\r\nEnd Date: %SUB_END%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Active\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n--------------------------\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your subscription order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Resumes'' -> ''Subscriptions''.\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Subscription now active!', 'Jamit Demo', '');;;\n\nINSERT INTO `email_templates` (`EmailID`, `EmailText`, `EmailFromAddress`, `EmailSubject`, `EmailFromName`, `sub_template`) VALUES (80, 'Dear  %LNAME%, %FNAME%\r\n\r\nYour subscription on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nSubscription Name: %ITEM_NAME%\r\nSubscription Months: %SUB_DURATION%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Active\r\nPayment Method: Bank\r\n--------------------------\r\n\r\nPlease deposit %INVOICE_AMOUNT% to the following account:\r\n\tBank: %BANK_NAME%\r\n\tA/C Name: %AC_NAME%\r\n\tA/C Number: %AC_NUMBER%\r\n\r\nAfter making the deposit, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n', '*****@*****.**', 'Subscription order confirmed', 'Jamit Demo', '');;;\n\nINSERT INTO `email_templates` (`EmailID`, `EmailText`, `EmailFromAddress`, `EmailSubject`, `EmailFromName`, `sub_template`) VALUES (81, 'Dear %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nSubscription Name: %ITEM_NAME%\r\nSubscription Months: %SUB_DURATION%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Check / Money Order\r\n--------------------------\r\n\r\nPlease send %INVOICE_AMOUNT% (%CHECK_CURRENCY%) to the following address:\r\n\tPayee Name: %PAYEE_NAME%\r\n\tAddress: \r\n        %PAYEE_ADDRESS%\r\n\t\r\n\r\nAfter mailing the check, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email', '*****@*****.**', 'Subscription order confirmed', 'Jamit Demo', '');;;\n\nINSERT INTO `email_templates` (`EmailID`, `EmailText`, `EmailFromAddress`, `EmailSubject`, `EmailFromName`, `sub_template`) VALUES (120, 'Dear  %LNAME%, %FNAME%\r\n\r\nThis email is sent to notify you that your membership to %SITE_NAME% has expired.\r\n\r\nWe thank you for your patronage during your membership time, and we hope\r\nthat we can continue to serve you as our member in the future.\r\n\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nMembership Name: %ITEM_NAME%\r\nMembership Months: %MEM_DURATION%\r\nStart Date: %MEM_START%\r\nEnd Date: %MEM_END%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Expired\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n--------------------------\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your membership order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Account'' -> ''Membership Details''.\r\n\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Membership Expired', 'Jamit Demo', '');;;\n\nINSERT INTO `email_templates` (`EmailID`, `EmailText`, `EmailFromAddress`, `EmailSubject`, `EmailFromName`, `sub_template`) VALUES (100, 'Dear  %LNAME%, %FNAME%\r\n\r\nYour membership on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nMembership Item: %ITEM_NAME%\r\nMembership Months: %MEM_DURATION%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Bank\r\n--------------------------\r\n\r\nPlease deposit %INVOICE_AMOUNT% to the following account:\r\n\tBank: %BANK_NAME%\r\n\tA/C Name: %AC_NAME%\r\n\tA/C Number: %AC_NUMBER%\r\n\r\nAfter making the deposit, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n', '*****@*****.**', 'Membership Order Confirmed', 'Jamit Demo', '');;;\n\nINSERT INTO `email_templates` (`EmailID`, `EmailText`, `EmailFromAddress`, `EmailSubject`, `EmailFromName`, `sub_template`) VALUES (101, 'Dear %LNAME%, %FNAME%\r\n\r\nYour order on %SITE_NAME% was confirmed, thank you.\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nMembership Name: %ITEM_NAME%\r\nMembership Months: %MEM_DURATION%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Confirmed\r\nPayment Method: Check / Money Order\r\n--------------------------\r\n\r\nPlease send %INVOICE_AMOUNT% (%CHECK_CURRENCY%) to the following address:\r\n\tPayee Name: %PAYEE_NAME%\r\n\tAddress: \r\n        %PAYEE_ADDRESS%\r\n\t\r\n\r\nAfter mailing the check, please send an email to \r\n%SITE_CONTACT_EMAIL% with the following \r\nOrder Number: %INVOICE_CODE% to help us process the transaction. \r\n\r\nFeel free to contact %SITE_CONTACT_EMAIL% if you have \r\nany questions / problems. \r\n\r\nThank you!\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email', '*****@*****.**', 'Membership Order Confirmed', 'Jamit Demo', '');;;\n\nINSERT INTO `email_templates` (`EmailID`, `EmailText`, `EmailFromAddress`, `EmailSubject`, `EmailFromName`, `sub_template`) VALUES (110, 'Dear  %LNAME%, %FNAME%\r\n\r\nYour membership payment on %SITE_NAME% was successfully completed, thank you!\r\n\r\nWe have activated your membership, and we welcome you as our new member. \r\nHere are your membership payment details:\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nMembership Name: %ITEM_NAME%\r\nMembership Months: %MEM_DURATION%\r\nStart Date: %MEM_START%\r\nEnd Date: %MEM_END%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Active\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n--------------------------\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your membership order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Account'' -> ''Membership Details''.\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Membership Activated', 'Jamit Demo', '');;;\n\nINSERT INTO `email_templates` (`EmailID`, `EmailText`, `EmailFromAddress`, `EmailSubject`, `EmailFromName`, `sub_template`) VALUES (130, 'Dear  %LNAME%, %FNAME%\r\n\r\nThis email is sent to notify you that your subscription to %SITE_NAME% has expired.\r\n\r\nWe thank you for your patronage during your subscription time, and we hope\r\nthat we can continue to serve you as our subscriber in the future.\r\n\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nOrder ID: #%INVOICE_CODE%\r\nSubscription Name: %ITEM_NAME%\r\nSubscription Months: %SUB_DURATION%\r\nStart Date: %SUB_START%\r\nEnd Date: %SUB_END%\r\nPrice: %INVOICE_AMOUNT%\r\nStatus: Expired\r\nPayment Method: %PAYMENT_METHOD%\r\n\r\n--------------------------\r\n\r\nThank you for using %SITE_NAME%! \r\n\r\nYou may view your subscription order history at any time.\r\nJust log in to your %SITE_NAME%, and go to ''Account'' -> ''Subscription''.\r\n\r\n\r\n\r\n%SITE_NAME% team.\r\n%SITE_URL%\r\n\r\nNote: This is an automated email.', '*****@*****.**', 'Subscription Expired', 'Jamit Demo', '');;;\n\n\nINSERT INTO `email_templates` (`EmailID`, `EmailText`, `EmailFromAddress`, `EmailSubject`, `EmailFromName`, `sub_template`) VALUES (330, 'A new order was placed on %SITE_NAME% by %USER%!\r\n\r\nTo manage, see here:\r\n%ADMIN_LINK%\r\n\r\n==================================\r\n\r\nOrder by: %LNAME%, %FNAME%\r\nUsername: %USER%\r\n\r\n========================\r\nORDER DETAILS\r\n=========================\r\nItem: %ITEM_NAME%\r\nOrder ID: #%INVOICE_CODE%\r\nPrice: %INVOICE_AMOUNT%\r\n', '*****@*****.**', 'A New order was placed on %SITE_NAME%', 'Jamit Demo', '');;;\n\t\t\n\nINSERT INTO `email_templates` (`EmailID`,  `EmailText`, `EmailFromAddress`, `EmailSubject`, `EmailFromName`, `sub_template`) VALUES (320,  'A Resume resume was posted to / updated on %SITE_NAME%\r\n\r\nAdmin Link: \r\n%ADMIN_LINK%\r\n\r\n%RESUME_SUMMARY%\r\n\r\n\r\n', '*****@*****.**', 'A Resume was saved on %SITE_NAME%', 'Jamit Demo', '');;;\n\t\t\n\nINSERT INTO `email_templates` (`EmailID`, `EmailText`, `EmailFromAddress`, `EmailSubject`, `EmailFromName`, `sub_template`) VALUES (310, 'A new Post was posted to %SITE_NAME%\r\n\r\nAdmin Link: %ADMIN_LINK%\r\n\r\nTitle:\r\n%POST_TITLE%\r\nBy:\r\n%POSTED_BY%\r\nDate:\r\n%DATE%\r\nDescription:\r\n%POST_DESCRIPTION%\r\n', '*****@*****.**', 'A new Post was posted to %SITE_NAME%', 'Jamit Job Board', '');;;\n\t\t\n\nINSERT INTO `email_templates` (`EmailID`, `EmailText`, `EmailFromAddress`, `EmailSubject`, `EmailFromName`, `sub_template`) VALUES (210, 'Dear %FNAME% %LNAME%,\r\n\r\nWe would like to notify you that the following post had expired on %SITE_NAME%:\r\n\r\n%POST_DATE% - \"%POST_TITLE%\"\r\n\r\nStatistics:\r\n%VIEWS% views\r\n%APPS% Applications\r\n\r\nThis job post will no longer be visible in the job listings. You may log in to your employer''s account to view or re-post this job, or post a new job at any time.\r\n\r\nKind Regards,\r\n\r\n%SITE_NAME% team\r\n%SITE_URL%\r\n%SITE_CONTACT_EMAIL%', '*****@*****.**', 'Job post expired', 'Jamit Demo', '');;;\n\t\t\n\nINSERT INTO `email_templates` (`EmailID`, `EmailText`, `EmailFromAddress`, `EmailSubject`, `EmailFromName`, `sub_template`) VALUES (220, 'Dear %FNAME% %LNAME%,\r\n\r\nThank you for posting your job to %SITE_NAME%!\r\n\r\nWe have just approved the following job to be listed on our site:\r\n\r\n%POST_DATE% - \"%POST_TITLE%\"\r\n%POST_URL%\r\n\r\n\r\nThis job post will now become visible on the job listings. You may log in to your employer''s account to view or edit this job at any time.\r\n\r\nKind Regards,\r\n\r\n%SITE_NAME% team\r\n%SITE_URL%\r\n%SITE_CONTACT_EMAIL%', '*****@*****.**', 'Your job posting was Approved!', 'Jamit Demo', '');;;\n\t\n\nINSERT INTO `email_templates` (`EmailID`, `EmailText`, `EmailFromAddress`, `EmailSubject`, `EmailFromName`, `sub_template`) VALUES (230, 'Dear %FNAME% %LNAME%,\r\n\r\nThank you for posting your job to %SITE_NAME%.\r\n\r\nHowever, after reviewing your job post, we have decided to disapprove it.\r\n\r\nThe following job post was disapproved:\r\n\r\n%POST_DATE% - \"%POST_TITLE%\"\r\n\r\nReason for disapproval: %REASON%\r\n\r\nYou may log in to your employer''s account to edit this job so that we may review it again.\r\n\r\nKind Regards,\r\n\r\n%SITE_NAME% team\r\n%SITE_URL%\r\n%SITE_CONTACT_EMAIL%', '*****@*****.**', 'Your job posting was disapproved', 'Jamit Job Board', '');;;\n\nINSERT INTO `email_templates` ( `EmailText` , `EmailFromAddress` , `EmailFromName` , `EmailSubject` , `EmailID` , `sub_template` )VALUES ('%APP_LETTER% \r\n\r\n----------------------------------- \r\nThis email was sent from %SITE_NAME% %BASE_HTTP_PATH%\r\nOnline Resume Link: \r\n%RESUME_DB_LINK%\r\n', '', '', '', '12', '');;;\n\nINSERT INTO `email_templates` (`EmailID`,  `EmailText`, `EmailFromAddress`, `EmailSubject`, `EmailFromName`, `sub_template`) VALUES (11,  '%MESSAGE%\r\n\r\n\r\n\r\n\r\n------------------------\r\n%SITE_URL%\r\n\r\nThis message was sent by somebody using the \r\nweb-email service provided by %SITE_NAME%.\r\n\r\nName: %EMPLOYER_NAME%\r\nSender\\'s User ID: %USER_ID%\r\nSender IP: %SENDER_IP%\r\n', '*****@*****.**', '', 'Jamit Demo', '');;;\n\n\nINSERT INTO `email_templates` (`EmailID`, `EmailText`, `EmailFromAddress`, `EmailSubject`, `EmailFromName`, `sub_template`) VALUES (44, 'Hello %EMP_NAME%\r\n\r\n%CAN_NAME% has granted you access to their online resume on %SITE_NAME%!\r\n\r\nTo view this resume, please see this link:\r\n\r\nResume link: %RESUME_DB_LINK%\r\n\r\nThanks,\r\n\r\n%SITE_NAME%\r\n%SITE_URL%\r\n-------------\r\n\r\n', '*****@*****.**', '%CAN_NAME% granted you access to their resume on %SITE_NAME% ', 'Jamit Demo', '');;;\n\nCREATE TABLE `employers` (\n  `ID` int(11) NOT NULL auto_increment,\n  `IP` varchar(50) NOT NULL default '',\n  `SignupDate` datetime NOT NULL default '0000-00-00 00:00:00',\n  `FirstName` varchar(50) NOT NULL default '',\n  `LastName` varchar(50) NOT NULL default '',\n  `Rank` int(11) NOT NULL default '1',\n  `Username` varchar(50) NOT NULL default '',\n  `Password` varchar(50) NOT NULL default '',\n  `Email` varchar(255) NOT NULL default '',\n  `Newsletter` int(11) NOT NULL default '1',\n  `Notification1` int(11) NOT NULL default '0',\n  `Notification2` int(11) NOT NULL default '0',\n  `Aboutme` longtext NOT NULL,\n  `Validated` int(11) NOT NULL default '0',\n  `CompName` varchar(255) NOT NULL default '',\n  `login_date` datetime NOT NULL default '0000-00-00 00:00:00',\n  `logout_date` datetime NOT NULL default '0000-00-00 00:00:00',\n  `login_count` int(11) NOT NULL default '0',\n  `last_request_time` datetime NOT NULL default '0000-00-00 00:00:00',\n  `lang` char(3) NOT NULL default '',\n  `alert_last_run` datetime NOT NULL default '0000-00-00 00:00:00',\n  `alert_email` varchar(255) NOT NULL default '',\n  `posts_balance` int(11) NOT NULL default '0',\n  `premium_posts_balance` int(11) NOT NULL default '0',\n  `subscription_can_view_resume` set('Y','N') NOT NULL default 'N',\n  `subscription_can_premium_post` set('Y','N') NOT NULL default 'N',\n  `subscription_can_post` set('Y','N') NOT NULL default 'N',\n  `newsletter_last_run` datetime NOT NULL default '0000-00-00 00:00:00',\n  `alert_query` text NOT NULL,\n  `can_view_blocked` SET( 'Y', 'N' ) NOT NULL default 'N',\n  `alert_keywords` varchar(255) NOT NULL default '', \n  `membership_active` CHAR(1) NOT NULL default 'N',\n  `expired` SET ('Y','N') NOT NULL default 'N',\n  `views_quota` INT NOT NULL DEFAULT '0', \n  `p_posts_quota` INT NOT NULL DEFAULT '0', \n  `posts_quota` INT NOT NULL DEFAULT '0',\n  `views_quota_tally` INT NOT NULL DEFAULT '0', \n  `p_posts_quota_tally` INT NOT NULL DEFAULT '0', \n  `posts_quota_tally` INT NOT NULL DEFAULT '0',\n  `quota_timestamp` INT NOT NULL DEFAULT '0',\n  PRIMARY KEY  (`ID`),\n  UNIQUE KEY `Username` (`Username`)\n)  AUTO_INCREMENT=2 ;;;\n\n\n\nINSERT INTO `employers` VALUES (1, '127.0.0.1', '2006-04-05 04:25:37', 'Test', 'Account', 1, 'test', '098f6bcd4621d373cade4e832627b4f6', '*****@*****.**', 0, 0, 0, '', 1, 'Jamit Test Account', '2006-04-05 04:25:39', '0000-00-00 00:00:00', 1, '2006-04-14 13:45:31', '', '0000-00-00 00:00:00', '', 5, 5, 'N', 'N', 'N', '0000-00-00 00:00:00', '', 'N', '', 'N', 'N', 0, 0, 0, 0,0,0, 0);;;\n\n \n\nCREATE TABLE `form_field_translations` (\n  `field_id` int(11) NOT NULL default '0',\n  `lang` char(2) NOT NULL default '',\n  `field_label` text NOT NULL,\n  `error_message` varchar(255) NOT NULL default '',\n  `field_comment` text NOT NULL,\n  PRIMARY KEY  (`field_id`,`lang`),\n  KEY `field_id` (`field_id`)\n) ;;;\n\n\n\nINSERT INTO `form_field_translations` VALUES (2, 'CN', 'Job Title', 'was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (2, 'EN', 'Job Title', 'was not filled in', '(enter a descriptive title for your ad)');;;\nINSERT INTO `form_field_translations` VALUES (2, 'ES', 'Job Title', 'Was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (2, 'KO', 'Job Title', '&#50630;&#45796;', '');;;\nINSERT INTO `form_field_translations` VALUES (2, 'PL', 'Job Title', 'was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (3, 'CN', 'Job Details', '', '');;;\nINSERT INTO `form_field_translations` VALUES (3, 'EN', 'Post Details', 'in english', '');;;\nINSERT INTO `form_field_translations` VALUES (3, 'ES', 'Job Details', '', '');;;\nINSERT INTO `form_field_translations` VALUES (3, 'KO', '&#12631;&#54840;&#54973;k', '', '');;;\nINSERT INTO `form_field_translations` VALUES (3, 'PL', 'Job Details', '', '');;;\nINSERT INTO `form_field_translations` VALUES (5, 'CN', 'Description', 'was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (5, 'EN', 'Description', 'was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (5, 'ES', 'Description', 'Was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (5, 'KO', 'Ad text', '', '');;;\nINSERT INTO `form_field_translations` VALUES (5, 'PL', 'Description', 'was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (6, 'CN', 'Classification', 'Was not selected', '(Posts in the wrong category will be removed)');;;\nINSERT INTO `form_field_translations` VALUES (6, 'EN', 'Classification', 'Was not selected', '(Posts in the wrong category will be removed)');;;\nINSERT INTO `form_field_translations` VALUES (6, 'ES', 'Classification', 'Was not filled in', '(Posts in the wrong category will be removed)');;;\nINSERT INTO `form_field_translations` VALUES (6, 'KO', 'Classification', '', '');;;\nINSERT INTO `form_field_translations` VALUES (6, 'PL', 'Classification', 'Was not selected', '(Posts in the wrong category will be removed)');;;\nINSERT INTO `form_field_translations` VALUES (7, 'CN', 'Start Date', '', '');;;\nINSERT INTO `form_field_translations` VALUES (7, 'EN', 'Start Date', '', '');;;\nINSERT INTO `form_field_translations` VALUES (7, 'ES', 'Start Date', '', '');;;\nINSERT INTO `form_field_translations` VALUES (7, 'KO', 'Start Date', '', '');;;\nINSERT INTO `form_field_translations` VALUES (7, 'PL', 'Start Date', '', '');;;\nINSERT INTO `form_field_translations` VALUES (8, 'CN', 'Posted By', 'was not filled in', '(Your school or company name)');;;\nINSERT INTO `form_field_translations` VALUES (8, 'EN', 'Posted By', 'was not filled in', '(Your name, or company name)');;;\nINSERT INTO `form_field_translations` VALUES (8, 'ES', 'Posted By', 'Was not filled in', '(Your business or company name)');;;\nINSERT INTO `form_field_translations` VALUES (8, 'KO', 'Posted By', '', '');;;\nINSERT INTO `form_field_translations` VALUES (8, 'PL', 'Posted By', 'was not filled in', '(Your business name)');;;\nINSERT INTO `form_field_translations` VALUES (9, 'CN', 'Contract Length', '', '');;;\nINSERT INTO `form_field_translations` VALUES (9, 'EN', 'Job Function', '', 'eg. teacher, nurse, sales manager etc.');;;\nINSERT INTO `form_field_translations` VALUES (9, 'ES', 'Contract Length', '', '');;;\nINSERT INTO `form_field_translations` VALUES (9, 'KO', 'Contract Length', '', '');;;\nINSERT INTO `form_field_translations` VALUES (9, 'PL', 'Contract Length', '', '');;;\nINSERT INTO `form_field_translations` VALUES (10, 'CN', 'Salary', '', '');;;\nINSERT INTO `form_field_translations` VALUES (10, 'EN', 'Salary', '', '');;;\nINSERT INTO `form_field_translations` VALUES (10, 'ES', 'Salary', '', '');;;\nINSERT INTO `form_field_translations` VALUES (10, 'KO', 'Salary', '', '');;;\nINSERT INTO `form_field_translations` VALUES (10, 'PL', 'Salary', '', '');;;\nINSERT INTO `form_field_translations` VALUES (11, 'CN', 'Cell Phone', '', '');;;\nINSERT INTO `form_field_translations` VALUES (11, 'EN', 'Cell Phone', '', '');;;\nINSERT INTO `form_field_translations` VALUES (11, 'ES', 'Cell Phone', '', '');;;\nINSERT INTO `form_field_translations` VALUES (11, 'KO', 'Cell Phone', '', '');;;\nINSERT INTO `form_field_translations` VALUES (11, 'PL', 'Cell Phone', '', '');;;\nINSERT INTO `form_field_translations` VALUES (12, 'CN', 'Email', 'was invalid.', '');;;\nINSERT INTO `form_field_translations` VALUES (12, 'EN', 'Email', 'was invalid.', '');;;\nINSERT INTO `form_field_translations` VALUES (12, 'ES', 'Email', 'Was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (12, 'KO', 'Email', '', '');;;\nINSERT INTO `form_field_translations` VALUES (12, 'PL', 'Email', 'was invalid.', '');;;\nINSERT INTO `form_field_translations` VALUES (13, 'CN', 'Location', 'Was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (13, 'EN', 'Location', 'Was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (13, 'ES', 'Location', 'Was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (13, 'KO', 'Location', '', '');;;\nINSERT INTO `form_field_translations` VALUES (13, 'PL', 'Location', 'Was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (14, 'CN', 'Job Type', 'Was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (14, 'EN', 'Job Type', 'Was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (14, 'ES', 'Job Type', 'Was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (14, 'KO', 'Job Type', '', '');;;\nINSERT INTO `form_field_translations` VALUES (14, 'PL', 'Job Type', 'Was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (15, 'CN', 'Location', 'was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (15, 'EN', 'Location', 'was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (15, 'ES', 'Location', '', '');;;\nINSERT INTO `form_field_translations` VALUES (15, 'KO', 'Location', 'was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (15, 'PL', 'Location', 'was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (16, 'CN', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (16, 'EN', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (16, 'ES', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (16, 'KO', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (16, 'PL', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (17, 'CN', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (17, 'EN', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (17, 'ES', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (17, 'KO', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (17, 'PL', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (19, 'CN', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (19, 'EN', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (19, 'ES', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (19, 'KO', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (19, 'PL', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (20, 'CN', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (20, 'EN', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (20, 'ES', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (20, 'KO', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (20, 'PL', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (21, 'CN', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (21, 'EN', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (21, 'ES', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (21, 'KO', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (21, 'PL', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (22, 'CN', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (22, 'EN', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (22, 'ES', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (22, 'KO', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (22, 'PL', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (23, 'CN', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (23, 'EN', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (23, 'ES', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (23, 'KO', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (23, 'PL', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (24, 'CN', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (24, 'EN', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (24, 'ES', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (24, 'KO', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (24, 'PL', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (25, 'CN', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (25, 'EN', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (25, 'ES', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (25, 'KO', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (25, 'PL', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (28, 'CN', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (28, 'EN', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (28, 'ES', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (28, 'KO', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (28, 'PL', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (32, 'CN', 'Deadline', '', '(enter full year: yyyy)');;;\nINSERT INTO `form_field_translations` VALUES (32, 'EN', 'Deadline', '', '(enter full year: yyyy)');;;\nINSERT INTO `form_field_translations` VALUES (32, 'ES', 'Deadline', '', '(enter full year: yyyy)');;;\nINSERT INTO `form_field_translations` VALUES (32, 'KO', 'Deadline', '', '');;;\nINSERT INTO `form_field_translations` VALUES (32, 'PL', 'Deadline', '', '(enter full year: yyyy)');;;\nINSERT INTO `form_field_translations` VALUES (34, 'CN', 'Category', '', '');;;\nINSERT INTO `form_field_translations` VALUES (34, 'EN', 'Category', '', '');;;\nINSERT INTO `form_field_translations` VALUES (34, 'ES', 'Category', '', '');;;\nINSERT INTO `form_field_translations` VALUES (34, 'KO', 'Category', '', '');;;\nINSERT INTO `form_field_translations` VALUES (34, 'PL', 'Category', '', '');;;\nINSERT INTO `form_field_translations` VALUES (36, 'CN', 'Name', 'was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (36, 'EN', 'Name', 'was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (36, 'ES', 'Name', 'was not filled in.', '');;;\nINSERT INTO `form_field_translations` VALUES (36, 'KO', 'Name', '', '');;;\nINSERT INTO `form_field_translations` VALUES (36, 'PL', 'Name', 'was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (37, 'CN', 'Gender', 'was not filled in.', '');;;\nINSERT INTO `form_field_translations` VALUES (37, 'EN', 'Work Experience', 'was not filled in.', '');;;\nINSERT INTO `form_field_translations` VALUES (37, 'ES', 'Gender', 'was not filled in.', '');;;\nINSERT INTO `form_field_translations` VALUES (37, 'KO', 'Gender', '', '');;;\nINSERT INTO `form_field_translations` VALUES (37, 'PL', 'Gender', 'was not filled in.', '');;;\nINSERT INTO `form_field_translations` VALUES (38, 'CN', 'D.O.B.', 'is blank', '');;;\nINSERT INTO `form_field_translations` VALUES (38, 'EN', 'D.O.B.', 'is blank', '');;;\nINSERT INTO `form_field_translations` VALUES (38, 'ES', 'D.O.B.', 'is blank', '');;;\nINSERT INTO `form_field_translations` VALUES (38, 'KO', 'D.O.B.', '', '');;;\nINSERT INTO `form_field_translations` VALUES (38, 'PL', 'D.O.B.', 'is blank', '');;;\nINSERT INTO `form_field_translations` VALUES (39, 'CN', 'Nationality', 'was not filled in.', '');;;\nINSERT INTO `form_field_translations` VALUES (39, 'EN', 'Nationality', 'was not filled in.', '');;;\nINSERT INTO `form_field_translations` VALUES (39, 'ES', 'Nationality', 'was not filled in.', '');;;\nINSERT INTO `form_field_translations` VALUES (39, 'KO', 'Nationality', '', '');;;\nINSERT INTO `form_field_translations` VALUES (39, 'PL', 'Nationality', 'was not filled in.', '');;;\nINSERT INTO `form_field_translations` VALUES (40, 'CN', 'Email', '', '');;;\nINSERT INTO `form_field_translations` VALUES (40, 'EN', 'Email', '', '');;;\nINSERT INTO `form_field_translations` VALUES (40, 'ES', 'Email', '', '');;;\nINSERT INTO `form_field_translations` VALUES (40, 'KO', 'Email', '', '');;;\nINSERT INTO `form_field_translations` VALUES (40, 'PL', 'Email', '', '');;;\nINSERT INTO `form_field_translations` VALUES (41, 'CN', 'Cell Phone No.', '', '');;;\nINSERT INTO `form_field_translations` VALUES (41, 'EN', 'Cell Phone No.', '', '');;;\nINSERT INTO `form_field_translations` VALUES (41, 'ES', 'Cell Phone No.', '', '');;;\nINSERT INTO `form_field_translations` VALUES (41, 'KO', 'Cell Phone No.', '', '');;;\nINSERT INTO `form_field_translations` VALUES (41, 'PL', 'Cell Phone No.', '', '');;;\nINSERT INTO `form_field_translations` VALUES (42, 'CN', 'Photo', '', '');;;\nINSERT INTO `form_field_translations` VALUES (42, 'EN', 'Photo', '', '');;;\nINSERT INTO `form_field_translations` VALUES (42, 'ES', 'Photo', '', '');;;\nINSERT INTO `form_field_translations` VALUES (42, 'KO', 'Photo', '', '');;;\nINSERT INTO `form_field_translations` VALUES (42, 'PL', 'Photo', '', '');;;\nINSERT INTO `form_field_translations` VALUES (43, 'CN', 'Telephone', '', '');;;\nINSERT INTO `form_field_translations` VALUES (43, 'EN', 'Telephone', '', '');;;\nINSERT INTO `form_field_translations` VALUES (43, 'ES', 'Telephone', '', '');;;\nINSERT INTO `form_field_translations` VALUES (43, 'KO', 'Telephone', '', '');;;\nINSERT INTO `form_field_translations` VALUES (43, 'PL', 'Telephone', '', '');;;\nINSERT INTO `form_field_translations` VALUES (44, 'CN', '[Current Residential Address]', '', '');;;\nINSERT INTO `form_field_translations` VALUES (44, 'EN', '[Current Residential Address]', '', '');;;\nINSERT INTO `form_field_translations` VALUES (44, 'ES', '[Current Residential Address]', '', '');;;\nINSERT INTO `form_field_translations` VALUES (44, 'KO', '[Current Residential Address]', '', '');;;\nINSERT INTO `form_field_translations` VALUES (44, 'PL', '[Current Residential Address]', '', '');;;\nINSERT INTO `form_field_translations` VALUES (45, 'CN', 'Street Address', '', '');;;\nINSERT INTO `form_field_translations` VALUES (45, 'EN', 'Street Address', '', '');;;\nINSERT INTO `form_field_translations` VALUES (45, 'ES', 'Street Address', '', '');;;\nINSERT INTO `form_field_translations` VALUES (45, 'KO', 'Street Address', '', '');;;\nINSERT INTO `form_field_translations` VALUES (45, 'PL', 'Street Address', '', '');;;\nINSERT INTO `form_field_translations` VALUES (46, 'CN', 'City / Town', 'was not filled in.', '');;;\nINSERT INTO `form_field_translations` VALUES (46, 'EN', 'City / Town', 'was not filled in.', '');;;\nINSERT INTO `form_field_translations` VALUES (46, 'ES', 'City / Town', 'was not filled in.', '');;;\nINSERT INTO `form_field_translations` VALUES (46, 'KO', 'City / Town', '', '');;;\nINSERT INTO `form_field_translations` VALUES (46, 'PL', 'City / Town', 'was not filled in.', '');;;\nINSERT INTO `form_field_translations` VALUES (47, 'CN', 'Province / State', '', '');;;\nINSERT INTO `form_field_translations` VALUES (47, 'EN', 'Province / State', 'Province', '');;;\nINSERT INTO `form_field_translations` VALUES (47, 'ES', 'Province / State', '', '');;;\nINSERT INTO `form_field_translations` VALUES (47, 'KO', 'Province / State', '', '');;;\nINSERT INTO `form_field_translations` VALUES (47, 'PL', 'Province / State', '', '');;;\nINSERT INTO `form_field_translations` VALUES (48, 'CN', 'Zip / Post Code', '', '');;;\nINSERT INTO `form_field_translations` VALUES (48, 'EN', 'Zip / Post Code', '', '');;;\nINSERT INTO `form_field_translations` VALUES (48, 'ES', 'Zip / Post Code', '', '');;;\nINSERT INTO `form_field_translations` VALUES (48, 'KO', 'Zip / Post Code', '', '');;;\nINSERT INTO `form_field_translations` VALUES (48, 'PL', 'Zip / Post Code', '', '');;;\nINSERT INTO `form_field_translations` VALUES (49, 'CN', 'Country (currently in)', 'was not filled in.', '');;;\nINSERT INTO `form_field_translations` VALUES (49, 'EN', 'Country (currently in)', 'was not filled in.', '');;;\nINSERT INTO `form_field_translations` VALUES (49, 'ES', 'Country (currently in)', 'was not filled in.', '');;;\nINSERT INTO `form_field_translations` VALUES (49, 'KO', 'Country (currently in)', '', '');;;\nINSERT INTO `form_field_translations` VALUES (49, 'PL', 'Country (currently in)', 'was not filled in.', '');;;\nINSERT INTO `form_field_translations` VALUES (50, 'CN', '[Education & Experience]', '', '');;;\nINSERT INTO `form_field_translations` VALUES (50, 'EN', '[Education & Experience]', '', '');;;\nINSERT INTO `form_field_translations` VALUES (50, 'ES', '[Education & Experience]', '', '');;;\nINSERT INTO `form_field_translations` VALUES (50, 'KO', '[Education & Experience]', '', '');;;\nINSERT INTO `form_field_translations` VALUES (50, 'PL', '[Education & Experience]', '', '');;;\nINSERT INTO `form_field_translations` VALUES (51, 'CN', 'Education Summary', '', '');;;\nINSERT INTO `form_field_translations` VALUES (51, 'EN', 'Education Summary', '', '');;;\nINSERT INTO `form_field_translations` VALUES (51, 'ES', 'Education Summary', '', '');;;\nINSERT INTO `form_field_translations` VALUES (51, 'KO', 'Education Summary', '', '');;;\nINSERT INTO `form_field_translations` VALUES (51, 'PL', 'Education Summary', '', '');;;\nINSERT INTO `form_field_translations` VALUES (52, 'CN', 'Work Experience', '', '');;;\nINSERT INTO `form_field_translations` VALUES (52, 'EN', 'Work Experience', '', '');;;\nINSERT INTO `form_field_translations` VALUES (52, 'ES', 'Work Experience', '', '');;;\nINSERT INTO `form_field_translations` VALUES (52, 'KO', 'Work Experience', '', '');;;\nINSERT INTO `form_field_translations` VALUES (52, 'PL', 'Work Experience', '', '');;;\nINSERT INTO `form_field_translations` VALUES (53, 'CN', '[Availability & Preferences]', '', '');;;\nINSERT INTO `form_field_translations` VALUES (53, 'EN', '[Availability & Preferences]', '', '');;;\nINSERT INTO `form_field_translations` VALUES (53, 'ES', '[Availability & Preferences]', '', '');;;\nINSERT INTO `form_field_translations` VALUES (53, 'KO', '[Availability & Preferences]', '', '');;;\nINSERT INTO `form_field_translations` VALUES (53, 'PL', '[Availability & Preferences]', '', '');;;\nINSERT INTO `form_field_translations` VALUES (54, 'CN', 'Available to Start', 'Date is invalid / incomplete.', '');;;\nINSERT INTO `form_field_translations` VALUES (54, 'EN', 'Available to Start', 'Date is invalid / incomplete.', '');;;\nINSERT INTO `form_field_translations` VALUES (54, 'ES', 'Available to Start', 'Date is invalid / incomplete.', '');;;\nINSERT INTO `form_field_translations` VALUES (54, 'KO', 'Available to Start', '', '');;;\nINSERT INTO `form_field_translations` VALUES (54, 'PL', 'Available to Start', 'Date is invalid / incomplete.', '');;;\nINSERT INTO `form_field_translations` VALUES (55, 'CN', 'Job Type', '', '');;;\nINSERT INTO `form_field_translations` VALUES (55, 'EN', 'Highest Education', '', '');;;\nINSERT INTO `form_field_translations` VALUES (55, 'ES', 'Job Type', '', '');;;\nINSERT INTO `form_field_translations` VALUES (55, 'KO', 'Job Type', '', '');;;\nINSERT INTO `form_field_translations` VALUES (55, 'PL', 'Job Type', '', '');;;\nINSERT INTO `form_field_translations` VALUES (57, 'CN', 'Salary Range', '', '');;;\nINSERT INTO `form_field_translations` VALUES (57, 'EN', 'Salary Range', '', '');;;\nINSERT INTO `form_field_translations` VALUES (57, 'ES', 'Salary Range', '', '');;;\nINSERT INTO `form_field_translations` VALUES (57, 'KO', 'Salary Range', '', '');;;\nINSERT INTO `form_field_translations` VALUES (57, 'PL', 'Salary Range', '', '');;;\nINSERT INTO `form_field_translations` VALUES (58, 'CN', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (58, 'EN', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (58, 'ES', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (58, 'KO', 'Notes / Self Introduction', '', '');;;\nINSERT INTO `form_field_translations` VALUES (58, 'PL', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (59, 'CN', 'Location Preference', '', '');;;\nINSERT INTO `form_field_translations` VALUES (59, 'EN', 'Location Preference', '', '');;;\nINSERT INTO `form_field_translations` VALUES (59, 'ES', 'Location Preference', '', '');;;\nINSERT INTO `form_field_translations` VALUES (59, 'KO', 'Location Preference', '', '');;;\nINSERT INTO `form_field_translations` VALUES (59, 'PL', 'Location Preference', '', '');;;\nINSERT INTO `form_field_translations` VALUES (60, 'CN', 'Positions Interested In?', '', '');;;\nINSERT INTO `form_field_translations` VALUES (60, 'EN', 'Positions Interested In?', '', '');;;\nINSERT INTO `form_field_translations` VALUES (60, 'ES', 'Positions Interested In?', '', '');;;\nINSERT INTO `form_field_translations` VALUES (60, 'KO', 'Positions Interested In?', '', '');;;\nINSERT INTO `form_field_translations` VALUES (60, 'PL', 'Positions Interested In?', '', '');;;\nINSERT INTO `form_field_translations` VALUES (63, 'CN', 'Additional Notes', '', '');;;\nINSERT INTO `form_field_translations` VALUES (63, 'EN', 'Additional Notes', '', '');;;\nINSERT INTO `form_field_translations` VALUES (63, 'ES', 'Additional Notes', '', '');;;\nINSERT INTO `form_field_translations` VALUES (63, 'KO', 'Additional Notes', '', '');;;\nINSERT INTO `form_field_translations` VALUES (63, 'PL', 'Additional Notes', '', '');;;\nINSERT INTO `form_field_translations` VALUES (65, 'CN', 'Business Name', 'was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (65, 'EN', 'Business Name', 'was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (65, 'ES', 'Business Name', '', '');;;\nINSERT INTO `form_field_translations` VALUES (65, 'KO', 'Business Name', '', '');;;\nINSERT INTO `form_field_translations` VALUES (65, 'PL', 'Business Name', 'was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (66, 'CN', 'Logo / Photo', '', '');;;\nINSERT INTO `form_field_translations` VALUES (66, 'EN', 'Logo / Photo', '', '');;;\nINSERT INTO `form_field_translations` VALUES (66, 'ES', 'Logo / Photo', '', '');;;\nINSERT INTO `form_field_translations` VALUES (66, 'KO', 'Logo / Photo', '', '');;;\nINSERT INTO `form_field_translations` VALUES (66, 'PL', 'Logo / Photo', '', '');;;\nINSERT INTO `form_field_translations` VALUES (67, 'CN', 'Your Business Type', '', '');;;\nINSERT INTO `form_field_translations` VALUES (67, 'EN', 'Your Business Type', '', '');;;\nINSERT INTO `form_field_translations` VALUES (67, 'ES', 'Your Business Type', '', '');;;\nINSERT INTO `form_field_translations` VALUES (67, 'KO', 'Your business', '', '');;;\nINSERT INTO `form_field_translations` VALUES (67, 'PL', 'Your Business Type', '', '');;;\nINSERT INTO `form_field_translations` VALUES (68, 'CN', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (68, 'EN', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (68, 'ES', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (68, 'KO', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (68, 'PL', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (69, 'CN', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (69, 'EN', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (69, 'ES', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (69, 'KO', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (69, 'PL', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (70, 'CN', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (70, 'EN', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (70, 'ES', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (70, 'KO', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (70, 'PL', '', '', '');;;\nINSERT INTO `form_field_translations` VALUES (71, 'CN', 'Contact Details', '', '');;;\nINSERT INTO `form_field_translations` VALUES (71, 'EN', 'Contact Details', '', '');;;\nINSERT INTO `form_field_translations` VALUES (71, 'ES', 'Contact Details', '', '');;;\nINSERT INTO `form_field_translations` VALUES (71, 'KO', 'Contact Details', '', '');;;\nINSERT INTO `form_field_translations` VALUES (71, 'PL', 'Contact Details', '', '');;;\nINSERT INTO `form_field_translations` VALUES (72, 'CN', 'Contact Name', 'was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (72, 'EN', 'Contact Name', 'was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (72, 'ES', 'Contact Name', '', '');;;\nINSERT INTO `form_field_translations` VALUES (72, 'KO', 'Contact Name', '', '');;;\nINSERT INTO `form_field_translations` VALUES (72, 'PL', 'Contact Name', 'was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (73, 'CN', 'Position (Director / Supervisor / etc)', '', '');;;\nINSERT INTO `form_field_translations` VALUES (73, 'EN', 'Position (Director / Supervisor / etc)', '', '');;;\nINSERT INTO `form_field_translations` VALUES (73, 'ES', 'Position (Director / Supervisor / etc)', '', '');;;\nINSERT INTO `form_field_translations` VALUES (73, 'KO', 'Position (Director / Supervisor / etc)', '', '');;;\nINSERT INTO `form_field_translations` VALUES (73, 'PL', 'Position (Director / Supervisor / etc)', '', '');;;\nINSERT INTO `form_field_translations` VALUES (74, 'CN', 'Website URL', '', '');;;\nINSERT INTO `form_field_translations` VALUES (74, 'EN', 'Website URL', '', '');;;\nINSERT INTO `form_field_translations` VALUES (74, 'ES', 'Website URL', '', '');;;\nINSERT INTO `form_field_translations` VALUES (74, 'KO', 'Website URL', '', '');;;\nINSERT INTO `form_field_translations` VALUES (74, 'PL', 'Website URL', '', '');;;\nINSERT INTO `form_field_translations` VALUES (75, 'CN', 'Email', 'was invalid', '');;;\nINSERT INTO `form_field_translations` VALUES (75, 'EN', 'Email', 'was invalid', '');;;\nINSERT INTO `form_field_translations` VALUES (75, 'ES', 'Email', '', '');;;\nINSERT INTO `form_field_translations` VALUES (75, 'KO', 'Email', '', '');;;\nINSERT INTO `form_field_translations` VALUES (75, 'PL', 'Email', 'was invalid', '');;;\nINSERT INTO `form_field_translations` VALUES (76, 'CN', 'Telephone', '', '');;;\nINSERT INTO `form_field_translations` VALUES (76, 'EN', 'Telephone', '', '');;;\nINSERT INTO `form_field_translations` VALUES (76, 'ES', 'Telephone', '', '');;;\nINSERT INTO `form_field_translations` VALUES (76, 'KO', 'Telephone', '', '');;;\nINSERT INTO `form_field_translations` VALUES (76, 'PL', 'Telephone', '', '');;;\nINSERT INTO `form_field_translations` VALUES (77, 'CN', 'Cell phone', '', '');;;\nINSERT INTO `form_field_translations` VALUES (77, 'EN', 'Cell phone', '', '');;;\nINSERT INTO `form_field_translations` VALUES (77, 'ES', 'Cell phone', '', '');;;\nINSERT INTO `form_field_translations` VALUES (77, 'KO', 'Cell phone', '', '');;;\nINSERT INTO `form_field_translations` VALUES (77, 'PL', 'Cell phone', '', '');;;\nINSERT INTO `form_field_translations` VALUES (78, 'CN', 'Office Address', '', '');;;\nINSERT INTO `form_field_translations` VALUES (78, 'EN', 'Office Address', '', '');;;\nINSERT INTO `form_field_translations` VALUES (78, 'ES', 'Office Address', '', '');;;\nINSERT INTO `form_field_translations` VALUES (78, 'KO', 'Office Address', '', '');;;\nINSERT INTO `form_field_translations` VALUES (78, 'PL', 'Office Address', '', '');;;\nINSERT INTO `form_field_translations` VALUES (79, 'CN', 'Street Address', '', '');;;\nINSERT INTO `form_field_translations` VALUES (79, 'EN', 'Street Address', '', '');;;\nINSERT INTO `form_field_translations` VALUES (79, 'ES', 'Street Address', '', '');;;\nINSERT INTO `form_field_translations` VALUES (79, 'KO', 'Street Address', '', '');;;\nINSERT INTO `form_field_translations` VALUES (79, 'PL', 'Street Address', '', '');;;\nINSERT INTO `form_field_translations` VALUES (80, 'CN', 'City / Town', 'was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (80, 'EN', 'City / Town', 'was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (80, 'ES', 'City / Town', '', '');;;\nINSERT INTO `form_field_translations` VALUES (80, 'KO', 'City', '', '');;;\nINSERT INTO `form_field_translations` VALUES (80, 'PL', 'City / Town', 'was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (81, 'CN', 'Province/ State', '', '');;;\nINSERT INTO `form_field_translations` VALUES (81, 'EN', 'Province/ State', '', '');;;\nINSERT INTO `form_field_translations` VALUES (81, 'ES', 'Province/ State', '', '');;;\nINSERT INTO `form_field_translations` VALUES (81, 'KO', 'Province/ State', '', '');;;\nINSERT INTO `form_field_translations` VALUES (81, 'PL', 'Province/ State', '', '');;;\nINSERT INTO `form_field_translations` VALUES (82, 'CN', 'ZIP / Post Code', '', '');;;\nINSERT INTO `form_field_translations` VALUES (82, 'EN', 'ZIP / Post Code', '', '');;;\nINSERT INTO `form_field_translations` VALUES (82, 'ES', 'ZIP / Post Code', '', '');;;\nINSERT INTO `form_field_translations` VALUES (82, 'KO', 'ZIP / Post Code', '', '');;;\nINSERT INTO `form_field_translations` VALUES (82, 'PL', 'ZIP / Post Code', '', '');;;\nINSERT INTO `form_field_translations` VALUES (83, 'CN', 'Country', 'was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (83, 'EN', 'Country', 'was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (83, 'ES', 'Country', '', '');;;\nINSERT INTO `form_field_translations` VALUES (83, 'KO', 'Country', '', '');;;\nINSERT INTO `form_field_translations` VALUES (83, 'PL', 'Country', 'was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (84, 'CN', 'About', '', '');;;\nINSERT INTO `form_field_translations` VALUES (84, 'EN', 'About', '', '');;;\nINSERT INTO `form_field_translations` VALUES (84, 'ES', 'About', '', '');;;\nINSERT INTO `form_field_translations` VALUES (84, 'KO', 'About', '', '');;;\nINSERT INTO `form_field_translations` VALUES (84, 'PL', 'About', '', '');;;\nINSERT INTO `form_field_translations` VALUES (85, 'CN', 'Write a short introduction about your organisation / Include details about your business', '', '');;;\nINSERT INTO `form_field_translations` VALUES (85, 'EN', 'Write a short introduction about your organisation / Include details about your business', '', '');;;\nINSERT INTO `form_field_translations` VALUES (85, 'ES', 'Write a short introduction about your organisation / Include details about your business', '', '');;;\nINSERT INTO `form_field_translations` VALUES (85, 'KO', 'Write a short introduction about your organisation. Include details about your business', '', '');;;\nINSERT INTO `form_field_translations` VALUES (85, 'PL', 'Write a short introduction about your organisation / Include details about your business', '', '');;;\nINSERT INTO `form_field_translations` VALUES (86, 'CN', 'About', '', '');;;\nINSERT INTO `form_field_translations` VALUES (86, 'EN', 'About', '', '');;;\nINSERT INTO `form_field_translations` VALUES (86, 'ES', 'About', '', '');;;\nINSERT INTO `form_field_translations` VALUES (86, 'KO', 'About', '', '');;;\nINSERT INTO `form_field_translations` VALUES (86, 'PL', 'About', '', '');;;\nINSERT INTO `form_field_translations` VALUES (89, 'CN', 'Candidate Details', 'error msg', '');;;\nINSERT INTO `form_field_translations` VALUES (89, 'EN', 'Candidate Details', 'error msg', '');;;\nINSERT INTO `form_field_translations` VALUES (89, 'ES', 'Candidate Details', 'error msg', '');;;\nINSERT INTO `form_field_translations` VALUES (89, 'KO', 'Candidate Details', 'error msg', '');;;\nINSERT INTO `form_field_translations` VALUES (89, 'PL', 'Candidate Details', 'error msg', '');;;\nINSERT INTO `form_field_translations` VALUES (90, 'CN', 'file', '', '');;;\nINSERT INTO `form_field_translations` VALUES (90, 'EN', 'file', '', '');;;\nINSERT INTO `form_field_translations` VALUES (90, 'ES', 'file', '', '');;;\nINSERT INTO `form_field_translations` VALUES (90, 'KO', 'file', '', '');;;\nINSERT INTO `form_field_translations` VALUES (90, 'PL', 'file', '', '');;;\nINSERT INTO `form_field_translations` VALUES (91, 'CN', 'upload resume', '', '');;;\nINSERT INTO `form_field_translations` VALUES (91, 'EN', 'upload resume', '', '');;;\nINSERT INTO `form_field_translations` VALUES (91, 'ES', 'upload resume', '', '');;;\nINSERT INTO `form_field_translations` VALUES (91, 'KO', 'upload resume', '', '');;;\nINSERT INTO `form_field_translations` VALUES (91, 'PL', 'upload resume', '', '');;;\n\n\n\nCREATE TABLE `form_fields` (\n  `form_id` int(11) NOT NULL default '0',\n  `field_id` int(11) NOT NULL auto_increment,\n  `section` tinyint(4) NOT NULL default '1',\n  `reg_expr` varchar(255) NOT NULL default '',\n  `field_label` varchar(255) NOT NULL default '-noname-',\n  `field_type` varchar(255) NOT NULL default 'TEXT',\n  `field_sort` tinyint(4) NOT NULL default '0',\n  `is_required` set('Y','N') NOT NULL default 'N',\n  `display_in_list` set('Y','N') NOT NULL default 'N',\n  `is_in_search` set('Y','N') NOT NULL default 'N',\n  `error_message` varchar(255) NOT NULL default '',\n  `field_init` varchar(255) NOT NULL default '',\n  `field_width` smallint(6) NOT NULL default '20',\n  `field_height` smallint(6) NOT NULL default '0',\n  `list_sort_order` smallint(6) NOT NULL default '0',\n  `search_sort_order` tinyint(4) NOT NULL default '0',\n  `template_tag` varchar(255) NOT NULL default '',\n  `is_hidden` char(1) NOT NULL default '',\n  `is_anon` char(1) NOT NULL default '',\n  `field_comment` text NOT NULL,\n  `category_init_id` int(11) NOT NULL default '0',\n  `is_cat_multiple` set('Y','N') NOT NULL default 'N',\n  `cat_multiple_rows` tinyint(4) NOT NULL default '1',\n  `is_blocked` char(1) NOT NULL default 'N',\n  `multiple_sel_all` char(1) NOT NULL default 'N',\n  `is_prefill` char(1) NOT NULL default 'N',\n\t`is_member` char(1) NOT NULL default 'N',\n  PRIMARY KEY  (`field_id`)\n)  AUTO_INCREMENT=92 ;;;\n\n \n\nINSERT INTO `form_fields` VALUES (1, 2, 1, 'not_empty', 'Job Title', 'TEXT', 1, 'Y', '', 'Y', 'was not filled in', '', 60, 0, 0, 1, 'TITLE', '', '', '(enter a descriptive title for your ad)', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (1, 3, 1, '', 'Job Details', 'SEPERATOR', 2, '', '', '', '', '', 0, 0, 0, 0, '', '', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (1, 5, 3, 'not_empty', 'Description', 'EDITOR', 5, 'Y', 'Y', 'Y', 'was not filled in', '', 62, 22, 4, 3, 'DESCRIPTION', 'Y', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (1, 6, 3, 'not_empty', 'Classification', 'CATEGORY', 4, 'Y', '', '', 'Was not selected', '23', 20, 0, 0, 0, 'CLASS', '', '', '(Posts in the wrong category will be removed)', 23, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (1, 7, 2, '', 'Start Date', 'TEXT', 3, '', '', '', '', '', 20, 0, 0, 0, 'START_DATE', '', '', '', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (1, 8, 2, 'not_empty', 'Posted By', 'TEXT', 1, 'Y', '', '', 'was not filled in', '', 30, 0, 0, 0, 'POSTED_BY', '', '', '(Your business or company name)', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (1, 9, 2, '', 'Job Function', 'TEXT', 2, '', '', '', '', '', 20, 0, 0, 0, 'JOB_FUNCTION', '', '', 'eg. teacher, nurse, sales manager etc.', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (1, 10, 2, '', 'Salary', 'TEXT', 4, '', '', '', '', '', 20, 0, 0, 0, 'SALARY', '', '', '', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (1, 11, 2, '', 'Cell Phone', 'TEXT', 5, '', '', '', '', '', 20, 0, 0, 0, 'CELL_PHONE', '', '', '', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (1, 12, 2, 'email', 'Email', 'TEXT', 6, 'Y', 'Y', '', 'was invalid.', '', 30, 0, 0, 0, 'EMAIL', '', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (1, 13, 3, 'not_empty', 'Location', 'CATEGORY', 2, 'Y', '', '', 'Was not filled in', '1', 20, 0, 0, 0, 'LOCATION_CAT', '', '', '', 1, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (1, 14, 3, 'not_empty', 'Job Type', 'CATEGORY', 3, 'Y', '', 'Y', 'Was not filled in', '20', 0, 0, 0, 3, 'JOB_TYPE', '', '', '', 20, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (1, 15, 2, 'not_empty', 'Location', 'TEXT', 7, 'Y', '', 'Y', 'was not filled in', '', 0, 0, 0, 2, 'LOCATION', '', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (1, 16, 2, '', '', 'BLANK', 8, '', '', '', '', '', 0, 0, 0, 0, '', '', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (1, 17, 2, '', '', 'BLANK', 9, '', '', '', '', '', 0, 0, 0, 0, '', '', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (1, 19, 2, '', '', 'BLANK', 11, '', '', '', '', '', 0, 0, 0, 0, '', '', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (1, 20, 2, '', '', 'BLANK', 12, '', '', '', '', '', 0, 0, 0, 0, '', '', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (1, 21, 2, '', '', 'BLANK', 13, '', '', '', '', '', 0, 0, 0, 0, '', '', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (1, 22, 2, '', '', 'BLANK', 14, '', '', '', '', '', 0, 0, 0, 0, '', '', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (1, 23, 2, '', '', 'BLANK', 15, '', '', '', '', '', 0, 0, 0, 0, '', '', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (1, 24, 2, '', '', 'BLANK', 16, '', '', '', '', '', 0, 0, 0, 0, '', '', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (1, 25, 2, '', '', 'BLANK', 17, '', '', '', '', '', 0, 0, 0, 0, '', '', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (1, 28, 2, '', '', 'BLANK', 18, '', '', '', '', '', 0, 0, 0, 0, '', '', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (1, 32, 2, '', 'Deadline', 'DATE', 10, '', '', '', '', '', 0, 0, 0, 0, 'DEADLINE', '', '', '(enter full year: yyyy)', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (1, 34, 3, '', 'Category', 'SEPERATOR', 1, '', '', '', '', '', 0, 0, 0, 0, '', '', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (2, 36, 1, 'not_empty', 'Name', 'TEXT', 2, 'Y', '', '', 'was not filled in', '', 30, 0, 0, 0, 'RESUME_NAME', '', 'Y', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (2, 37, 3, 'not_empty', 'Work Experience', 'SELECT', 11, 'Y', 'Y', '', 'was not filled in.', '', 0, 0, 0, 0, 'WORK_EXP_YEARS', '', '', '', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (2, 38, 1, '', 'D.O.B.', 'DATE', 3, '', '', '', 'is blank', '', 0, 0, 0, 0, 'DOB', '', '', '', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (2, 39, 1, 'not_empty', 'Nationality', 'TEXT', 4, 'Y', 'Y', 'Y', 'was not filled in.', '', 0, 0, 0, 2, 'NATIONALITY', '', '', '', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (2, 40, 1, '', 'Email', 'TEXT', 5, '', '', '', '', '', 0, 0, 0, 0, 'RESUME_EMAIL', '', 'Y', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (2, 41, 1, '', 'Cell Phone No.', 'TEXT', 6, '', '', '', '', '', 0, 0, 0, 0, 'CELL_PHONE', '', 'Y', '', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (2, 42, 2, '', 'Photo', 'IMAGE', 2, '', '', '', '', '', 0, 0, 0, 0, 'IMAGE', '', 'Y', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (2, 43, 1, '', 'Telephone', 'TEXT', 7, '', '', '', '', '', 0, 0, 0, 0, 'TELEPHONE', '', 'Y', '', 34, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (2, 44, 3, '', '[Current Residential Address]', 'SEPERATOR', 1, '', '', '', '', '', 0, 0, 0, 0, 'CRADDR', '', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (2, 45, 3, '', 'Street Address', 'TEXTAREA', 2, '', '', '', '', '', 30, 2, 0, 0, 'STREET_ADDR', '', '', '', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (2, 46, 3, 'not_empty', 'City / Town', 'TEXT', 3, 'Y', '', '', 'was not filled in.', '', 0, 0, 0, 0, 'CITY_OR_TOWN', '', '', '', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (2, 47, 3, '', 'Province / State', 'TEXT', 4, '', '', '', 'Province', '', 0, 0, 0, 0, 'Province', '', '', '', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (2, 48, 3, '', 'Zip / Post Code', 'TEXT', 5, '', '', '', '', '', 0, 0, 0, 0, 'ZIP_CODE', '', '', '', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (2, 49, 3, 'not_empty', 'Country (currently in)', 'TEXT', 6, 'Y', '', 'Y', 'was not filled in.', '', 0, 0, 0, 6, 'CURRENT_COUNTRY', '', '', '', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (2, 50, 3, '', '[Education & Experience]', 'SEPERATOR', 7, '', '', '', '', '', 0, 0, 0, 0, '', '', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (2, 51, 3, '', 'Education Summary', 'TEXTAREA', 9, '', '', 'Y', '', '', 40, 8, 0, 4, 'EDUCATION_SUM', '', '', '', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (2, 52, 3, '', 'Work Experience', 'TEXTAREA', 10, '', '', '', '', '', 40, 8, 0, 0, 'EXPR', '', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (2, 53, 3, '', '[Availability & Preferences]', 'SEPERATOR', 12, '', '', '', '', '', 0, 0, 0, 0, '', '', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (2, 54, 3, 'not_empty', 'Available to Start', 'DATE', 13, 'Y', 'Y', 'Y', 'Date is invalid / incomplete.', '', 0, 0, 0, 5, 'AVAIL_TO_START', '', '', '', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (2, 55, 3, 'not_empty', 'Highest Education', 'SELECT', 8, '', 'Y', 'Y', '', '20', 0, 0, 0, 3, 'HIGHEST_EDU', '', '', '', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (2, 57, 3, '', 'Salary Range', 'TEXT', 14, '', '', '', '', '', 0, 0, 0, 0, 'SALARY', '', '', '', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (2, 58, 3, '', '', 'TEXTAREA', 18, '', '', '', '', '', 40, 8, 0, 0, 'RESUME_NOTES', '', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (2, 59, 3, '', 'Location Preference', 'TEXTAREA', 15, '', '', '', '', '', 35, 3, 0, 0, 'LOCATION_PREF', '', '', '', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (2, 60, 3, '', 'Positions Interested In?', 'TEXTAREA', 16, '', '', '', '', '', 35, 3, 0, 0, 'POS_INTERESTED', '', '', '', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (2, 63, 3, '', 'Additional Notes', 'SEPERATOR', 17, '', '', '', '', '', 0, 0, 0, 0, '', '', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (3, 65, 1, 'not_empty', 'Business Name', 'TEXT', 1, 'Y', 'Y', 'Y', 'was not filled in', '', 40, 0, 0, 0, 'PROFILE_BNAME', '', '', '', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (3, 66, 2, '', 'Logo / Photo', 'IMAGE', 1, '', '', '', '', '', 0, 0, 0, 0, 'LOGO', '', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (3, 67, 1, 'not_empty', 'Your Business Type', 'RADIO', 2, '', 'Y', '', '', '', 0, 0, 0, 0, 'PROFILE_BTYPE', '', '', '', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (3, 68, 1, '', '', 'BLANK', 3, '', '', '', '', '', 0, 0, 0, 0, '', '', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (3, 69, 1, '', '', 'BLANK', 4, '', '', '', '', '', 0, 0, 0, 0, '', '', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (3, 70, 1, '', '', 'BLANK', 5, '', '', '', '', '', 0, 0, 0, 0, '', '', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (3, 71, 3, '', 'Contact Details', 'SEPERATOR', 1, '', '', '', '', '', 0, 0, 0, 0, '', '', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (3, 72, 3, 'not_empty', 'Contact Name', 'TEXT', 2, 'Y', 'Y', 'Y', 'was not filled in', '', 40, 0, 0, 0, 'PROFILE_CNAME', '', '', '', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (3, 73, 3, '', 'Position (Director / Supervisor / etc)', 'TEXT', 3, '', '', '', '', '', 40, 0, 0, 0, 'PROFILE_POS', '', '', '', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (3, 74, 3, 'not_empty', 'Website URL', 'TEXT', 4, '', 'Y', '', '', '', 40, 0, 0, 0, 'PROFILE_WEBURL', '', '', '', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (3, 75, 3, 'email', 'Email', 'TEXT', 5, 'Y', 'Y', 'Y', 'was invalid', '', 40, 0, 0, 0, 'PROFILE_EMAIL', '', '', '', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (3, 76, 3, '', 'Telephone', 'TEXT', 6, '', '', '', '', '', 40, 0, 0, 0, 'PROFILE_TEL', '', '', '', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (3, 77, 3, '', 'Cell phone', 'TEXT', 7, '', '', '', '', '', 40, 0, 0, 0, 'PROFILE_CELL', '', '', '', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (3, 78, 3, '', 'Office Address', 'SEPERATOR', 8, '', '', '', '', '', 0, 0, 0, 0, '', '', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (3, 79, 3, '', 'Street Address', 'TEXTAREA', 9, '', '', '', '', '', 30, 2, 0, 0, 'PROFILE_ADDR', '', '', '', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (3, 80, 3, 'not_empty', 'City / Town', 'TEXT', 10, 'Y', '', '', 'was not filled in', '', 40, 0, 0, 0, 'PROFILE_CITY', '', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (3, 81, 3, '', 'Province/ State', 'TEXT', 11, '', '', '', '', '', 40, 0, 0, 0, 'PROFILE_STATE', '', '', '', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (3, 82, 3, '', 'ZIP / Post Code', 'TEXT', 12, '', '', '', '', '', 6, 0, 0, 0, 'PROFILE_ZIP', '', '', '', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (3, 83, 3, 'not_empty', 'Country', 'TEXT', 13, 'Y', 'Y', 'Y', 'was not filled in', '', 40, 0, 0, 0, 'PROFILE_COUNTRY', '', '', '', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (3, 84, 3, '', 'About', 'SEPERATOR', 14, '', '', '', '', '', 0, 0, 0, 0, '', '', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (3, 85, 3, '', 'Write a short introduction about your organisation / Include details about your business', 'NOTE', 15, '', '', '', '', '', 0, 0, 0, 0, '', '', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (3, 86, 3, '', 'About', 'TEXTAREA', 16, '', '', '', '', '', 55, 10, 0, 0, 'PROFILE_ABOUT', '', '', '', 0, '', 1, '', '', '', 'N');;;\nINSERT INTO `form_fields` VALUES (2, 89, 1, '', 'Candidate Details', 'SEPERATOR', 1, '', '', '', 'error msg', '', 0, 0, 0, 0, 'DETAIL', '', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (3, 90, 3, '', 'file', 'FILE', 17, '', '', '', '', '', 0, 0, 0, 0, 'TEST', '', '', '', 0, 'N', 1, 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_fields` VALUES (2, 91, 2, '', 'upload resume', 'FILE', 1, '', '', '', '', '', 0, 0, 0, 0, 'resume_file', '', '', '', 0, '', 0, '', '', 'N', 'N');;;\n\n\n\n\nCREATE TABLE `form_lists` (\n  `form_id` int(11) NOT NULL default '0',\n  `field_type` varchar(255) NOT NULL default '',\n  `sort_order` int(11) NOT NULL default '0',\n  `field_id` varchar(255) NOT NULL default '0',\n  `template_tag` varchar(255) NOT NULL default '',\n  `column_id` int(11) NOT NULL auto_increment,\n  `admin` set('Y','N') NOT NULL default '',\n  `truncate_length` smallint(4) NOT NULL default '0',\n  `linked` set('Y','N') NOT NULL default 'N',\n  `clean_format` set('Y','N') NOT NULL default '',\n  `is_bold` set('Y','N') NOT NULL default '',\n  `is_sortable` set('Y','N') NOT NULL default 'N',\n  `no_wrap` set('Y','N') NOT NULL default '',\n  PRIMARY KEY  (`column_id`)\n)  AUTO_INCREMENT=43 ;;;\n\n\n\nINSERT INTO `form_lists` VALUES (2, 'TEXT', 2, '36', 'RESUME_NAME', 5, 'N', 0, 'Y', '', '', 'Y', '');;;\nINSERT INTO `form_lists` VALUES (2, 'TIME', 1, 'resume_date', 'DATE', 6, '', 0, 'N', '', '', 'Y', '');;;\nINSERT INTO `form_lists` VALUES (2, 'TEXT', 3, '48', 'ZIP_CODE', 7, 'N', 0, 'Y', 'N', 'N', 'Y', 'N');;;\nINSERT INTO `form_lists` VALUES (2, 'TEXT', 4, '46', 'CITY_OR_TOWN', 8, 'N', 0, 'N', 'N', 'N', 'Y', 'N');;;\nINSERT INTO `form_lists` VALUES (2, 'TEXTAREA', 8, '59', 'LOCATION_PREF', 9, 'N', 15, 'N', 'N', 'N', 'Y', 'N');;;\nINSERT INTO `form_lists` VALUES (2, 'SELECT', 6, '37', 'WORK_EXP_YEARS', 10, 'N', 4, 'N', 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_lists` VALUES (2, 'TEXT', 8, 'hits', 'RES_HITS', 11, 'N', 0, 'N', 'N', 'N', 'N', 'Y');;;\nINSERT INTO `form_lists` VALUES (2, 'SELECT', 7, '55', 'HIGHEST_EDU', 12, 'Y', 8, 'N', 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_lists` VALUES (1, 'TIME', 1, 'post_date', 'DATE', 13, 'N', 0, 'N', 'N', 'N', 'N', 'Y');;;\nINSERT INTO `form_lists` VALUES (1, 'TEXT', 2, 'summary', 'POST_SUMMARY', 14, 'N', 0, 'N', 'N', 'N', 'N', '');;;\nINSERT INTO `form_lists` VALUES (1, 'TEXT', 3, '15', 'LOCATION', 15, 'N', 0, 'N', 'Y', 'Y', 'N', 'N');;;\nINSERT INTO `form_lists` VALUES (1, 'TEXT', 4, 'hits', 'HITS', 16, 'Y', 0, 'N', 'N', '', 'N', '');;;\nINSERT INTO `form_lists` VALUES (4, 'TEXT', 1, 'login_count', 'LCOUNT', 17, 'N', 0, '', 'N', 'N', 'Y', 'Y');;;\nINSERT INTO `form_lists` VALUES (4, 'TEXT', 2, 'Name', 'NAME', 18, 'N', 0, '', 'N', 'N', 'Y', 'Y');;;\nINSERT INTO `form_lists` VALUES (4, 'TEXT', 3, 'Username', 'USERNAME', 19, 'N', 0, '', 'N', 'N', 'Y', 'Y');;;\nINSERT INTO `form_lists` VALUES (4, 'TEXT', 4, 'Email', 'EMAIL', 20, 'N', 0, '', 'N', 'N', 'Y', 'Y');;;\nINSERT INTO `form_lists` VALUES (4, 'TEXT', 5, 'CompName', 'CNAME', 21, 'N', 0, 'Y,N', 'N', 'N', 'Y', 'Y');;;\nINSERT INTO `form_lists` VALUES (4, 'TEXT', 6, 'posts', 'POSTS', 22, 'N', 0, '', 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_lists` VALUES (4, 'TEXT', 7, 'Newsletter', 'NEWS', 23, 'N', 0, '', 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_lists` VALUES (4, 'TEXT', 8, 'Notification1', 'ALERTS', 24, 'N', 0, '', 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_lists` VALUES (4, 'TIME', 9, 'SignupDate', 'DATE', 25, 'N', 0, '', 'N', 'N', 'Y', 'Y');;;\nINSERT INTO `form_lists` VALUES (4, 'TEXT', 10, 'IP', 'IP', 26, 'N', 0, '', 'N', 'N', 'Y', 'Y');;;\nINSERT INTO `form_lists` VALUES (5, 'TEXT', 1, 'login_count', 'LCOUNT', 27, 'N', 0, '', 'N', 'N', 'Y', 'Y');;;\nINSERT INTO `form_lists` VALUES (5, 'TEXT', 2, 'Name', 'NAME', 28, 'N', 0, '', 'N', 'N', 'Y', 'Y');;;\nINSERT INTO `form_lists` VALUES (5, 'TEXT', 3, 'Username', 'USERNAME', 29, 'N', 0, '', 'N', 'N', 'Y', 'Y');;;\nINSERT INTO `form_lists` VALUES (5, 'TEXT', 4, 'Email', 'EMAIL', 30, 'N', 0, '', 'N', 'N', 'Y', 'Y');;;\nINSERT INTO `form_lists` VALUES (5, 'TEXT', 5, 'Newsletter', 'NEWS', 31, 'N', 0, '', 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_lists` VALUES (5, 'TEXT', 6, 'Notification1', 'ALERTS', 32, 'N', 0, '', 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_lists` VALUES (5, 'TEXT', 7, 'resume_id', 'RESUME_ID', 33, 'N', 0, '', 'N', 'N', 'N', 'N');;;\nINSERT INTO `form_lists` VALUES (5, 'TIME', 8, 'SignupDate', 'DATE', 34, 'N', 0, '', 'N', 'N', 'Y', 'Y');;;\nINSERT INTO `form_lists` VALUES (5, 'TEXT', 9, 'IP', 'IP', 35, 'N', 0, '', 'N', 'N', 'Y', 'Y');;;\nINSERT INTO `form_lists` VALUES (3, 'TEXT', 1, '65', 'PROFILE_BNAME', 37, 'Y', 0, '', 'N', 'N', 'Y', 'Y');;;\nINSERT INTO `form_lists` VALUES (3, 'RADIO', 2, '67', 'PROFILE_BTYPE', 38, 'N', 0, '', 'N', 'N', 'Y', 'Y');;;\nINSERT INTO `form_lists` VALUES (3, 'TEXT', 3, '72', 'PROFILE_CNAME', 39, 'N', 0, '', 'N', 'N', 'Y', 'Y');;;\nINSERT INTO `form_lists` VALUES (3, 'TEXT', 4, '83', 'PROFILE_COUNTRY', 40, 'N', 0, '', 'N', 'N', 'Y', 'Y');;;\nINSERT INTO `form_lists` VALUES (3, 'TEXT', 5, '75', 'PROFILE_EMAIL', 41, 'N', 0, '', 'N', 'N', 'Y', 'Y');;;\nINSERT INTO `form_lists` VALUES (3, 'TEXT', 6, '74', 'PROFILE_WEBURL', 42, 'N', 0, '', 'N', 'N', 'Y', 'Y');;;\n\n\n\nCREATE TABLE `jb_sessions` (\n  `session_id` varchar(255) NOT NULL default '',\n  `last_request_time` datetime NOT NULL default '0000-00-00 00:00:00',\n  `domain` set('EMPLOYER','CANDIDATE') NOT NULL default '',\n  `id` int(11) NOT NULL default '0',\n  `remote_addr` varchar(255) NOT NULL default '',\n  `http_referer` varchar(255) NOT NULL default '',\n  `entry_point` varchar(255) NOT NULL default '',\n  `user_agent` varchar(255) NOT NULL default '',\n\n  PRIMARY KEY  (`session_id`)\n) ;;;\n\n\n\nINSERT INTO `jb_sessions` VALUES ('04a073480bd0e242d6a896b1490ee5aa', '2006-04-14 13:49:53', 'EMPLOYER', 1, '127.0.0.1', '', '', 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) count:235');;;\n\n\n\nCREATE TABLE `jb_variables` (\n  `key` varchar(255) NOT NULL default '',\n  `val` varchar(255) NOT NULL default '',\n  PRIMARY KEY  (`key`)\n) ;;;\n\n\n\nINSERT INTO `jb_variables` VALUES ('HOUSEKEEP_RUNNING', 'NO');;;\nINSERT INTO `jb_variables` VALUES ('LAST_HOUSEKEEP_RUN', '1145022065');;;\nINSERT INTO `jb_variables` VALUES ('MAIL_QUEUE_RUNNING', 'NO');;;\nINSERT INTO `jb_variables` VALUES ('JB_VERSION', '3.6.11');;;\nINSERT INTO `jb_variables` VALUES ('ACT_RESUME_COUNT', '1');;;\nINSERT INTO `jb_variables` VALUES ('RESUME_COUNT', '1');;;\n\nINSERT INTO `jb_variables` VALUES ('EMPLOYER_COUNT', '1');;;\nINSERT INTO `jb_variables` VALUES ('USER_COUNT', '1');;;\nINSERT INTO `jb_variables` VALUES ('POST_COUNT_AP', '1');;;\n\nCREATE TABLE `lang` (\n  `lang_code` char(2) NOT NULL default '',\n  `lang_filename` varchar(32) NOT NULL default '',\n  `lang_image` varchar(32) NOT NULL default '',\n  `is_active` set('Y','N') NOT NULL default '',\n  `name` varchar(32) NOT NULL default '',\n  `charset` varchar(32) NOT NULL default '',\n  `image_data` text NOT NULL,\n  `mime_type` varchar(255) NOT NULL default '',\n  `is_default` char(1) NOT NULL default 'N',\n  `theme` varchar(32) NOT NULL default 'default',\n  `fckeditor_lang` VARCHAR(10) NOT NULL default 'en.js',\n  PRIMARY KEY  (`lang_code`)\n) ;;;\n\n\nINSERT INTO `lang` VALUES ('CN', 'chinese.php', 'chinese.gif', 'N', 'Chinese', '', 'R0lGODlhGgASAPcAAAAAAAAAQAAAgAAA/wAgAAAgQAAggAAg/wBAAABAQABAgABA/wBgAABgQABggABg/wCAAACAQACAgACA/wCgAACgQACggACg/wDAAADAQADAgADA/wD/AAD/QAD/gAD//yAAACAAQCAAgCAA/yAgACAgQCAggCAg/yBAACBAQCBAgCBA/yBgACBgQCBggCBg/yCAACCAQCCAgCCA/yCgACCgQCCggCCg/yDAACDAQCDAgCDA/yD/ACD/QCD/gCD//0AAAEAAQEAAgEAA/0AgAEAgQEAggEAg/0BAAEBAQEBAgEBA/0BgAEBgQEBggEBg/0CAAECAQECAgECA/0CgAECgQECggECg/0DAAEDAQEDAgEDA/0D/AED/QED/gED//2AAAGAAQGAAgGAA/2AgAGAgQGAggGAg/2BAAGBAQGBAgGBA/2BgAGBgQGBggGBg/2CAAGCAQGCAgGCA/2CgAGCgQGCggGCg/2DAAGDAQGDAgGDA/2D/AGD/QGD/gGD//4AAAIAAQIAAgIAA/4AgAIAgQIAggIAg/4BAAIBAQIBAgIBA/4BgAIBgQIBggIBg/4CAAICAQICAgICA/4CgAICgQICggICg/4DAAIDAQIDAgIDA/4D/AID/QID/gID//6AAAKAAQKAAgKAA/6AgAKAgQKAggKAg/6BAAKBAQKBAgKBA/6BgAKBgQKBggKBg/6CAAKCAQKCAgKCA/6CgAKCgQKCggKCg/6DAAKDAQKDAgKDA/6D/AKD/QKD/gKD//8AAAMAAQMAAgMAA/8AgAMAgQMAggMAg/8BAAMBAQMBAgMBA/8BgAMBgQMBggMBg/8CAAMCAQMCAgMCA/8CgAMCgQMCggMCg/8DAAMDAQMDAgMDA/8D/AMD/QMD/gMD///8AAP8AQP8AgP8A//8gAP8gQP8ggP8g//9AAP9AQP9AgP9A//9gAP9gQP9ggP9g//+AAP+AQP+AgP+A//+gAP+gQP+ggP+g///AAP/AQP/AgP/A////AP//QP//gP///ywAAAAAGgASAAAIVAABCBxIsKBBg+ASKlzIsKFCgQ4jSoSokB84ixIdUrzIMaNGAAv5YfTIcCPGkSQTbkwZcSXLhi5fLowpUyXImjBv4pypc6dNnzyBPuzp86DRowMDAgA7', 'image/gif', 'N', 'default', 'zh-cn');;;\nINSERT INTO `lang` VALUES ('EN', 'english.php', 'english.gif', 'Y', 'English', '', 'R0lGODlhGQARAMQAAAURdBYscgNNfrUOEMkMBdAqE9UTMtItONNUO9w4SdxmaNuObhYuh0Y5lCxVlFJcpqN2ouhfjLCrrOeRmeHKr/Wy3Lje4dPW3PDTz9/q0vXm1ffP7MLt5/f0+AAAAAAAACwAAAAAGQARAAAF02AAMIDDkOgwEF3gukCZIICI1jhFDRmOS4dF50aMVSqEjehFIWQ2kJLUMRoxCCsNzDFBZDCuh1RMpQY6HZYIiOlIYqKy9JZIqHeZTqMWnvoZCgosCkIXDoeIAGJkfmgEB3UHkgp1dYuKVWJXWCsEnp4qAwUcpBwWphapFhoanJ+vKxOysxMRgbcDHRlfeboZF2mvwp+5Eh07YC9naMzNzLmKuggTDy8G19jZ2NAiFB0LBxYuC+TlC7Syai8QGU0TAs7xaNxLDLoDdsPDuS98ABXfQgAAOw==', 'image/gif', 'Y', 'default', 'en');;;\nINSERT INTO `lang` VALUES ('ES', 'spanish.php', 'espanol.gif', 'N', 'Spanish', 'R0lGODlhKgAOAPcAAP///7+/v39/fwAA', 'R0lGODlhGgARAMQAAIaokuTkYk5kgszMaeNpAPT0AWlKAKyXCVpriM5TBOEYA+nqLp+UJuIIARUzXaMeBf8AAM+JB9RIAedDP+FbXp88AMu1v6usH///AOiKAN/cCs3MxQAAAAAAAAAAAAAAACH5BAAAAAAALAAAAAAaABEAAAVFICSOZGmeaKqubNticCzPdE1fmq3TUJIwu+CB8BgsDEHdoAGxBDZJm0LimESgUdog06gQsFkZogCgYAThtM7Fbrvf8FIIADs=', 'image/gif', 'N', 'default', 'es');;;\nINSERT INTO `lang` VALUES ('KO', 'korean.php', 'korean.jpg', 'N', 'Korean', '', '/9j/4AAQSkZJRgABAQEASABIAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCAASABoDAREAAhEBAxEB/8QAGQAAAgMBAAAAAAAAAAAAAAAAAwgEBQYC/8QALhAAAQMDAgQFAgcAAAAAAAAAAQIDBAUGEQAhBxIWMRMyQVFhFSI3VnWBlbPS/8QAGQEBAAMBAQAAAAAAAAAAAAAAAAEEBQID/8QAIREAAgICAQQDAAAAAAAAAAAAAAECAwQRMRITIfAGIrH/2gAMAwEAAhEDEQA/ALSXa4Vw4s9Vv2fSJM6ZGiGTMXT2XCkltByvmSSQon7legBz3zoCZVKzw9o1UNNdsykzHGCG5T8emsJQFjzBKSMnBz6/udVbMuEJdLRv4fx+/JoVyklvhe8EmBbEORfrbjVpUObbE2Il1l1ulsoQwMZBUSnKl52KfYg42xqzGSktoxLap1Tdc1prwxcr0YZi31cMeO02yw1U5KG220hKUJDqgAANgANsak8xl+rJlo8L7NmMU4So7kGIiQ4VkeGnwkHAA7qVuAe2cZ7jQGSuLhNcNTrr0qjvR10ye6ZKDIUWls855iFpIzsSfn4B1oY9uLB91x++uRdkZllCxe4+2uF75/TdWzWH6VccSxoUQyYlNhpRJlOZbWlYGfECTspBJCRj1J9BnVCTTk3FaR1Kcpvqm9sV++/xDuX9Vlf2q1ByBavG6GIrUZm5Kw3HZSlLbSJzoQgJxygAKwAMDHtjQBuu7w/Ndc/kXv8AWgOeuLtCyvqmt85GCr6g7kj283ydAUr770qQ7IkOuPPurK3HHFFSlqJySSdySd86A//Z', 'image/pjpeg', 'N', 'default', 'ko');;;\nINSERT INTO `lang` VALUES ('PL', 'polish.php', 'polish.gif', 'N', 'Polish', '', 'R0lGODdhGgASAPcAAAAAAAAAQAAAgAAA/wAgAAAgQAAggAAg/wBAAABAQABAgABA/wBgAABgQABggABg/wCAAACAQACAgACA/wCgAACgQACggACg/wDAAADAQADAgADA/wD/AAD/QAD/gAD//yAAACAAQCAAgCAA/yAgACAgQCAggCAg/yBAACBAQCBAgCBA/yBgACBgQCBggCBg/yCAACCAQCCAgCCA/yCgACCgQCCggCCg/yDAACDAQCDAgCDA/yD/ACD/QCD/gCD//0AAAEAAQEAAgEAA/0AgAEAgQEAggEAg/0BAAEBAQEBAgEBA/0BgAEBgQEBggEBg/0CAAECAQECAgECA/0CgAECgQECggECg/0DAAEDAQEDAgEDA/0D/AED/QED/gED//2AAAGAAQGAAgGAA/2AgAGAgQGAggGAg/2BAAGBAQGBAgGBA/2BgAGBgQGBggGBg/2CAAGCAQGCAgGCA/2CgAGCgQGCggGCg/2DAAGDAQGDAgGDA/2D/AGD/QGD/gGD//4AAAIAAQIAAgIAA/4AgAIAgQIAggIAg/4BAAIBAQIBAgIBA/4BgAIBgQIBggIBg/4CAAICAQICAgICA/4CgAICgQICggICg/4DAAIDAQIDAgIDA/4D/AID/QID/gID//6AAAKAAQKAAgKAA/6AgAKAgQKAggKAg/6BAAKBAQKBAgKBA/6BgAKBgQKBggKBg/6CAAKCAQKCAgKCA/6CgAKCgQKCggKCg/6DAAKDAQKDAgKDA/6D/AKD/QKD/gKD//8AAAMAAQMAAgMAA/8AgAMAgQMAggMAg/8BAAMBAQMBAgMBA/8BgAMBgQMBggMBg/8CAAMCAQMCAgMCA/8CgAMCgQMCggMCg/8DAAMDAQMDAgMDA/8D/AMD/QMD/gMD///8AAP8AQP8AgP8A//8gAP8gQP8ggP8g//9AAP9AQP9AgP9A//9gAP9gQP9ggP9g//+AAP+AQP+AgP+A//+gAP+gQP+ggP+g///AAP/AQP/AgP/A////AP//QP//gP///yH5BAAAAAAALAAAAAAaABIAAAhQAAEIHEiwoEGD/xIqXMiwoUKBDiNKhCix4kKKFi1izDgRAEeNHj92FNkRnMmTKFOqPClwpcuXLV/KRBlz5syaNmECyHlzJ0+dP3UeHEoUQEAAOw==', 'image/gif', 'N',  'default', 'pl');;;\nINSERT INTO `lang` VALUES ('FR', 'french.php', 'But_Language_French.gif', 'N', 'French', '', 'R0lGODlhGAAMAPcAAP////////8AAAAA//9LS0tL//sABPoABfkABvgAB/cACPYACfUACvQAC/MADPIADfEADvAAD+8AEO4AEe0AEuwAE+sAFOoAFekAFugAF+cAGOYAGeUAGuQAG+MAHOIAHeEAHuAAH98AIN4AId0AItwAI9sAJNoAJdkAJtgAJ9cAKNYAKdUAKtQAK9MALNIALdEALtAAL88AMM4AMc0AMswAM8sANMoANckANsgAN8cAOMYAOcUAOsQAO8MAPMIAPcEAPsAAP78AQL4AQb0AQrwAQ7sARLoARbkARrgAR7cASLYASbUASrQAS7MATLIATbEATrAAT68AUK4AUa0AUqwAU6sAVKoAVakAVqgAV6cAWKYAWaUAWqQAW6MAXKIAXaEAXqAAX58AYJ4AYZ0AYpwAY5sAZJoAZZkAZpgAZ5cAaJYAaZUAapQAa5MAbJIAbZEAbpAAb48AcI4AcY0AcowAc4sAdIoAdYkAdogAd4cAeIYAeYUAeoQAe4MAfIIAfYEAfoAAf38AgH4AgX0AgnwAg3sAhHoAhXkAhngAh3cAiHYAiXUAinQAi3MAjHIAjXEAjnAAj28AkG4AkW0AkmwAk2sAlGoAlWkAlmgAl2cAmGYAmWUAmmQAm2MAnGIAnWEAnmAAn18AoF4AoV0AolwAo1sApFoApVkAplgAp1cAqFYAqVUAqlQAq1MArFIArVEArlAAr08AsE4AsU0AskwAs0sAtEoAtUkAtkgAt0cAuEYAuUUAukQAu0MAvEIAvUEAvkAAvz8AwD4AwT0AwjwAwzsAxDoAxTkAxjgAxzcAyDYAyTUAyjQAyzMAzDIAzTEAzjAAzy8A0C4A0S0A0iwA0ysA1CoA1SkA1igA1ycA2CYA2SUA2iQA2yMA3CIA3SEA3iAA3x8A4B4A4R0A4hwA4xsA5BoA5RkA5hgA5xcA6BYA6RUA6hQA6xMA7BIA7REA7hAA7w8A8A4A8Q0A8gwA8wsA9AoA9QkA9ggA9wcA+AYA+QUA+gQA+wMA/AIA/SH5BAEAAAAALAAAAAAYAAwAAAhPAAcIHDigQICDCA8SEMCwoQCCAw0mRLjQIUOIAiVODFDRIsaCGxVavIhR48SODj+aTIiyocqQHEc+LAmzJUmIKynKfBnS5kycNXfS7CkzIAA7', 'image/gif', 'N', 'default', 'fr');;;\n\n\nCREATE TABLE `mail_queue` (\n  `mail_id` int(11) NOT NULL auto_increment,\n  `mail_date` datetime NOT NULL default '0000-00-00 00:00:00',\n  `to_address` varchar(128) NOT NULL default '',\n  `to_name` varchar(128) NOT NULL default '',\n  `from_address` varchar(128) NOT NULL default '',\n  `from_name` varchar(128) NOT NULL default '',\n  `subject` varchar(255) NOT NULL default '',\n  `message` text NOT NULL,\n  `html_message` text NOT NULL,\n  `attachments` set('Y','N') NOT NULL default '',\n  `status` set('queued','sent','error') NOT NULL default '',\n  `error_msg` varchar(255) NOT NULL default '',\n  `retry_count` smallint(6) NOT NULL default '0',\n  `template_id` int(11) NOT NULL default '0',\n  `att1_name` varchar(128) NOT NULL default '',\n  `att2_name` varchar(128) NOT NULL default '',\n  `att3_name` varchar(128) NOT NULL default '',\n  `date_stamp` datetime NOT NULL default '0000-00-00 00:00:00',\n  `user_id` INT NULL DEFAULT NULL,\n  `user_type` VARCHAR( 10 ) NULL DEFAULT NULL,\n  PRIMARY KEY  (`mail_id`)\n)  AUTO_INCREMENT=28 ;;;\n\n\n\n\n\n\n\nCREATE TABLE `newsletters` (\n  `letter_id` int(11) NOT NULL auto_increment,\n  `to` varchar(255) NOT NULL default '',\n  `subject` varchar(255) NOT NULL default '',\n  `message` text NOT NULL,\n  `create_time` datetime NOT NULL default '0000-00-00 00:00:00',\n  `status` char(3) NOT NULL default '',\n  PRIMARY KEY  (`letter_id`)\n)  AUTO_INCREMENT=1 ;;;\n\n\n\nCREATE TABLE `package_invoices` (\n  `invoice_id` int(11) NOT NULL auto_increment,\n  `invoice_date` datetime NOT NULL default '0000-00-00 00:00:00',\n  `processed_date` datetime default NULL,\n  `status` varchar(255) NOT NULL default '',\n  `employer_id` int(11) NOT NULL default '0',\n  `package_id` int(11) NOT NULL default '0',\n  `posts_quantity` int(11) NOT NULL default '0',\n  `premium` set('Y','N') NOT NULL default '',\n  `amount` float NOT NULL default '0',\n  `item_name` varchar(255) NOT NULL default '',\n  `subscr_date` datetime NOT NULL default '0000-00-00 00:00:00',\n  `payment_method` varchar(64) NOT NULL default '',\n  `currency_code` char(3) NOT NULL default '',\n  `currency_rate` decimal(10,4) NOT NULL default '0.0000',\n  `reason` VARCHAR( 128 ) NOT NULL,\n  `invoice_tax` FLOAT NOT NULL DEFAULT '0',\n  PRIMARY KEY  (`invoice_id`)\n)  AUTO_INCREMENT=2 ;;;\n\n\n\n\nCREATE TABLE `packages` (\n  `package_id` int(11) NOT NULL auto_increment,\n  `name` varchar(100) NOT NULL default '',\n  `description` text NOT NULL,\n  `price` float NOT NULL default '0',\n  `posts_quantity` smallint(6) NOT NULL default '0',\n  `premium` set('Y','N') NOT NULL default 'N',\n  `currency_code` char(3) NOT NULL default '',\n  PRIMARY KEY  (`package_id`)\n)  AUTO_INCREMENT=22 ;;;\n\n\n\nINSERT INTO `packages` VALUES (20, 'single post', '', 40, 1, 'Y', 'AUD');;;\nINSERT INTO `packages` VALUES (21, 'single post', '', 100, 1, 'N', 'AUD');;;\n\n\n\nCREATE TABLE `posts_table` (\n  `post_id` int(11) NOT NULL auto_increment,\n  `post_date` datetime NOT NULL default '0000-00-00 00:00:00',\n  `post_mode` set('premium','normal','free') NOT NULL default '',\n  `user_id` int(11) NOT NULL default '0',\n  `pin_x` mediumint(9) NOT NULL default '0',\n  `pin_y` mediumint(9) NOT NULL default '0',\n  `approved` set('Y','N') NOT NULL default '',\n  `2` varchar(255) NOT NULL default '',\n  `5` text NOT NULL,\n  `6` int(11) NOT NULL default '0',\n  `8` varchar(255) NOT NULL default '',\n  `10` varchar(255) NOT NULL default '',\n  `11` varchar(255) NOT NULL default '',\n  `13` int(11) NOT NULL default '0',\n  `14` int(11) NOT NULL default '0',\n  `15` varchar(255) NOT NULL default '',\n  `32` datetime NOT NULL default '0000-00-00 00:00:00',\n  `applications` int(11) NOT NULL default '0',\n  `hits` int(11) NOT NULL default '0',\n  `reason` varchar(255) NOT NULL default '',\n  `7` varchar(255) NOT NULL default '',\n  `9` varchar(255) NOT NULL default '',\n  `12` varchar(255) NOT NULL default '',\n  `guid` varchar(255) NOT NULL default '',\n\t`source` varchar(255) NOT NULL default '',\n `cached_summary` text NOT NULL,\n `expired` SET ('Y','N') NOT NULL default 'N',\n `app_type` CHAR( 1 ) NOT NULL,\n `app_url` VARCHAR( 255 ) NOT NULL default 'O',\n  PRIMARY KEY  (`post_id`)\n) AUTO_INCREMENT=1 ;;;\n\n\n\nINSERT INTO `posts_table` VALUES (1, NOW(), 'normal', 1, 0, 0, 'Y', 'This is a test job post, posted by the Jamit Job Board Test Account.', 'This is a test post, created with the following account details:\r\n\r\nusername:test\r\npassword:test\r\n\r\nThe account can be deleted from the admin. \r\n\r\n', 82, 'Jamit Job Board Test Account.', 'neg', '', 67, 22, 'Sydney, Australia', '0000-00-00 00:00:00', 0, 1, '', 'ASAP', 'Testing engineer', '*****@*****.**', '', '', 'This is a test post, created with the following account details...', 'N', 'O', '');;;\n\n\n\nCREATE TABLE `profiles_table` (\n  `profile_id` int(11) NOT NULL auto_increment,\n  `user_id` int(11) NOT NULL default '0',\n  `profile_date` datetime NOT NULL default '0000-00-00 00:00:00',\n  `expired` SET ('Y','N') NOT NULL default 'N',\n  `65` varchar(255) NOT NULL default '',\n  `66` varchar(255) NOT NULL default '',\n  `67` varchar(255) NOT NULL default '',\n  `72` varchar(255) NOT NULL default '',\n  `73` varchar(255) NOT NULL default '',\n  `74` varchar(255) NOT NULL default '',\n  `75` varchar(255) NOT NULL default '',\n  `76` varchar(255) NOT NULL default '',\n  `77` varchar(255) NOT NULL default '',\n  `79` text NOT NULL,\n  `80` varchar(255) NOT NULL default '',\n  `81` varchar(255) NOT NULL default '',\n  `82` varchar(255) NOT NULL default '',\n  `83` varchar(255) NOT NULL default '',\n  `86` text NOT NULL,\n  `90` varchar(255) NOT NULL default '',\n  PRIMARY KEY  (`profile_id`)\n) AUTO_INCREMENT=2 ;;;\n\n\n\nINSERT INTO `profiles_table` VALUES (1, 1, '2006-04-14 13:40:06', 'N', '', '', 'P', 'my name', '', '', '*****@*****.**', '', '', '', 'test city', '', '', 'test country', '', '');;;\n\n\nCREATE TABLE `requests` (\n  `employer_id` int(11) NOT NULL default '0',\n  `candidate_id` int(11) NOT NULL default '0',\n  `request_status` varchar(10) NOT NULL default '',\n  `request_message` text NOT NULL,\n  `request_date` datetime NOT NULL default '0000-00-00 00:00:00',\n  `key` varchar(100) NOT NULL default '',\n  `deleted` SET( 'Y', 'N' ) NOT NULL DEFAULT 'N',\n  PRIMARY KEY  (`employer_id`,`candidate_id`)\n) ;;;\n\n\n\nCREATE TABLE `resumes_table` (\n  `resume_id` int(11) NOT NULL auto_increment,\n  `list_on_web` char(1) NOT NULL default 'Y',\n  `resume_date` datetime NOT NULL default '0000-00-00 00:00:00',\n  `user_id` int(11) NOT NULL default '0',\n  `hits` int(11) NOT NULL default '0',\n  `anon` char(1) NOT NULL default '',\n  `status` set('ACT','SUS') NOT NULL default '',\n  `approved` set('Y','N') NOT NULL default 'Y',\n  `expired` SET ('Y','N') NOT NULL default 'N',\n  `37` varchar(255) NOT NULL default '',\n  `38` datetime NOT NULL default '0000-00-00 00:00:00',\n  `39` varchar(255) NOT NULL default '',\n  `40` varchar(255) NOT NULL default '',\n  `41` varchar(255) NOT NULL default '',\n  `43` varchar(255) NOT NULL default '',\n  `45` varchar(255) NOT NULL default '',\n  `46` varchar(255) NOT NULL default '',\n  `47` varchar(255) NOT NULL default '',\n  `48` varchar(255) NOT NULL default '',\n  `49` varchar(255) NOT NULL default '',\n  `51` text NOT NULL,\n  `52` text NOT NULL,\n  `54` datetime NOT NULL default '0000-00-00 00:00:00',\n  `55` varchar(255) NOT NULL default '0',\n  `57` varchar(255) NOT NULL default '',\n  `58` text NOT NULL,\n  `59` text NOT NULL,\n  `60` text NOT NULL,\n  `36` varchar(255) NOT NULL default '',\n  `42` varchar(255) NOT NULL default '',\n  `91` varchar(255) NOT NULL default '',\n  PRIMARY KEY  (`resume_id`)\n)  AUTO_INCREMENT=3 ;;;\n\n\n\nINSERT INTO `resumes_table` VALUES (1, 'Y', NOW(), 1, 0, '', 'ACT', 'Y', 'N', '11+', '1978-01-03 00:00:00', 'Australian', '', '', '', '', 'Sydney', '', '', 'Australia', '', '', '2006-05-06 00:00:00', 'Col', '', 'This is a test resume submitted with the following account details:\r\n\r\nuser: test\r\npass: test', '', '', 'John Smith - test', '', '');;;\n\n\nCREATE TABLE `saved_jobs` (\n  `post_id` int(11) NOT NULL default '0',\n  `user_id` int(11) NOT NULL default '0',\n  `save_date` datetime NOT NULL default '0000-00-00 00:00:00',\n  PRIMARY KEY  (`post_id`,`user_id`)\n) ;;;\n\n\n\n\n\nCREATE TABLE `skill_matrix` (\n  `matrix_id` int(11) NOT NULL auto_increment,\n  `field_id` int(11) NOT NULL default '0',\n  `row_count` varchar(255) NOT NULL default '',\n  PRIMARY KEY  (`matrix_id`)\n)  AUTO_INCREMENT=44 ;;;\n\n\n\nINSERT INTO `skill_matrix` VALUES (7, 7, '5');;;\nINSERT INTO `skill_matrix` VALUES (43, 43, '4');;;\n\n\n\nCREATE TABLE `skill_matrix_data` (\n  `field_id` int(11) NOT NULL default '0',\n  `row` int(11) NOT NULL default '0',\n  `user_id` int(11) NOT NULL default '0',\n  `object_id` int(11) NOT NULL default '0',\n  `name` varchar(255) NOT NULL default '',\n  `years` char(2) NOT NULL default '',\n  `rating` char(2) NOT NULL default '',\n  PRIMARY KEY ( `field_id` , `row` , `user_id` )\n) ;;;\n\n\n\nCREATE TABLE `subscription_invoices` (\n  `invoice_id` int(11) NOT NULL auto_increment,\n  `invoice_date` datetime NOT NULL default '0000-00-00 00:00:00',\n  `processed_date` datetime default NULL,\n  `status` varchar(255) NOT NULL default '',\n  `employer_id` int(11) NOT NULL default '0',\n  `subscription_id` int(11) NOT NULL default '0',\n  `months_duration` int(11) NOT NULL default '0',\n  `amount` float NOT NULL default '0',\n  `item_name` varchar(255) NOT NULL default '',\n  `can_view_resumes` set('Y','N') NOT NULL default 'Y',\n  `can_post` set('Y','N') NOT NULL default 'N',\n  `can_post_premium` set('Y','N') NOT NULL default 'N',\n  `subscr_date` datetime NOT NULL default '0000-00-00 00:00:00',\n  `subscr_end` datetime NOT NULL default '0000-00-00 00:00:00',\n  `payment_method` varchar(64) NOT NULL default '',\n  `currency_code` char(3) NOT NULL default '',\n  `currency_rate` decimal(10,4) NOT NULL default '0.0000',\n  `can_view_blocked` set('Y','N') NOT NULL default 'Y',\n  `reason` VARCHAR( 128 ) NOT NULL,\n   `views_quota` INT NOT NULL DEFAULT '0', \n   `p_posts_quota` INT NOT NULL DEFAULT '0', \n   `posts_quota` INT NOT NULL DEFAULT '0',\n   `invoice_tax` FLOAT NOT NULL DEFAULT '0',\n  PRIMARY KEY  (`invoice_id`)\n)  AUTO_INCREMENT=1 ;;;\n\n\n\n\n\nCREATE TABLE `subscriptions` (\n  `subscription_id` int(11) NOT NULL auto_increment,\n  `name` varchar(100) NOT NULL default '',\n  `description` text NOT NULL,\n  `months_duration` int(11) NOT NULL default '0',\n  `price` float NOT NULL default '0',\n  `can_view_resumes` set('Y','N') NOT NULL default 'Y',\n  `can_post` set('Y','N') NOT NULL default 'N',\n  `can_post_premium` set('Y','N') NOT NULL default 'N',\n\n  `currency_code` char(3) NOT NULL default '',\n  `can_view_blocked` set('Y','N') NOT NULL default 'Y',\n   `views_quota` INT NOT NULL DEFAULT '0', \n   `p_posts_quota` INT NOT NULL DEFAULT '0', \n   `posts_quota` INT NOT NULL DEFAULT '0',\n  PRIMARY KEY  (`subscription_id`)\n)  AUTO_INCREMENT=4 ;;;\n\n \n\nINSERT INTO `subscriptions` VALUES (3, '6 month', '', 6, 30, 'Y', 'N', 'N', 'AUD', 'Y', 0, 0, 0);;;\n\n\n\n\n\nCREATE TABLE `users` (\n  `ID` int(11) NOT NULL auto_increment,\n  `IP` varchar(50) NOT NULL default '',\n  `SignupDate` datetime NOT NULL default '0000-00-00 00:00:00',\n  `FirstName` varchar(50) NOT NULL default '',\n  `LastName` varchar(50) NOT NULL default '',\n  `Rank` int(11) NOT NULL default '1',\n  `Username` varchar(50) NOT NULL default '',\n  `Password` varchar(50) NOT NULL default '',\n  `Email` varchar(255) NOT NULL default '',\n  `Newsletter` int(11) NOT NULL default '1',\n  `Notification1` int(11) NOT NULL default '0',\n  `Notification2` int(11) NOT NULL default '0',\n  `Aboutme` longtext NOT NULL,\n  `Validated` int(11) NOT NULL default '0',\n  `login_date` datetime NOT NULL default '0000-00-00 00:00:00',\n  `logout_date` datetime NOT NULL default '0000-00-00 00:00:00',\n  `last_request_time` datetime NOT NULL default '0000-00-00 00:00:00',\n  `login_count` int(11) NOT NULL default '0',\n  `alert_keywords` varchar(255) NOT NULL default '',\n  `alert_last_run` datetime NOT NULL default '0000-00-00 00:00:00',\n  `alert_email` varchar(255) NOT NULL default '',\n  `newsletter_last_run` datetime NOT NULL default '0000-00-00 00:00:00',\n  `lang` char(3) NOT NULL default '',\n  `alert_query` text NOT NULL,\n  `membership_active` CHAR(1) NOT NULL default 'N',\n \n\t`expired` SET ('Y','N') NOT NULL default 'N',\n  PRIMARY KEY  (`ID`),\n  UNIQUE KEY `Username` (`Username`)\n)  AUTO_INCREMENT=2 ;;;\n\n\nINSERT INTO `users` VALUES (1, '127.0.0.1', '2006-04-05 04:30:25', 'Test', 'Account', 1, 'test', '098f6bcd4621d373cade4e832627b4f6', '*****@*****.**', 0, 0, 0, '', 1, '2006-04-05 04:30:27', '2006-04-05 04:32:22', '2006-04-05 04:32:13', 2, '', '0000-00-00 00:00:00', '', '0000-00-00 00:00:00', '', '', 'N', 'N');;;\n\nCREATE TABLE `jb_txn` (\n`transaction_id` int(11) NOT NULL auto_increment,\n`date` datetime NOT NULL default '0000-00-00 00:00:00',\n`invoice_id` int(11) NOT NULL default '0',\n`type` varchar(32) NOT NULL default '',\n`amount` float NOT NULL default '0',\n`currency` char(3) NOT NULL default '',\n`txn_id` varchar(128) NOT NULL default '',\n`reason` varchar(64) NOT NULL default '',\n`origin` varchar(32) NOT NULL default '',\n`product_type` CHAR(1) NOT NULL default 'P',\n`reference` VARCHAR( 128 ) NOT NULL  default '',\nPRIMARY KEY  (`transaction_id`));;;\n\n\nCREATE TABLE `jb_config` (\n\t`key` VARCHAR( 255 ) NOT NULL ,\n\t`val` VARCHAR( 255 ) NOT NULL ,\n\tPRIMARY KEY ( `key` ) \n);;;\n\nCREATE TABLE `motd` (\n`motd_type` CHAR( 2 ) NOT NULL ,\n`motd_lang` CHAR( 2 ) NOT NULL ,\n`motd_message` TEXT NOT NULL,\n`motd_title` TEXT NOT NULL,\n`motd_date_updated` datetime NOT NULL,\n\tPRIMARY KEY ( `motd_type` , `motd_lang` ) \n);;;\n\nCREATE TABLE `help_pages` (\n`help_type` CHAR( 2 ) NOT NULL ,\n`help_lang` CHAR( 2 ) NOT NULL ,\n`help_message` TEXT NOT NULL,\n`help_title` TEXT NOT NULL,\n`help_date_updated` datetime NOT NULL,\n\tPRIMARY KEY ( `help_type` , `help_lang` ) \n);;;\n\n\nCREATE TABLE `payment_log` (\n  `seq_no` int(11) NOT NULL auto_increment,\n  `date` datetime NOT NULL default '0000-00-00 00:00:00',\n  `module` varchar(128) NOT NULL default '',\n  `log_entry` text NOT NULL,\n  PRIMARY KEY  (`seq_no`)\n);;;\n\nCREATE TABLE `memberships` (\n\t`membership_id` INT NOT NULL AUTO_INCREMENT ,\n\t`name` VARCHAR( 255 ) NOT NULL ,\n\t`price` FLOAT NOT NULL ,\n\t`currency_code` VARCHAR( 3 ) NOT NULL ,\n\t`months` MEDIUMINT NOT NULL ,\n\t`type` SET( 'E', 'C' ) NOT NULL,\n\tPRIMARY KEY ( `membership_id` )\n);;; \n\nCREATE TABLE `membership_invoices` (\n\t\t`invoice_id` INT NOT NULL AUTO_INCREMENT ,\n\t\t`invoice_date` DATETIME NOT NULL ,\n\t\t`processed_date` DATETIME  NULL ,\n\t\t`status` VARCHAR( 127 ) NOT NULL ,\n\t\t`user_type` SET( 'E', 'C' ) NOT NULL ,\n\t\t`user_id` INT NOT NULL ,\n\t\t`membership_id` INT NOT NULL ,\n\t\t`months_duration` MEDIUMINT NOT NULL ,\n\t\t`amount` FLOAT NOT NULL ,\n\t\t`currency_code` VARCHAR( 3 ) NOT NULL ,\n\t\t`currency_rate` DECIMAL( 10, 4 ) NOT NULL ,\n\t\t`item_name` VARCHAR( 255 ) NOT NULL ,\n\t\t`member_date` DATETIME NOT NULL ,\n\t\t`member_end` DATETIME NOT NULL ,\n\t\t`payment_method` VARCHAR( 64 ) NOT NULL ,\n\t\t`reason` VARCHAR( 127 ) NOT NULL ,\n\t\t`invoice_tax` FLOAT NOT NULL DEFAULT '0',\n\t\tPRIMARY KEY ( `invoice_id` ) \n\t\t);;;\n\n\tCREATE TABLE `mail_monitor_log` (\n\t\t`log_id` INT NOT NULL AUTO_INCREMENT ,\n\t\t`date` DATETIME NOT NULL ,\n\t\t`email` VARCHAR(255) NOT NULL ,\n\t\t`user_type` SET( 'E', 'C' ) NOT NULL ,\n\t\tPRIMARY KEY ( `log_id` ));;;\n\nCREATE TABLE `xml_export_elements` (\n  `element_id` int(11) NOT NULL auto_increment,\n  `element_name` varchar(255) NOT NULL default '',\n  `is_cdata` set('Y','N') NOT NULL default '',\n  `parent_element_id` int(11) default '0',\n  `form_id` int(11) NOT NULL default '0',\n  `field_id` varchar(128) NOT NULL default '0',\n  `schema_id` int(11) NOT NULL default '0',\n  `attributes` varchar(255) NOT NULL default '',\n  `static_data` varchar(255) NOT NULL default '',\n  `is_pivot` set('Y','N') NOT NULL default '',\n  `description` varchar(255) NOT NULL default '',\n  `fieldcondition` varchar(255) NOT NULL default '',\n  `is_boolean` set('Y','N') NOT NULL default 'N',\n  `qualify_codes` set('Y','N') NOT NULL default 'N',\n  `qualify_cats` set('Y','N') NOT NULL default 'N',\n  `truncate` int(11) NOT NULL default '0',\n  `strip_tags` set('Y','N') NOT NULL default 'N',\n  `is_mandatory` set('Y','N') NOT NULL default '',\n  `static_mod` set('A','P','F') NOT NULL default 'F',\n  `multi_fields` smallint(6) NOT NULL default '1',\n  `has_child` SET( 'Y', 'N' ) NULL,\n  `comment` VARCHAR( 255 ) NOT NULL default '',\n  PRIMARY KEY  (`element_id`)\n);;;\n\n\n\nINSERT INTO `xml_export_elements` VALUES (1, 'rss', 'N', 0, 1, '0', 1, 'version =\"2.0\" xmlns:g=\"http://base.google.com/ns/1.0\"', '', '', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (2, 'channel', 'N', 1, 1, '0', 1, '', '', '', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (4, 'description', 'N', 2, 1, '0', 1, '', '%SITE_DESCRIPTION%', '', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (5, 'link', 'N', 2, 1, '0', 1, '', '%BASE_HTTP_PATH%', '', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (6, 'item', 'N', 2, 1, '0', 1, '', '', 'Y', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (11, 'g:expiration_date', 'N', 6, 1, '', 1, '', '%EXPIRE_DATE%', 'N', '', '', 'N', 'N', 'N', 0, 'N', 'N', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (14, 'g:immigration_status', 'N', 6, 1, '', 1, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', 'N', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (19, 'g:location', 'N', 6, 1, '', 1, '', '', 'N', '', '', 'N', 'N', 'Y', 0, 'N', 'N', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (20, 'g:salary', 'N', 6, 1, '', 1, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', 'N', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (21, 'g:salary_type', 'N', 6, 1, '', 1, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', 'N', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (23, 'publisher', 'N', 22, 1, '', 2, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (24, 'publisherurl', 'N', 22, 1, '', 2, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (25, 'lastBuildDate', 'N', 22, 1, '', 2, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (26, 'job', 'N', 22, 1, '', 2, '', '', 'Y', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (27, 'title', 'N', 26, 1, '2', 2, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (28, 'date', 'N', 26, 1, 'post_date', 2, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (29, 'referencenumber', 'N', 26, 1, 'post_id', 2, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (31, 'company', 'N', 26, 1, '8', 2, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (32, 'city', 'N', 26, 1, '', 2, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (34, 'country', 'N', 26, 1, '', 2, '', 'USA', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (35, 'postalcode', 'N', 26, 1, '', 2, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (36, 'description', 'N', 26, 1, 'summary', 2, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (37, 'salary', 'Y', 26, 1, '10', 2, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (38, 'experience', 'Y', 26, 1, '', 2, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (40, 'jobtype', 'Y', 26, 1, '', 2, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (42, 'jobs', 'N', 0, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (43, 'job', 'N', 42, 1, '', 4, '', '', 'Y', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (44, 'title', 'N', 43, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', 'Y', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (45, 'job-code', 'N', 43, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', 'Y', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (46, 'action', 'N', 43, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (47, 'job-board-name', 'N', 43, 1, '', 4, '', '%SITE_NAME%', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (48, 'job-board-url', 'N', 43, 1, '', 4, '', '%BASE_HTTP_PATH%', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (49, 'detail-url', 'N', 43, 1, '', 4, '', '%LINK%', 'N', '', '', 'N', 'N', 'N', 0, 'N', 'Y', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (50, 'apply-url', 'N', 43, 1, '', 4, '', '%LINK%', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (51, 'description', 'N', 43, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (52, 'summary', 'N', 51, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'Y', 'Y', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (53, 'required-skills', 'N', 51, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (54, 'required-education', 'N', 51, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (55, 'required-experience', 'N', 51, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (56, 'full-time', 'N', 51, 1, '', 4, '', '', 'N', '', '', 'Y', 'N', 'Y', 0, 'N', 'N', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (57, 'part-time', 'N', 51, 1, '', 4, '', '', 'N', '', '', 'Y', 'N', 'Y', 0, 'N', 'N', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (59, 'flex-time', 'N', 51, 1, '', 4, '', '', 'N', '', '', 'Y', 'N', 'Y', 0, 'N', 'N', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (60, 'internship', 'N', 51, 1, '', 4, '', '', 'N', '', '', 'Y', 'N', 'Y', 0, 'N', 'N', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (61, 'volunteer', 'N', 51, 1, '', 4, '', '', 'N', '', '', 'Y', 'N', 'Y', 0, 'N', 'N', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (62, 'exempt', 'N', 51, 1, '', 4, '', '', 'N', '', '', 'Y', 'N', 'Y', 0, 'N', 'N', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (63, 'contract', 'N', 51, 1, '', 4, '', '', 'N', '', '', 'Y', 'N', 'Y', 0, 'N', 'N', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (64, 'permanent', 'N', 51, 1, '', 4, '', '', 'N', '', '', 'Y', 'N', 'Y', 0, 'N', 'N', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (65, 'temporary', 'N', 51, 1, '', 4, '', '', 'N', '', '', 'Y', 'N', 'Y', 0, 'N', 'N', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (66, 'telecommute', 'N', 51, 1, '', 4, '', '', 'N', '', '', 'Y', 'N', 'Y', 0, 'N', 'N', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (67, 'compensation', 'N', 43, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (68, 'salary-range', 'N', 67, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (69, 'salary-amount', 'N', 67, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (70, 'salary-currency', 'N', 67, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (71, 'benefits', 'N', 67, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (72, 'posted-date', 'N', 43, 1, '', 4, '', '%DATE%', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (73, 'close-date', 'N', 43, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (74, 'location', 'N', 43, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (75, 'address', 'N', 74, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (76, 'city', 'N', 74, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (77, 'state', 'N', 74, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', 'Y', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (78, 'zip', 'N', 74, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (79, 'country', 'N', 74, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (80, 'area-code', 'N', 74, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (81, 'contact', 'N', 43, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (82, 'name', 'N', 81, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (84, 'email', 'N', 81, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (85, 'hiring-manager-name', 'N', 81, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (86, 'hiring-manager-email', 'N', 81, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (87, 'phone', 'N', 81, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (88, 'fax', 'N', 81, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (89, 'company', 'N', 43, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (90, 'name', 'N', 89, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (91, 'description', 'N', 89, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (92, 'industry', 'N', 89, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (93, 'url', 'N', 89, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (94, 'title', 'N', 2, 1, '', 1, '', '%SITE_NAME%', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (96, 'title', 'N', 6, 1, '', 1, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', 'Y', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (97, 'description', 'N', 6, 1, '', 1, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'Y', 'Y', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (98, 'g:job_function', 'N', 6, 1, '', 1, '', '', 'N', '', '', 'N', 'N', 'Y', 0, 'N', 'N', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (99, 'g:job_industry', 'N', 6, 1, '', 1, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', 'N', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (100, 'g:job_type', 'N', 6, 1, '', 1, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', 'N', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (101, 'link', 'N', 6, 1, '', 1, '', '%LINK%', 'N', '', '', 'N', 'N', 'N', 0, 'N', 'Y', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (102, 'g:publish_date', 'N', 6, 1, '', 1, '', '%DATE%', 'N', '', '', 'N', 'N', 'N', 0, 'N', 'N', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (103, 'g:education', 'N', 6, 1, '', 1, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', 'N', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (104, 'g:employer', 'N', 6, 1, '', 1, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', 'Y', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (105, 'guid', 'N', 6, 1, '', 1, '', '%LINK%', 'N', '', '', 'N', 'N', 'N', 0, 'N', 'Y', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (106, 'image_link', 'N', 6, 1, '', 1, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', 'N', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (107, 'source', 'N', 0, 1, '', 2, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (108, 'publisher', 'N', 107, 1, '', 2, '', '%SITE_NAME%', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (109, 'publisherurl', 'N', 107, 1, '', 2, '', '%BASE_HTTP_PATH%', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (110, 'lastBuildDate', 'N', 107, 1, '', 2, '', '%FEED_DATE%', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (111, 'job', 'N', 107, 1, '', 2, '', '', 'Y', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (112, 'title', 'Y', 111, 1, '', 2, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', 'Y', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (113, 'date', 'Y', 111, 1, '', 2, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', 'Y', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (114, 'referencenumber', 'Y', 111, 1, '', 2, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', 'Y', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (115, 'url', 'Y', 111, 1, '', 2, '', '%LINK%', 'N', '', '', 'N', 'N', 'N', 0, 'N', 'Y', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (116, 'company', 'Y', 111, 1, '', 2, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (117, 'city', 'Y', 111, 1, '', 2, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (118, 'state', 'Y', 111, 1, '', 2, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (119, 'country', 'Y', 111, 1, '', 2, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', 'Y', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (120, 'postalcode', 'Y', 111, 1, '', 2, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (121, 'description', 'Y', 111, 1, '', 2, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'Y', 'Y', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (122, 'salary', 'Y', 111, 1, '', 2, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (123, 'education', 'Y', 111, 1, '', 2, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (124, 'jobtype', 'Y', 111, 1, '', 2, '', '', 'N', '', '', 'N', 'Y', 'Y', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (125, 'category', 'Y', 111, 1, '', 2, '', '', 'N', '', '', 'N', 'Y', 'Y', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (126, 'experience', 'Y', 111, 1, '', 2, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (127, 'job-category', 'N', 43, 1, '', 4, '', '', 'N', '', '', 'N', 'N', 'Y', 0, 'N', 'N', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (128, 'rss', 'N', 0, 1, '', 3, 'version=\"2.0\"', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (129, 'channel', 'N', 128, 1, '', 3, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (130, 'title', 'N', 129, 1, '', 3, '', '%SITE_NAME%', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (131, 'link', 'N', 129, 1, '', 3, '', '%BASE_HTTP_PATH%', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (132, 'description', 'N', 129, 1, '', 3, '', '%SITE_DESCRIPTION%', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (133, 'language', 'N', 129, 1, '', 3, '', '%DEFAULT_LANG%', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (134, 'pubDate', 'N', 129, 1, '', 3, '', '%FEED_DATE%', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (135, 'lastBuildDate', 'N', 129, 1, '', 3, '', '%FEED_DATE%', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (136, 'docs', 'N', 129, 1, '', 3, '', 'http://blogs.law.harvard.edu/tech/rss', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (137, 'generator', 'N', 129, 1, '', 3, '', 'Jamit Job Board XML export tool', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (138, 'managingEditor', 'N', 129, 1, '', 3, '', '%SITE_CONTACT_EMAIL%', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (139, 'webMaster', 'N', 129, 1, '', 3, '', '%SITE_CONTACT_EMAIL%', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (140, 'image', 'N', 129, 1, '', 3, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (141, 'link', 'N', 140, 1, '', 3, '', '%BASE_HTTP_PATH%', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (142, 'title', 'N', 140, 1, '', 3, '', '%SITE_NAME%', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (143, 'url', 'N', 140, 1, '', 3, '', '%RSS_FEED_LOGO%', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (144, 'height', 'N', 140, 1, '', 3, '', '%RSS_LOGO_HEIGHT%', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (145, 'width', 'N', 140, 1, '', 3, '', '%RSS_LOGO_WIDTH%', 'N', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (146, 'item', 'N', 129, 1, '', 3, '', '', 'Y', '', '', 'N', 'N', 'N', 0, 'N', '', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (147, 'title', 'N', 146, 1, '', 3, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', 'Y', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (148, 'link', 'N', 146, 1, '', 3, '', '%LINK%', 'N', '', '', 'N', 'N', 'N', 0, 'N', 'Y', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (149, 'description', 'N', 146, 1, '', 3, '', '', 'N', '', '', 'N', 'N', 'N', 300, 'Y', 'Y', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (151, 'pubDate', 'N', 146, 1, '', 3, '', '', 'N', '', '', 'N', 'N', 'N', 0, 'N', 'Y', 'F', 1, NULL, '');;;\nINSERT INTO `xml_export_elements` VALUES (152, 'guid', 'N', 146, 1, '', 3, '', '%LINK%', 'N', '', '', 'N', 'N', 'N', 0, 'N', 'Y', 'F', 1, NULL, '');;;\n\n\n\nCREATE TABLE `xml_export_feeds` (\n  `feed_id` int(11) NOT NULL auto_increment,\n  `feed_name` varchar(255) NOT NULL default '',\n  `description` text NOT NULL,\n  `field_settings` text NOT NULL,\n  `search_settings` text NOT NULL,\n  `max_records` int(11) NOT NULL default '0',\n  `publish_mode` set('PUB','PRI') NOT NULL default '',\n  `schema_id` int(11) NOT NULL default '0',\n  `feed_key` varchar(255) NOT NULL default '',\n  `hosts_allow` text NOT NULL,\n  `is_locked` set('Y','N') NOT NULL default 'N',\n  `form_id` int(11) NOT NULL default '0',\n  `include_emp_accounts` SET( 'Y', 'N' ) NOT NULL DEFAULT 'N',\n  `export_with_url` SET( 'Y', 'N' ) NOT NULL DEFAULT 'Y',\n  `include_imported` SET( 'Y', 'N' ) NOT NULL default 'N',\n  PRIMARY KEY  (`feed_id`)\n);;;\n\n\n\nINSERT INTO `xml_export_feeds` VALUES (6, 'RSS Feed (Example)', 'this is a description', 'a:5:{i:147;s:1:\"2\";s:6:\"ft_147\";s:4:\"TEXT\";i:149;s:1:\"5\";s:6:\"ft_149\";s:6:\"EDITOR\";i:151;s:9:\"post_date\";}', 'a:4:{i:6;N;i:13;N;i:5;s:0:\"\";i:14;s:0:\"\";}', 50, 'PUB', 3, '', 'localhost', 'N', 1, 'N', 'Y', 'N');;;\nINSERT INTO `xml_export_feeds` VALUES (9, 'Simply Hired Feed (Example)', 'Simply Hired - Jobs', 'a:49:{i:44;s:1:\"2\";s:5:\"ft_44\";s:4:\"TEXT\";i:45;s:7:\"post_id\";i:46;s:0:\"\";i:52;s:7:\"summary\";i:53;s:0:\"\";i:54;s:0:\"\";i:55;s:0:\"\";i:56;s:2:\"14\";s:12:\"boolean_p_56\";s:9:\"full-time\";s:5:\"ft_56\";s:8:\"CATEGORY\";i:57;s:1:\"2\";s:12:\"boolean_p_57\";s:9:\"part-time\";s:5:\"ft_57\";s:4:\"TEXT\";i:59;s:0:\"\";i:60;s:0:\"\";i:61;s:0:\"\";i:62;s:0:\"\";i:63;s:0:\"\";i:64;s:0:\"\";i:65;s:0:\"\";i:66;s:0:\"\";i:68;s:0:\"\";i:69;s:0:\"\";i:70;s:0:\"\";i:71;s:0:\"\";i:73;s:0:\"\";i:75;s:2:\"13\";s:5:\"ft_75\";s:8:\"CATEGORY\";i:76;s:0:\"\";i:77;s:0:\"\";i:78;s:0:\"\";i:79;s:0:\"\";i:80;s:0:\"\";i:82;s:1:\"8\";s:5:\"ft_82\";s:4:\"TEXT\";i:84;s:2:\"12\";s:5:\"ft_84\";s:4:\"TEXT\";i:85;s:0:\"\";i:86;s:0:\"\";i:87;s:0:\"\";i:88;s:0:\"\";i:90;s:1:\"8\";s:5:\"ft_90\";s:4:\"TEXT\";i:91;s:0:\"\";i:92;s:0:\"\";i:93;s:0:\"\";i:127;s:1:\"6\";s:6:\"ft_127\";s:8:\"CATEGORY\";}', 'a:4:{i:6;N;i:13;N;i:5;s:0:\"\";i:14;s:0:\"\";}', 50, 'PUB', 4, '', 'localhost', 'N', 1, 'N', 'Y', 'N');;;\nINSERT INTO `xml_export_feeds` VALUES (10, 'Indeed Jobs Feed (Example)', 'My jobs feed to indeed!', 'a:20:{i:112;s:1:\"2\";s:6:\"ft_112\";s:4:\"TEXT\";i:113;s:9:\"post_date\";i:114;s:7:\"post_id\";i:116;s:1:\"8\";s:6:\"ft_116\";s:4:\"TEXT\";i:117;s:2:\"15\";s:6:\"ft_117\";s:4:\"TEXT\";i:118;s:0:\"\";i:119;s:0:\"\";i:120;s:0:\"\";i:121;s:1:\"5\";s:6:\"ft_121\";s:6:\"EDITOR\";i:122;s:0:\"\";i:123;s:0:\"\";i:124;s:2:\"14\";s:6:\"ft_124\";s:8:\"CATEGORY\";i:125;s:1:\"6\";s:6:\"ft_125\";s:8:\"CATEGORY\";i:126;s:0:\"\";}', 'a:4:{i:6;N;i:13;N;i:5;s:0:\"\";i:14;s:0:\"\";}', 50, 'PUB', 2, '', 'localhost', 'N', 1, 'N', 'Y', 'N');;;\nINSERT INTO `xml_export_feeds` VALUES (11, 'Google Base Feed (Example)', 'Google Base Feed', 'a:17:{i:14;s:0:\"\";i:19;s:2:\"13\";s:5:\"ft_19\";s:8:\"CATEGORY\";i:20;s:0:\"\";i:21;s:0:\"\";i:96;s:1:\"2\";s:5:\"ft_96\";s:4:\"TEXT\";i:97;s:1:\"5\";s:5:\"ft_97\";s:6:\"EDITOR\";i:98;s:1:\"6\";s:5:\"ft_98\";s:8:\"CATEGORY\";i:99;s:0:\"\";i:100;s:0:\"\";i:103;s:0:\"\";i:104;s:1:\"8\";s:6:\"ft_104\";s:4:\"TEXT\";i:106;s:0:\"\";}', 'a:4:{i:6;N;i:13;N;i:5;s:0:\"\";i:14;s:0:\"\";}', 50, 'PUB', 1, '', 'ALL', 'N', 1, 'N', 'Y', 'N');;;\n\n \n\nCREATE TABLE `xml_export_schemas` (\n  `schema_id` int(11) NOT NULL auto_increment,\n  `schema_name` varchar(255) NOT NULL default '',\n  `description` text NOT NULL,\n  `form_id` int(11) NOT NULL default '0',\n  `is_locked` set('Y','N') NOT NULL default 'N',\n  PRIMARY KEY  (`schema_id`)\n);;;\n\n\n\nINSERT INTO `xml_export_schemas` VALUES (1, 'Google Base  - Jobs', 'For a full description of the attributes (elements) see: http://www.google.com/base/jobs.html', 1, 'N');;;\nINSERT INTO `xml_export_schemas` VALUES (2, 'Indeed.com', 'http://www.indeed.com/jsp/xmlinfo.jsp', 1, 'Y');;;\nINSERT INTO `xml_export_schemas` VALUES (3, 'RSS', 'http://blogs.law.harvard.edu/tech/rss', 1, 'Y');;;\nINSERT INTO `xml_export_schemas` VALUES (4, 'SimplyHired.com', 'Simply Hired can accept incoming job feeds in either xml or delimited formats\r\nhttp://www.simplyhired.com/feed.php#feed_spec', 1, 'N');;;\n\nCREATE TABLE `short_urls` (\n  `url` varchar(255) NOT NULL,\n  `date` timestamp NOT NULL,\n  `hash` varchar(255) NOT NULL,\n  `expires` set('Y','N') NOT NULL,\n  `hits` bigint(20) NOT NULL,\n  PRIMARY KEY (`url`));;;\n\nCREATE TABLE `sitemaps_urls` (\n\t`url` TEXT NOT NULL ,\n\t`priority` FLOAT NOT NULL ,\n\t`changefreq` VARCHAR( 15 ) NOT NULL\n);;;\n\n\nCREATE TABLE `xml_import_feeds` (\n  `feed_id` int(11) NOT NULL auto_increment,\n  `feed_metadata` text NOT NULL,\n  `feed_name` varchar(255) NOT NULL,\n  `description` varchar(255) NOT NULL,\n  `date` date NOT NULL,\n  `xml_sample` text character set utf8 collate utf8_unicode_ci NOT NULL,\n  `feed_key` varchar(255) NOT NULL,\n  `ip_allow` text NOT NULL,\n  `feed_url` varchar(255) NOT NULL,\n  `feed_filename` varchar(255) NOT NULL,\n  `ftp_user` varchar(255) NOT NULL,\n  `ftp_pass` varchar(255) NOT NULL,\n  `ftp_filename` varchar(255) NOT NULL,\n  `ftp_host` varchar(255) NOT NULL,\n  `status` varchar(10) NOT NULL,\n  `pickup_method` varchar(5) NOT NULL,\n  `cron` set('Y','N') NOT NULL,\n  PRIMARY KEY  (`feed_id`)\n);;;\n\nCREATE TABLE `saved_resumes` (\n  `resume_id` int(11) NOT NULL default '0',\n  `user_id` int(11) NOT NULL default '0',\n  `save_date` datetime NOT NULL default '0000-00-00 00:00:00',\n  PRIMARY KEY  (`resume_id`,`user_id`)\n);\n\n";
    if ($_REQUEST['install'] != '') {
        mysql_connect($_REQUEST['jb_db_host'], $_REQUEST['jb_db_user'], $_REQUEST['jb_db_pass']) or die(mysql_error());
        mysql_select_db($_REQUEST['jb_db_name']) or die(mysql_error());
        /* You can use it like this */
        $queries = multiple_query($sql);
        for ($i = 0; $i < count($queries); $i++) {
            if ($queries[$i][1] == 0) {
                /* some code.... with the result in $queries[$i][0] */
            } else {
                echo "<pre>Error: " . $queries[$i][2] . "(" . $queries[$i][3] . ")<br>\n</pre>";
            }
        }
        echo count($queries) . " Operations Completed.<br>";
        JB_compute_cat_has_child();
        echo "Database structure installed. <h3>You can continue to the <A target='_main' href='index.php'>Admin Section</a>. The default password is: ok (Please change it in Main Config)</h3>";
        echo "<font color='red'><b>*** Please remember to delete install.php from the admin directory ***</b></font><br>";
        die;
    }
}
Пример #2
0
    if (strlen($line) > 2) {
        $requete = 'INSERT INTO ' . $tableName . ' VALUES (' . $line . ' ) ';
        if (!mysql_query($requete)) {
            echo 'Error on line ' . $k . ' : ' . mysql_error() . $br . 'The MySQL query was :' . $requete . $br;
        }
    } else {
        echo 'Line # ' . $k . ' ignored (size<2).' . $br;
    }
}
fclose($file);
// now remove useless data
$query = "ALTER TABLE `ip2country`\n  DROP `COUNTRY_CODE3`,\n  DROP `COUNTRY_NAME`;";
if (mysql_query($query) == false) {
    die('Error : impossible to edit table "' . $tableName . '"' . $br . 'MySQL said : ' . mysql_error());
}
echo '"' . $tableName . '" table successfully filled. We are now creating the "country" table.';
// let's create the country table
$query = "CREATE TABLE country (\n  iso CHAR(2) NOT NULL PRIMARY KEY,\n  name VARCHAR(80) NOT NULL,\n  printable_name VARCHAR(80) NOT NULL,\n  iso3 CHAR(3),\n  numcode SMALLINT);";
if (mysql_query($query) == false) {
    die('Error : impossible to create table "country"' . $br . 'MySQL said : ' . mysql_error());
}
if (file_exists("iso_country_list.sql")) {
    $query = file_get_contents("iso_country_list.sql");
    if (multiple_query($query) == false) {
        die('Error creating country table.' . $br . 'MySQL said : ' . mysql_error());
    }
} else {
    die('Oops ! Where did you put the iso_country_list.sql file ?? - Couldn\'t create the country table !');
}
echo 'Operation successful !';
mysql_close();
Пример #3
0
    if (!$db) {
        die("<p><strong>Sorry, could not connect to the MySQL server. <span class='mysql-error'>(" . mysql_error() . ")</span></p>");
    }
    $status = @mysql_select_db($database, $db);
    if (!$status) {
        $sql = "CREATE DATABASE {$database}";
        $status = @mysql_query($sql, $db);
        if (!$status) {
            die("<p><strong>Sorry, there was a problem with the installation.</strong>The selected database did not exist and the installer was unable to create it.<span class='mysql-error'>(" . mysql_error() . ")</span><");
        }
        $status = @mysql_select_db($database, $db);
        if (!$status) {
            die("<p><strong>Sorry, there was a problem with the installation.</strong>The selected database did not exist and the installer was unable to create it.<span class='mysql-error'>(" . mysql_error() . ")</span><");
        }
    }
    multiple_query($query, $db);
    echo "<br /><b>Database succesful installed.</b><br />";
    echo "<b>Please delete /install dir.</b><br />";
    //$server = $_SERVER['SERVER_NAME'];
    echo "<br><br><h2>Login with this user:</h2>";
    echo "\r\n        <dl>\r\n            <dt>User:</dt>\r\n            <dd>admin</dd>\r\n            <dt>Password:</dt>\r\n            <dd>admin</dd>\r\n        </dl>";
    echo "<br /><h2><a href='/configs/stateOfTheSystem'>Continue</a></h2>";
}
?>
      </div>
    </div>
    <div id="footer">
        Copyright &copy; 2007-2009 Bromine Team | <a href="http://bromine.seleniumhq.org">Bromine</a> | <a href="http://www.dcarter.co.uk">Design by dcarter</a>
    </div>
    <div id="debug">
    <?php 
Пример #4
0
function install_db()
{
    $sql = "\n\t\n\tCREATE TABLE `ads` (\n  `ad_id` int(11) NOT NULL auto_increment,\n  `user_id` varchar(255) NOT NULL default '0',\n  `ad_date` datetime NOT NULL default '0000-00-00 00:00:00',\n  `order_id` int(11) default '0',\n  `banner_id` int(11) NOT NULL default '0',\n  `1` varchar(255) NOT NULL default '',\n  `2` varchar(255) NOT NULL default '',\n  `3` varchar(255) NOT NULL default '',\n  PRIMARY KEY  (`ad_id`)\n);;;\n\t\n\t\n\tCREATE TABLE `banners` (\n  `banner_id` int(11) NOT NULL auto_increment,\n  `grid_width` int(11) NOT NULL default '0',\n  `grid_height` int(11) NOT NULL default '0',\n  `days_expire` mediumint(9) default '0',\n  `price_per_block` float NOT NULL default '0',\n  `name` varchar(255) NOT NULL default '',\n  `currency` char(3) NOT NULL default 'USD',\n  `publish_date` datetime default NULL,\n  `max_orders` int(11) NOT NULL default '0',\n  `block_width` int(11) NOT NULL default '10',\n  `block_height` int(11) NOT NULL default '10',\n  `grid_block` text NOT NULL,\n  `nfs_block` text NOT NULL,\n  `tile` text NOT NULL,\n  `usr_grid_block` text NOT NULL,\n  `usr_nfs_block` text NOT NULL,\n  `usr_ord_block` text NOT NULL,\n  `usr_res_block` text NOT NULL,\n  `usr_sel_block` text NOT NULL,\n  `usr_sol_block` text NOT NULL,\n  `max_blocks` int(11) NOT NULL default '0',\n  `min_blocks` int(11) NOT NULL default '0',\n  `date_updated` datetime NOT NULL default '0000-00-00 00:00:00',\n  `bgcolor` varchar(7) NOT NULL default '#FFFFFF',\n  `auto_publish` char(1) NOT NULL default 'N',\n  `auto_approve` char(1) NOT NULL default 'N',\n  `time_stamp` int(11) default NULL,\n  PRIMARY KEY  (`banner_id`)\n);;;\n\n\n\tINSERT INTO `banners` VALUES (1, 100, 100, 1, 100, 'Million Pixels. (1000x1000)', 'USD', NULL, 1, 10, 10, 'iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAIAAAACUFjqAAAAHklEQVR4nGO8cuUKA27AwsDAoK2tjUuaCY/W4SwNAJbvAxP1WmxKAAAAAElFTkSuQmCC', 'iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAIAAAACUFjqAAAAFUlEQVR4nGP8//8/A27AhEduBEsDAKXjAxF9kqZqAAAAAElFTkSuQmCC', 'iVBORw0KGgoAAAANSUhEUgAAAHgAAAB4AQMAAAADqqSRAAAABlBMVEXW19b///9ZVCXjAAAAJklEQVR4nGNgQAP197///Y8gBpw/6r5R9426b9R9o+4bdd8wdB8AiRh20BqKw9IAAAAASUVORK5CYII=', 'iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAIAAAACUFjqAAAAHklEQVR4nGO8cuUKA27AwsDAoK2tjUuaCY/W4SwNAJbvAxP1WmxKAAAAAElFTkSuQmCC', 'iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAIAAAACUFjqAAAAFUlEQVR4nGP8//8/A27AhEduBEsDAKXjAxF9kqZqAAAAAElFTkSuQmCC', 'iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAIAAAACUFjqAAAAFElEQVR4nGP83+DAgBsw4ZEbwdIAJ/sB02xWjpQAAAAASUVORK5CYII=', 'iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAIAAAACUFjqAAAAE0lEQVR4nGP8/58BD2DCJzlypQF0BwISHGyJPgAAAABJRU5ErkJggg==', 'iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAIAAAACUFjqAAAAE0lEQVR4nGNk+M+ABzDhkxy50gBALQETmXEDiQAAAABJRU5ErkJggg==', 'iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAIAAAACUFjqAAAAEklEQVR4nGP8z4APMOGVHbHSAEEsAROxCnMTAAAAAElFTkSuQmCC', 500, 0, '2007-02-17 10:48:32', '#FFffFF', 'Y', 'Y', 1171775611);;;\n\nCREATE TABLE `categories` (\n  `category_id` int(11) NOT NULL default '0',\n  `category_name` varchar(255) NOT NULL default '',\n  `parent_category_id` int(11) NOT NULL default '0',\n  `obj_count` int(11) NOT NULL default '0',\n  `form_id` int(11) NOT NULL default '0',\n  `allow_records` set('Y','N') NOT NULL default 'Y',\n  `list_order` smallint(6) NOT NULL default '1',\n  `search_set` text NOT NULL,\n  `seo_fname` varchar(100) default NULL,\n  `seo_title` varchar(255) default NULL,\n  `seo_desc` varchar(255) default NULL,\n  `seo_keys` varchar(255) default NULL,\n  PRIMARY KEY  (`category_id`),\n  KEY `composite_index` (`parent_category_id`,`category_id`)\n);;;\n\n\nCREATE TABLE `form_fields` (\n  `form_id` int(11) NOT NULL default '0',\n  `field_id` int(11) NOT NULL auto_increment,\n  `section` tinyint(4) NOT NULL default '1',\n  `reg_expr` varchar(255) NOT NULL default '',\n  `field_label` varchar(255) NOT NULL default '-noname-',\n  `field_type` varchar(255) NOT NULL default 'TEXT',\n  `field_sort` tinyint(4) NOT NULL default '0',\n  `is_required` set('Y','N') NOT NULL default 'N',\n  `display_in_list` set('Y','N') NOT NULL default 'N',\n  `is_in_search` set('Y','N') NOT NULL default 'N',\n  `error_message` varchar(255) NOT NULL default '',\n  `field_init` varchar(255) NOT NULL default '',\n  `field_width` tinyint(4) NOT NULL default '20',\n  `field_height` tinyint(4) NOT NULL default '0',\n  `list_sort_order` tinyint(4) NOT NULL default '0',\n  `search_sort_order` tinyint(4) NOT NULL default '0',\n  `template_tag` varchar(255) NOT NULL default '',\n  `is_hidden` char(1) NOT NULL default '',\n  `is_anon` char(1) NOT NULL default '',\n  `field_comment` text NOT NULL,\n  `category_init_id` int(11) NOT NULL default '0',\n  `is_cat_multiple` set('Y','N') NOT NULL default 'N',\n  `cat_multiple_rows` tinyint(4) NOT NULL default '1',\n  `is_blocked` char(1) NOT NULL default 'N',\n  `multiple_sel_all` char(1) NOT NULL default 'N',\n  `is_prefill` char(1) NOT NULL default 'N',\n  PRIMARY KEY  (`field_id`)\n);;;\n\nINSERT INTO `form_fields` VALUES (1, 1, 1, 'not_empty', 'Ad Text', 'TEXT', 1, 'Y', '', '', 'was not filled in', '', 80, 0, 0, 0, 'ALT_TEXT', '', '', '', 0, '', 0, '', '', '');;;\nINSERT INTO `form_fields` VALUES (1, 2, 1, 'url', 'URL', 'TEXT', 2, 'Y', '', '', 'is not valid.', 'http://', 80, 0, 0, 0, 'URL', '', '', '', 0, '', 0, '', '', '');;;\nINSERT INTO `form_fields` VALUES (1, 3, 1, '', 'Additional Image', 'IMAGE', 3, '', '', '', '', '', 0, 0, 0, 0, 'IMAGE', '', '', '(This image will be displayed when a mouse pointer is placed over your ad)', 0, '', 0, '', '', '');;;\n\n\n\nCREATE TABLE `form_field_translations` (\n  `field_id` int(11) NOT NULL default '0',\n  `lang` char(2) NOT NULL default '',\n  `field_label` text NOT NULL,\n  `error_message` varchar(255) NOT NULL default '',\n  `field_comment` text NOT NULL,\n  PRIMARY KEY  (`field_id`,`lang`),\n  KEY `field_id` (`field_id`)\n) ;;;\n\nINSERT INTO `form_field_translations` VALUES (1, 'EN', 'Ad Text', 'was not filled in', '');;;\nINSERT INTO `form_field_translations` VALUES (2, 'EN', 'URL', 'is not valid.', '');;;\nINSERT INTO `form_field_translations` VALUES (3, 'EN', 'Additional Image', '', '(This image will be displayed when a mouse pointer is placed over your ad)');;;\n\n\nCREATE TABLE `form_lists` (\n  `form_id` int(11) NOT NULL default '0',\n  `field_type` varchar(255) NOT NULL default '',\n  `sort_order` int(11) NOT NULL default '0',\n  `field_id` varchar(255) NOT NULL default '0',\n  `template_tag` varchar(255) NOT NULL default '',\n  `column_id` int(11) NOT NULL auto_increment,\n  `admin` set('Y','N') NOT NULL default '',\n  `truncate_length` smallint(4) NOT NULL default '0',\n  `linked` set('Y','N') NOT NULL default 'N',\n  `clean_format` set('Y','N') NOT NULL default '',\n  `is_bold` set('Y','N') NOT NULL default '',\n  `is_sortable` set('Y','N') NOT NULL default 'N',\n  `no_wrap` set('Y','N') NOT NULL default '',\n  PRIMARY KEY  (`column_id`)\n) ;;;\n\nINSERT INTO `form_lists` VALUES (1, 'TIME', 1, 'ad_date', 'DATE', 1, 'N', 0, 'N', 'N', 'N', 'Y', 'N');;;\nINSERT INTO `form_lists` VALUES (1, 'EDITOR', 2, '1', 'ALT_TEXT', 2, 'N', 0, 'Y', 'N', 'N', 'Y', 'N');;;\nINSERT INTO `form_lists` VALUES (1, 'TEXT', 3, '2', 'URL', 3, 'N', 0, 'N', 'N', 'N', 'N', 'N');;;\n\n\nCREATE TABLE `temp_orders` (\n  `session_id` varchar(32) NOT NULL default '',\n  `blocks` text NOT NULL,\n  `order_date` datetime NOT NULL default '0000-00-00 00:00:00',\n  `price` float NOT NULL default '0',\n  `quantity` int(11) NOT NULL default '0',\n  `banner_id` int(11) NOT NULL default '1',\n  `currency` char(3) NOT NULL default 'USD',\n  `days_expire` int(11) NOT NULL default '0',\n  `date_stamp` datetime default NULL,\n  `package_id` int(11) NOT NULL default '0',\n  `ad_id` int(11) default '0',\n  `block_info` text NOT NULL,\n  PRIMARY KEY  (`session_id`)\n);;;\n\n\tCREATE TABLE `blocks` (\n\t  `block_id` int(11) NOT NULL default '0',\n\t  `user_id` int(11) default NULL,\n\t  `status` set('reserved','sold','free','ordered','nfs') NOT NULL default '',\n\t  `x` int(11) NOT NULL default '0',\n\t  `y` int(11) NOT NULL default '0',\n\t  `image_data` text NOT NULL,\n\t  `url` varchar(255) NOT NULL default '',\n\t  `alt_text` text NOT NULL default '',\n\t  `file_name` varchar(255) NOT NULL default '',\n\t  `mime_type` varchar(100) NOT NULL default '',\n\t  `approved` set('Y','N') NOT NULL default '',\n\t  `published` set('Y','N') NOT NULL default '',\n\t  `currency` char(3) NOT NULL default 'USD',\n\t  `order_id` int(11) NOT NULL default '0',\n\t  `price` float default NULL,\n\t  `banner_id` int(11) NOT NULL default '1',\n\t\t`ad_id` INT(11)  NOT NULL default '0',\n\t\t`click_count` INT NOT NULL,\n\t  PRIMARY KEY  (`block_id`,`banner_id`)\n\t);;;\n\n\tCREATE TABLE `clicks` (\n\t\t`banner_id` INT NOT NULL ,\n\t\t`block_id` INT NOT NULL ,\n\t\t`user_id` INT NOT NULL ,\n\t\t`date` date NOT NULL default '0000-00-00',\n\t\t`clicks` INT NOT NULL ,\n\t\tPRIMARY KEY ( `banner_id` , `block_id` ,  `date` ) \n\t);;;\n\n\n\tCREATE TABLE `config` (\n\t  `key` varchar(255) NOT NULL default '',\n\t  `val` varchar(255) NOT NULL default '',\n\t  PRIMARY KEY  (`key`)\n\t);;;\n\n\tINSERT INTO `config` VALUES ('EXPIRE_RUNNING', 'NO');;;\n\tINSERT INTO `config` VALUES ('LAST_EXPIRE_RUN', '1138243912');;;\n\tINSERT INTO `config` VALUES ('SELECT_RUNNING', 'NO');;;\n\n\n\n\n\n\tCREATE TABLE `currencies` (\n\t  `code` char(3) NOT NULL default '',\n\t  `name` varchar(50) NOT NULL default '',\n\t  `rate` decimal(10,4) NOT NULL default '1.0000',\n\t  `is_default` set('Y','N') NOT NULL default 'N',\n\t  `sign` varchar(8) NOT NULL default '',\n\t  `decimal_places` smallint(6) NOT NULL default '0',\n\t  `decimal_point` char(3) NOT NULL default '',\n\t  `thousands_sep` char(3) NOT NULL default '',\n\t  PRIMARY KEY  (`code`)\n\t);;;\n\n\n\tINSERT INTO `currencies` VALUES ('AUD', 'Australian Dollar', 1.3630, 'N', '\$', 2, '.', ',');;;\n\tINSERT INTO `currencies` VALUES ('CAD', 'Canadian Dollar', 1.1888, 'N', '\$', 2, '.', ',');;;\n\tINSERT INTO `currencies` VALUES ('EUR', 'Euro', 0.8498, 'N', '€', 2, '.', ',');;;\n\tINSERT INTO `currencies` VALUES ('GBP', 'British Pound', 0.5739, 'N', '£', 2, '.', ',');;;\n\tINSERT INTO `currencies` VALUES ('JPY', 'Japanese Yen', 117.2750, 'N', '¥', 0, '.', ',');;;\n\tINSERT INTO `currencies` VALUES ('USD', 'U.S. Dollar', 1.0000, 'Y', '\$', 2, '.', ',');;;\n\n\n\n\tCREATE TABLE `lang` (\n\t  `lang_code` char(2) NOT NULL default '',\n\t  `lang_filename` varchar(32) NOT NULL default '',\n\t  `lang_image` varchar(32) NOT NULL default '',\n\t  `is_active` set('Y','N') NOT NULL default '',\n\t  `name` varchar(32) NOT NULL default '',\n\t  `charset` varchar(32) NOT NULL default '',\n\t  `image_data` text NOT NULL,\n\t  `mime_type` varchar(255) NOT NULL default '',\n\t  `is_default` char(1) NOT NULL default 'N',\n\t  PRIMARY KEY  (`lang_code`)\n\t);;;\n\n\t \n\n\tINSERT INTO `lang` VALUES ('EN', 'english.php', 'english.gif', 'Y', 'English', '', 'R0lGODlhGQARAMQAAAURdBYscgNNfrUOEMkMBdAqE9UTMtItONNUO9w4SdxmaNuObhYuh0Y5lCxVlFJcpqN2ouhfjLCrrOeRmeHKr/Wy3Lje4dPW3PDTz9/q0vXm1ffP7MLt5/f0+AAAAAAAACwAAAAAGQARAAAF02AAMIDDkOgwEF3gukCZIICI1jhFDRmOS4dF50aMVSqEjehFIWQ2kJLUMRoxCCsNzDFBZDCuh1RMpQY6HZYIiOlIYqKy9JZIqHeZTqMWnvoZCgosCkIXDoeIAGJkfmgEB3UHkgp1dYuKVWJXWCsEnp4qAwUcpBwWphapFhoanJ+vKxOysxMRgbcDHRlfeboZF2mvwp+5Eh07YC9naMzNzLmKuggTDy8G19jZ2NAiFB0LBxYuC+TlC7Syai8QGU0TAs7xaNxLDLoDdsPDuS98ABXfQgAAOw==', 'image/gif', 'Y');;;\n\n\n\n\tCREATE TABLE `orders` (\n  `user_id` int(11) NOT NULL default '0',\n  `order_id` int(11) NOT NULL auto_increment,\n  `blocks` text NOT NULL,\n  `status` set('pending','completed','cancelled','confirmed','new','expired','deleted','renew_wait','renew_paid') NOT NULL default '',\n  `order_date` datetime NOT NULL default '0000-00-00 00:00:00',\n  `price` float NOT NULL default '0',\n  `quantity` int(11) NOT NULL default '0',\n  `banner_id` int(11) NOT NULL default '1',\n  `currency` char(3) NOT NULL default 'USD',\n  `days_expire` int(11) NOT NULL default '0',\n  `date_published` datetime default NULL,\n  `date_stamp` datetime default NULL,\n  `expiry_notice_sent` set('Y','N') NOT NULL default '',\n  `package_id` int(11) NOT NULL default '0',\n  `ad_id` int(11) default NULL,\n  `approved` set('Y','N') NOT NULL default 'N',\n  `published` set('Y','N') NOT NULL default '',\n  `subscr_status` varchar(32) NOT NULL default '',\n  `original_order_id` int(11) default NULL,\n  `previous_order_id` int(11) NOT NULL default '0',\n  PRIMARY KEY  (`order_id`)\n);;;\n\n\n\tCREATE TABLE `packages` (\n  `banner_id` int(11) NOT NULL default '0',\n  `days_expire` int(11) NOT NULL default '0',\n  `price` float NOT NULL default '0',\n  `currency` char(3) NOT NULL default '',\n  `package_id` int(11) NOT NULL auto_increment,\n  `is_default` set('Y','N') default NULL,\n  `max_orders` mediumint(9) NOT NULL default '0',\n  `description` varchar(255) NOT NULL default '',\n  PRIMARY KEY  (`package_id`)\n);;;\n\n\n\tCREATE TABLE `prices` (\n\t  `price_id` int(11) NOT NULL auto_increment,\n\t  `banner_id` int(11) NOT NULL default '0',\n\t  `row_from` int(11) NOT NULL default '0',\n\t  `row_to` int(11) NOT NULL default '0',\n\t  `block_id_from` int(11) NOT NULL default '0',\n\t  `block_id_to` int(11) NOT NULL default '0',\n\t  `price` float NOT NULL default '0',\n\t  `currency` char(3) NOT NULL default '',\n\t  `color` varchar(50) NOT NULL default '',\n\t\tcol_from int(11) default NULL,\n\t\tcol_to int(11) default NULL,\n\t  PRIMARY KEY  (`price_id`)\n\t);;;\n\n\n\n\tCREATE TABLE `transactions` (\n\t  `transaction_id` int(11) NOT NULL auto_increment,\n\t  `date` datetime NOT NULL default '0000-00-00 00:00:00',\n\t  `order_id` int(11) NOT NULL default '0',\n\t  `type` varchar(32) NOT NULL default '',\n\t  `amount` float NOT NULL default '0',\n\t  `currency` char(3) NOT NULL default '',\n\t  `txn_id` varchar(128) NOT NULL default '',\n\t  `reason` varchar(64) NOT NULL default '',\n\t  `origin` varchar(32) NOT NULL default '',\n\t  PRIMARY KEY  (`transaction_id`)\n\t);;;\n\n\t \n\n\tCREATE TABLE `users` (\n\t  `ID` int(11) NOT NULL auto_increment,\n\t  `IP` varchar(50) NOT NULL default '',\n\t  `SignupDate` datetime NOT NULL default '0000-00-00 00:00:00',\n\t  `FirstName` varchar(50) NOT NULL default '',\n\t  `LastName` varchar(50) NOT NULL default '',\n\t  `Rank` int(11) NOT NULL default '1',\n\t  `Username` varchar(50) NOT NULL default '',\n\t  `Password` varchar(50) NOT NULL default '',\n\t  `Email` varchar(255) NOT NULL default '',\n\t  `Newsletter` int(11) NOT NULL default '1',\n\t  `Notification1` int(11) NOT NULL default '0',\n\t  `Notification2` int(11) NOT NULL default '0',\n\t  `Aboutme` longtext NOT NULL,\n\t  `Validated` int(11) NOT NULL default '0',\n\t  `CompName` varchar(255) NOT NULL default '',\n\t  `login_date` datetime NOT NULL default '0000-00-00 00:00:00',\n\t  `logout_date` datetime NOT NULL default '0000-00-00 00:00:00',\n\t  `login_count` int(11) NOT NULL default '0',\n\t  `last_request_time` datetime NOT NULL default '0000-00-00 00:00:00',\n\t  `click_count` int(11) NOT NULL default '0',\n\t  PRIMARY KEY  (`ID`),\n\t  UNIQUE KEY `Username` (`Username`)\n\t);;;\n\t\t\n\tCREATE TABLE `mail_queue` (\n\t\t`mail_id` int(11) NOT NULL auto_increment,\n\t\t`mail_date` datetime NOT NULL default '0000-00-00 00:00:00',\n\t\t`to_address` varchar(128) NOT NULL default '',\n\t\t`to_name` varchar(128) NOT NULL default '',\n\t\t`from_address` varchar(128) NOT NULL default '',\n\t\t`from_name` varchar(128) NOT NULL default '',\n\t\t`subject` varchar(255) NOT NULL default '',\n\t\t`message` text NOT NULL,\n\t\t`html_message` text NOT NULL,\n\t\t`attachments` set('Y','N') NOT NULL default '',\n\t\t`status` set('queued','sent','error') NOT NULL default '',\n\t\t`error_msg` varchar(255) NOT NULL default '',\n\t\t`retry_count` smallint(6) NOT NULL default '0',\n\t\t`template_id` int(11) NOT NULL default '0',\n\t\t`att1_name` varchar(128) NOT NULL default '',\n\t\t`att2_name` varchar(128) NOT NULL default '',\n\t\t`att3_name` varchar(128) NOT NULL default '',\n\t\t`date_stamp` datetime NOT NULL default '0000-00-00 00:00:00',\n\t\tPRIMARY KEY  (`mail_id`));;;\n\n\tCREATE TABLE `cat_name_translations` (\n  `category_id` int(11) NOT NULL default '0',\n  `lang` char(2) NOT NULL default '',\n  `category_name` text NOT NULL,\n  PRIMARY KEY  (`category_id`,`lang`),\n  KEY `category_id` (`category_id`)\n) ;;;\n\nCREATE TABLE `codes` (\n  `field_id` varchar(30) NOT NULL default '',\n  `code` varchar(5) NOT NULL default '',\n  `description` varchar(30) NOT NULL default '',\n  PRIMARY KEY  (`field_id`,`code`)\n) ;;;\n\n\tCREATE TABLE `codes_translations` (\n  `field_id` int(11) NOT NULL default '0',\n  `code` varchar(10) NOT NULL default '',\n  `description` varchar(255) NOT NULL default '',\n  `lang` char(2) NOT NULL default '',\n  PRIMARY KEY  (`field_id`,`code`,`lang`)\n) \n\t";
    mysql_connect(MYSQL_HOST, MYSQL_USER, MYSQL_PASS) or die(mysql_error());
    mysql_select_db(MYSQL_DB) or die(mysql_error());
    /* You can use it like this */
    $queries = multiple_query($sql);
    for ($i = 0; $i < count($queries); $i++) {
        if ($queries[$i][1] == 0) {
            /* some code.... with the result in $queries[$i][0] */
        } else {
            echo "<pre>Error: " . $queries[$i][2] . "(" . $queries[$i][3] . ")<br>\n</pre>";
        }
    }
    //$result = mysql_query ($sql) or die (mysql_error());
    //$rows = mysql_affected_rows ($result);;;
    echo count($queries) . " Operations Completed.<br>";
}
Пример #5
0
 function upgrade_from_one_dot_six()
 {
     # Find autoincrement values for each table that uses them
     $sql = "SELECT LAST_INSERT_ID() from acl";
     $result = $dbo->exec($sql);
     $acl_autoincrement = $result->fetchColumn();
     $sql = "SELECT LAST_INSERT_ID() from blocks";
     $result = $dbo->exec($sql);
     $blocks_autoincrement = $result->fetchColumn();
     $sql = "SELECT LAST_INSERT_ID() from `ldap-servers`";
     $result = $dbo->exec($sql);
     $ldap_autoincrement = $result->fetchColumn();
     $sql = "SELECT LAST_INSERT_ID() from logs";
     $result = $dbo->exec($sql);
     $logs_autoincrement = $result->fetchColumn();
     $sql = "SELECT LAST_INSERT_ID() from statics";
     $result = $dbo->exec($sql);
     $statics_autoincrement = $result->fetchColumn();
     $sql = "SELECT LAST_INSERT_ID() from subnets";
     $result = $dbo->exec($sql);
     $subnets_autoincrement = $result->fetchColumn();
     $sql = "SELECT LAST_INSERT_ID() from users";
     $result = $dbo->exec($sql);
     $users_autoincrement = $result->fetchColumn();
     # copy old tables to temporary tables using unsigned INTs, then drop old ones, then rename new to old
     $data_shuffle = "\r\n  \t\tCREATE TABLE `tmp_acl` (\r\n  \t\t  `id` int(9) UNSIGNED NOT NULL auto_increment,\r\n  \t\t  `name` varchar(25) NOT NULL,\r\n  \t\t  `start_ip` int(10) NOT NULL,\r\n  \t\t  `end_ip` int(10) NOT NULL,\r\n  \t\t  `subnet_id` int(9) UNSIGNED NOT NULL,\r\n  \t\t  PRIMARY KEY  (`id`)\r\n  \t\t) ENGINE=MyISAM AUTO_INCREMENT={$acl_autoincrement} DEFAULT CHARSET=latin1;\r\n  \t\tINSERT INTO `tmp_acl` SELECT CAST((id & 0xFFFFFFFF) AS UNSIGNED), name, start_ip, end_ip, apply FROM acl;\r\n  \r\n  \t\tCREATE TABLE `tmp_blocks` (\r\n  \t\t  `id` int(9) UNSIGNED NOT NULL auto_increment,\r\n  \t\t  `name` varchar(25) NOT NULL,\r\n  \t\t  `start_ip` int(10) NOT NULL,\r\n  \t\t  `end_ip` int(10) NOT NULL,\r\n  \t\t  `note` varchar(255) NOT NULL,\r\n  \t\t  `modified_by` varchar(25) NOT NULL,\r\n  \t\t  `modified_at` datetime NOT NULL,\r\n  \t\t  PRIMARY KEY  (`id`),\r\n  \t\t  UNIQUE KEY `name` (`name`)\r\n  \t\t) ENGINE=MyISAM AUTO_INCREMENT={$blocks_autoincrement} DEFAULT CHARSET=latin1;\t\t\r\n  \t\tINSERT INTO `tmp_blocks` SELECT CAST((id & 0xFFFFFFFF) AS UNSIGNED), name, start_ip, end_ip, note, modified_by, modified_at FROM blocks;\r\n  \r\n  \t\tCREATE TABLE `tmp_ldap-servers` (\r\n  \t\t  `id` tinyint(4) UNSIGNED NOT NULL auto_increment,\r\n  \t\t  `domain` varchar(128) NOT NULL,\r\n  \t\t  `server` varchar(255) NOT NULL,\r\n  \t\t  PRIMARY KEY  (`id`)\r\n  \t\t) ENGINE=MyISAM AUTO_INCREMENT={$ldap_autoincrement} DEFAULT CHARSET=latin1;\r\n  \t\tINSERT INTO `tmp_ldap-servers` SELECT CAST((id & 0xFFFFFFFF) AS UNSIGNED), domain, server FROM `ldap-servers`;\r\n  \r\n  \t\tCREATE TABLE `tmp_logs` (\r\n  \t\t  `id` int(11) UNSIGNED NOT NULL auto_increment,\r\n  \t\t  `occuredat` datetime NOT NULL,\r\n  \t\t  `username` varchar(30) NOT NULL,\r\n  \t\t  `ipaddress` varchar(15) NOT NULL,\r\n  \t\t  `level` varchar(6) NOT NULL,\r\n  \t\t  `message` varchar(255) NOT NULL,\r\n  \t\t  PRIMARY KEY  (`id`),\r\n  \t\t  KEY `username` (`username`)\r\n  \t\t) ENGINE=MyISAM AUTO_INCREMENT={$logs_autoincrement} DEFAULT CHARSET=latin1;\r\n  \t\tINSERT INTO `tmp_logs` SELECT CAST((id & 0xFFFFFFFF) AS UNSIGNED), occuredat, username, ipaddress, level, message FROM logs;\r\n  \r\n  \t\tCREATE TABLE `tmp_statics` (\r\n  \t\t  `id` int(10) UNSIGNED NOT NULL auto_increment,\r\n  \t\t  `ip` int(10) NOT NULL,\r\n  \t\t  `name` varchar(50) NOT NULL,\r\n  \t\t  `contact` varchar(25) NOT NULL,\r\n  \t\t  `note` varchar(255) NOT NULL,\r\n  \t\t  `subnet_id` int(9) UNSIGNED NOT NULL,\r\n  \t\t  `modified_by` varchar(25) NOT NULL,\r\n  \t\t  `modified_at` datetime NOT NULL,\r\n  \t\t  `failed_scans` INT( 16 ) NOT NULL DEFAULT  '0',\r\n  \t\t  PRIMARY KEY  (`id`),\r\n  \t\t  UNIQUE KEY `ip` (`ip`)\r\n  \t\t) ENGINE=MyISAM AUTO_INCREMENT={$statics_autoincrement} DEFAULT CHARSET=latin1;\r\n  \t\tINSERT INTO `tmp_statics` SELECT CAST((id & 0xFFFFFFFF) AS UNSIGNED), ip, name, contact, note, CAST((subnet_id & 0xFFFFFFFF) AS UNSIGNED), modified_by, modified_at, failed_scans FROM statics;\r\n  \r\n  \t\tCREATE TABLE `tmp_subnets` (\r\n  \t\t  `id` int(9) UNSIGNED NOT NULL auto_increment,\r\n  \t\t  `name` varchar(25) NOT NULL,\r\n  \t\t  `start_ip` int(10) NOT NULL,\r\n  \t\t  `end_ip` int(10) NOT NULL,\r\n  \t\t  `mask` int(10) NOT NULL,\r\n  \t\t  `note` varchar(255) NOT NULL,\r\n  \t\t  `block_id` tinyint(9) UNSIGNED NOT NULL,\r\n  \t\t  `modified_by` varchar(25) NOT NULL,\r\n  \t\t  `modified_at` datetime NOT NULL,\r\n  \t\t  `guidance` longtext NOT NULL,\r\n  \t\t  PRIMARY KEY  (`id`),\r\n  \t\t  UNIQUE KEY `name` (`name`)\r\n  \t\t) ENGINE=MyISAM AUTO_INCREMENT={$subnets_autoincrement} DEFAULT CHARSET=latin1;\r\n  \t\tINSERT INTO `tmp_subnets` SELECT CAST((id & 0xFFFFFFFF) AS UNSIGNED), name, start_ip, end_ip, mask, note, CAST((block_id & 0xFFFFFFFF) AS UNSIGNED), modified_by, modified_at, guidance FROM subnets;\r\n  \r\n  \t\tCREATE TABLE `tmp_users` (\r\n  \t\t  `id` int(9) UNSIGNED NOT NULL auto_increment,\r\n  \t\t  `username` varchar(100) NOT NULL,\r\n  \t\t  `passwd` varchar(40) NOT NULL,\r\n  \t\t  `tmppasswd` varchar(40) NOT NULL,\r\n  \t\t  `accesslevel` tinyint(1) NOT NULL default '0',\r\n  \t\t  `phone` varchar(25) NOT NULL,\r\n  \t\t  `email` varchar(50) NOT NULL,\r\n  \t\t  `loginattempts` tinyint(1) NOT NULL,\r\n  \t\t  `passwdexpire` datetime NOT NULL,\r\n  \t\t  `ldapexempt` tinyint(1) NOT NULL default '0',\r\n  \t\t  PRIMARY KEY  (`id`),\r\n  \t\t  UNIQUE KEY `username` (`username`)\r\n  \t\t) ENGINE=MyISAM AUTO_INCREMENT={$users_autoincrement} DEFAULT CHARSET=latin1;\r\n  \t\tINSERT INTO `tmp_users` SELECT CAST((id & 0xFFFFFFFF) AS UNSIGNED), username, passwd, tmppasswd, accesslevel, phone, email, loginattempts, passwdexpire, ldapexempt FROM users;\r\n  \t\t\r\n  \t\tDROP TABLE acl;\r\n  \t\tDROP TABLE blocks;\r\n  \t\tDROP TABLE `ldap-servers`;\r\n  \t\tDROP TABLE logs;\r\n  \t\tDROP TABLE statics;\r\n  \t\tDROP TABLE subnets;\r\n  \t\tDROP TABLE users;\r\n  \t\t\r\n  \t\tRENAME TABLE tmp_acl TO acl;\r\n  \t\tRENAME TABLE tmp_blocks TO blocks;\r\n  \t\tRENAME TABLE `tmp_ldap-servers` TO `ldap-servers`;\r\n  \t\tRENAME TABLE tmp_logs TO logs;\r\n  \t\tRENAME TABLE tmp_statics TO statics;\r\n  \t\tRENAME TABLE tmp_subnets TO subnets;\r\n  \t\tRENAME TABLE tmp_users TO users;\r\n  \t\tDELETE FROM statics WHERE subnet_id != ALL (SELECT id from subnets);\r\n  \t\tUPDATE settings SET value='1.7' WHERE name='version'\r\n  \t\t";
     $results = multiple_query("{$data_shuffle}");
     return $results;
 }