Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

PHP Forum


You are currently viewing our PHP Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
Old 06-09-2005, 08:50 PM Link Error Checking
Junior Talker

Posts: 1
Trades: 0
Is there a way to check to see if a link comes up with an error and if so then load an alternate link?

For example, say I have a link to a file on another server, if that link is down, can it then load the alternate link?
DanKD is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 06-10-2005, 02:13 AM
mtishetsky's Avatar
King Spam Talker

Posts: 1,226
Name: Mike
Location: Mataro, Spain
Trades: 0
Why not. Add a field for alternate URL to DB or whatever else. Then regularly check the link via simple fopen() in a way like this:
PHP Code:
$fp = @fopen($link_url"r");
if (
$fp) {
   
fclose($fp);
   
$correctLink 1;
}
else {
   
$correctLink 0;
}

if (
$correctLink) {
   echo 
$usualLink;
}
else {
   echo 
$alternateLink;

It is recommended that you run link checker once a day via crontab and store its current state somewhere instead of checking it on every script load.

Also please notice that this way is only acceptable if you have allow_url_fopen = On in your PHP config or in .htaccess for your site. Else you will have to implement this logic using sockets.
__________________

Please login or register to view this content. Registration is FREE
-
Please login or register to view this content. Registration is FREE
-
Please login or register to view this content. Registration is FREE

And don't forget to give me talkupation!
mtishetsky is offline
Reply With Quote
View Public Profile Visit mtishetsky's homepage!
 
Reply     « Reply to Link Error Checking
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.37462 seconds with 12 queries