[users@httpd] Problems running .asp code after Apache 1.3.3 -> Apache 2.4.13 upgrade

2016-05-03 Thread jonathandun...@juno.com
Hello list, I am having a very weird issue running asp code after an Apache upgrade. Here is what is happening: SERVER SPECS: Running on Port: 443 Server Software: Apache/2.4.16 (Unix) OpenSSL/1.0.2g PHP/5.6.11 mod_perl/2.0.9 Perl/v5.22.0 Server Protocol: HTTP/1.1 CGI Revision: CGI/1.

AW: [users@httpd] Problem with mod_rewrite, especially with ap_context_document_root() in apache 2.4.20

2016-05-03 Thread Daniel Betz
> On Tue, May 3, 2016 at 10:17 AM, Daniel Betz wrote: > > Hello List, > > > > i dont know if im right here, or that i should file a bugreport, but i will > > post > my problem here first. > > > > > > I have an easy rewrite Rule, which rewrites everything to /index.php, when > the filename or dire

Re: [users@httpd] Apache-2.2 with LDAP authentication keeps spinning after authentication completes

2016-05-03 Thread Jim Dutton
Another interesting observation: web browser (Firefox) continues to show activity spinner and "read " status (with AuthLDAP active at web application initiation) even after the LDAP authentication is completed, the OpenLDAP server is stopped, and the LDAP network connection is dropped. I can't see

Re: [users@httpd] Apache-2.2 with LDAP authentication keeps spinning after authentication completes

2016-05-03 Thread Jim Dutton
The persistent LDAP connection between Apache/mod_authnz_ldap and OpenLDAP is not an LDAP nor OpenLDAP error. Debug logging has confirmed this. It appears that Apache(v2.2)/mod_authnz_ldap establishes and maintains a persistent network connection to the designated LDAP server. Documentation for mo

Re: [users@httpd] I need to activate a NULL cipher in modssl

2016-05-03 Thread Gaetan Njinang
Thanks for your answers. Stunnel seems to be a good solution. Been discussed recently, see https://www.spinics.net/lists/apache-users/msg112140.html (or other browser for this maillist). I still vote for stunnel. -- With Best Regards, Marat Khalili On 03/05/16 16:48, Gaetan Njinang wrote: > He

Re: [users@httpd] Show Alternate Image if Requested Image is Missing

2016-05-03 Thread Julie Kurpa
It's possible I've just gotten it to work. Still testing but this is very promising I found a blogger who gave code on how to do this. http://drincruz.blogspot.com/2009/05/apache-redirecting-missing-images-with.html Since I was already getting the DocumetRoot in the path, I decided to har

Re: [users@httpd] Show Alternate Image if Requested Image is Missing

2016-05-03 Thread Julie Kurpa
Yes. Do you want a snippet or the whole thing? Size 442 KB. I'm new to this forum, do I just attach it to the reply email? Julie Kurpa >>> Yehuda Katz 5/3/2016 11:45 AM >>> Do you have logs from either of those? - Y On Tue, May 3, 2016 at 11:44 AM, Julie Kurpa wrote: > I put the "no_sk

Re: [users@httpd] Show Alternate Image if Requested Image is Missing

2016-05-03 Thread Yehuda Katz
Do you have logs from either of those? - Y On Tue, May 3, 2016 at 11:44 AM, Julie Kurpa wrote: > I put the "no_sketch.jpg" image in path > "/mnt/data/pawebdata/docs/images/sketches" and indeed, every jpg showed the > "no_sketch.jpg" image. > > The 302 didn't seem to do anything. > > Julie Kurp

Re: [users@httpd] Show Alternate Image if Requested Image is Missing

2016-05-03 Thread Julie Kurpa
I put the "no_sketch.jpg" image in path "/mnt/data/pawebdata/docs/images/sketches" and indeed, every jpg showed the "no_sketch.jpg" image. The 302 didn't seem to do anything. Julie Kurpa >>> "Julie Kurpa" 5/3/2016 11:34 AM >>> Yes there is an alias for the images specified in the vhosts

Re: [users@httpd] Show Alternate Image if Requested Image is Missing

2016-05-03 Thread Julie Kurpa
Yes there is an alias for the images specified in the vhosts.conf file.:) Alias /images/ /mnt/data/pawebdata/images/ AllowOverride None Order allow,deny Allow from all I can create the directory path "/mnt/data/pawebdata/docs/images/sketches" just to see if the "no_sketch.jpg" show

Re: [users@httpd] Show Alternate Image if Requested Image is Missing

2016-05-03 Thread Yehuda Katz
The images have to be accessible somehow: Just to clarify, you said: - The DocumentRoot is "/mnt/data/pawebdata/docs" - The images are located in "/mnt/data/pawebdata/images" How does the browser ever load any image? Is there an alias directive somewhere in the configuration? Can you put the imag

Re: [users@httpd] Show Alternate Image if Requested Image is Missing

2016-05-03 Thread Julie Kurpa
I can appreciate that Nick. Can you provide further guidance? I see that there is a ErrorDocument 404 /404.html But I don't know what you suggest I do with this. For pages that are missing, I'd like the 404.html to show. For an image within a page, I'd like the "no_sketch.jpg" to show.

Re: [users@httpd] Show Alternate Image if Requested Image is Missing

