Page 1 of 1

File manager

Posted: Wed Apr 16, 2003 5:22 am
by Frostbite
hi, I have my own server with php and mysql installed, and i will probably install perl and asp very soon. i want to give people free hosting. does anyone know a script that could let people fill in a form where they type in a username, password and their email address, their username would be the same as their domain so if they signed up with the username 123456789 then the url to their site would be http://www.something.com/123456789 which means the script would need to create a folder called 123456789. when they have signed up their username and password would be put into the mysql database so that the login form would work. then when they log in they would get a simple filemanager which if they uploaded files would put them in the directory /123456789 or whatever their username is

would anyone have any ideas how to do this, thanks

Posted: Wed Apr 16, 2003 6:51 am
by m3mn0n
When a user submits his info, save it all to atext fileor database.

Next, use the filesystem functionsto create a directory and even add files to that directory.

If you want a complete working app, try searching at hotscripts.

Posted: Wed Apr 16, 2003 10:21 am
by Frostbite
k thanks