 For instant Access to any FTP server - just type
ftp:// username: password@ domain.com/www/
into a browser ( substitute with the correct log-in info)
But go one step further - if you have a folder in your computer for your Webpages
you can make a LOCAL WEBPAGE with two IFRAMES
One would be the path to the local Directory - the other would be the path to the FTP
save this as an HTML file in your computer or portable media
from that point on...whenever you open that page, you will get a nice File manager that you can DRAG and DROP from one to the other
When you want to edit - just right Click for the Notepad HTML --> Save --> Drag and DROP
Editing from the SERVER --> double click any file --> view source --> edit --> save on local --> then drag and drop
Code:
<iframe src="C:\Documents and Settings\User\My Documents\FTP-Files\" width=100% height=50% border=5></iframe>
<iframe src="ftp://username:password@domain.com/www/" width=100% height=50% border=5></iframe>
|