Well, the plugin is written many years ago. At that time, we did not use PHP7, which has some changes on syntax.
This issue is caused by a change of php & usage. Now you should modify the source code to fix, follow:
// db-cache-reload-fix.php
// find ‘new pcache()’
// look, it uses ‘=& new pcache()’ which is not allowed in PHP7
// change the line to:
$pcache = new pcache();
$this->dbcr_cache =& $pcache;
// and do the same in db-module.php
Upload the file again, and go to your wp-admin to active the plugin.
-
This reply was modified 7 years, 2 months ago by Andrew Nevins.
-
This reply was modified 7 years, 2 months ago by frustigor.
-
This reply was modified 7 years, 2 months ago by frustigor.