I'm looking for a free web-based ftp-solution.
All I can find is "Virtual FTP Apps", I don't want a full-feathered ftp client.

What I need is:
• An admin tool where I can create accounts
• Static ftp-server-address (not modifiable by user)
• Ability for users to see and download contents of "their" folders on the ftp server via a regular web-browser-

Keep in mind, I don't know the first thing about scripting, I only know html, but I'm sure I can figure out basic stuff.

    I guess...

    I've seen lots of php virtual ftp apps but non like the one I want.

      This looks like something I want:

      hxxp://www.psoft.net/HSdocumentation/user_nomenu/ftp.html

        Exactly!

        I checked out the link, the closest thing there would be "E-Uploader Pro" but it's not 100%. With that I can administer accounts but it doesn't seem to support user passwords. ...and it's not free. There was something else as well but it required MySQL, which I don't have on the server.

        thanx

          I'll check it out. So does that mean I can use MySQL from my current ftp server but linked somehow to a free MySQL provider?

            mysql is a server like any other http or web server. for speed and bandwidth reasons, its ideal to run the mysql server on the same machine or the same local network as the computers that need to access the database. however if this is impossible, it is possible to access mysql servers on other networks and store and retreive data in the same manner as you would on a local server...

            //access db on local machine
            mysql_connect('localhost', 'username', 'password');
            
            //access db on a remote machine
            mysql_connect('12.34.56.78', 'username', 'password');
            

            in both examples you will have a link to a mysql server. php doesnt really care where it is located, just that it can connect and communicate with it.

              Write a Reply...