After a frustrating week with a new ISP, I've got a list of "gotchas" you can look for if you have FTP troubles with GT-View
Had some chats with the owner/developer here, and learned some of the inner workings of the FTP module in GT-View. It's a simple FTP client, and does not give lots of feedback if there is much of a problem.
I'll briefly go over the commands it uses, which are the same as DOS FTP, which I had to use to discover what weird mapping and alias my ISP was doing to my account
( my new isp's page
http://www.naturalstudies.org/~solar/Mi ... stall.html )
Looks like an ordinary path, but it's actually pretty strange how FTP gets there.
CONNECT naturalstudies.org ( Your ISP.COM )
DNS lookup works pretty well
USER your.user_name ( some sites forgot you are at naturalstudies.org, and you
have to add it too :
your.user_name@naturalstudies.org )
PASSWORD whatever your password is, echoed with ******** Sometimes you can get fancy on the command line, and enter both thusly: your.user_name ******** (username SPACE password) at the user prompt
now here is where I entered PWD (print working directory) to see where I was, my ISP is QUITE confused as to what a directory is, they list it 2 places on the manual pages, and in an email from the help desk, they gave me a 3rd option. My fancy FTP client was no help, it was always able to find and navagiate the directorys, and what it showed, would not work for me.
My ISP's manual pages offered:
/home/solar/
/home/solar/public_html/ and strangely:
/home//public_html/images/ with 2 // in there.
email helpdesk was even more obtuse:
> please try this path and let me
> know if you have problem.
/var/www/html/users/solar/images/ Nope, no joy there.
Diggin thru it with DOS - FTP, I finally discovered that
/home/solar/public_html/images , with NO Trailing / was the key, and now, whenever the wireless is working, things are uploading properly.
Share and Enjoy
Mike
/////////
Subject: Re: GT-View & FTP functions Quote message:
As for debugging.
All GT-View is use standard FTP commands
It logs in,
Set the mode to binary
Issues a changedir command
does a put command
All of the above can be done in a windows "command" shell to debug
For example Start->Run->Command ( command shell will come up )
FTP ftp.myisp.com
should prompt for user -- put in userid
should prompt for password - put in password
Once logged in, you can
pwd, for print working directory
dir, will list files and folders
cd, is change dir, so try and cd to the public place you pictures are. Once there you can do a pwd and see where it is.
Every ISP is different in both folder names, and how they get mapped for public access.
Also - beware "\" not "/" , unix/linux is reverse from windows paths delimiters