speed booster compatibility

Posted in: Newspaper
Post count: 19

Hi,

in order to increase the speed of my site http://loirexplorer.com
I’ve tried to remove code from speed booster

// disable the plugins if there are incompatible plugins
$active_plugins = get_option(‘active_plugins’);
//print_r($active_plugins);
//die;
foreach ($active_plugins as $active_plugin) {
if (!in_array($active_plugin, $this->allowed_plugins)) {
define(‘TD_SPEED_BOOSTER_INCOMPATIBLE’ , $active_plugin);
return;
}
}

but it stops showing the site online. What can I do ?

thanks for your help

Post count: 28

Don’t remove it, comment this part in the php file.

Post count: 23312

Hello sid,

Note that the Speed Booster plugin disable itself when an incompatible plugin it’s installed. We added this measure to avoid conflicts with the plugins that won’t allow to move their CSS/js resources at page bottom. Check in System status if the plugin is active: http://screencast.com/t/slBN4kNf To keep it always activated comment or delete the indicated lines from td-speed-booster.php: http://screencast.com/t/RZLIOPUNdqh You can check this topic for more information about speed booster usage: https://forum.tagdiv.com/topic/speed-booster-questions/ Please ensure you have removed on have commented the correct snippet of the code.

Hope this helps and let us know how it goes!

Thank you for the message!

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newspaper’ is closed to new topics and replies.