Re: FTP like web app

2010-11-12 Thread Andrea Venturoli

On 10/18/10 21:45, Andrea Venturoli wrote:

Hello.
Sorry if this is a bit OT, but I'm looking for an app that should:
_ replace an ftp server;
_ have a web interface;
_ run on FreeBSD;
_ let one of my users upload some file and send a link to someone else;
_ let that someone else download that file without seeing others' stuff;
_ possibily notify the uploader when someone else downloads that file.

Any hint?


Thanks to anyone who replied.
In the end I installed SynaMan (http://web.synametrics.com/SynaMan.htm).
We are still evaluating it, but it looks like it does 95% of what we need.

 bye  Thanks
av.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: FTP like web app

2010-10-19 Thread Bas Smeelen
On 10/18/2010 10:17 PM, Jerry Bell wrote:
  There is a nice web app called OWL that does essentially this (plus a
 bunch more): http://sourceforge.net/projects/owl/

 It needs php, mysql and apache to run, but it does work well on FreeBSD.

We use http://sourceforge.net/projects/ajax-explorer/ for our clients.
It's very nice and has the same requirements as above, can do without
mysql though



DISCLAIMER: This e-mail is for the intended recipient(s) only. Access, 
disclosure, copying,
distribution or reliance on any of it by anyone else is prohibited. If you have 
received it
by mistake please let us know by reply and then delete it from your system.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


FTP like web app

2010-10-18 Thread Andrea Venturoli

Hello.
Sorry if this is a bit OT, but I'm looking for an app that should:
_ replace an ftp server;
_ have a web interface;
_ run on FreeBSD;
_ let one of my users upload some file and send a link to someone else;
_ let that someone else download that file without seeing others' stuff;
_ possibily notify the uploader when someone else downloads that file.

Any hint?

 bye  Thanks
av.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: FTP like web app

2010-10-18 Thread Gary Gatten
An ftpd (most any) with proper directory perms and a web browser meet most of 
your requirements.  Heck, an httpd, like thttpd will address many of your 
issues - but perms may get more tricky unless you use a full featured httpd 
such as Apache.

- Original Message -
From: owner-freebsd-questi...@freebsd.org owner-freebsd-questi...@freebsd.org
To: freebsd-questions@freebsd.org freebsd-questions@freebsd.org
Sent: Mon Oct 18 14:45:17 2010
Subject: FTP like web app

Hello.
Sorry if this is a bit OT, but I'm looking for an app that should:
_ replace an ftp server;
_ have a web interface;
_ run on FreeBSD;
_ let one of my users upload some file and send a link to someone else;
_ let that someone else download that file without seeing others' stuff;
_ possibily notify the uploader when someone else downloads that file.

Any hint?

  bye  Thanks
av.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org





font size=1
div style='border:none;border-bottom:double windowtext 2.25pt;padding:0in 0in 
1.0pt 0in'
/div
This email is intended to be reviewed by only the intended recipient
 and may contain information that is privileged and/or confidential.
 If you are not the intended recipient, you are hereby notified that
 any review, use, dissemination, disclosure or copying of this email
 and its attachments, if any, is strictly prohibited.  If you have
 received this email in error, please immediately notify the sender by
 return email and delete this email from your system.
/font

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org

Re: FTP like web app

2010-10-18 Thread Chuck Swiger
On Oct 18, 2010, at 12:45 PM, Andrea Venturoli wrote:
 Sorry if this is a bit OT, but I'm looking for an app that should:
 _ replace an ftp server;
 _ have a web interface;
 _ run on FreeBSD;
 _ let one of my users upload some file and send a link to someone else;
 _ let that someone else download that file without seeing others' stuff;
 _ possibily notify the uploader when someone else downloads that file.

Sounds like you want Apache + WebDAV.  For download notifications, you can have 
something scanning the Apache logs

Regards,
-- 
-Chuck

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: FTP like web app

2010-10-18 Thread Andrea Venturoli

On 10/18/10 22:04, Chuck Swiger wrote:

On Oct 18, 2010, at 12:45 PM, Andrea Venturoli wrote:

Sorry if this is a bit OT, but I'm looking for an app that should:
_ replace an ftp server;
_ have a web interface;
_ run on FreeBSD;
_ let one of my users upload some file and send a link to someone else;
_ let that someone else download that file without seeing others' stuff;
_ possibily notify the uploader when someone else downloads that file.


Sounds like you want Apache + WebDAV.  For download notifications, you can have 
something scanning the Apache logs

Regards,


Thanks.
You mean WebDAV on the internal side or external?
Right now my users simply upload through Samba and one of the 
requirement is that external users (downloaders) should not need 
anything more than a browser...


 bye
av.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: FTP like web app

2010-10-18 Thread Chuck Swiger
On Oct 18, 2010, at 1:16 PM, Andrea Venturoli wrote:
 You mean WebDAV on the internal side or external?  Right now my users simply 
 upload through Samba and one of the requirement is that external users 
 (downloaders) should not need anything more than a browser...

Both-- you can setup WebDAV to act as a web-based fileserver and various 
platforms (MacOS X, newer Windows flavors) will even mount it similar to 
Samba/CIFS filesystems.

Regards,
-- 
-Chuck

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: FTP like web app

2010-10-18 Thread Jerry Bell
 There is a nice web app called OWL that does essentially this (plus a 
bunch more): http://sourceforge.net/projects/owl/


It needs php, mysql and apache to run, but it does work well on FreeBSD.

Regards,

Jerry
On 10/18/2010 4:04 PM, Chuck Swiger wrote:

On Oct 18, 2010, at 12:45 PM, Andrea Venturoli wrote:

Sorry if this is a bit OT, but I'm looking for an app that should:
_ replace an ftp server;
_ have a web interface;
_ run on FreeBSD;
_ let one of my users upload some file and send a link to someone else;
_ let that someone else download that file without seeing others' stuff;
_ possibily notify the uploader when someone else downloads that file.

Sounds like you want Apache + WebDAV.  For download notifications, you can have 
something scanning the Apache logs

Regards,


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org