Skip to content Skip to sidebar Skip to footer

Ajax Upload A File From Browser To Ftp Server

Is it possible to uplaod a file from browser to FTP server using ajax?

Solution 1:

No. Browsers provide no APIs that allow writing to FTP from JavaScript.

You could post the file to an HTTP end point and then use server side code to push it to your FTP server.

Post a Comment for "Ajax Upload A File From Browser To Ftp Server"