When the PHP Version is set to PHP 5.5, then clicking the 'SQlite Manager' at http://localhost/sqlite/ presents an error page which states:
Quote
"Strict Standards: Non-static method sqlite::getDbVersion() should not be called statically, assuming $this from incompatible context in /Applications/AMPPS/SQLiteManager/include/SQLiteAutoConnect.class.php on line 12"
/* file to be fixed is AMPPS/SQLiteManager/include/sqlite.class.php */
function getDbVersion($fullPath){ /* line before fix */
after fix: public static function getDbVersion($fullPath){ /* line after fix */
Alternately, switch the PHP Version to PHP 5.3 and the error goes away.