I have also problem with autoupdate, but in my case it says:
javascript error (parseJSON) detected for action "updateConfig". Starting restoration...
I manually uploaded an archive to: /admin/autoupgrade/download/, system detects the file, but after clicking save I get the same problem:
javascript error (parseJSON) detected for action "updateConfig". Starting restoration...
I followed the steps in official "How to...", but with the same result.
I have edited /modules/autoupgrade/db/Db.php (around line 210), and I have:
public static function getClass()
{
$class = 'MySQL';
if (extension_loaded('mysql') && PHP_VERSION_ID < 50500)
$class = 'MySQL';
elseif (extension_loaded('mysqli'))
$class = 'DbMySQLi';
elseif (PHP_VERSION_ID >= 50200 && extension_loaded('pdo_mysql'))
$class = 'DbPDO';
return $class;
}
my php.ini file is:
error_log = /plik_logow.log
error_reporting = E_ALL & ~E_NOTICE
log_errors = 1
display_errors = off
extension = mysqli.so
extension=pdo.so
extension=pdo_sqlite.so
extension=sqlite.so
extension=pdo_mysql.so
magic_quotes_gpc=off
I have no idea, what is going on...
I`am still getting : "javascript error (parseJSON) detected for action "updateConfig". Starting restoration..."