File Manager

2004-12-22 Thread Jeff Herbeck
Hello everyone, I am trying to make a web based filemanager for users that are already authenticated through .htaccess and are the $REMOTE_USER. Here is a screenshot of something like I would like to do: http://www.jeffherbeck.com/fileman.JPG Any ideas? Thanks in advance Jeff -- To unsubsc

suEXEC or something like it

2004-12-04 Thread Jeff Herbeck
Hello, I am trying to write a set of scripts that will allow multiple users to log in via one generic login url (htaccess) and once they are in they can use forms to type in a url of a file on the internet, the scripts will get that file and put it into their personal webspace on the local server

Re: getting files from the internet

2004-10-19 Thread Jeff Herbeck
ROTECTED]> wrote: > > --- Jeff Herbeck <[EMAIL PROTECTED]> wrote: > > > but the directory it goes to has to be owned by "apache". Is there > > any way it can be made to be owned by the remote user? > > > Dynamically set ownership of an un

Re: getting files from the internet

2004-10-18 Thread Jeff Herbeck
I have this working now: #!/usr/bin/perl use strict; use warnings; use HTTP::Response; use LWP::Simple 'getstore'; my $url = 'http://www.jeffherbeck.com/arch.doc'; my $remote_user = $ENV{REMOTE_USER};# || 'unknown_user'; my $file= 'newfile.txt'; my $response= HTTP::Response-

Re: getting files from the internet

2004-10-18 Thread Jeff Herbeck
; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" On Sun, 17 Oct 2004 22:42:07 -0700 (PDT), Bill Jones <[EMAIL PROTECTED]> wrote: > > --- Jeff Herbeck <[EMAIL PROTECTED]> wrote: > > > This code gives me a 500 internal server error. > > And the

Re: getting files from the internet

2004-10-17 Thread Jeff Herbeck
This code gives me a 500 internal server error. On Thu, 14 Oct 2004 10:39:48 -0500, Charles K. Clarkson <[EMAIL PROTECTED]> wrote: > Jeff Herbeck <[EMAIL PROTECTED]> wrote: > > : Hello, > > > : > : I want to be able to have a user login with apache > : au

getting files from the internet

2004-10-14 Thread Jeff Herbeck
Hello, I want to be able to have a user login with apache authentication (which I have that part working) and then take a URL from a form and download the file in that url and put it in a directory for that user. Here is what I have so far. It runs, but it doesn't do anything but display "aaa"

Re: moving files

2004-09-29 Thread Jeff Herbeck
So, what kind of header are we talking about here. (I'm still learning) Jeff On Wed, 29 Sep 2004 12:43:46 -0600, Wiggins d Anconia <[EMAIL PROTECTED]> wrote: > Make sure to group reply so that others can help and be helped (and to > avoid getting accidentally ignored)...please bottom post... >

moving files

2004-09-25 Thread Jeff Herbeck
Hello, I am trying to start a "transloading" and webhosting company. This will allow users to login via apache .htaccess type authentication and then be able to put a url of a file into a form and the script will go get that file, download it to the webserver into their html directory and then b