Web Wiz - Green Windows Web Hosting

  New Posts New Posts RSS Feed - files exists on remote server
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

files exists on remote server

 Post Reply Post Reply
Author
Mart View Drop Down
Senior Member
Senior Member
Avatar

Joined: 30 November 2002
Status: Offline
Points: 2304
Post Options Post Options   Thanks (0) Thanks(0)   Quote Mart Quote  Post ReplyReply Direct Link To This Post Topic: files exists on remote server
    Posted: 04 July 2003 at 10:00am

Hi, I am making a script that checks if a download link is online before giving them a link. this is the script i currently use:

GotothisURL = rs("URL")

Set GetConnection = CreateObject("Microsoft.XMLHTTP")

GetConnection.Open "get", GotothisURL, False
on error resume next
GetConnection.Send

Data = GetConnection.responseText

Set GetConnection = Nothing

if not data="" Then

'content if the link is good

else

'content if link is bad

end if

It does work but it takes ages to load the page because the server downloads the file, is there a way to either just wait for the data variable to be populated then give the link is good content if after 10 secs it is not give the bad link content, or a totally differant method.

Thanks alot, Mart.

Back to Top
the boss View Drop Down
Senior Member
Senior Member
Avatar

Joined: 19 January 2003
Location: Saudi Arabia
Status: Offline
Points: 1727
Post Options Post Options   Thanks (0) Thanks(0)   Quote the boss Quote  Post ReplyReply Direct Link To This Post Posted: 04 July 2003 at 11:17am
well u r downloading the file . u have to make it so that it just pings the URL.. not writes the data found at the url
Back to Top
Mart View Drop Down
Senior Member
Senior Member
Avatar

Joined: 30 November 2002
Status: Offline
Points: 2304
Post Options Post Options   Thanks (0) Thanks(0)   Quote Mart Quote  Post ReplyReply Direct Link To This Post Posted: 04 July 2003 at 2:03pm

Its alright now ive fixed it, if anyone wants the modified code here it is:

GotothisURL = rs("URL")

Set GetConnection = CreateObject("Microsoft.XMLHTTP")

GetConnection.Open "get", GotothisURL, False
on error resume next
GetConnection.Send

if not err.number <> 0 Then

'content if the link is good

else

'content if link is bad

end if

Set GetConnection = Nothing

Back to Top
 Post Reply Post Reply

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.08
Copyright ©2001-2026 Web Wiz Ltd.


Become a Fan on Facebook Follow us on X Connect with us on LinkedIn Web Wiz Blogs
About Web Wiz | Contact Web Wiz | Terms & Conditions | Cookies | Privacy Notice

Web Wiz is the trading name of Web Wiz Ltd. Company registration No. 05977755. Registered in England and Wales.
Registered office: Web Wiz Ltd, Unit 18, The Glenmore Centre, Fancy Road, Poole, Dorset, BH12 4FB, UK.

Prices exclude VAT at 20% unless otherwise stated. VAT No. GB988999105 - $, € prices shown as a guideline only.

Copyright ©2001-2026 Web Wiz Ltd. All rights reserved.