Your cart is currently empty!
Updating the Affiliates core FAILED.
—
by
Cannot update the affiliate core after purchasing and installing affiliates pro.
Posted in Affiliates Pro
—
by
Cannot update the affiliate core after purchasing and installing affiliates pro.
Comments
3 responses to “Updating the Affiliates core FAILED.”
Thanks for that Greg.
Now that we got the error logged, you can disable debugging by setting WP_DEBUG and WP_DEBUG_LOG both to false.
Please read the following instructions carefully before proceeding.
In order to fix the error causing the error message, you should execute an SQL query to the database in phpMyAdmin.
If you are not familiar with phpMyAdmin or you are in doubt, please let me know before you proceed.
Most important before doing so, is to take a backup of your site and the database, in case something goes wrong.
Once you are logged into your phpMyAdmin, you can click on your site’s database on the left column in order to select it.
After selecting your site’s database, click on the button named SQL, which is located on the top menu. It is usually the third button, after Browse and Structure buttons.
After clicking on the SQL button, use the query below to modify the options table.
Important notice: if your table prefix is not the default wp_, you should put your own prefix which can be easily found in wp-config.php file next to $table_prefix.
For example, if in your wp-config.php file it says $table_prefix = ‘wp_’;
The query is
DELETE FROM wp_options WHERE option_name =’affiliates_pro_plugin_version’;
If the $table_prefix = ‘nr_’; then the right query for you should be
DELETE FROM nr_options WHERE option_name =’affiliates_pro_plugin_version’;
Again, make sure that you take a full backup of your site and database and if you are in doubt or if you are not familiar with these tools or any of the steps described above, please let me know.
Kind regards,
George
Here it is. Probably more than you need, sorry.
http://pastebin.com/CmbJ6VA2
Thanks,
Greg
Hi Greg,
Please enable debugging by adding the lines below to your wp-config.php file
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true);
create a file named debug.log under wp-content, paste the contents of it in a pastebin and post the link of your pastebin here.
Kind regards,
George