PhpDig.net

PhpDig.net (http://www.phpdig.net/forum/index.php)
-   Bug Tracker (http://www.phpdig.net/forum/forumdisplay.php?f=27)
-   -   PhpDig can not finish indexing of my website (http://www.phpdig.net/forum/showthread.php?t=1600)

xiao 12-10-2004 09:57 AM

PhpDig can not finish indexing of my website
 
Hello, I intalled v.1.8.4 PhpDig ,when I first time indexed my website. Phpdig threw the following error after it indexed 60 pages:
Fatal error: Cannot unset string offsets in D:\qaweb\phpdig\admin\robot_functions.php on line 810
How can I solve this problem?
My website is about 3000 pages.
Any help will be appreciated.

xiao 12-10-2004 10:13 AM

PhpDig can not finish indexing of my website
 
Hello
I installed PhpDig v.1.8.4, When I first time indexed it, PhpDig threw the the following error after it indexed 60 pages.
Anybody know what is the problem?
My website is about 3000 pages.
Thanks

Charter 12-10-2004 12:59 PM

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]); } 



All times are GMT -8. The time now is 09:00 PM.

Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright © 2001 - 2005, ThinkDing LLC. All Rights Reserved.