Hi all,

Just a note on Apache that may help others:

I've battled for days with getting web2py working with apache (2.4) on a 
Suse linux server.   I kept on getting Forbidden errors.
I eventually stumbled onto the "Require all granted" statement - once I 
added this then everything works fine.

    <Files wsgihandler.py>
      # I don't need the next line
      # Allow from all
      # The following line is REQUIRED (for me anyway)
      Require all granted
    </Files>

So,  Does the documentation need updating ?  I assume it has worked as is 
for others.  Perhaps is should be as there are obviously situations when it 
is required.
    I can comment out the "Allow from all"  and it still works.  
    Is this just for Apache 2.4 as opposed to version 2.2 ?
    

-- 



Reply via email to