View Single Post
Old 12-10-2004, 01:57 PM   #3
Charter
Head Mole
 
Charter's Avatar
 
Join Date: May 2003
Posts: 2,539
If you downloaded PhpDig 1.8.4 prior to the date of this post, make the following change or else you may receive a "cannot unset string offsets" fatal error:

In robot_functions.php find:
PHP Code:
unset($links[$index]);
unset(
$http_scheme_array[$index]); 
And replace with:
PHP Code:
if (isset($links[$index])) { unset($links[$index]); }
if (isset(
$http_scheme_array[$index])) { unset($http_scheme_array[$index]); } 
If you downloaded PhpDig 1.8.4 after the date of this post, the change has already been made.
__________________
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