Mir passiert was wirklich sehr merkwürdiges was ich absolut nicht verstehen kann. Wenn ich phpmyadmin über HTTP aufrufe wird CSS korrekt umgesetzt... Wenn ich dies jedoch über HTTPS tue, funktioniert CSS im Internet Explorer nicht. Im Firefox geht beides problemlos... Bitte kommt nicht mit Sprüchen wie "Wer braucht schon IE" oder so etwas.. Ich kann mir einfach nicht vorstellen das das nicht gehen soll.
Was es vielleicht zu wissen gibt ist das die Installation von PhpMyAdmin zwar genau di gleiche ist (für HTTP wie auch für HTTPS, habe HTTP-Installation für HTTPS kopiert), sich aber diese in 2 unterschiedlichen Verzeichnissen befinden. Dazu ein Auszug aus meiner /etc/apache2/httpd.include:
HTTP-Teil:
Code: Select all
<VirtualHost
XXX.XXX.XXX.XXX:80
>
ServerName default
UseCanonicalName Off
DocumentRoot /var/www/vhosts/default/htdocs
ScriptAlias /cgi-bin/ "/var/www/vhosts/default/cgi-bin/"
<IfModule mod_ssl.c>
SSLEngine off
</IfModule>
<Directory "/var/www/vhosts/default/cgi-bin/">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
<Directory /var/www/vhosts/default/htdocs>
<IfModule mod_php4.c>
php_admin_flag engine on
php_admin_value open_basedir "/var/www/vhosts/default/htdocs:/tmp"
</IfModule>
<IfModule mod_php5.c>
php_admin_flag engine on
php_admin_value open_basedir "/var/www/vhosts/default/htdocs:/tmp"
</IfModule>
</Directory>
</VirtualHost>Code: Select all
<IfModule mod_ssl.c>
<VirtualHost XXX.XXX.XXX.XXX:443 >
ServerName default-217-20-117-30
UseCanonicalName Off
DocumentRoot /var/www/vhosts/default/httpsdocs
ScriptAlias /cgi-bin/ "/var/www/vhosts/default/cgi-bin/"
SSLEngine on
SSLVerifyClient none
SSLCertificateFile /opt/psa/var/certificates/certXDhv9Bn
<Directory "/var/www/vhosts/default/cgi-bin/">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
<Directory /var/www/vhosts/default/httpsdocs>
SSLRequireSSL
<IfModule mod_php4.c>
php_admin_flag engine on
php_admin_value open_basedir "/var/www/vhosts/default/httpsdocs:/tmp"
</IfModule>
<IfModule mod_php5.c>
php_admin_flag engine on
php_admin_value open_basedir "/var/www/vhosts/default/httpsdocs:/tmp"
</IfModule>
</Directory>
</VirtualHost>
</IfModule>http://ndsrootie.kicks-ass.net/phpmyadmin
https://ndsrootie.kicks-ass.net/phpmyadmin
Hintergrund:
PhpMyAdmin: Version 2.7.0 Patch-Level2
OS: Debin Sarge 3.1
Ich wäre sehr dankbar für Hilfe, da ich absolut keine Ahnung habe woran das liegen könnte. Das es sich um einen Bug handelt kann ich fast nicht glauben...
Gruss und Danke schonmal im Vorraus,
Dawn