[users@httpd] Linux -Apache 2 - mod_fcgid -Perl - premature end of script error

2012-09-12 Thread Ganthimathi Periasamy
Hi All, I am using mod_fcgid module with Apache 2 in Linux environment to execute the Perl scripts. I am getting premature end of script error occurs randomly.[the same script is getting executed successfully and same script is getting failed at random] I would like to understand the option t

Re: [users@httpd] Customized Stickiness

2012-09-12 Thread Daniel Ruggeri
On 9/12/2012 9:14 AM, sol myr wrote: > Now we'd like the load-balancer to make sure all requests from the same city > - go to the same Tomcat. > E.g: > - All requests from NY (namely with cookie "city=NY" go to the same Tomcat > - All requests from Paris (namely with cookie "city=Paris" go to the

Re: [users@httpd] Transferring xhr messages between Apache and a Persistent Program

2012-09-12 Thread Bob Furber
On 12-09-11 10:43 AM, Jeff Trawick wrote: One step up would be to use FastCGI instead of CGI, which would leave your request handler running as a separate process but which would perform much better as there would be no need to create a new process for every request it handles. That might not r

RE: [users@httpd] error 404 from a page that does not exist

2012-09-12 Thread Marc Fromm
No blogs at all. -Original Message- From: Chris Howard [mailto:ch...@elfpen.com] Sent: Wednesday, September 12, 2012 10:18 AM To: users@httpd.apache.org Subject: Re: [users@httpd] error 404 from a page that does not exist On 9/12/2012 12:10 PM, Marc Fromm wrote: > Strange. I don't have w

Re: [users@httpd] error 404 from a page that does not exist

2012-09-12 Thread Ben Johnson
On 9/12/2012 1:10 PM, Marc Fromm wrote: > Strange. I don't have wordpress on my server. Where could it come form? Someone is "guessing URLs". That is, probing your server to see whether or not you have WordPress installed. This is harmless, for the most part, but you may want to take some kind

Re: [users@httpd] error 404 from a page that does not exist

2012-09-12 Thread Chris Howard
On 9/12/2012 12:10 PM, Marc Fromm wrote: Strange. I don't have wordpress on my server. Where could it come form? Any blogs at all? Maybe some Jr. Achiever is trying to hack a blog in the financial aid dept and just assuming you are using wordpress? -Original Message- From: Chris

[users@httpd] gzipping via mod_deflate, the DeflateBufferSize, the Content-Length header, and download progress in Web browsers

2012-09-12 Thread Ben Johnson
I have a "download page" that serves various types of content (PDFs, ZIP files, images, etc.) via a PHP script that is executed atop Apache. Whenever I enable GZIP compression on this page, via mod_deflate, Web browsers do not show the total file size to be downloaded, presumably because Apache is

RE: [users@httpd] error 404 from a page that does not exist

2012-09-12 Thread Marc Fromm
Strange. I don't have wordpress on my server. Where could it come form? -Original Message- From: Chris Howard [mailto:ch...@elfpen.com] Sent: Wednesday, September 12, 2012 10:07 AM To: users@httpd.apache.org Subject: Re: [users@httpd] error 404 from a page that does not exist wp-login.

Re: [users@httpd] error 404 from a page that does not exist

2012-09-12 Thread Chris Howard
wp-login.php is the WordPress blog system login screen On 9/12/2012 11:58 AM, Marc Fromm wrote: Apache keeps reporting this several times per minute - ERROR 404:September 12, 2012, 9:52 am Referring Page: URI:/apple-touch-icon-precomposed.png -

[users@httpd] RE: error 404 from a page that does not exist

2012-09-12 Thread Marc Fromm
Sorry I copy pasted wrong. This is what keeps happening: ERROR 404:September 12, 2012, 9:42 am Referring Page:http://www.finaid.wwu.edu/wp-login.php URI:/wp-login.php - ERROR 404:September 12, 2012, 9:45 am Referring Page:http://www.finaid.wwu.edu/wp-login.php URI:/wp-login.php

[users@httpd] error 404 from a page that does not exist

2012-09-12 Thread Marc Fromm
Apache keeps reporting this several times per minute - ERROR 404:September 12, 2012, 9:52 am Referring Page: URI:/apple-touch-icon-precomposed.png - ERROR 404:September 12, 2012, 9:52 am Referring Page: URI:/apple-touch-icon-precomposed.png -

[users@httpd] replacement for mod_layout ?

2012-09-12 Thread Harald Falkenberg
Hello, we have to upgrade a very old apache 1.3 installation, which uses mod_layout. There is an mod_layout module version for apache 2.x. I'm able to compile and link it, but it seems to crash httpd processes as soon as mod_layout rules were used. Due to the lack of support for this modul

Re: [users@httpd] Questions on Apache Caching

2012-09-12 Thread Tom Evans
On Wed, Sep 12, 2012 at 3:37 PM, Bhattacharya, Sudip wrote: > Hi Tom, > > Can you explain further on the "Manual Synchronization" process? > Do I have to manually copy paste the static files from backend server to my > local cache folder(create a mirror copy) for achieving this? > Or are you refe

Re: [users@httpd] Need tips on compiling Apache

