ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    Self Hosted FTP

    IT Discussion
    ftp
    9
    33
    6.0k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • DustinB3403D
      DustinB3403
      last edited by

      So any recommendations, as it appears I actually need an HTTP File server with an Easy to Use Web front (for end users).

      1 Reply Last reply Reply Quote 1
      • W
        WingCreative
        last edited by

        OwnCloud or Pydio may fit the bill in that case.

        scottalanmillerS 1 Reply Last reply Reply Quote 1
        • scottalanmillerS
          scottalanmiller @WingCreative
          last edited by

          @WingCreative said:

          OwnCloud or Pydio may fit the bill in that case.

          Those would be my first thoughts. You can just use WebDAV too, like SharePoint does.

          1 Reply Last reply Reply Quote 0
          • scottalanmillerS
            scottalanmiller
            last edited by

            Alfresco would do it too.

            1 Reply Last reply Reply Quote 0
            • mlnewsM
              mlnews
              last edited by

              What about a WordPress Uploader Plugin?

              1 Reply Last reply Reply Quote 1
              • mlnewsM
                mlnews
                last edited by

                extPlorter

                extplorter

                1 Reply Last reply Reply Quote 1
                • mlnewsM
                  mlnews
                  last edited by

                  BytesFall Explorer

                  bytesfall

                  1 Reply Last reply Reply Quote 1
                  • mlnewsM
                    mlnews
                    last edited by

                    NavPHP

                    navphp

                    1 Reply Last reply Reply Quote 0
                    • mlnewsM
                      mlnews
                      last edited by

                      that is seriously ugly

                      1 Reply Last reply Reply Quote 2
                      • mlnewsM
                        mlnews
                        last edited by

                        FileManager

                        Youtube Video

                        1 Reply Last reply Reply Quote 1
                        • Reid CooperR
                          Reid Cooper
                          last edited by

                          Would not take too much to build a custom solution too, maybe in PHP.

                          1 Reply Last reply Reply Quote 0
                          • stacksofplatesS
                            stacksofplates
                            last edited by

                            Webmin also has a file manager.

                            1 Reply Last reply Reply Quote 0
                            • PSX_DefectorP
                              PSX_Defector @scottalanmiller
                              last edited by

                              @scottalanmiller said:

                              If you are on Windows I would stick with IIS.

                              This is why you don't let a Unix admin do a Windows admin's job. 🙂

                              IIS FTP, be it 6, 7, or 8, sucks ass. Securing it is a pain in the ass, it eats resources badly, and only offers FTPS for secure transfer. If all you need is FTP, Filezilla Server does a better job, with less resources, and higher scaling. It doesn't do it all, e.g. SFTP/FTPS, but it's certainly better than IIS FTP. Just having the autoban feature is worth not using IIS FTP.

                              Once you get into paid FTP daemons, you get some real options. Ipswitch WS_FTP Server can do everything and anything. You want AD integration, restricting directory access by the hour and by the user? That's what you get with better applications.

                              1 Reply Last reply Reply Quote 0
                              • scottalanmillerS
                                scottalanmiller
                                last edited by

                                Not saying it is good, but if you are running Windows for FTP you have bigger issues. IIS is just fine. Why use Windows for FTP when Linux does it so well?

                                1 Reply Last reply Reply Quote 0
                                • W
                                  WingCreative
                                  last edited by

                                  If a critical requirement for the application is compatibility across all operating systems, then I assume you don't have full control over the systems that will be accessing it.

                                  If there's any chance that people will be uploading things on a WiFi connection then SFTP/FTPS/some sort of encryption should be a critical requirement as well. Jussayin.

                                  1 Reply Last reply Reply Quote 0
                                  • stacksofplatesS
                                    stacksofplates
                                    last edited by stacksofplates

                                    If you're using a Linux client with nautilus you can click connect to server. Then just type ssh://user@server. If you have keys set up you don't need a password. You can browse the file system through nautilus just like any other folder and it's secure through ssh.

                                    scottalanmillerS 1 Reply Last reply Reply Quote 0
                                    • scottalanmillerS
                                      scottalanmiller @stacksofplates
                                      last edited by

                                      @johnhooks said:

                                      If you're using a Linux client with nautilus you can click connect to server. Then just type ssh://user@server. If you have keys set up you don't need a password. You can browse the file system through nautilus just like any other folder and it's secure through ssh.

                                      That works great but it does it by not using FTP. If we could get by without FTP this whole conversation would be moot.

                                      And it turned out that FTP was not what he needed but actually a web page. So the FTP part turned out to be a red herring once we probed a bit.

                                      stacksofplatesS 1 Reply Last reply Reply Quote 0
                                      • stacksofplatesS
                                        stacksofplates @scottalanmiller
                                        last edited by

                                        @scottalanmiller said:

                                        @johnhooks said:

                                        If you're using a Linux client with nautilus you can click connect to server. Then just type ssh://user@server. If you have keys set up you don't need a password. You can browse the file system through nautilus just like any other folder and it's secure through ssh.

                                        That works great but it does it by not using FTP. If we could get by without FTP this whole conversation would be moot.

                                        And it turned out that FTP was not what he needed but actually a web page. So the FTP part turned out to be a red herring once we probed a bit.

                                        Ok. How would you do passwordless logon and have it know which clients were logging on?

                                        scottalanmillerS 1 Reply Last reply Reply Quote 0
                                        • scottalanmillerS
                                          scottalanmiller @stacksofplates
                                          last edited by

                                          @johnhooks said:

                                          Ok. How would you do passwordless logon and have it know which clients were logging on?

                                          You can't. Not really a login at that point. Just wide open. Unless you want to do something like take a username but no password (FTP basically does this with anonymous) or do weird things like guess.

                                          stacksofplatesS 1 Reply Last reply Reply Quote 0
                                          • stacksofplatesS
                                            stacksofplates @scottalanmiller
                                            last edited by stacksofplates

                                            @scottalanmiller said:

                                            @johnhooks said:

                                            Ok. How would you do passwordless logon and have it know which clients were logging on?

                                            You can't. Not really a login at that point. Just wide open. Unless you want to do something like take a username but no password (FTP basically does this with anonymous) or do weird things like guess.

                                            Ok I wondered. This kind of threw me off (why I suggested ssh with keys):

                                            Password less logon (for clients or vendors etc) and custom sites for different clients.
                                            So we could have our top level "Owners" and then Client1 Client2 Client3 all with distinct FTP pages (and custom logon information for each site)

                                            I didn't know how that was possible.

                                            scottalanmillerS 1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 2 / 2
                                            • First post
                                              Last post