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
In Apache 2.4+ the Deny directive is no longer available unless access_compat_module is enabled. Because of that the current .htaccess files used in certain CodeIgniter directories trigger 500 Internal Server Error when processed.
A possible update could be:
<IfModule authz_core_module>
Require all denied
</IfModule>
<IfModule access_compat_module>
Deny from all
</IfModule>
The text was updated successfully, but these errors were encountered:
In Apache 2.4+ the Deny directive is no longer available unless access_compat_module is enabled. Because of that the current .htaccess files used in certain CodeIgniter directories trigger 500 Internal Server Error when processed.
A possible update could be:
The text was updated successfully, but these errors were encountered: