Glad that worked for you guys too.
For everyone else, MAKE SURE YOU IMPLEMENT THOSE CHANGES to the plugin code BEFORE YOU ACTIVATE IT. If you see the white screen of death, it just means the injector got to your site config before you made the changes.
If that’s the case, it’s no big deal, just open your wp-config.php file in the filesystem scroll to the bottom, and remove the code that was injected by the plugin:
//WP Tuner Plugin by MrPete------------
...
//-END WP Tuner Plugin------------------
that doesn’t exactly get it to work. just keeps it from white-screening.
see our notes here for how to get it to run:
The tip above works great. The problem is that every time the plugin does anything, it tries to re-write wp-config.php, which will give you white screen of death again and again.
Simple fix:
open wptuner/wptunersetup.php
comment out the TWO calls to to the wpconfig injector, e.g.
// wptuner_wpconfig_inject();
(don’t comment out the function declaration itself or you’ll have issues)
then you should go good to go!