Reputation: 89
I was wondering if it's possible to connect to another ftp server and edit files in there. To be more specific I want to connect to ftp server, locate .db file sqlite version 3, edit and save it with php. How do I do it? Thanks !
Upvotes: 0
Views: 108
Reputation: 123270
You cannot do this. The FTP protocol has no real capability to read and write only parts of a file or to lock a file. This means essentially that you need to transfer the file to your local machine, edit it there and then transfer it back.
Upvotes: 1