Quote:
Originally Posted by nexialys
error:
PHP Code:
$this->OPTIONS = $this->MYSQL->query_first("SELECT `data` FROM `datastore` WHERE `title` = 'options';");
is missing the table_prefix:
PHP Code:
$this->OPTIONS = $this->MYSQL->query_first("SELECT `data` FROM `".TABLE_PREFIX."datastore` WHERE `title` = 'options';");
in mysqlbackup.php ...
|
I always forget that, I never use prefixes..
Edit. Updated zip file/configuration with patch.
Edit2. Optimized directory/file cleanup routine.