I solved the problem…
In V 9.00.000 it was possible to install scriptcase9 as vhost - i mean a REAL vhost
that means:
>>sc9.xxx.com<< and not >>sc9.xxx.com/scriptcase<<
In 9.0.007 this is no longer possible - if you have an existing installation update failed…
In addition i have secured it with htpass (not in the LAN - you must adjust your host file)
I deactivate apache security - only problems.
if someone needed it (centos7 - apache2.4):
<Virtualhost *:80>
ServerName sc9.xxx.xxx
ServerAlias sc9.xxx.xxx
ServerAdmin webmaster@xxx.xx
DocumentRoot /var/www/html/scriptcase9/
CustomLog "/var/www/html/logs/scriptcase9.access.log" combined env=!forwarded
ErrorLog /var/www/html/logs/scriptcase9.err.log
RewriteEngine On
RewriteRule ^/?$ /scriptcase [R]
<IfModule mod_security2.c>
SecRuleEngine Off
</IfModule>
<directory /var/www/html/scriptcase9/>
AllowOverride all
<RequireAll>
<RequireAny>
AuthType Basic
AuthName "please login"
AuthUserFile /etc/htpass/users
Require valid-user
AuthGroupFile /etc/htpass/groups
Require group admins
<RequireAny>
Require ip 10.100.10.183
Require ip xxx.xxx.xxx.xxx
Require ip 10.100.10.10
</RequireAny>
</RequireAny>
</RequireAll>
</directory>
</VirtualHost>