andreios
Forum Replies Created
-
I have just activated the plugin again and no error at all.
I have no explanation.A
grep -i WPO_WebP_Cron_Scheduler wp-content/plugins/wp-optimize -R
showed nothing. So I guess it is not there.
Is it possible that some strange cache has like opcache has old this up?
I had a strange problem with these site too. I set the WP_DEBUG and WP_DEBUG_LOG constant in wp-config.php as I first noticed the error. After disabling WP-OPTIMIZE I set both WP_DEBUG_LOG and WP_DEBUG to ‘false’. But is was still set for like an hour or so, and then turned to off for no reason on its own.
The WP_DEBUG_DISPLAY constant is still set according to the DEBUG plugin where I can see the settings. But WP_DEBUG_DISPLAY is not set in wp-config.php!Forum: Plugins
In reply to: [WP Telegram Widget and Join Link] Add noindexI have solved this by adding a location block X-Robots-Tag header to my nginx proxy config. (I had to repeated the proxy config from the / location to made this work.)
location ~ /wptelegram {
add_header X-Robots-Tag "noindex, nofollow, noarchive, nosnippet"; proxy_pass https://111.111.111.111:7081; proxy_hide_header upgrade; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; access_log off; proxy_cache_key "$scheme$request_method$host$request_uri"; proxy_no_cache $no_cache $http_pragma $http_authorization $arg_nocache; proxy_cache_bypass $no_cache $http_pragma $http_authorization $arg_nocache; proxy_cache example.com_proxy; proxy_cache_valid "5"; proxy_cache_use_stale http_500 http_502 http_503 http_504 updating; proxy_cache_background_update on;}Forum: Plugins
In reply to: [WP Telegram Widget and Join Link] Add noindexI google there are a ton of links like this
https://example.com/wptelegram/widget/view/@name/?q=%23termForum: Plugins
In reply to: [WP Telegram Widget and Join Link] Add noindexSo there is no way for you to set all links in this iframe as “noindex”?
Forum: Plugins
In reply to: [WP Telegram Widget and Join Link] Add noindexGoogle gives me a ton of non working links from my widget!
Forum: Plugins
In reply to: [Better Search - Relevant search results for WordPress] Database Update FailsWait, that’s a typo, there is no UTF8IMB4
I have now set it to UTF8MB4 No more error message.
Thanks for your help.
Forum: Plugins
In reply to: [Better Search - Relevant search results for WordPress] Database Update FailsI only see the error message above when try to update. The update button is still there.
I have deactivated reactivated the plugin. On activation I got this error in server logAH01071: Got error 'PHP message: WordPress database error Unknown character set: 'utf8imb4' for query CREATE TABLE 6Sra5_bsearch (\n\t\t\tsearchvar VARCHAR(100) NOT NULL,\n\t\t\tcntaccess int NOT NULL,\n\t\t\tPRIMARY KEY (searchvar)\n\t\t) DEFAULT CHARACTER SET utf8imb4 made by activate_plugin, do_action('activate_better-search/better-search.php'), WP_Hook->do_action, WP_Hook->apply_filters, WebberZone\Better_Search\activate_bsearch, WebberZone\Better_Search\Admin\Activator::activation_hook, WebberZone\Better_Search\Admin\Activator::single_activate, WebberZone\Better_Search\Admin\Activator::maybe_create_table, dbDelta; PHP message: WordPress database error Unknown character set: 'utf8imb4' for query CREATE TABLE _bsearch_daily (\n\t\t\tsearchvar VARCHAR(100) NOT NULL,\n\t\t\tcntaccess int NOT NULL,\n\t\t\tdp_date date NOT NULL,\n\t\t\tPRIMARY KEY (searchvar, dp_date)\n\t\t) DEFAULT CHARACTER SET utf8imb4 made by activate_plugin, do_action('activate_better-search/better-search.php'), WP_Hook->do_action, WP_Hook->apply_filters, WebberZone\Better_Search\activate_bsearch, WebberZone\Better_Search\Admin\Activator::activation_hook, WebberZone\Better_Search\Admin\Activator::single_activate, WebberZone\Better_Search\Admin\Activator::maybe_create_table, dbDelta; PHP message: WordPress database error Table 'user_bsearch' doesn't exist for query CREATE TABLE _bsearch_backup LIKE _bsearch made by activate_plugin, do_action('activate_better-search/better-search.php'), WP_Hook->do_action, WP_Hook->apply_filters, WebberZone\Better_Search\activate_bsearch, WebberZone\Better_Search\Admin\Activator::activation_hook, WebberZone\Better_Search\Admin\Activator::single_activate, WebberZone\Better_Search\Admin\Activator::recreate_overall_table, WebberZone\Better_Search\Admin\Activator::recreate_table; PHP message: WordPress database error Table 'user._bsearch_daily' doesn't exist for query CREATE TABLE _bsearch_daily_backup LIKE _bsearch_daily made by activate_plugin, do_action('activate_better-search/better-search.php'), WP_Hook->do_action, WP_Hook->apply_filters, WebberZone\Better_Search\activate_bsearch, WebberZone\Better_Search\Admin\Activator::activation_hook, WebberZone\Better_Search\Admin\Activator::single_activate, WebberZone\Better_Search\Admin\Activator::recreate_daily_table, WebberZone\Better_Search\Admin\Activator::recreate_table', referer: https://example.com/wp-admin/plugins.php?plugin_status=search&paged=1&s=betterObviously there is a problem with a wp-config.php setting.
define( ‘DB_CHARSET’, ‘utf8imb4’ );