You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some configurations that are used in Apache 2.2 were replaced by new ones in Apache 2.4. The installation of ScribeUI using the make script only use configurations for 2.2.
2.2:
Order allow,deny
Allow from all
2.4:
Require all granted
That was easy to fix though.
One more thing: event if changing the configurations to fit the ones required in 2.4, I still had a "Error 403, Forbidden" error message. I had to add the following to make it work (i.e. grant permission to the root directory directly, and not only the www and
templates).
<Directory /opt/scribeui/mapgears>
Require all granted
</Directory>
I'm able to easily make ScribeUI work properly anyway, so this is not a big issue.
The text was updated successfully, but these errors were encountered:
Some configurations that are used in Apache 2.2 were replaced by new ones in Apache 2.4. The installation of ScribeUI using the make script only use configurations for 2.2.
2.2:
2.4:
That was easy to fix though.
One more thing: event if changing the configurations to fit the ones required in 2.4, I still had a "Error 403, Forbidden" error message. I had to add the following to make it work (i.e. grant permission to the root directory directly, and not only the www and
templates).
I'm able to easily make ScribeUI work properly anyway, so this is not a big issue.
The text was updated successfully, but these errors were encountered: