[Plugin: Plugin Organizer] Does not work with ssl-enabled pages
-
Dear Jeff,
on pages served via https only the global settings work. The settings from the page or post do not work, regardless whether i want to enable or disable a specific plugin.There is one php notice, too:
PHP Notice: Undefined index: HTTPS in /wp-content/mu-plugins/PluginOrganizerMU.class.php on line 24
To get rid of this change the line 24 to something like this
$protocol = (isset($_SERVER[‘HTTPS’]) && $_SERVER[‘HTTPS’] == ‘on’) ? ‘https’ : ‘http’;And there is another php notice:
PHP Notice: Undefined index: plugin_status in /wp-content/plugins/plugin-organizer/plugin-organizer.php on line 21
To get rid of this change the line 21 to something like this:
if (!array_key_exists(‘plugin_status’, $_REQUEST) || $_REQUEST[‘plugin_status’] == ‘all’ || $_REQUEST[‘plugin_status’] == ‘active’) {Thanks for your work and thanks for this fine plugin!
hsz_36
- The topic ‘[Plugin: Plugin Organizer] Does not work with ssl-enabled pages’ is closed to new replies.