how to share data between users with ftp

Discussion in 'Installation/Configuration' started by arnaud, Sep 20, 2006.

  1. arnaud

    arnaud New Member

    Hello,

    An user ask me if it is possible to share data (in a special folder) between several users, using ftp.
    I don't know the right way to configure this.
    I can create a subdomain if it is needed.

    Thank you for your help,

    Arnaud.
     
  2. falko

    falko Super Moderator ISPConfig Developer

    This isn't possible with ISPConfig.
     
  3. Turophile

    Turophile New Member

    Inside the ISPConfig setup this isn't possible. However, using Linux to set it up is still a posibility if ProFTPD is working.

    #Create it
    mkdir -p /path/to/shared/dir

    Go the the folder you want to create the share in...

    #Create the Link
    ln -sf /path/to/shared/dir shared

    #Make it writable to all?
    chmod -R 0777 /path/to/shared/dir
     
  4. arnaud

    arnaud New Member

    thank you to you two
     

Share This Page