Web File Transfer gives you and others the ability to upload files to your website from your web browser. First, go to your site via FTP and create a subdirectory on the Remote side called "inbound". Then you need to create an HTML document that includes the following parameters:
<FORM ENCTYPE="multipart/form-data" METHOD="POST" ACTION="/cgi-bin/filepro.exe">
Send this file:
<input name="userfile" type="file">
This will create a 'Browse" button where you choose the file that will be sent.
<input type="submit" value="Send File">
</FORM>
|