WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
CREATE TABLE IF NOT EXISTS `wp_amz_assets` ( `id` BIGINT(15) UNSIGNED NOT NULL AUTO_INCREMENT, `post_id` BIGINT(20) NOT NULL, `asset` VARCHAR(225) NULL DEFAULT NULL, `thumb` VARCHAR(225) NULL DEFAULT NULL, `download_status` VARCHAR(20) NULL DEFAULT 'new' COMMENT 'new, success, inprogress, error, remote', `hash` VARCHAR(32) NULL DEFAULT NULL, `media_id` BIGINT(20) NULL DEFAULT '0', `msg` TEXT NULL, `date_added` DATETIME NULL DEFAULT NULL, `date_download` DATETIME NULL DEFAULT NULL, `image_sizes` TEXT NULL, PRIMARY KEY (`id`), INDEX `post_id` (`post_id`), INDEX `hash` (`hash`), INDEX `media_id` (`media_id`), INDEX `download_status` (`download_status`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
CREATE TABLE IF NOT EXISTS `wp_amz_products` ( `id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, `post_id` BIGINT(20) NOT NULL, `post_parent` BIGINT(20) NULL DEFAULT '0', `type` ENUM('post','variation') NULL DEFAULT 'post', `title` TEXT NULL, `nb_assets` INT(4) NULL DEFAULT '0', `nb_assets_done` INT(4) NULL DEFAULT '0', `status` ENUM('new','success') NULL DEFAULT 'new', PRIMARY KEY (`post_id`, `id`), UNIQUE INDEX `post_id` (`post_id`), INDEX `post_parent` (`post_parent`), INDEX `type` (`type`), INDEX `nb_assets` (`nb_assets`), INDEX `nb_assets_done` (`nb_assets_done`), INDEX `id` (`id`), INDEX `status` (`status`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
CREATE TABLE IF NOT EXISTS `wp_amz_cross_sell` ( `ASIN` VARCHAR(10) NOT NULL, `products` TEXT NULL, `nr_products` INT(11) NULL DEFAULT NULL, `add_date` TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `is_variable` CHAR(1) NULL DEFAULT 'N', `nb_tries` TINYINT(1) UNSIGNED NULL DEFAULT '0', PRIMARY KEY (`ASIN`), UNIQUE INDEX `ASIN` (`ASIN`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
CREATE TABLE IF NOT EXISTS `wp_amz_report_log` ( `id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, `log_id` VARCHAR(50) NULL DEFAULT NULL, `log_action` VARCHAR(50) NULL DEFAULT NULL, `desc` VARCHAR(255) NULL DEFAULT NULL, `log_data_type` VARCHAR(50) NULL DEFAULT NULL, `log_data` LONGTEXT NULL, `source` TEXT NULL, `date_add` TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), INDEX `log_id` (`log_id`), INDEX `log_action` (`log_action`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
CREATE TABLE IF NOT EXISTS `wp_amz_queue` ( `id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, `asin` VARCHAR(100) NOT NULL, `status` VARCHAR(20) NOT NULL, `status_msg` TEXT NOT NULL, `from_op` VARCHAR(30) NOT NULL, `created_date` TIMESTAMP NULL DEFAULT '0000-00-00 00:00:00', `imported_date` TIMESTAMP NULL DEFAULT NULL, `nb_tries` SMALLINT(1) UNSIGNED NOT NULL DEFAULT '0', `nb_tries_prev` SMALLINT(1) UNSIGNED NOT NULL DEFAULT '0', `product_title` TEXT NULL, `country` VARCHAR(30) NOT NULL DEFAULT '', `provider` VARCHAR(20) NOT NULL DEFAULT 'amazon', PRIMARY KEY (`id`), UNIQUE INDEX `asin_from_op` (`asin`, `from_op`), INDEX `nb_tries` (`nb_tries`), INDEX `from_op` (`from_op`), INDEX `status` (`status`), INDEX `country` (`country`), INDEX `provider` (`provider`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
CREATE TABLE IF NOT EXISTS `wp_amz_search` ( `id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, `code` VARCHAR(32) NOT NULL, `publish` ENUM('Y','N') NOT NULL DEFAULT 'Y', `status` VARCHAR(20) NOT NULL, `status_msg` TEXT NOT NULL, `params` TEXT NOT NULL, `provider` VARCHAR(20) NOT NULL DEFAULT 'amazon', `search_title` VARCHAR(100) NOT NULL, `country` VARCHAR(30) NOT NULL DEFAULT '', `recurrency` VARCHAR(10) NOT NULL, `created_date` TIMESTAMP NULL DEFAULT '0000-00-00 00:00:00', `started_at` TIMESTAMP NULL DEFAULT NULL, `ended_at` TIMESTAMP NULL DEFAULT NULL, `run_date` TIMESTAMP NULL DEFAULT NULL, `nb_tries` SMALLINT(1) UNSIGNED NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE INDEX `code` (`code`), INDEX `provider` (`provider`), INDEX `country` (`country`), INDEX `recurrency` (`recurrency`), INDEX `status` (`status`), INDEX `publish` (`publish`), INDEX `run_date` (`run_date`), INDEX `nb_tries` (`nb_tries`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
CREATE TABLE IF NOT EXISTS `wp_amz_locale_reference` ( `ID` INT(10) NOT NULL AUTO_INCREMENT, `country` VARCHAR(3) NOT NULL DEFAULT 'US', `searchIndex` VARCHAR(50) NOT NULL, `department` VARCHAR(100) NOT NULL, `browseNode` BIGINT(20) NOT NULL DEFAULT '0', `sortValues` TEXT NOT NULL, `itemSearchParams` TEXT NOT NULL, PRIMARY KEY (`ID`), UNIQUE INDEX `country_searchIndex` (`country`, `searchIndex`), INDEX `searchIndex` (`searchIndex`), INDEX `department` (`department`), INDEX `browseNode` (`browseNode`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
CREATE TABLE IF NOT EXISTS `wp_amz_amzkeys` ( `id` MEDIUMINT(8) UNSIGNED NOT NULL AUTO_INCREMENT, `access_key` VARCHAR(100) NOT NULL, `secret_key` VARCHAR(100) NOT NULL, `publish` ENUM('Y','N') NOT NULL DEFAULT 'Y', `locked` CHAR(1) NOT NULL DEFAULT 'N', `lock_time` TIMESTAMP NULL DEFAULT NULL, `nb_requests` INT(10) UNSIGNED NOT NULL DEFAULT '0', `nb_requests_valid` INT(10) UNSIGNED NOT NULL DEFAULT '0', `ratio_success` FLOAT(5,2) UNSIGNED NOT NULL DEFAULT '0.00', `last_request_time` TIMESTAMP NULL DEFAULT NULL, `last_request_status` VARCHAR(50) NULL DEFAULT NULL, `last_request_input` MEDIUMTEXT NULL, `last_request_output` MEDIUMTEXT NULL, PRIMARY KEY (`id`), UNIQUE INDEX `access_key_secret_key` (`access_key`, `secret_key`), INDEX `publish_locked_lock_time` (`publish`, `locked`, `lock_time`), INDEX `locked_lock_time` (`locked`, `lock_time`), INDEX `lock_time` (`lock_time`), INDEX `last_request_time` (`last_request_time`), INDEX `ratio_success` (`ratio_success`), INDEX `nb_requests` (`nb_requests`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
CREATE TABLE IF NOT EXISTS `wp_amz_amazon_cache` ( `ID` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, `cache_name` VARCHAR(100) NOT NULL, `cache_type` VARCHAR(20) NOT NULL, `country` VARCHAR(30) NOT NULL, `response` LONGTEXT NOT NULL, `response_date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `provider` VARCHAR(20) NOT NULL DEFAULT 'amazon', PRIMARY KEY (`ID`), UNIQUE INDEX `cache_name_cache_type` (`cache_name`, `cache_type`), INDEX `cache_type` (`cache_type`), INDEX `response_date` (`response_date`), INDEX `provider` (`provider`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
CREATE TABLE IF NOT EXISTS `wp_amz_import_stats` ( `id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, `post_id` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0', `post_title` TEXT NOT NULL, `asin` VARCHAR(100) NOT NULL, `provider` VARCHAR(20) NOT NULL DEFAULT 'amazon', `country` VARCHAR(30) NOT NULL, `from_op` VARCHAR(40) NOT NULL COMMENT '[insane|direct|auto|search]#[some code]', `from_op_p1` VARCHAR(20) NOT NULL, `from_op_p2` VARCHAR(40) NOT NULL, `imported_date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, `import_status_msg` TEXT NOT NULL, `duration_spin` INT(11) UNSIGNED NOT NULL DEFAULT '0', `duration_attributes` INT(11) UNSIGNED NOT NULL DEFAULT '0', `duration_vars` INT(11) UNSIGNED NOT NULL DEFAULT '0', `duration_nb_vars` INT(11) UNSIGNED NOT NULL DEFAULT '0', `duration_img` INT(11) UNSIGNED NOT NULL DEFAULT '0', `duration_nb_img` INT(11) UNSIGNED NOT NULL DEFAULT '0', `duration_img_dw` INT(11) UNSIGNED NOT NULL DEFAULT '0', `duration_nb_img_dw` INT(11) UNSIGNED NOT NULL DEFAULT '0', `duration_product` INT(11) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'duration_spin, duration_attributes, duration_vars, duration_img, other product import operations, but does not contain duration_img_dw', `db_calc` TEXT NOT NULL, PRIMARY KEY (`id`), INDEX `post_id` (`post_id`), INDEX `asin` (`asin`), INDEX `provider` (`provider`), INDEX `country` (`country`), INDEX `from_op_p1` (`from_op_p1`), INDEX `from_op_p2` (`from_op_p2`), INDEX `from_op` (`from_op`), INDEX `duration_product` (`duration_product`), INDEX `duration_img_dw` (`duration_img_dw`), INDEX `duration_nb_img_dw` (`duration_nb_img_dw`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
ALTER TABLE wp_amz_sync_widget CHANGE COLUMN `bulk_code` `bulk_code` VARCHAR(32) NOT NULL COMMENT 'md5( concate( bulk_asins, country ) )'

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
ALTER TABLE wp_amz_sync_widget CHANGE COLUMN `bulk_asins` `bulk_asins` TEXT NOT NULL COMMENT 'array_serialized( post_id => asin )'

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
ALTER TABLE wp_amz_sync_widget CHANGE COLUMN `country` `country` VARCHAR(30) NOT NULL

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
ALTER TABLE wp_amz_sync_widget CHANGE COLUMN `status` `status` VARCHAR(20) NULL DEFAULT NULL

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
ALTER TABLE wp_amz_sync_widget CHANGE COLUMN `status_msg` `status_msg` TEXT NULL COMMENT 'array_serialized( msg => text, msg_full => text )'

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
ALTER TABLE wp_amz_sync_widget CHANGE COLUMN `widget_response` `widget_response` MEDIUMTEXT NULL COMMENT 'widget_response and widget_response_date are used also as a mini-cache system'

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
ALTER TABLE wp_amz_sync_widget CHANGE COLUMN `widget_response_date` `widget_response_date` DATETIME NULL DEFAULT NULL

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
ALTER TABLE wp_amz_sync_widget CHANGE COLUMN `created_date` `created_date` DATETIME NOT NULL

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
ALTER TABLE wp_amz_sync_widget_asins CHANGE COLUMN `asin` `asin` VARCHAR(50) NOT NULL

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
ALTER TABLE wp_amz_sync_widget_asins CHANGE COLUMN `country` `country` VARCHAR(30) NOT NULL

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_amzkeys` (`access_key`, `secret_key`) values('aateam demo access key', 'aateam demo secret access key');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'All', 'All Departments', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Appliances', 'Appliances', 2619526011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'MobileApps', 'Apps & Games', 2350150011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'ArtsAndCrafts', 'Arts, Crafts & Sewing', 2617942011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Automotive', 'Automotive Parts & Accessories', 15690151, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Baby', 'Baby', 3760911, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Beauty', 'Beauty & Personal Care', 11055981, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Books', 'Books', 1000, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Photo', 'Camera & Photo', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Music', 'CDs & Vinyl', 301668, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'MobileAndAccessories', 'Cell Phones & Accessories', 2335753011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Classical', 'Classical', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Apparel', 'Clothing & Accessories', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Fashion', 'Clothing, Shoes & Jewelry', 7141124011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'FashionBaby', 'Clothing, Shoes & Jewelry Baby', 7147444011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'FashionBoys', 'Clothing, Shoes & Jewelry Boys', 7147443011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'FashionGirls', 'Clothing, Shoes & Jewelry Girls', 7147442011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'FashionMen', 'Clothing, Shoes & Jewelry Men', 7147441011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'FashionWomen', 'Clothing, Shoes & Jewelry Women', 7147440011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Collectibles', 'Collectibles & Fine Art', 4991426011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Computers', 'Computers', 541966, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'DigitalEducationalResources', 'Digital Educational Resources', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'DigitalMusic', 'Digital Music', 624868011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Electronics', 'Electronics', 493964, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'EverythingElse', 'Everything Else', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'GardenAndOutdoor', 'Garden & Outdoor', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'GiftCards', 'Gift Cards', 2864120011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'GroceryAndGourmetFood', 'Grocery & Gourmet Food', 16310211, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Handmade', 'Handmade', 11260433011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'HealthPersonalCare', 'Health, Household & Baby Care', 3760931, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'LocalServices', 'Home & Business Services', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'HomeAndKitchen', 'Home & Kitchen', 1063498, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Industrial', 'Industrial & Scientific', 16310161, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Jewelry', 'Jewelry', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'KindleStore', 'Kindle Store', 133141011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Luggage', 'Luggage & Travel Gear', 9479199011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'LuxuryBeauty', 'Luxury Beauty', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Magazines', 'Magazine Subscriptions', 599872, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'MoviesAndTV', 'Movies & TV', 2625374011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'MusicalInstruments', 'Musical Instruments', 11965861, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'OfficeProducts', 'Office Products', 1084128, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'PetSupplies', 'Pet Supplies', 2619534011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'AmazonVideo', 'Prime Video', 2858778011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Shoes', 'Shoes', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Software', 'Software', 409488, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'SportsAndOutdoors', 'Sports & Outdoors', 3375301, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'ToolsAndHomeImprovement', 'Tools & Home Improvement', 468240, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'ToysAndGames', 'Toys & Games', 165795011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'VHS', 'VHS', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'VideoGames', 'Video Games', 11846801, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Watches', 'Watches', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'All', 'All Departments', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'AmazonVideo', 'Amazon Video', 3010086031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'MobileApps', 'Apps & Games', 1661658031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Baby', 'Baby', 60032031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Beauty', 'Beauty', 66280031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Books', 'Books', 1025612, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Automotive', 'Car & Motorbike', 248878031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Music', 'CDs & Vinyl', 520920, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Classical', 'Classical Music', 505510, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Apparel', 'Clothing', 83451031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Computers', 'Computers & Accessories', 340832031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'DigitalMusic', 'Digital Music', 77925031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'ToolsAndHomeImprovement', 'DIY & Tools', 11052591, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'MoviesAndTV', 'DVD & Blu-ray', 573406, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Electronics', 'Electronics & Photo', 560800, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'EverythingElse', 'Everything Else', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Fashion', 'Fashion', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'GardenAndOutdoor', 'Garden & Outdoors', 11052591, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'GiftCards', 'Gift Cards', 1571305031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'GroceryAndGourmetFood', 'Grocery', 344155031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Handmade', 'Handmade', 9699255031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'HealthPersonalCare', 'Health & Personal Care', 66280031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'HomeAndKitchen', 'Home & Kitchen', 11052591, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Industrial', 'Industrial & Scientific', 5866055031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Jewelry', 'Jewellery', 193717031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'KindleStore', 'Kindle Store', 341677031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Appliances', 'Large Appliances', 908799031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Lighting', 'Lighting', 213078031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Luggage', 'Luggage', 2454167031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'LuxuryBeauty', 'Luxury Beauty', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'MusicalInstruments', 'Musical Instruments & DJ', 340837031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'VideoGames', 'PC & Video Games', 1025616, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'PetSupplies', 'Pet Supplies', 340841031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Shoes', 'Shoes & Bags', 362350011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Software', 'Software', 1025614, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'SportsAndOutdoors', 'Sports & Outdoors', 319530011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'OfficeProducts', 'Stationery & Office Supplies', 560800, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'ToysAndGames', 'Toys & Games', 712832, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'VHS', 'VHS', 125556011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Watches', 'Watches', 328229011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'All', 'Alle Kategorien', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'MobileApps', 'Apps & Spiele', 1661650031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Automotive', 'Auto & Motorrad', 78193031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Baby', 'Baby', 357577011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'ToolsAndHomeImprovement', 'Baumarkt', 80085031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Beauty', 'Beauty', 64257031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Apparel', 'Bekleidung', 78689031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Lighting', 'Beleuchtung', 213084031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Books', 'Bücher', 541686, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'ForeignBooks', 'Bücher (Fremdsprachig)', 54071011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'OfficeProducts', 'Bürobedarf & Schreibwaren', 192417031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Computers', 'Computer & Zubehör', 569604, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'HealthPersonalCare', 'Drogerie & Körperpflege', 64257031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'MoviesAndTV', 'DVD & Blu-ray', 547664, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Appliances', 'Elektro-Großgeräte', 931573031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Electronics', 'Elektronik & Foto', 569604, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Fashion', 'Fashion', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'VideoGames', 'Games', 541708, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'GardenAndOutdoor', 'Garten', 10925241, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'GiftCards', 'Geschenkgutscheine', 1571257031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Industrial', 'Gewerbe, Industrie & Wissenschaft', 5866099031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Handmade', 'Handmade', 9699312031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'PetSupplies', 'Haustier', 427727031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Photo', 'Kamera & Foto', 571860, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'KindleStore', 'Kindle-Shop', 530485031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Classical', 'Klassik', 542676, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Luggage', 'Koffer, Rucksäcke & Taschen', 2454119031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'HomeAndKitchen', 'Küche, Haushalt & Wohnen', 3169011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'GroceryAndGourmetFood', 'Lebensmittel & Getränke', 344162031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'LuxuryBeauty', 'Luxury Beauty', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Music', 'Musik-CDs & Vinyl', 542676, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'DigitalMusic', 'Musik-Downloads', 180529031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'MusicalInstruments', 'Musikinstrumente & DJ-Equipment', 340850031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'AmazonVideo', 'Prime Video', 3010076031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Jewelry', 'Schmuck', 327473011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Shoes', 'Schuhe & Handtaschen', 362995011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Software', 'Software', 542064, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'EverythingElse', 'Sonstiges', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'ToysAndGames', 'Spielzeug', 12950661, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'SportsAndOutdoors', 'Sport & Freizeit', 16435121, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Watches', 'Uhren', 193708031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'VHS', 'VHS', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Magazines', 'Zeitschriften', 1161660, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'PetSupplies', 'Animalerie', 1571269031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'MobileApps', 'Applis & Jeux', 1661655031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Automotive', 'Auto et Moto', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'EverythingElse', 'Autres', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Luggage', 'Bagages', 2454146031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Beauty', 'Beauté et Parfum', 197859031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'LuxuryBeauty', 'Beauté Prestige', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Baby', 'Bébés & Puériculture', 206618031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Jewelry', 'Bijoux', 193711031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'GiftCards', 'Boutique chèques-cadeaux', 2524128031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'KindleStore', 'Boutique Kindle', 672109031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'ToolsAndHomeImprovement', 'Bricolage', 590749031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Shoes', 'Chaussures et Sacs', 248812031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'HomeAndKitchen', 'Cuisine & Maison', 57686031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'MoviesAndTV', 'DVD & Blu-ray', 578608, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'GroceryAndGourmetFood', 'Epicerie', 3635789031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'OfficeProducts', 'Fournitures de bureau', 192420031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Appliances', 'Gros électroménager', 908827031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Handmade', 'Handmade', 9699369031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Electronics', 'High-Tech', 14011561, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'HealthPersonalCare', 'Hygiène et Santé', 197862031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Computers', 'Informatique', 340859031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'MusicalInstruments', 'Instruments de musique & Sono', 340862031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'GardenAndOutdoor', 'Jardin', 3557028031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'ToysAndGames', 'Jeux et Jouets', 548014, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'VideoGames', 'Jeux vidéo', 548014, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'ForeignBooks', 'Livres anglais et étrangers', 69633011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Books', 'Livres en français', 468256, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Software', 'Logiciels', 548012, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Lighting', 'Luminaires et Eclairage', 213081031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Fashion', 'Mode', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Watches', 'Montres', 60937031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Music', 'Musique : CD & Vinyles', 537366, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Industrial', 'Secteur industriel & scientifique', 5866110031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'SportsAndOutdoors', 'Sports et Loisirs', 325615031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'DigitalMusic', 'Téléchargement de musique', 206442031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'All', 'Toutes nos catégories', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Apparel', 'Vêtements et accessoires', 340856031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'VHS', 'VHS', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'All', 'All Departments', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'MobileApps', 'Apps & Games', 2381131051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'Baby', 'Baby & Maternity', 13331821, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'Beauty', 'Beauty', 52391051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');

WordPress database error: [The MySQL server is running with the --read-only option so it cannot execute this statement]
insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'Automotive', 'Car & Bike Products', 2017305051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');