• Resolved jajohns4

    (@jajohns4)


    I installed the UpPrev Plugin for a very short period of time on a website with 13,500 posts. After removing the plug my site crashed. Upon several hours of investigation I realized with the help of Rackspace support that the program had created 121,300 entries in my WP-Options database after the plugin had been removed.

    Had to use a SQL Search to find the records and then run a query to delete all of them as the program was depleting all connections via Rackspace Sites.

    This problem was verified by me and by Rackspace support.

    http://wordpress.org/extend/plugins/upprev/

Viewing 1 replies (of 1 total)
  • Plugin Author Marcin Pietrzak

    (@iworks)

    I know this problem. Turn off caching feature. It uses a transients cache and make in wp_options table a lot of “cache” entries, doubled by wp_cron option to delete this “cache” options.

    After turn off caching use this mysql query:

    DELETE FROM wp_options WHERE option_name LIKE '_site_transient%iworks_upprev_%';

    to remove this entries.

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: upPrev] Crazy number of WP-Options Database Entries’ is closed to new replies.