Page 1 of 1

Check reciprocal links not completing check and not updating

Posted: Wed Dec 01, 2010 11:25 pm
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

Re: Check reciprocal links not completing check and not upda

Posted: Sat Dec 04, 2010 6:58 pm
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.

Re: Check reciprocal links not completing check and not upda

Posted: Mon Dec 06, 2010 3:51 pm
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.

Re: Check reciprocal links not completing check and not upda

Posted: Mon Dec 06, 2010 4:51 pm
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.

Re: Check reciprocal links not completing check and not upda

Posted: Wed Dec 08, 2010 4:22 pm
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

Re: Check reciprocal links not completing check and not upda

Posted: Wed Dec 08, 2010 5:49 pm
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.

Re: Check reciprocal links not completing check and not upda

Posted: Wed Dec 08, 2010 6:16 pm
by jessemullinax
Thanks for the help here is the access

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

pass
****************

Re: Check reciprocal links not completing check and not upda

Posted: Sun Dec 12, 2010 10:43 am
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.

Re: Check reciprocal links not completing check and not upda

Posted: Mon Dec 13, 2010 6:08 pm
by jessemullinax
Good news, changing that line of code worked! You are brilliant! :D