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
Plain installation of ownCloud (eg. tar xvf owncloud-10.0.0.tar.bz2) leads to an "500 Internal Server Error" when running on Apache httpd without mod_php (eg. with FastCGI).
The bug is obvious: the php_value commands need all to be inside the corresponding <IfModule> block. Otherwise Apache httpd will report this error:
[Mon May 15 17:58:49.077496 2017] [core:alert] [pid 3510:tid 140036636915456] [client X.X.X.X:XXXX] /XXX/.htaccess: Invalid command 'php_value', perhaps misspelled or defined by a module not included in the server configuration
Automatic deployment of ownCloud is broken on non-mod_php environments. Please consider automated tests in FastCGI environments.
The text was updated successfully, but these errors were encountered:
Plain installation of ownCloud (eg.
tar xvf owncloud-10.0.0.tar.bz2
) leads to an "500 Internal Server Error" when running on Apache httpd without mod_php (eg. with FastCGI).The reason is a sloppy
.htaccess
file:The bug is obvious: the php_value commands need all to be inside the corresponding
<IfModule>
block. Otherwise Apache httpd will report this error:Automatic deployment of ownCloud is broken on non-mod_php environments. Please consider automated tests in FastCGI environments.
The text was updated successfully, but these errors were encountered: