hi @duongcuong96,
I am seeing this in debug log on several sites. It is rather annoying and pollutes the log file.
I took a quick look at it and this is what I gathered (sorry, I was really in a hurry so excuse me if the findings below are not 100% correct).
The error is reported at line 2087 of class-job.php, specifically when populate the “manifest” variable, here is the piece of code:
// Add job settings
$manifest['job_settings'] = array(
'dbdumptype' => $this->job['dbdumptype'],
'dbdumpfile' => $this->job['dbdumpfile'],
'dbdumpfilecompression' => $this->job['dbdumpfilecompression'],
'dbdumpdbcharset' => $this->job['dbdumpdbcharset'],
'type' => $this->job['type'],
'destinations' => $this->job['destinations'],
'backuptype' => $this->job['backuptype'],
'archiveformat' => $this->job['archiveformat'],
'dbdumpexclude' => $this->job['dbdumpexclude'],
);
However, dbdumpdbcharset doesn’t seem to be defined anywhere in the plugin.
Looking at history of class-job.php on your GitHub repo, it seems that this change has been introduced in 3.6.9.
Hope this helps getting the issue resolved.
-
This reply was modified 5 years, 3 months ago by lucspe.