FTP Programs

Hi,

I had a look around, but couldn’t seem to find a better forum to post this. Appologies if its the wrong place.

I’m trying to find a FTP client, with a built in file editor (where you can edit the files on the server, then save and it will re-upload them)

ATM, I have CuteFTP PRO - which has been fine up til now. However, my job now requires me to download and upload edited files in UTF-8 format.

For now, I’ve edited the CuteFTP settings so it opens the files in a new EditPlus window (and this seems to work). The main downside to this though, is that it opens each file in a seperate EditPlus window (which can be very confusing, as I often have 10-15 odd files open at once)(

Can anyone suggest a FTP client which will do what I need? (I don’t mind paying for it :))

TIA!

Andy

Do you really want to be editing the files online like this? What if you make a mistake and accidentally delete a chunk of a page?

Why not run a local webserver, write and test your changes there, then upload them?

Or better yet, use a version control system and eliminate the unsecure FTP entirely.

Hi,

The server is already a totally dedicated “development” one, which is password protected and setup with as firewall only to let myself and the site owner in :slight_smile:

I really have to edit it online, as I code in Perl, and the whole site has over 2.5million posts, so having it run locally isn’t an option (as the site owner also needs to check the stuff I do)

TIA

Andy

Yet you’re sending everything (usernames, passwords, source code) in plain text over the open internet when you talk to that server over FTP. They didn’t think that much about security in 1971 when the FTP protocol was created. It’s an issue now.

Your Perl code can run just as well on your own machine as on the server. They’re both just PCs. You point it to the database on the server, while the code is local, if you must use live data.

Hi,

Thats why we use SFTP :wink:

Your Perl code can run just as well on your own machine as on the server. They’re both just PCs. You point it to the database on the server, while the code is local, if you must use live data.

Unfortunatly thats not an option :frowning: I have to develop it on his server, so he can keep an eye on the development I’m doing … simply uploading changed files once I’ve tested and edited them locally isn’t what I need to do :confused:

Just giving SmartFTP a go - but seem to remember trying it a few years back, and it didn’t have an inline editor :frowning:

Cheers

Andy

SmartFTP does have the ability to edit files, it temporarily downloads a copy of the file and opens it in your chosen editor, once you save the file it will synchronise the file saved temporarily with the file on the server. It’s the best your going to get (to be honest) as file editing “live” would have inherent risks. SmartFTP also keeps a temporary copy of the file being edited in memory so if you make a mistake you can easily restore the original version (as the copy being updated is only a temporary file rather than the original which you uploaded in the beginning), and yes it does work over sFTP. Hope that’s helpful :slight_smile:

Hi,

Thanks for the reply. Looks like I’m gonna have to stick with CuteFTP for now then :frowning:

Cheers

Andy

Notepad++ does a really good job at this. It has a plugin called FTP_synchronise, where when you open the ftp file it gets copied to a local cache. Whenever you save the file (presuming you are still connected to the ftp site) it gets saved locally then uploaded automatically back to the web site.

This has made my editing of web site files so much easier over the past couple of years, and yes, Notepad++ supports unicode of many flavours too.

For more, see edit-files-live-via-ftp-with-notepad-how-to

Thanks, will check it out :slight_smile:

Cheers

Andy

for PC you cant beat ipswitch and for mac its transit 100%

Do those programs allow you to easily edit the code files, such as PERL? That is the purpose of the OP’s request.

Don’t forget the free FileZilla. It too has SFTP and remote editing in different character sets.

For any Mac users reading this thread: if you don’t have Coda you should get it today :slight_smile:

On Windows, though, I use Notepad++ with that file synchronization plugin.

have you tried dreamweaver? It can connect to your host and open your files and will save it live on your server.

Does filezilla allow you to edit server files and resave them on to the server in an easier way than with, for example, Notepad++ ?

For reference, here is the OP question once again.

I’m trying to find a FTP client, with a built in file editor (where you can edit the files on the server, then save and it will re-upload them)

I’m actually using WinSCP with Notepad++ now - not looked back since :slight_smile: