View Single Post
Old 06-02-2004, 06:09 AM   #4
Charter
Head Mole
 
Charter's Avatar
 
Join Date: May 2003
Posts: 2,539
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)); 
__________________
Responses are offered on a voluntary if/as time is available basis, no guarantees. Double posting or bumping threads will not get your question answered any faster. No support via PM or email, responses not guaranteed. Thank you for your comprehension.
Charter is offline   Reply With Quote