Check reciprocal links not completing check and not updating

Problems installing LinkMan?
Post Reply
jessemullinax
Posts: 23
Joined: Mon Jan 19, 2009 6:00 pm

Check reciprocal links not completing check and not updating

Post by jessemullinax »

Script URL: http://www.pipefreezekits.com/linkman17 ... rtners.php
Version of script: 1.7
Hosting company: Experthost.com
URL of phpinfo.php: I downloaded the lastest and it didnt have, whats this?
URL of session_test.php: Whats this?
What terms did you try when SEARCHING for a solution: Check reciprocal links & timing out

Write your message below:

I have this great script on another site and works great and the reciprocal link checker does fine with less than 10 links. However i have tried and tested this http://www.pipefreezekits.com/linkman17 ... rtners.php many different ways. It has more than 20 links added and seems to time out and never completes the link check therefore it does not update the links. Each time i run the link checker, it stops at a different link number but never seems to finish. Ive tried to run the script at different internet speeds, locations, replaced all the code, etc and still the same results.

Are there any suggestions for getting this to be able to run and update many links fully?

Thanks for your help.

Jesse
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

Re: Check reciprocal links not completing check and not upda

Post by Klemen »

It might be a server setting info preventing the script to complete (it stops after a number of seconds).

To confirm this I would need to see the phpinfo.php file, you will find it in the "READ THIS BEFORE POSTING A QUESTION" topic.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
jessemullinax
Posts: 23
Joined: Mon Jan 19, 2009 6:00 pm

Re: Check reciprocal links not completing check and not upda

Post by jessemullinax »

The files are in place and here are the links to them
http://www.pipefreezekits.com/linkman17/phpinfo.php
http://www.pipefreezekits.com/linkman17/session_test

Thanks for your help.
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

Re: Check reciprocal links not completing check and not upda

Post by Klemen »

I didn't find any problems with the php settings so I'm afraid I can't be of much help here.

What you could try is upgradign PHP to the latest version (at least 5.2.x) and see if that helps, but that's a long shot.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
jessemullinax
Posts: 23
Joined: Mon Jan 19, 2009 6:00 pm

Re: Check reciprocal links not completing check and not upda

Post by jessemullinax »

I have it upgraded to PHP Version 5.2.6 but it still is not completing the reciprocal link check. Any other good ideas? It seems to be stopping during the 24th link.
http://www.pipefreezekits.com/linkman17/phpinfo.php

Thanks for your help
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

Re: Check reciprocal links not completing check and not upda

Post by Klemen »

If you can give me access to your admin panel I can try the link check from here to see if it makes a difference. But other than that I'm afraid I don't have any ideas.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
jessemullinax
Posts: 23
Joined: Mon Jan 19, 2009 6:00 pm

Re: Check reciprocal links not completing check and not upda

Post by jessemullinax »

Thanks for the help here is the access

http://www.pipefreezekits.com/linkman17/admin.php

pass
****************
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

Re: Check reciprocal links not completing check and not upda

Post by Klemen »

I tested it and have the same problem, so it's indeed a server-side setting.

I don't have much experience with IIS, so I can't give any direct pointers, but do you have access to server's error logs? It should probably be logged why the execution stopped.

You can try modifying this code in the admin.php file and see if it helps:

Code: Select all

$html = @file_get_contents($recurl) or $html='NO';
change to:

Code: Select all

set_time_limit(60);$html = @file_get_contents($recurl) or $html='NO';
See if that helps, but I believe there is an IIS setting instead that needs to be modified to allow the script to run longer.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
jessemullinax
Posts: 23
Joined: Mon Jan 19, 2009 6:00 pm

Re: Check reciprocal links not completing check and not upda

Post by jessemullinax »

Good news, changing that line of code worked! You are brilliant! :D
Post Reply