[Bug 28657] mod_negotiation should not store Content-Location header as an error header

2020-04-18 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=28657

--- Comment #157 from Rajput seo  ---
I really loved reading your blog. It was very well authored and easy to
undertand. Unlike additional blogs I have read which are really not tht good. I
also found your posts very interesting. In fact after reading, I had to go show
it to my friend and he ejoyed it as well!
http://seo.fastpromotion.us>EDU GOV Backlinks

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: bugs-unsubscr...@httpd.apache.org
For additional commands, e-mail: bugs-h...@httpd.apache.org



[Bug 28657] mod_negotiation should not store Content-Location header as an error header

2020-04-18 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=28657

--- Comment #156 from Rajput seo  ---
Nice post. I was checking constantly this blog and I am impressed! Extremely
helpful information specially the last part   I care for such info a lot. I was
seeking this particular information for a very long time. Thank you and good
luck.
http://health48250.timeblog.net/22022237/the-smart-trick-of-is-vaseline-for-hemorrhoids-effective-that-no-one-is-discussing>Vaseline
Stop Hemorrhoids Itching 

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: bugs-unsubscr...@httpd.apache.org
For additional commands, e-mail: bugs-h...@httpd.apache.org



[Bug 64365] New: ProxyFCGISetEnvIf does not evaluate condition when unsetting variables.

2020-04-18 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64365

Bug ID: 64365
   Summary: ProxyFCGISetEnvIf does not evaluate condition when
unsetting variables.
   Product: Apache httpd-2
   Version: 2.4.43
  Hardware: PC
OS: Linux
Status: NEW
  Severity: normal
  Priority: P2
 Component: mod_proxy_fcgi
  Assignee: bugs@httpd.apache.org
  Reporter: m...@mikoenig.net
  Target Milestone: ---

Created attachment 37183
  --> https://bz.apache.org/bugzilla/attachment.cgi?id=37183=edit
A patch that appears to fix the problem for me

Context
===
The ProxyFCGISetEnvIf directive allows overriding variables sent to FastCGI
servers. It comes in two forms:
* Setting   variables, taking 3 arguments: ProxyFCGISetEnvIf 
 
* Unsetting variables, taking 2 arguments: ProxyFCGISetEnvIf 
!

The Bug
===
When using the directive's second form, the variable is always unset, ignoring
the condition.

Steps to Reproduce
==
1. Try unsetting a FastCGI variable conditionally, or (for purpose of
demonstration) even with a condition of "false".
Examples:
ProxyFCGISetEnvIf "false" !SERVER_SOFTWARE
ProxyFCGISetEnvIf "%{QUERY_STRING} =~ /hello/" !SERVER_SOFTWARE
ProxyFCGISetEnvIf "-z reqenv('cloudflare')" !HTTP_CF_CONNECTING_IP
2. Observe the specified variables being unset even if the condition evaluates
to false.
Example PHP script: