Author Topic: Apache is not processing configuration files correctly  (Read 5221 times)

0 Members and 1 Guest are viewing this topic.

Offline
*
Apache is not processing configuration files correctly
« on: April 05, 2019, 08:19:07 PM »
I'm trying to migrate a website to a server, the site alredy has a htaccess file with this options:

Options -Multiviews
Options -Indexes

and always returns 500 error with this log on apache error_log
/home/user/public_html/.htaccess: Options not allowed here
I already tried to modify vhost *.conf file and it still not working changing

   <Directory "/home/user/public_html">
      Options -Indexes -FollowSymLinks +SymLinksIfOwnerMatch
      AllowOverride All Options=ExecCGI,Includes,IncludesNOEXEC,Indexes,MultiViews,SymLinksIfOwnerMatch
   </Directory>

with this:
   <Directory "/home/user/public_html">
      Options All
      AllowOverride All Options
   </Directory>

and several others configurations, even I edited the file /usr/local/apache/conf/httpd.conf

and setted the configuration like this:
   <Directory "/home/*/public_html">
      Options All
      AllowOverride All Options
   </Directory>

and still not working.

note: on every change I restarted the httpd service or rebooted the server

Offline
*
Re: Apache is not processing configuration files correctly
« Reply #1 on: April 05, 2019, 08:45:10 PM »
did you try from admin cwp user accounts > Account Permissions

Offline
*
Re: Apache is not processing configuration files correctly
« Reply #2 on: April 05, 2019, 10:58:42 PM »
Thanks for your answer, but that option does not exist on CWP 0.9.8.794, I already tried User Accounts -> Fix Permissions, but still the same error :c