Hallo zusammen!
Ich hab heute das Zertifikat bekommen und die von mir bekannte installation gemacht.
Jetzt aber habe ein paar probleme:
-Im Admin bereich ist das Apache mod_rewrite Modul nicht aktiv, obvol 1und1 meint es sei ON. Sie können für mich nichts weiteres machen
-das zweite Problem ist: wenn ich meine Seite ins Internet EX. Browser öffne kommt immer eine Meldung: diese Webseite enthält Inhalte, die nicht über eine sichere HTTPS-Verbindung übermittelt werden. Hierdurch kann die Sicherheit der ganzen Webseite beeinträchtigt werden.
Das selbe kommt auch wenn ich das Admin bereich über Firefox öffne.
Natürlich auch da zeigt an das das Apache mod_rewrite Modul nicht ON ist.
Kann mir ev. jemand ein Rat geben?
Vielen Dank!
misnails
Hier nochmal die Daten zur übersicht:
“Admin/htacess”:
AuthUserFile /dev/null
AuthName Forbidden
AuthType Basic
<Limit GET POST>
require valid-user
</Limit>
“htacess”
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !(/core/|/export/|/modules/|/out/|/setup/|/tmp/|/views/)
RewriteRule admin/test.php$ admin/test.php?mod_rewrite=1
RewriteCond %{REQUEST_URI} !(/admin/|/core/|/export/|/modules/|/out/|/setup/|/tmp/|/views/)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule !(.html|/|.jpg|.css|.pdf|.doc|.gif|.png|.js)$ %{REQUEST_URI}/ [R=301,L]
RewriteCond %{REQUEST_URI} !(/admin/|/core/|/export/|/modules/|/out/|/setup/|/tmp/|/views/)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.html|/)$ oxseo.php
</IfModule>
disabling log file access from outside
<FilesMatch “(EXCEPTION_LOG.txt|.log$|.tpl$)”>
order allow,deny
deny from all
</FilesMatch>
Options -Indexes
AddType x-mapp-php5 .php
AddHandler x-mapp-php5 .php
RewriteEngine On
RewriteBase /
RewriteCond %{SERVER_PORT} !=443
RewriteRule ^(.*)$ https://www.misnails.com/$1 [R=301,L]
“Config.inc”:
$this->dbHost = ‘’; // database host name
$this->dbName = '’; // database name
$this->dbUser = '’; // database user name
$this->dbPwd = '********’; // database user password
$this->dbType = ‘mysql’;
$this->sShopURL = ‘https://www.misnails.com’;
$this->sSSLShopURL = null;
$this->sAdminSSLURL = null;
$this->sShopDir = ‘/OXID_ESHOP_CE_4.2.0_23610’;
$this->sCompileDir = ‘//OXID_ESHOP_CE_4.2.0_23610/tmp’;