Re: Multiple Sites

2001-12-03 Thread Medi Montaseri
DNS hosting is about $3/monthif your DNS admin does not allow that, simply move on to the next one... On Tue, 4 Dec 2001, Mithun Bhattacharya wrote: > Medi Montaseri wrote: > > > If you only have one IP and want to have many web sites (ie URLs) for > > your customers, then why don't you us

RE: Multiple Sites

2001-12-03 Thread Andy Sharp
>From the start o' the thread: > "But if I put in URL/directory and a forward slash/ > eg. http://URL/directory/ then it shows the default.htm page. But I know my > customers, and they will not put in the directory forward slash. How do I > get around this issue?" This isn't really a mod_perl is

Re: Multiple Sites

2001-12-03 Thread Mithun Bhattacharya
Medi Montaseri wrote: > If you only have one IP and want to have many web sites (ie URLs) for > your customers, then why don't you use VirtualHost. Then your customers > can either have > > www.customer1.xyz.com > www.customer2.xyz.com > > or > > www.customer1.com > www.customer2.com > Th

Re: Multiple Sites

2001-12-03 Thread Medi Montaseri
If you only have one IP and want to have many web sites (ie URLs) for your customers, then why don't you use VirtualHost. Then your customers can either have www.customer1.xyz.com www.customer2.xyz.com or www.customer1.com www.customer2.com solve the problem at the root, not at the leaf... L

Re: Multiple Sites

2001-12-03 Thread Mithun Bhattacharya
>>But but it does not work. But if I put in URL/directory and a forward slash/ >>eg. http://URL/directory/ then it shows the default.htm page. But I know my >>customers, and they will not put in the directory forward slash. How do I >>get around this issue? http://httpd.apache.org/docs-2.0/mod/m

Re: too many files open

2001-12-03 Thread Marius Feraru
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Today at 10:14, 'John Michael' wrote: |JM|Perlmagick claims that it handles all of the file handling. And it really does it. So why don't you let him do its job!!?! ... meaning, why do you use things like: |JM|my $image = Image::Magick->new(magic

Re: too many files open

2001-12-03 Thread ___cliff rayman___
are you sure the new system's OS has a large enough "open files" parameter? on linux this could be modified by the parameters /proc/sys/fs/file-max /proc/sys/fs/inode-max it am sure it is different on bsd, solaris etc.. John Michael wrote: > Hi > I use the perl sub below to create thumbs with

RE: delayed file uploads...

2001-12-03 Thread Chui G. Tey
Here is a hackish option: place the

Re: delayed file uploads...

2001-12-03 Thread David Young
I'd say "no". Uploading the file is a function of the browser and not under your control. > From: "El Capitan" <[EMAIL PROTECTED]> > Reply-To: <[EMAIL PROTECTED]> > Date: Mon, 3 Dec 2001 15:29:08 -0800 > To: <[EMAIL PROTECTED]> > Subject: delayed file uploads... > > i have a simple question. im

Re: delayed file uploads...

2001-12-03 Thread Robert Landrum
At 3:29 PM -0800 12/3/01, El Capitan wrote: >i have a simple question. im not sure if there is a mod_perl directive or >module for this but id like to perform this simple task: > >two web pages run in sequence. the first page, id like a user to select >several files from his/her machine for uploa

[OT] mod_gzip configuration

2001-12-03 Thread Jonathan M. Hollin
Hey gang, I have just installed mod_gzip on my mod_perl server and am very impressed with its performance. However, I've noticed that it is only compressing mod_perl output when parameters are passed to the script in the URL. E.g: http://www.mysite.com/test.cgi?test=1 will be compressed, but h

delayed file uploads...

2001-12-03 Thread El Capitan
i have a simple question. im not sure if there is a mod_perl directive or module for this but id like to perform this simple task: two web pages run in sequence. the first page, id like a user to select several files from his/her machine for uploading to the server using the input type "file" ta

Re: Multiple Sites

2001-12-03 Thread Andrew Ho
Hello, SP>But if I put in URL/directory and a forward slash/ eg. SP>http://URL/directory/ then it shows the default.htm page. But I know my SP>customers, and they will not put in the directory forward slash. How do SP>I get around this issue? RedirectMatch permanent ^/directory$ http://URL/d

Re: Multiple Sites

2001-12-03 Thread Ronald Beck
Try setting your directory index like this... DirectoryIndex default.htm index.htm default.html index.html this should catch any one of the four files as the index when you enter http://URL/directory. Also, make sure "directory" is in your http root path. See the httpd.conf file if yo

RE: Multiple Sites

2001-12-03 Thread Jonathan M. Hollin
:: But but it does not work. But if I put in URL/directory and a :: forward slash/ :: eg. http://URL/directory/ then it shows the default.htm page. :: But I know my :: customers, and they will not put in the directory forward slash. How do I :: get around this issue? Scott, The best solution is

Multiple Sites

2001-12-03 Thread Purcell, Scott
Hello, I have the need to create 10 web sites off my Apache web server. I do not want to use 10 IP addresses. So I am doing to cheeze and do a URL/directory/index.html foreach site. Then I would give each customer a URL of URL/directory and I would like the index.html or the default.html to com

[ANNOUNCE] ApacheBench 0.62 released

2001-12-03 Thread Adi Fairbank
In my ongoing effort to bring the ApacheBench Perl module up to date with the ab distributed with Apache, here is another release. This one mainly incorporates * support for HTTP Keep-Alive feature, * support for HTTP HEAD requests, * global and per-run time limits, * accurate tallying of se

too many files open

2001-12-03 Thread John Michael
HiI use the perl sub below to create thumbs with image magick on my mod perl server andnever really had any problems with it.  I put it on another server and aftera short while it froze up the server with this error.too many files open.   It is running under a mod-perl environment because in

Re: [OT] Re: Vhosts + mod_perl

2001-12-03 Thread Dave Baker
--82I3+IH0IqGh5yIs Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Dec 02, 2001 at 04:19:28PM -, Jonathan M. Hollin wrote: > :: Everytime I make a new document root for a different website, say the > :: subdomain loco

Re: [ANNOUNCE] OpenFrame 2.05

2001-12-03 Thread Leon Brocard
Jonas Liljegren sent the following bits through the ether: > I checked it out from CVS. But there is no INSTALL file. Right, there is however a lib/OpenFrame/Install.pod which I've just updated to clear things up. I guess we should copy the text to INSTALL to make things clear. The Apache stuff

RE: [OT] Re: Vhosts + mod_perl

2001-12-03 Thread Jonathan M. Hollin
:: Everytime I make a new document root for a different website, say the :: subdomain loco on trains.ath.cx, do I need to update the DNS? :: :: For foo.trains.ath.cx and bar.trains.ath.cx do I need to make new DNS :: entries for foo and bar subdomains? Surely I don't? Because browsers :: will ask