Ads 4 You

Missing authorization headers with Apache

Email Id : phpmk888@gmail.com

Authorization header is used for http basic authentication which is discarded by apache if not in valid format. Try using another name. According to the documentation, it is available since Apache 2.x.x Another solution is to change your PHP handler to run PHP as Apache Module instead of as CGI application .

If you are using Apache with CGI/FastCGI, then you might get an error message about missing authorization headers. This is because Apache does not, by default, pass authorization headers to PHP.

The Fix ,

You need to edit your Apache site configuration to add a line to DeskPRO's
<VirtualHost> directive. Note that this configuration must be added directly to Apache's configuration (e.g., adding it to htaccess will not work).


       

  < virtualhost >
    # ...
       SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
     # ...
< virtualhost >
   
request did not validate missing authorization header

Comments

  1. Nice blog...Very useful information is providing by ur blog..here is a way to find.
    Hire Yii Application Development in India

    ReplyDelete

Post a Comment