-
Notifications
You must be signed in to change notification settings - Fork 344
Description
Hello, this is my first contribution to Github, so I apologize if my etiquette is bad.
On my server running:
Open Suse "20150909 (Tumbleweed)"
Apache 2.4
PHP 5.6.13
MySQL 15.1
I get a 500 error after installing Selfoss and setting up the database. The logs say this:
.htaccess: Invalid command 'Order', perhaps misspelled or defined by a module not included in the server configuration
After some research, it seems 'Order' is deprecated. The line in the .htaccess file that comes bundled with Selfoss is
<FilesMatch ".(ini)$">
Order allow,deny
Deny from all
</FilesMatch>
If this is changed to:
<FilesMatch ".(ini)$">
Require all granted
</FilesMatch>
Selfoss loads successfully. I'd suggest a simple edit, but I'm not sure how to make this compatible with older versions of Apache.
Thank you,
Z