Hallo,
vor einiger zeit musste ich meinen Server und alle Kunden auf eine neue ip schalten.
Das war vor 2 wochen, ich habe damals folgende SQL settings angepasst:
UPDATE kunden SET ip='192.168.0.1';
UPDATE admin SET standardip='192.168.0.1';
UPDATE anbieter SET standardip='192.168.0.1';
UPDATE admin SET ip_pns='192.168.0.1';
UPDATE admin SET ip_sns = 'dns.hoster.com';
UPDATE admin SET confixx_ip = '192.168.0.1';
(meine ip habe ich mit 192.168.0.1 ausgetauscht)
Danach lief es auch soweit wieder...nun wollte ich mich gerade als admin einloggen und sehe:
Not Found
The requested URL /user/loginform was not found on this server.
An welchen apache einstellungen kann das noch liegen?
die confixx_mhost.conf sieht so aus:
Für jeden Beitrag bin ich dankbar
vor einiger zeit musste ich meinen Server und alle Kunden auf eine neue ip schalten.
Das war vor 2 wochen, ich habe damals folgende SQL settings angepasst:
UPDATE kunden SET ip='192.168.0.1';
UPDATE admin SET standardip='192.168.0.1';
UPDATE anbieter SET standardip='192.168.0.1';
UPDATE admin SET ip_pns='192.168.0.1';
UPDATE admin SET ip_sns = 'dns.hoster.com';
UPDATE admin SET confixx_ip = '192.168.0.1';
(meine ip habe ich mit 192.168.0.1 ausgetauscht)
Danach lief es auch soweit wieder...nun wollte ich mich gerade als admin einloggen und sehe:
Not Found
The requested URL /user/loginform was not found on this server.
An welchen apache einstellungen kann das noch liegen?
die confixx_mhost.conf sieht so aus:
catconf /etc/apache2/sites-enabled/confixx_mhost.conf said:Alias /phpmyadmin /var/www/phpmyadmin
Alias /phpMyAdmin /var/www/phpmyadmin
<Location /server-info>
SetHandler server-info
</Location>
<Location /server-status>
SetHandler server-status
</Location>
ExtendedStatus on
php_admin_value include_path .
<Directory "/var/www/confixx/html">
AllowOverride all
<IfModule mod_access.c>
Allow from all
</IfModule>
<IfModule mod_authz_host.c>
Allow from all
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
Options +FollowSymlinks
RewriteRule ^reseller/res[0-9]+/(.*)$ reseller/$1 [L]
RewriteRule ^user/[a-zA-Z][-a-zA-Z0-9_]{0,4}[0-9]+/(.*)$ user/$1 [L]
RewriteRule ^ftplogin/[a-zA-Z][-a-zA-Z0-9_]{0,4}[0-9]+/(.*)$ ftplogin/$1 [L]
RewriteRule ^ftplogin/[a-zA-Z][-a-zA-Z0-9_]{0,4}[0-9]+f[0-9]+/(.*)$ ftplogin/$1 [L]
RewriteRule ^poplogin/[a-zA-Z][-a-zA-Z0-9_]{0,4}[0-9]+p[0-9]+/(.*)$ poplogin/$1 [L]
</IfModule>
AddDefaultCharset off
php_admin_flag engine on
</Directory>
NameVirtualHost *:80
<VirtualHost *:80>
ServerName dns.hoster.com
DocumentRoot /var/www/confixx/html/gesperrt
Options FollowSymLinks
php_admin_flag safe_mode Off
php_admin_flag file_uploads On
php_admin_flag track_vars On
php_admin_flag magic_quotes_runtime Off
php_admin_flag magic_quotes_gpc Off
php_admin_flag allow_url_fopen Off
php_admin_value include_path ".:/var/www/confixx/html/include:/var/www/confixx/html:/var/www/confixx/html/PEAR"
php_admin_value default_charset none
<IfModule mod_dir.c>
DirectoryIndex index.php index.html index.htm index.shtml index.cgi
</IfModule>
</VirtualHost>
NameVirtualHost 192.168.0.1:80
<VirtualHost 192.168.0.1:80>
ServerName dns.hoster.com
DocumentRoot /var/www/confixx/html
Options FollowSymLinks
php_admin_flag safe_mode Off
php_admin_flag file_uploads On
php_admin_flag track_vars On
php_admin_flag magic_quotes_runtime Off
php_admin_flag magic_quotes_gpc Off
php_admin_value upload_tmp_dir /var/www/confixx/tmp
php_admin_value include_path ".:/var/www/confixx/html/include:/var/www/confixx/html:/var/www/confixx/html/PEAR"
php_admin_value default_charset none
php_admin_flag allow_url_fopen Off
php_admin_value session.cookie_path /
php_admin_value session.auto_start 0
php_admin_value session.gc_maxlifetime 1800
php_admin_value session.use_cookies 1
php_admin_value session.cookie_lifetime 0
php_admin_value session.cookie_secure Off
php_admin_value session.use_trans_sid 0
ScriptAlias /cgi-bin/ /var/www/confixx/html/cgi-bin/
<IfModule mod_dir.c>
DirectoryIndex index.html index.htm index.shtml index.cgi index.php
</IfModule>
</VirtualHost>
NameVirtualHost 192.168.0.1:443
<VirtualHost 192.168.0.1:443>
ServerName dns.hoster.com
DocumentRoot /var/www/confixx/html/gesperrt
Options FollowSymLinks
php_admin_flag safe_mode Off
php_admin_flag file_uploads On
php_admin_flag track_vars On
php_admin_flag magic_quotes_runtime Off
php_admin_flag magic_quotes_gpc Off
php_admin_flag allow_url_fopen Off
php_admin_value include_path ".:/var/www/confixx/html/include:/var/www/confixx/html:/var/www/confixx/html/PEAR"
php_admin_value default_charset none
<IfModule mod_dir.c>
DirectoryIndex index.php index.html index.htm index.shtml index.cgi
</IfModule>
<IfModule mod_ssl.c>
SSLEngine on
SSLCertificateKeyFile /etc/ssl.key/dns.hoster.com.key
SSLCertificateFile /etc/ssl.crt/dns.hoster.com.crt
SetEnvIf User-Agent ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0
<Files ~ "\.(cgi|shtml|phtml|php3?)$">
SSLOptions +StdEnvVars
</Files>
<Directory "/var/www/confixx/html/cgi-bin">
SSLOptions +StdEnvVars
</Directory>
</IfModule>
</VirtualHost>
<VirtualHost 192.168.0.1:443>
ServerName dns.hoster.com
DocumentRoot /var/www/confixx/html
Options FollowSymLinks
php_admin_flag safe_mode Off
php_admin_flag file_uploads On
php_admin_flag track_vars On
php_admin_flag magic_quotes_runtime Off
php_admin_flag magic_quotes_gpc Off
php_admin_value upload_tmp_dir /var/www/confixx/tmp
php_admin_value include_path ".:/var/www/confixx/html/include:/var/www/confixx/html:/var/www/confixx/html/PEAR"
php_admin_value default_charset none
php_admin_flag allow_url_fopen Off
php_admin_value session.cookie_path /
php_admin_value session.auto_start 0
php_admin_value session.gc_maxlifetime 1800
php_admin_value session.use_cookies 1
php_admin_value session.cookie_lifetime 0
php_admin_value session.cookie_secure Off
php_admin_value session.use_trans_sid 0
ScriptAlias /cgi-bin/ /var/www/confixx/html/cgi-bin/
<IfModule mod_dir.c>
DirectoryIndex index.html index.htm index.shtml index.cgi index.php
</IfModule>
<IfModule mod_ssl.c>
SSLEngine on
SSLCertificateKeyFile /etc/ssl.key/dns.hoster.com.key
SSLCertificateFile /etc/ssl.crt/dns.hoster.com.crt
SetEnvIf User-Agent ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0
<Files ~ "\.(cgi|shtml|phtml|php3?)$">
SSLOptions +StdEnvVars
</Files>
<Directory "/var/www/confixx/html/cgi-bin">
SSLOptions +StdEnvVars
</Directory>
</IfModule>
</VirtualHost>
Include /etc/apache2/confixx_vhost.conf
Für jeden Beitrag bin ich dankbar