Hallo, ich bin neu und kann noch nicht mal Setup ausführen ich erhalte folgende Meldungen: Setup startet erst gar nicht, Dateien binär übertragen, htaccess nur die letzte Zeile mit php 5 hinzugefügt, bin bei bei hosteurope webpack L
Bin für jeden Hinweis dankbar…
Danke Chris
Mit Firefox:
. * * @link http://www.oxid-esales.com * @copyright © OXID eSales AG 2003-2014 * @version OXID eShop CE / error_reporting((E_ALL ^ E_NOTICE) | E_STRICT); //setting basic configuration parameters ini_set(‘session.name’, ‘sid’); ini_set(‘session.use_cookies’, 0); ini_set(‘session.use_trans_sid’, 0); ini_set(‘url_rewriter.tags’, ‘’); /* * Includes core setup file */ require_once ‘oxsetup.php’; $oDispatcher = new oxSetupDispatcher(); $oDispatcher->run();
Mit IE 11 kommt die Frage anzeigen oder speichern, wenn ich mit IE anzeigen lasse kommt dies:
<?php
/**
- This file is part of OXID eShop Community Edition.
- OXID eShop Community Edition is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- OXID eShop Community Edition is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with OXID eShop Community Edition. If not, see <http://www.gnu.org/licenses/>.
- @link http://www.oxid-esales.com
- @copyright © OXID eSales AG 2003-2014
-
@version OXID eShop CE
*/
error_reporting((E_ALL ^ E_NOTICE) | E_STRICT);
//setting basic configuration parameters
ini_set(‘session.name’, ‘sid’);
ini_set(‘session.use_cookies’, 0);
ini_set(‘session.use_trans_sid’, 0);
ini_set(‘url_rewriter.tags’, ‘’);
/**
- Includes core setup file
*/
require_once ‘oxsetup.php’;
$oDispatcher = new oxSetupDispatcher();
$oDispatcher->run();
Meine hat Access sieht so aus:
In case you want to add a .htpasswd authentification
you’ll have to add the host of the shop as an allowed entity,
so that calls from the host skip the authentification
Example:
Order Deny,Allow
Deny from All
AuthType Basic
AuthName “Access not allowed”
AuthUserFile path_to_htpasswd_file/.htpasswd
Require valid-user
Allow from localhost
Satisfy Any
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} config\.inc\.php [NC]
RewriteRule ^config\.inc\.php index\.php [R=301,L]
RewriteCond %{QUERY_STRING} fnc=(getShopVersion|getShopEdition|getRevision) [NC]
RewriteRule ^(.*)$ $1? [R=301,L]
RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK)
RewriteRule .* - [F]
RewriteCond %{REQUEST_URI} oxseo\.php$
RewriteCond %{QUERY_STRING} mod_rewrite_module_is=off
RewriteRule oxseo\.php$ oxseo.php?mod_rewrite_module_is=on [L]
RewriteCond %{REQUEST_URI} !(\/admin\/|\/core\/|\/application\/|\/export\/|\/modules\/|\/out\/|\/setup\/|\/tmp\/|\/views\/)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule !(\.html|\/|\.jpg|\.css|\.pdf|\.doc|\.gif|\.png|\.js|\.htc|\.svg)$ %{REQUEST_URI}/ [R=301,L]
RewriteCond %{REQUEST_URI} !(\/admin\/|\/core\/|\/application\/|\/export\/|\/modules\/|\/out\/|\/setup\/|\/tmp\/|\/views\/)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (\.html|\/)$ oxseo.php
RewriteCond %{REQUEST_URI} (\/out\/pictures\/generated\/)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (\.jpe?g|\.gif|\.png|\.svg)$ getimg.php
</IfModule>
disabling log file access from outside
<FilesMatch “(EXCEPTION_LOG.txt|.log|.tpl|pkg.rev|.ini|pkg.info|.pem)$”>
order allow,deny
deny from all
</FilesMatch>
Prevent .ht* files from being sended to outside requests
<Files ~ “^.ht”>
Order allow,deny
Deny from all
</Files>
Options -Indexes
DirectoryIndex index.php index.html
AddType x-mapp-php5 .php AddHandler x-mapp-php5 .php