Hi. Check to make sure
this patch has been applied. Also, perhaps try emptying the tempspider table between runs. If using PhpDig version 1.8.0+ you can click the delete button
without selecting a site to empty the tempspider table. As for the MySQL warnings, check all the PhpDig files for code like the following:
PHP Code:
if (!get_magic_quotes_runtime()) {
$varname = addslashes($varname);
}
And replace with the following to make sure stuff gets slashed:
PHP Code:
$varname = addslashes(stripslashes($varname));