You are a Guest, please Join now to allow full access to the website and be part of our community. You can register by clicking the "Click Here to create an account" link at the top left of the page under our Logo
I'm frequently having problems uploading websites via FTP from home. At work, no problem.
I've spoken to the web geek at our place, who says that Tiscali are one of the worst because they have so many hops between servers and portals and God-knows-what to get to my host. Other ISPs are better. During a small-ish website, I'll have to manually upload about 5-6 files, because they wouldn't go through automatically. I've used a number of FTP programs - FileZilla, WS-FTP, SmartFTP, Core FTP Lite, and they all are the same.
Any ideas? Any similar problems?
Gerald
The following members of MHF thanked geraldandannie for this posting
For the technically uninformed, (like us ), what is FTP, and what does it do?
J & R
File Transfer Protocol
Now you know as much as I do
Regards Frank
______________________________________________________________ Regards Frank
Get behind early - it gives you more time to catch up.
Denn wir haben nichts in die Welt gebracht; darum offenbar ist, wir werden auch nichts hinausbringen.
Plusnet, Safari 3.2, G5 PowerPC iMac running OSX 10.4.11, Eee 4GB running Linux EeePC 1.02.15 and an Eee900 running Linux EeePC 1.1.0.66, Salisbury UK
The following members of MHF thanked sallytrafic for this posting
Short for File Transfer Protocol, the protocol for exchanging files over the Internet. FTP works in the same way as HTTP for transferring Web pages from a server to a user's browser and SMTP for transferring electronic mail across the Internet in that, like these technologies, FTP uses the Internet's TCP/IP protocols to enable data transfer.
FTP is most commonly used to download a file from a server using the Internet or to upload a file to a server (e.g., uploading a Web page file to a server).
Dave
656
______________________________________________________________ Sometimes things happen for a reason
The following members of MHF thanked klubnomad for this posting
I use WS_FTP and have similar problems. I have put it down to the differences in host whatever they maybe. My own host is dead slow, it didn't used to be. I have complained without getting any feedback, fortunately I don't have many large files to update/add. I also administer another site and that is greese lightning from the same location on a different host. It hardly seems to be a host problem in your case if its fine from another location. Are you sure it is not your home upload speed?
peedee
______________________________________________________________ The best journeys are not always in straight lines
For an account of our journeys click on
Only registered users can see links on our Forum Join Now or Login
The following members of MHF thanked peedee for this posting
Short for File Transfer Protocol, the protocol for exchanging files over the Internet. FTP works in the same way as HTTP for transferring Web pages from a server to a user's browser and SMTP for transferring electronic mail across the Internet in that, like these technologies, FTP uses the Internet's TCP/IP protocols to enable data transfer.
FTP is most commonly used to download a file from a server using the Internet or to upload a file to a server (e.g., uploading a Web page file to a server).
Dave
656
Morning Dave,
Thanks for the explanation.
Gerald,
We are now in a position to say......sorry, but we can't help you.
J & R
J & R
______________________________________________________________ It is better to get there safely, than not at all
The following members of MHF thanked JockandRita for this posting
Gerald,
I've gone back to using the old dos FTP for odd files that get updated very frequently.
On my PC have a special ftp folder for two of my websites which keeps the bat files together.
In that folder I have a shortcut which displays the present online page in the browser (just to check what's there), a bat file which when clicked 'get's the file from the web and a 'put' bat file which uploads the edited new file.
Sounds a bit complicated but it isn't.
Double-click the get file.
Edit or replace with new web page.
Double-click the put file.
Click the veiwing shortcut to check its up ok.
As easy as that - of course each file is hard coded into my bat files so this would not be suitable for dealing with lots of files that hardly ever need updating. It can easily be adapted to deal with multiple files in the same operation.
Here is the coding of my Win98 get file - to turn it to a put file just change get to put and create the seperate file. The cd targetfolder bit is only necessary if your online web file is not in the online root directory. There is a slight difference for W2K but I think it is the same for XP. I started this method when I went away on holiday and needed to get a friend to update one file after a certain date - I just handed him a floppy with the new file on and told him which 'put' file to click.
Code:
%windir%\ftp.exe -s:%0
goto done
open whatever.co.uk
yourusername
yourpassword
cd targetfolder
ls
get index.html
bye
:done
@echo off
cls
exit
I use FileZilla for all my day to day FTPing.
The following members of MHF thanked baldlygo for this posting