[users@httpd] mod proxy no response from http post

2014-04-30 Thread Smith, Mitchell
Hi, I have an application where a http post is sent to a service which returns a 202 status code. I am trying to pass this via my apache httpd server to maintain same origin, and reduce the access into the private network. What appears to happen however is: - Client sends http post - httpd corr

Re: [users@httpd] weblogic plugin 64-bit for apache2.2.7 64-bit

2014-04-30 Thread Jeff Trawick
On Wed, Apr 30, 2014 at 2:50 PM, venu thangalapally wrote: > Hello, > Do we need to take any extra steps for configuring > apache(compiled it in 64-bit) with weblogic server . > > i had to download 64-bit WLS plugin and place it under apache_root/modules > > apache started up fine with n

Re: [users@httpd] DirectoryListing Hiding Folder that contains .htaccess with 'require valid-user'

2014-04-30 Thread Adam Brenner
On Wed, Apr 30, 2014 at 11:50 AM, Eric Covener wrote: > > IndexOptions +showForbidden, or arrange or the same authentication to > occur in the parent directory. > > That did the trick. Thanks Eric! -- Adam Brenner Computer Science, Undergraduate Student Donald Bren School of Information and Comp

[users@httpd] weblogic plugin 64-bit for apache2.2.7 64-bit

2014-04-30 Thread venu thangalapally
Hello, Do we need to take any extra steps for configuring apache(compiled it in 64-bit) with weblogic server . i had to download 64-bit WLS plugin and place it under apache_root/modules apache started up fine with no issues... any other steps to be taken care of with weblogic configura

Re: [users@httpd] DirectoryListing Hiding Folder that contains .htaccess with 'require valid-user'

2014-04-30 Thread Eric Covener
On Wed, Apr 30, 2014 at 2:34 PM, Adam Brenner wrote: > How do I disable Apache to stop hiding the directory when 'require > valid-user' is added? IndexOptions +showForbidden, or arrange or the same authentication to occur in the parent directory. -- Eric Covener cove...@gmail.com

[users@httpd] DirectoryListing Hiding Folder that contains .htaccess with 'require valid-user'

2014-04-30 Thread Adam Brenner
Howdy, I am running into an issue where the directory listing with: Options +Indexes +FollowSymLinks +MultiViews AllowOverride All is hiding any folder that contains a .htaccess file with 'require valid-user'. The specific .htaccess file we are using is: AuthUserFile /data/hpc/www/account

Re: [users@httpd] rewrite and internal redirects

2014-04-30 Thread Moritz Lennert
On 29/04/14 14:02, Oscar Knorn wrote: Am 29.04.2014 13:44, schrieb Moritz Lennert: RewriteRule ^balades/(.+)$ /qgiswebclient.html?map=/home/geogf405/PROJETS/$1.qgs Please insert these Rewriterules Directly after the DocumentRoot Directive and before the -Section : RewriteRule ^/balades/mori

Re: [users@httpd] Rewrite rule

2014-04-30 Thread Sebastien Moretti
RewriteCond %{QUERY_STRING} ^action=cs_query$ RewriteRule ^/cgi-bin/blt?action=cs_query$ - [G] Very close with this one ... Try: RewriteCond %{QUERY_STRING} ^action=cs_query$ RewriteRule ^/cgi-bin/blt$ - [G] As I said before, you can't include the query string in RewriteRule state

Re: [users@httpd] Rewrite rule

2014-04-30 Thread Igor Cicimov
> > > RewriteCond %{QUERY_STRING} ^action=cs_query$ > RewriteRule ^/cgi-bin/blt?action=cs_query$ - [G] > > Very close with this one ... Try: RewriteCond %{QUERY_STRING} ^action=cs_query$ RewriteRule ^/cgi-bin/blt$ - [G] As I said before, you can't include the query string in RewriteRule sta

Re: [users@httpd] Rewrite rule

2014-04-30 Thread Sebastien Moretti
I tried the following thing without success. RewriteEngine on RewriteRule ^/cgi-bin/blt?action=cs_query$ - [G] mod_rewrite matches the URi not the the query string. Read about RewriteCond here: http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html#rewritecond I tried RewriteCond

Re: [users@httpd] About commercial support for apache http server.

2014-04-30 Thread Hua
Thanks for your reply! I will check if that can help me. 发自我的 iPhone > 在 2014年4月30日,12:30,Pankaj Singh 写道: > > You can refer to www.brainpulse.com. > > >> On Wed, Apr 30, 2014 at 9:17 AM, Hua wrote: >> Hello everybody! >> My company need commercial support for apache httpd from third-party

Re: [users@httpd] Rewrite rule

2014-04-30 Thread Igor Cicimov
> > > I tried the following thing without success. > > RewriteEngine on > RewriteRule ^/cgi-bin/blt?action=cs_query$ - [G] > > mod_rewrite matches the URi not the the query string. Read about RewriteCond here: http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html#rewritecond

[users@httpd] Rewrite rule

2014-04-30 Thread Sebastien Moretti
Hi I encounter problems to rewrite a rule The page /cgi-bin/blt?action=cs_query is now gone and I would like to notify this. I tried the following thing without success. RewriteEngine on RewriteRule ^/cgi-bin/blt?action=cs_query$ - [G] An idea ? I tried with \? without success. I have othe

Re: [users@httpd] Rewrite Help

2014-04-30 Thread Igor Cicimov
> > > I've never written a rewrite rule and need help on getting started with > addressing an issue: > Basically, I'm trying to find out if it's possible to create a variable > for a cookie, store it's value to the variable, then unset the cookie and > finally reset the cookie using said variable.