2012-09-12 Thread Serge Fonville
Since the message is that libpcre is missing. You need to make sure that it is available on the destination server. For example you can copy the file and make it part of an installation script. Additionally it may be helpful to look into the other configure options. HTH Kind regards/met vriendel

RE: [users@httpd] Need tips on compiling Apache

2012-09-12 Thread Frank Mancini
No. I basically want to make it self contained so I can move it to any server (same OS obviously). eg. everything compiled to move in one directory such as: /opt/software/apache From: serge.fonvi...@gmail.com Date: Wed, 12 Sep 2012 16:34:24 +0200 To: users@httpd.apache.org Subject: Re: [use

RE: [users@httpd] Questions on Apache Caching

2012-09-12 Thread Bhattacharya, Sudip
Hi Tom, Can you explain further on the "Manual Synchronization" process? Do I have to manually copy paste the static files from backend server to my local cache folder(create a mirror copy) for achieving this? Or are you referring to hitting all the URLs manually to force Apache to cache them b

Re: [users@httpd] Need tips on compiling Apache

2012-09-12 Thread Serge Fonville
Hi, A few questions: * Are the same libraries available on both servers * Are the servers the same platform (OS/Architecture) * What files did you copy(config/libaries/binary) * Is the directory structure the same on both servers HTH Kind regards/met vriendelijke groet, Serge Fonville http://w

RE: [users@httpd] Need tips on compiling Apache

2012-09-12 Thread Frank Mancini
When I try to run it on another server, I get errors like: ld.so.1: httpd: fatal: libpcre.so.1: open failed: No such file or directory which I'm guessing is because I moved the binaries to a different server. From: frank...@hotmail.com To: users@httpd.apache.org Date: Wed, 12 Sep 2012 07:28:

[users@httpd] Need tips on compiling Apache

2012-09-12 Thread Frank Mancini
So, I'm new to compiling. I'm trying to compile both on a linux red hat server and a Solaris 10 server So lets start off with Solaris, I want to do the typical ./configure --prefix=/my/home/directory --with-pcre=/installs/pcre which seems to work and compile, but I noticed there are ma

[users@httpd] Customized Stickiness

2012-09-12 Thread sol myr
Hi, We're using Apache2.2. as a load-balancer, in front of some Tomcats. Our Tomcats has some logic that calculates user's CITY of residence, and sends a corresponding cookie to the browser. E.g: - all HTTP requests from a New Yorker browser carry the cookie: "city=NY" - all HTTP requests from

Re: [users@httpd] Apache 3.4.3 or 3.3.1 Pre-Compiled Versions

2012-09-12 Thread Jim Jagielski
In general, the ASF doesn't provide pre-built binaries. However, if you can attach a copy of your config.log, people would be able to take a look at where it's failing. On Sep 12, 2012, at 9:36 AM, Frank Mancini wrote: > Sorry. mistype. I meant 2.4.3 > > I guess I kept getting a bunch of erro

RE: [users@httpd] Apache 3.4.3 or 3.3.1 Pre-Compiled Versions

2012-09-12 Thread Frank Mancini
Sorry. mistype. I meant 2.4.3 I guess I kept getting a bunch of errors when compiling from source. I would like to move the compiled copy between servers of the same OS. I have both Linux and Solaris. Most of my errors when moving between servers seem to reside in the ld.so fatal libpcr

Re: [users@httpd] Questions on Apache Caching

2012-09-12 Thread Tom Evans
On Wed, Sep 12, 2012 at 1:15 PM, Bhattacharya, Sudip wrote: > I am using mod_cache module to enable caching of certain subfolders in > VirtualHost section which is mapped to proxy requests to a remote server. > > Is there any way to log requests specific to cached files? I want to know: > 1. Whic

Re: [users@httpd] Apache 3.4.3 or 3.3.1 Pre-Compiled Versions

2012-09-12 Thread Pete Houston
On Wed, Sep 12, 2012 at 06:07:18AM -0700, Frank Mancini wrote: > Does anyone know where I can get a pre-compiled version for both Linux and > Solaris of Apache 3.4.3 and 3.3.1? Those versions do not exist (yet). A reasonable guess for the former would b

[users@httpd] Apache 3.4.3 or 3.3.1 Pre-Compiled Versions

2012-09-12 Thread Frank Mancini
Does anyone know where I can get a pre-compiled version for both Linux and Solaris of Apache 3.4.3 and 3.3.1?

[users@httpd] Questions on Apache Caching

2012-09-12 Thread Bhattacharya, Sudip
I am using mod_cache module to enable caching of certain subfolders in VirtualHost section which is mapped to proxy requests to a remote server. Is there any way to log requests specific to cached files? I want to know: 1. Which files are actually getting cached 2. How many requests are actually

Re: [users@httpd] Virtual Hosts and SSL Config: Hoist Common Directives Above Server Blocks?

2012-09-12 Thread Igor Cicimov
On Sep 9, 2012 10:58 PM, "Tom Browder" wrote: > > I'm trying to clean up my conf files after getting an all-SSL server > with several virtual hosts working. > > At the moment, for each server block, I have this: > > > > SSLEngine on > > SSLCACertificateFile/path/to/ca.pem > SSLCertific