Re: [users@httpd] How to make Apache mod_deflate and Transfer-encoding : Chunked work together?

2012-02-01 Thread Matus UHLAR - fantomas
On 1/27/2012 2:50 PM, sameer shah wrote: As you can see in above 2 headers chunking is working only if the compression is turned off. On 27.01.12 15:37, William A. Rowe Jr. wrote: Chunking is not a feature that the client gets to choose. Your client code is badly written if it is that

[users@httpd] mod rewrite question https to http

2012-02-01 Thread Roland RoLaNd
Dear all, I'm a complete newbie to apache and i've inherited a virtual host setup.i have the need to redirect all traffic from https to http (443 to 80, yes that is correct) the relevant rewrite rules in httpd.conf are as such: # all other traffic is redirected to the SSL site

[users@httpd] Experiencing odd, possibly JPEG-specific slowdowns

2012-02-01 Thread Angus McIntyre
I'm in the process of moving a domain from a virtual host on a physical box (CentOS 5.5, Apache 2.0.6.3) to a virtual host on a VPS (CentOS 6.2, Apache 2.2.21). The two machines (one physical, one virtual) should have broadly similar performance and memory availability; the physical box is more

RE: [users@httpd] Experiencing odd, possibly JPEG-specific slowdowns

2012-02-01 Thread DENIS Laurent
Enable the %D in the logs - it will tell you how long the server takes to serve the query, in microseconds. It can be very long from client side but fast from server side - and even if slow from server side, it can be the client that hangs in the middle of the transaction (for very large

[users@httpd] Unable to load dynamic library '/usr/lib64/php/modules/php_pdo_mysql' - ....

2012-02-01 Thread Darryle Steplight
Hello Everyone, My name is Darryle. I've installed PHP 5.3.9 on my CentOs box and some numerous modules via yum. Some of those modules are PDO, PDO_MYSQL and PDO_SQLITE. However, my PHP configuration is not recognizing my PDO_MYSQL module. I can verify that these modules exists by looking in

Re: [users@httpd] How to make Apache mod_deflate and Transfer-encoding : Chunked work together?

2012-02-01 Thread William A. Rowe Jr.
On 2/1/2012 3:48 AM, Matus UHLAR - fantomas wrote: Of course. But the original question was, why is chunking not used, even when Content-Length was not sent? I don't know HTTP/1.1 enough to answwer this question, do you? Yes; because the entire C-L is known and the overhead for C-L plus

Re: [users@httpd] Unable to load dynamic library '/usr/lib64/php/modules/php_pdo_mysql' - ....

2012-02-01 Thread Yehuda Katz
On Wed, Feb 1, 2012 at 12:55 PM, Darryle Steplight dstepli...@gmail.comwrote: PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib64/php/modules/php_pdo' - /usr/lib64/php/modules/php_pdo:cannot open shared object file: No such file or directory in Unknown on line 0 PHP

Re: [users@httpd] Unable to load dynamic library '/usr/lib64/php/modules/php_pdo_mysql' - ....

2012-02-01 Thread Darryle Steplight
They are in /usr/lib64/php/modules/ . I can see pdo_mysql.so in that folder. The configurations in /etc/php.d/ are created by YUM . So are you suggesting that I installed PHP by source instead? On Wed, Feb 1, 2012 at 2:09 PM, Yehuda Katz yeh...@ymkatz.net wrote: On Wed, Feb 1, 2012 at 12:55 PM,

Re: [users@httpd] mod rewrite question https to http

2012-02-01 Thread Igor Cicimov
Put the last rewrite rule inside your ssl virtual host and change https to http. On Feb 2, 2012 12:29 AM, Roland RoLaNd r_o_l_a_...@hotmail.com wrote: Dear all, I'm a complete newbie to apache and i've inherited a virtual host setup. i have the need to redirect all traffic from https to http

Re: [users@httpd] How to make Apache mod_deflate and Transfer-encoding : Chunked work together?

2012-02-01 Thread sameer shah
Hi William, I have seen web sites forcing the chunked transfer-encoding as well as gzip content encoding. One of the biggest example is *facebook*. And *facebook*uses apache on linux. Please refer this link on progressive rendering using chunked transfer encoding.