AllowOverride All Failure in verify-install.php
Hello Again,
I have a little strange problem. While the installing process, the verify-install.php told me, that I must enable "URL ReWrite" - but this is now enabled. I have also already restarted the whole server.
My virtual host section for my subdomain (000-default.conf)
<VirtualHost mcc.XXX.de:80>
ServerName XXX.XXX.de
ServerAdmin webmaster@localhost
DocumentRoot /opt/applications/minecraft-webconsole
RewriteEngine On
RewriteRule ^(.*)$ https://%{HTTP_HOST}$1 [R=301,L]
<Directory "/opt/applications/minecraft-webconsole">
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/XXX.XXX.de/error.log
CustomLog ${APACHE_LOG_DIR}/XXX.XXX.de/access.log combined
Header always set Strict-Transport-Security "max-age=15552000; includeSubdomains;"
LogLevel info ssl:warn
</VirtualHost>
My virtual host section for my subdomain (000-default.conf)
<VirtualHost XXX.XXX.de:443>
ServerAdmin webmaster@localhost
ServerName XXX.XXX.de
DocumentRoot /opt/applications/minecraft-webconsole
<Directory "/opt/applications/minecraft-webconsole">
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
Header always set Strict-Transport-Security "max-age=15552000; includeSubdomains;"
ErrorLog ${APACHE_LOG_DIR}/XXX.XXX.de/error.log
CustomLog ${APACHE_LOG_DIR}/XXX.XXX.de/access.log combined
SSLEngine on
SSLCertificateFile /etc/letsencrypt/live/XXX/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/XXX/privkey.pem
<FilesMatch "\.(cgi|shtml|phtml|php)$">
SSLOptions +StdEnvVars
</FilesMatch>
<Directory /usr/lib/cgi-bin>
SSLOptions +StdEnvVars
</Directory>
</VirtualHost>
and rewrite module is also enabled.

But your installer told me still, that I should enabled this.

AccessFileName is also configured:

Sorry, but I have really no Idea - Can do you help me in this case? :/
Do you have .htaccess file in your files?
Yes - check the screenshot below.

If you go to site.fr/test-url-rewrite did you have a 404 error page?
As you can see, nope. The Domain is mcc.knusperbude.de

Try to replace this line https://github.com/MineWeb/MineWebCMS/blob/master/app/webroot/verif-install.php#L248 to:
$compatible['rewriteUrl'] = true;
Oh, okey. Now it looks better. I will check the installation and will give you a feedback asap.
Hmm.. is this caused by mod_rewrite? The database would successfully installed.


Yep :/
Damn ... but what is the Solutions for this? I've already installed and enabled the mod_rewrite, as you can see in my posts in top of this topic. Do you have any idea? Thanks in advanced.
Any updates in this case? I'm very need to use your cms because it looks beautiful. After it works, I will translate it in german language. :-)
No updates in this case?
I'm facing the same problem, I have all htaccess-es and AccessFileName set up, and mod rewrite seems to be enabled, but going at /test-url-rewrite I get a 404 Not Found. Any updates?
Maybe you can try the latest release
Options Indexes FollowSymLinks
This is your issue, your not having apache follow the directories.
If you use "Options Indexes FollowSymLinks MultiViews" with "LoadModule ssl_module modules/mod_ssl.so" at the very top of the file, then it should resolve your issue

Does the problem persist?