find text within a bunch of files within a folder simply by typing this:
grep -nr 'whatever' .
Where r is recursive, and n gives you the line number. 🙂
find text within a bunch of files within a folder simply by typing this:
grep -nr 'whatever' .
Where r is recursive, and n gives you the line number. 🙂
It’s something to do with using PHP FPM / Fast CGI, and auth headers being disable for that.
So we add this to the directory entry of the .htaccess:
SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
You now have your missing header back!