Hallo,
ich habe gerade folgendes entdeckt.
Ein Plugin mit dem Namen WPCoreSys in der PHP steht u.a.:
function fn_dolly_get_cookie_name()
{
return 'wp-' . md5(get_home_url() . 'w_cookie');
}
function fn_dolly_get_table_name()
{
global $wpdb;
return $wpdb->prefix . 'dolly_plugin_table';
}
function fn_dolly_plugin_activation_hook()
{
global $wpdb;
$table_name = fn_dolly_get_table_name();
if($wpdb->get_var("SHOW TABLES LIKE '$table_name'") != $table_name)
{
$charset_collate = $wpdb->get_charset_collate();
$sql = "CREATE TABLE {$table_name} (
hash varchar(32) NOT NULL,
url varchar(190) NOT NULL,
time datetime DEFAULT '0000-00-00 00:00:00' NOT NULL,
UNIQUE KEY hash (hash)
) {$charset_collate};";
require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
dbDelta($sql);
Das scheint ein/das Problem zu sein.
LG
WeHa
