nodesman / wp-autoresponder

Email marketing and newsletter plugin for WordPress
40 stars 22 forks source link

wp_wpr_subscribers_1 #194

Closed Dugdale closed 11 years ago

Dugdale commented 11 years ago

When looking in my php_errors.log file I am getting a lot of these errors:

"[03-Jan-2013 18:59:00 UTC] WordPress database error Table xxx.wp_wpr_subscribers_1' doesn't exist for query select * from wp_wpr_subscribers_1 where id=10743;"

I am running Version 5.2.8.

Any ideas how I can fix this error?

Dave

nodesman commented 11 years ago

@Dugdale This is an error that comes from your WordPress' MySQL database user not having the permission to create temporary tables. This can be solved by editing that user through your web host's control panel to get permissions for creating temporary tables.

You'll most likely have to take the help of your host support personnel to delete and then recreate the database user with the same username and password. You can find the user name and password in the wp-config.php file in the directory where WordPress is installed.

Dugdale commented 11 years ago

Thanks!