Page 1 of 1

Skip the login.html page, direct anonymous login.

Posted: Thu Jan 07, 2010 2:38 pm
by Andre
Is it possible to redirect users immediately to the main.html page and are automatically logged in as an anonymous user? So they don't see the login page but immediately can start their up- or download?

We try to make uploading as easy and fast as possible and it would be nice if we could put a link on our website where people can start uploading without login.

Thanx for your time and help. :-)

Kind regards,
André.

Re: Skip the login.html page, direct anonymous login.

Posted: Thu Jan 07, 2010 2:46 pm
by FTP
Yes, it is possible, please modify the file "webclient/loginok.html", replace the line " local username = _POST["username"] or "" " with " local username = _GET["username"] or _POST["username"] or "" ".
Then you can log into the web client directly by the URL "http://YourIP/loginok.html?username=anonymous"

Good luck!

Re: Skip the login.html page, direct anonymous login.

Posted: Thu Jan 07, 2010 3:01 pm
by Andre
It works! Awesome. :-)

Thanx a lot!

André.