explicit http1.1
Reported by tstrokes (at gmail) | December 1st, 2009 @ 04:21 AM
I use a shared host that has an architecture that has trouble
with the explicit HTTP/1.1
It is used in lib/limonade.php:1959
if($str = http_response_status($num)) return "HTTP/1.1 $num
$str";
I was wondering if there is problem if it was changed to:
if($str = http_response_status($num)) return
$_SERVER["SERVER_PROTOCOL"] . " $num $str";
Comments and changes to this ticket
-
Fabrice Luraine August 5th, 2010 @ 12:04 PM
- State changed from new to open
- Assigned user set to Fabrice Luraine
- Milestone order changed from 0 to 0
-
Fabrice Luraine October 8th, 2010 @ 07:39 PM
- State changed from open to resolved
(from [44f4446bfb8b939f9b323e1314c03bfbde4ec58b]) use $_SERVER["SERVER_PROTOCOL"] if available instead of explicite HTTP/1.1 [#36 state:resolved] http://github.com/sofadesign/limonade/commit/44f4446bfb8b939f9b323e...
Please Sign in or create a free account to add a new ticket.
With your very own profile, you can contribute to projects, track your activity, watch tickets, receive and update tickets through your email and much more.
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile ยป
Limonade is a PHP micro-framework.
People watching this ticket
Referenced by
- 36 explicit http1.1 (from [44f4446bfb8b939f9b323e1314c03bfbde4ec58b]) use $_S...