2016-05-03 Thread Julie Kurpa
BTW, Here is a snippet from the rewrite log: 172.30.29.19 - - [03/May/2016:11:07:56 --0400] [pawebdev1.vcgov.org/sid#7f47d6a93b60][rid#7f47d6ba7ce8/initial] (2) init rewrite engine with requested uri /images/sRegion.png 172.30.29.19 - - [03/May/2016:11:07:56 --0400] [pawebdev1.vcgov.org/sid#7f4

Re: [users@httpd] Show Alternate Image if Requested Image is Missing

2016-05-03 Thread Julie Kurpa
Thanks Yehuda, I tried your suggested code already and have just retried it. The behavior is that all jpg's are now not showing at all. >From what I tell from the rewrite.log, it is pasting the DocumentRoot path in >front of the path to the "no_sketch.jpg" for all JPG references. The D

Re: [users@httpd] Show Alternate Image if Requested Image is Missing

2016-05-03 Thread Yehuda Katz
On Tue, May 3, 2016 at 10:52 AM, Julie Kurpa wrote: > The sketches themselves are JPGs located within a directory on the Linux > server. > If the JPG for a property is found to be missing, I would like to show an > alternate JPG called "no_sketch.jpg". > I've tried a gazillion variations of the

Re: [users@httpd] Show Alternate Image if Requested Image is Missing

2016-05-03 Thread Nick Kew
On Tue, 2016-05-03 at 10:52 -0400, Julie Kurpa wrote: > I've been trying various combinations of the Rewrite module Bad idea. Don't go looking for the brittle and difficult solution until you've looked for an easy one. In your case, ErrorDocument. -- Nick Kew --

[users@httpd] Show Alternate Image if Requested Image is Missing

2016-05-03 Thread Julie Kurpa
I am trying to modify an Apache configuration in Suse Linux. The website is used to view Property and a mixture of html and cgi scripts. The cgi scripts query an oracle database and supply information to the screen, one of which, is a sketch of the property. The sketches themselves are JPGs

Re: [users@httpd] Problem with mod_rewrite, especially with ap_context_document_root() in apache 2.4.20

2016-05-03 Thread Eric Covener
On Tue, May 3, 2016 at 10:33 AM, Eric Covener wrote: > I assume this stuff is in your documentroot, no VirtualDocumentRoot or > Alias used.How frequently does it fail?Any chance it requires > mod_http2? (nor mod_userdir?) --

Re: [users@httpd] Problem with mod_rewrite, especially with ap_context_document_root() in apache 2.4.20

2016-05-03 Thread Eric Covener
On Tue, May 3, 2016 at 10:17 AM, Daniel Betz wrote: > Hello List, > > i dont know if im right here, or that i should file a bugreport, but i will > post my problem here first. > > > I have an easy rewrite Rule, which rewrites everything to /index.php, when > the filename or directory doesnt exis

[users@httpd] Problem with mod_rewrite, especially with ap_context_document_root() in apache 2.4.20

2016-05-03 Thread Daniel Betz
Hello List, i dont know if im right here, or that i should file a bugreport, but i will post my problem here first. I have an easy rewrite Rule, which rewrites everything to /index.php, when the filename or directory doesnt exist. RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L]

Re: [users@httpd] I need to activate a NULL cipher in modssl

2016-05-03 Thread Marat Khalili
Been discussed recently, see https://www.spinics.net/lists/apache-users/msg112140.html (or other browser for this maillist). I still vote for stunnel. -- With Best Regards, Marat Khalili On 03/05/16 16:48, Gaetan Njinang wrote: Hello, Please, I have a problem. I need to activate NULL cip

Re: [users@httpd] I need to activate a NULL cipher in modssl

2016-05-03 Thread Daniel
Have you tried setting it up with SSLProxyCipherSuite yet? El mar., 3 may. 2016 a las 15:48, Gaetan Njinang () escribió: > Hello, > > Please, I have a problem. I need to activate NULL cipher in modssl. > > I need to implement a strong authentication between two servers groups. > First group of se

[users@httpd] I need to activate a NULL cipher in modssl

2016-05-03 Thread Gaetan Njinang
Hello, Please, I have a problem. I need to activate NULL cipher in modssl. I need to implement a strong authentication between two servers groups. First group of servers: reverse proxies. Second group of servers: backend application servers. It is very important to not increase the load of revers

Re: [users@httpd] Apache-2.2 with LDAP authentication keeps spinning after authentication completes

2016-05-03 Thread Luca Toscano
2016-05-03 1:22 GMT+02:00 J.D. : > Centos-6.6+seLinux, Apache-2.2, OpenLDAP-2.4.40, OpenSSL-1.0.1e-fips > > Using the following sample Directory block, the Apache LDAP authentication > works > just fine, but when the web page is displayed - the activity spinner is > spinning > and the status bar s

[users@httpd] Setup combined logs for HTTPS

2016-05-03 Thread Adrian Jenzer
Hi all I'm running an ownCloud server on CentOS 7.2 with Apache 2.4.6.40.el7.centos. In /var/log/httpd/ssl_access_log I get the entrys as common log format. I would like to enable logging for Browser and OS too, so combined log format. How can I achieve this? I tried adding CustomLog "logs/ssl_acc