Jump to content

Variable not working in ping


xuzo
 Share

Recommended Posts

First I fetched the URL in question with Clipget, then I want to check if the URL is alive or dead:

$ftp_url = ClipGet()
;this will go to next table and start loop
MsgBox(0, "Data Check", " Title " & $score_title & " Composer " & $composer & " Opus " & $opus & " Instrument " & $instrument & " Date Created " & $date_created & " Style " & $music_style & " Source " & $source & " This is the FTP URL " & $ftp_url)
Send("{down}{down}{down}{SHIFTDOWN}{TAB 19}{SHIFTUP}")
;This is to to check if URl exists
Local $var = Ping($ftp_url, 250)
If $var Then; also possible: If @error = 0 Then ...
MsgBox(0, "Status", "Online, roundtrip was:" & $var)
Else
MsgBox(0, "Status", "An error occured with number: " & @error)
EndIf

But it seems I'm doing something wrong with this line:

Local $var = Ping($ftp_url, 250)

Thanks

Link to comment
Share on other sites

What's the URL you're pinging, and what are the results from the ping command?

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

The URL is copied from the clipboard and then assigned to variable $ftp_url, so $ftp_url should be the URL in question

Error on pop up is:

An error occured with number:4

or

MsgBox(0, "Status", "An error occured with number: " & @error)
Edited by xuzo
Link to comment
Share on other sites

I suspect that your URL includes fttp:// and that won't work with a ping command. You can only ping the server which is the portion after the // so

Ping("http://www.someurl.com") is not valid whereas Ping("www.someurl.com") is.

George

Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.

Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.***

The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number.

Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else.

"Old age and treachery will always overcome youth and skill!"

Link to comment
Share on other sites

The URL is copied from the clipboard and then assigned to variable $ftp_url, so $ftp_url should be the URL in question

Error on pop up is:

An error occured with number:4

or

I'm well aware of where the URL is coming from, it's explained above, that wasn't my question. My question was, what is the URL that you're putting into the $ftp_url after getting it from the clipboard,"www.someurl.com" is a URL, is that what you're putting into the clipboard, or are you doing what GEOSoft asked above? If it's not a valid URL, then it's not going to work correctly, which is why I asked what $ftp_url contains when you try and ping it.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

Ping the server without using ftp:// in front of the URL.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...