Hi everyone,
Just wanted to mention my experience using the Plugin Accelerator so far. I had a minor problem trying to enable the Accelerator. I fixed it by adding editing plugin.php and changing the following:
PHP Code:
/*
* Handle Turning On and Off the Plugin Accelerator
*/
$p_accel = new vb_plugin_accelerator();
$p_accel->change_status();
To:
PHP Code:
/*
* Handle Turning On and Off the Plugin Accelerator
*/
$p_accel = new vb_plugin_accelerator();
$p_accel->change_status();
$p_accel->acc_p_enabled = 0;
Now its all set up I've seen a drop of load from something like 1.60 to 1.22 with the same number of users on the site. Quite impressive although I do have a lot of plugins installed.
Nick