Sicarius
Forum Replies Created
-
Forum: Plugins
In reply to: [Broken Link Checker] wpblc_links doesn’t existThe tip from the other thread (https://ww.wp.xz.cn/support/topic/database-error-table-tablename-wp_blc_links-doesnt-exist/) helped. I rolled back (with WP Rollback) to 1.11.10, he created the database tables and then I updated back to 1.11.11 and it works (for now).
Forum: Plugins
In reply to: [Broken Link Checker] wpblc_links doesn’t existI’m running BLC version 1.11.11 according to the plugin-list and MySQL-Version 5.6.19.
Forum: Plugins
In reply to: [Broken Link Checker] wpblc_links doesn’t existI’ve the same problem. It seems to be something about an illegal collation setting. Here is the installation log from BLC:
[ ] CREATE TABLE IF NOT EXISTS
wp_blc_filters(idint(10) unsigned NOT NULL AUTO_INCREMENT,namevarchar(100) NOT NULL,paramstext NOT NULL, PRIMARY KEY (id) ) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8_general_ci
Database error : COLLATION ‘utf8_general_ci’ is not valid for CHARACTER SET ‘utf8mb4’
[ ] CREATE TABLE IF NOT EXISTSwp_blc_instances(instance_idint(10) unsigned NOT NULL AUTO_INCREMENT,link_idint(10) unsigned NOT NULL,container_idint(10) unsigned NOT NULL,container_typevarchar(40) NOT NULL DEFAULT ‘post’,link_texttext NOT NULL DEFAULT ”,parser_typevarchar(40) NOT NULL DEFAULT ‘link’,container_fieldvarchar(250) NOT NULL DEFAULT ”,link_contextvarchar(250) NOT NULL DEFAULT ”,raw_urltext NOT NULL, PRIMARY KEY (instance_id), KEYlink_id(link_id), KEYsource_id(container_type,container_id), KEYparser_type(parser_type) ) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8_general_ci
Database error : COLLATION ‘utf8_general_ci’ is not valid for CHARACTER SET ‘utf8mb4’
[ ] CREATE TABLE IF NOT EXISTSwp_blc_links(link_idint(20) unsigned NOT NULL AUTO_INCREMENT,urltext CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,first_failuredatetime NOT NULL DEFAULT ‘0000-00-00 00:00:00’,last_checkdatetime NOT NULL DEFAULT ‘0000-00-00 00:00:00’,last_successdatetime NOT NULL DEFAULT ‘0000-00-00 00:00:00’,last_check_attemptdatetime NOT NULL DEFAULT ‘0000-00-00 00:00:00’,check_countint(4) unsigned NOT NULL DEFAULT ‘0’,final_urltext CHARACTER SET latin1 COLLATE latin1_general_cs NOT NULL,redirect_countsmallint(5) unsigned NOT NULL DEFAULT ‘0’,logtext NOT NULL,http_codesmallint(6) NOT NULL DEFAULT ‘0’,status_codevarchar(100) DEFAULT ”,status_textvarchar(250) DEFAULT ”,request_durationfloat NOT NULL DEFAULT ‘0’,timeouttinyint(1) unsigned NOT NULL DEFAULT ‘0’,brokentinyint(1) unsigned NOT NULL DEFAULT ‘0’,warningtinyint(1) unsigned NOT NULL DEFAULT ‘0’,may_rechecktinyint(1) NOT NULL DEFAULT ‘1’,being_checkedtinyint(1) NOT NULL DEFAULT ‘0’,result_hashvarchar(200) NOT NULL DEFAULT ”,false_positivetinyint(1) NOT NULL DEFAULT ‘0’,dismissedtinyint(1) NOT NULL DEFAULT ‘0’, PRIMARY KEY (link_id), KEYurl(url(150)), KEYfinal_url(final_url(150)), KEYhttp_code(http_code), KEYbroken(broken) ) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8_general_ci
Database error : COLLATION ‘utf8_general_ci’ is not valid for CHARACTER SET ‘utf8mb4’
[ ] CREATE TABLE IF NOT EXISTSwp_blc_synch(container_idint(20) unsigned NOT NULL,container_typevarchar(40) NOT NULL,synchedtinyint(2) unsigned NOT NULL,last_synchdatetime NOT NULL DEFAULT ‘0000-00-00 00:00:00’, PRIMARY KEY (container_type,container_id), KEYsynched(synched) ) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8_general_ci
Database error : COLLATION ‘utf8_general_ci’ is not valid for CHARACTER SET ‘utf8mb4’- This reply was modified 6 years, 3 months ago by Sicarius. Reason: trying to make the code more readable