[dev] upload via html?

2013-05-13 Thread Thuban
Hi suckless users, I was wondering what tool or method you would use to purpose simple file upload on your server (via an html form as example)? CGI? PHP? Other? Regards, -- ,--. : /` ) Xavier Cartron | `-' \_ signature.asc Description: Digital signature

Re: [dev] upload via html?

2013-05-13 Thread Kai Hendry
On 13 May 2013 17:17, Thuban wrote: > I was wondering what tool or method you would use to purpose simple file > upload on your server (via an html form as example)? CGI? PHP? Other? PHP is the simplest way I've found https://github.com/kaihendry/FTP2.0

Re: [dev] upload via html?

2013-05-13 Thread Christoph Lohmann
Greetings. On Mon, 13 May 2013 18:21:40 +0200 Thuban wrote: > Hi suckless users, > I was wondering what tool or method you would use to purpose simple file > upload on your server (via an html form as example)? CGI? PHP? Other? Don’t support the web, use FTP/SFTP. Sincerely, Christoph Lohmann

Re: [dev] upload via html?

2013-05-13 Thread Calvin Morrison
Ftp sucks On May 13, 2013 12:25 PM, "Christoph Lohmann" <2...@r-36.net> wrote: > Greetings. > > On Mon, 13 May 2013 18:21:40 +0200 Thuban wrote: > > Hi suckless users, > > I was wondering what tool or method you would use to purpose simple file > > upload on your server (via an html form as examp

Re: [dev] upload via html?

2013-05-13 Thread Hugues Moretto-Viry
2013/5/13 Calvin Morrison > Ftp sucks > Could you explain me why FTP sucks? Regards -- H.Mo.

Re: [dev] upload via html?

2013-05-13 Thread Thorsten Glaser
Hugues Moretto-Viry dixit: >Could you explain me why FTP sucks? http://mywiki.wooledge.org/FtpMustDie bye, //mirabilos -- 13:37⎜«Natureshadow» Deep inside, I hate mirabilos. I mean, he's a good guy. But he's always right! In every fsckin' situation, he's right. Even with his deeply perverted ta

Re: [dev] upload via html?

2013-05-13 Thread Thuban
I currently use sftp for this. But it's not easy to use for browser-addicted-humans... It's difficult to find something simple and "userfriendly". Thanks for your first answers. Regards, -- ,--. : /` ) Xavier Cartron | `-' \_ signature.asc Description: Digital signature

Re: [dev] upload via html?

2013-05-13 Thread v4hn
On Mon, May 13, 2013 at 10:38:32PM +0200, Thuban wrote: > But it's not easy to use for browser-addicted-humans... These people are the reason we /are/ in this mess called "web". If they can't use proper protocols for different tasks but just their crappy bloated browser.. Fine by me! Disregarded u

Re: [dev] upload via html?

2013-05-13 Thread hiro
how can you chadbands use a file transfer protocol without XML?!

Re: [dev] upload via html?

2013-05-13 Thread Sam Watkins
HTTP PUT is a reasonable way to do it, but browsers don't support it well. Meanwhile, HTTP POST multipart/form-data with CGI is least worst. I don't like PHP, it is fully insane and has a long history of poor security. HTTP PUT with ranges would be useful, could mount filesystems over HTTP. Sam