putting up an FTP server for anonymous uploads.
FTP can handle the 2GB, iirc. (The OS should be able to handle it)
Only allow uploads, no browsing. (Effectively a drop box)
![]() putting up an FTP server for anonymous uploads.
FTP can handle the 2GB, iirc. (The OS should be able to handle it) Only allow uploads, no browsing. (Effectively a drop box) |
|
![]() Imagine a mid-level corporate person, non-techie, gopher type.
His executive marketing boss told him to grab a file off the network and upload it to us after logging in to our web site. He is clueless about anything having to do with computers other than his 3 applications he lives in. He certainly can't initiate a windows level ftp session as a separate process outside the web site interaction. So how would I trigger a controlled FTP upload? I am unaware of any seemless browser usage at this point, but I'd be happy to be wrong. This is one of many possible people, all trying to do the same thing. |
|
![]() |
|
![]() I used to have a boss like that.
Nice general high level descriptions. He sure looked smart when he could even use them in the correct context. You want to be a bit more specific - ON THE CLIENT SIDE! |
|
![]() Use a PHP script for it!
|
|
![]() http://www.enterpris...doc/devguide.html
all the customer needs to do (from your description) is non tech people need to easily upload a large file to you, so a browser based app would ask what file the customer wishes to send including how to find it (attachement function generic) click "yes this is the file I weant to send" browser client needs to tell customer status of upload (activity bar) and a notification of when it is finished (pop box "we're done!") now get a little fancier and provide a toolbar icon and make the whole thing a plugin. does that help a little bit? |
|
![]() Thanks
|
|
![]() others include (not limited to...):
building a shell script (.bat file) to upload the files. Put an icon on their desktop and anything in the SendToXYZ folder gets uploaded. a web page that lives locally (file:\c:whatever) that loads the file up (give them the ability to browse for the file) a small program that does the connection for ftp. Either java/C#/C++, etc. Again, it's an icon on their desktop. |
|
![]() No desktops.
Web users. |