PhpDig.net

Go Back   PhpDig.net > PhpDig Forums > Troubleshooting

Reply
 
Thread Tools
Old 11-09-2007, 06:58 AM   #1
Lord_Goran
Green Mole
 
Join Date: Nov 2007
Posts: 2
Not Indexing Site

I've installed PhpDig several times on several websites all without any problems. However on this latest install, it simply isn't indexing anything.

The cron functions as it should and the results I get are as follows:
Spidering in progress...
-----------------------------
SITE : http://www.mysite.com/ (I removed my actual URL)
Exclude paths :
- @NONE@
No link in temporary table
links found : 0
...Was recently indexed
Optimizing tables...
Indexing complete !

I've tried replacing pages from sites where I have working examples only nothing seems to be working.
Safe_mode is off and magic_quotes_runtime are off and magic_quotes_gpc are on. Also allow_url_fopen is on and I've tried everything I could think of.

Any ideas?

PHP Version 4.4.7
MySQL Version 4.1.22
Apache 1.3.37
Lord_Goran is offline   Reply With Quote
Old 11-09-2007, 07:10 AM   #2
Lord_Goran
Green Mole
 
Join Date: Nov 2007
Posts: 2
I sent out several calls for help and one of my friends suggested the following:

In the robot_functions.php page change the following from:
settype($pu['path'],'string');
settype($pu['query'],'string');
settype($pu['user'],'string');
settype($pu['pass'],'string');
settype($pu['port'],'integer');
if ($pu['port'] == 0 || $pu['port'] == 80) {
$pu['port'] = 0;
}

To this:

settype($pu['path'],'string');
settype($pu['query'],'string');
settype($pu['user'],'string');
settype($pu['pass'],'string');
settype($pu['port'],'integer');
if ($pu['port'] == '0' || $pu['port'] == '80') {
$pu['port'] = '0';
}

Wrapping the numeric values for the port with a single quote seems to have fixed the problem. It's now indexing and working just fine.
Lord_Goran is offline   Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Not indexing any site JonnyNoog Troubleshooting 1 07-23-2006 11:32 PM
successful indexing of every site but site where phpdig is served phillystyle123 Troubleshooting 1 02-21-2005 09:06 PM
problems indexing site. sfbell Troubleshooting 1 09-30-2004 09:36 AM
Problem with site indexing.... Lamer38 Troubleshooting 1 09-11-2004 06:36 AM
Strange indexing problem on my site drbill Troubleshooting 9 01-01-2004 01:29 PM


All times are GMT -8. The time now is 02:36 PM.


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