Title: selective plugin loading settings not saving
Last modified: August 20, 2016

---

# selective plugin loading settings not saving

 *  Resolved [shism](https://wordpress.org/support/users/shism/)
 * (@shism)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/selective-plugin-loading-settings-not-saving/)
 * I’ve enabled selective plugin loading but when I try to enable or disable a plugin
   on a specific page, it doesn’t save the setting. Can you please help me?
 * Thanks
 * [http://wordpress.org/extend/plugins/plugin-organizer/](http://wordpress.org/extend/plugins/plugin-organizer/)

Viewing 15 replies - 1 through 15 (of 32 total)

1 [2](https://wordpress.org/support/topic/selective-plugin-loading-settings-not-saving/page/2/?output_format=md)
[3](https://wordpress.org/support/topic/selective-plugin-loading-settings-not-saving/page/3/?output_format=md)
[→](https://wordpress.org/support/topic/selective-plugin-loading-settings-not-saving/page/2/?output_format=md)

 *  Plugin Author [Jeff Sterup](https://wordpress.org/support/users/foomagoo/)
 * (@foomagoo)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/selective-plugin-loading-settings-not-saving/#post-3243092)
 * Are you running version 2.5.1? Are you disabling the plugins from the page edit
   screen or the url admin?
 *  Thread Starter [shism](https://wordpress.org/support/users/shism/)
 * (@shism)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/selective-plugin-loading-settings-not-saving/#post-3243094)
 * I am running the latest version. I’m trying to disable the plugins from the page
   edit screen. When I try to add something to url admin I get: “There was a problem
   adding the URL”.
 *  Plugin Author [Jeff Sterup](https://wordpress.org/support/users/foomagoo/)
 * (@foomagoo)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/selective-plugin-loading-settings-not-saving/#post-3243095)
 * Can you turn on WP_DEBUG to see if you are getting any errors? To turn it on 
   open your wp-config.php file and set WP_DEBUG to true and you will see any errors.
   Let me know if you see any errors. Are you running on a windows server?
 *  Thread Starter [shism](https://wordpress.org/support/users/shism/)
 * (@shism)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/selective-plugin-loading-settings-not-saving/#post-3243096)
 * Yes, I am on a windows server. I am getting this error that shows up when I go
   to Plugin Organizer > Settings:
 * Notice: is_plugin_page is deprecated since version 3.1 with no alternative available.
   in C:\inetpub\wwwroot\wpcp\wp-includes\functions.php on line 2640 Notice: is_plugin_page
   is deprecated since version 3.1 with no alternative available. in C:\inetpub\
   wwwroot\wpcp\wp-includes\functions.php on line 2640 Notice: is_plugin_page is
   deprecated since version 3.1 with no alternative available. in C:\inetpub\wwwroot\
   wpcp\wp-includes\functions.php on line 2640 Notice: is_plugin_page is deprecated
   since version 3.1 with no alternative available. in C:\inetpub\wwwroot\wpcp\wp-
   includes\functions.php on line 2640
 * Does the plugin work for the latest version of wordpress?
 *  Plugin Author [Jeff Sterup](https://wordpress.org/support/users/foomagoo/)
 * (@foomagoo)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/selective-plugin-loading-settings-not-saving/#post-3243097)
 * I’m running the latest version of wordpress and it is working fine. That error
   isn’t coming from plugin organizer. What errors do you get when you try to disable
   plugins?
 *  Thread Starter [shism](https://wordpress.org/support/users/shism/)
 * (@shism)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/selective-plugin-loading-settings-not-saving/#post-3243101)
 * I get this :
 * WordPress database error: [Table ‘wordpress.wp_po_post_plugins’ doesn’t exist]
   
   SELECT * FROM wp_PO_post_plugins WHERE post_id = 34
 *  Plugin Author [Jeff Sterup](https://wordpress.org/support/users/foomagoo/)
 * (@foomagoo)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/selective-plugin-loading-settings-not-saving/#post-3243102)
 * Ok that is the problem. The user your web server is accessing the database as
   must not have rights to create tables. Run these sql commands on your database
   to create the tables needed.
 *     ```
       CREATE TABLE wp_PO_groups (
       group_id bigint(20) unsigned NOT NULL AUTO_INCREMENT,
       group_name varchar(255) NOT NULL default '',
       group_members longtext DEFAULT NULL,
       PRIMARY KEY PO_group_id (group_id)
       );
   
       CREATE TABLE wp_PO_post_plugins (
       post_id bigint(20) unsigned NOT NULL,
       permalink longtext NOT NULL default '',
       disabled_plugins longtext NOT NULL default '',
       enabled_plugins longtext NOT NULL default '',
       PRIMARY KEY PO_post_id (post_id)
       );
   
       CREATE TABLE wp_PO_url_plugins (
       url_id bigint(20) unsigned NOT NULL auto_increment,
       permalink longtext NOT NULL default '',
       children int(1) NOT NULL default 0,
       disabled_plugins longtext NOT NULL default '',
       enabled_plugins longtext NOT NULL default '',
       PRIMARY KEY PO_id (url_id)
       );
       ```
   
 *  Thread Starter [shism](https://wordpress.org/support/users/shism/)
 * (@shism)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/selective-plugin-loading-settings-not-saving/#post-3243103)
 * This is what it gives me now.
 * Error Code: 1101. BLOB/TEXT column ‘permalink’ can’t have a default value
 *  Thread Starter [shism](https://wordpress.org/support/users/shism/)
 * (@shism)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/selective-plugin-loading-settings-not-saving/#post-3243104)
 * Would you know how to setup the user accessing the server to have writes to create
   tables?
 *  Plugin Author [Jeff Sterup](https://wordpress.org/support/users/foomagoo/)
 * (@foomagoo)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/selective-plugin-loading-settings-not-saving/#post-3243105)
 * That is apparently a limitation on MySQL for windows. I can get rid of the default
   for this column but I will need some time to test my changes. I’m going to make
   the change to my database now and see if any problems arise. I should be able
   to get it all tested and released some time this afternoon. Maybe not until tomorrow.
 *  Thread Starter [shism](https://wordpress.org/support/users/shism/)
 * (@shism)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/selective-plugin-loading-settings-not-saving/#post-3243106)
 * I modified mysql.ini and fixed the problem.
 *  Thread Starter [shism](https://wordpress.org/support/users/shism/)
 * (@shism)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/selective-plugin-loading-settings-not-saving/#post-3243108)
 * Setting the sql-mode to sql-mode=”MYSQL40″ fixes the issue.
 *  [prejudice](https://wordpress.org/support/users/prejudice/)
 * (@prejudice)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/selective-plugin-loading-settings-not-saving/#post-3243112)
 * rolled back to version 2.5, now it works. pls fix it when releasing 2.5.2. thanks!
 *  Plugin Author [Jeff Sterup](https://wordpress.org/support/users/foomagoo/)
 * (@foomagoo)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/selective-plugin-loading-settings-not-saving/#post-3243114)
 * Rolling back to version 2.5 wouldn’t have fixed the problem with the default 
   for BLOB/TEXT column in the database. That has been there since version 1. I’ve
   got version 2.5.2 ready to release but I’m not sure what problem you were having
   prejudice.
 *  [prejudice](https://wordpress.org/support/users/prejudice/)
 * (@prejudice)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/selective-plugin-loading-settings-not-saving/#post-3243118)
 * sorry Jeff. the problem i had in 2.5.1 is a little bit diff. in Settings page,
   every time i select Enable in Selective Plugin Loading, then Save Settings. refresh
   the page, it becomes Disable… tried many times all the same. i’m not sure what’s
   the issue there, so i rolled back to 2.5 and it works. thanks.

Viewing 15 replies - 1 through 15 (of 32 total)

1 [2](https://wordpress.org/support/topic/selective-plugin-loading-settings-not-saving/page/2/?output_format=md)
[3](https://wordpress.org/support/topic/selective-plugin-loading-settings-not-saving/page/3/?output_format=md)
[→](https://wordpress.org/support/topic/selective-plugin-loading-settings-not-saving/page/2/?output_format=md)

The topic ‘selective plugin loading settings not saving’ is closed to new replies.

 * ![](https://ps.w.org/plugin-organizer/assets/icon-256x256.png?rev=1786554)
 * [Plugin Organizer](https://wordpress.org/plugins/plugin-organizer/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/plugin-organizer/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/plugin-organizer/)
 * [Active Topics](https://wordpress.org/support/plugin/plugin-organizer/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/plugin-organizer/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/plugin-organizer/reviews/)

 * 32 replies
 * 4 participants
 * Last reply from: [loganl](https://wordpress.org/support/users/loganl/)
 * Last activity: [13 years, 3 months ago](https://wordpress.org/support/topic/selective-plugin-loading-settings-not-saving/page/3/#post-3243145)
 * Status: resolved