Umleitungsfehler bei allen Links / Kategorien

die Forensuche habe ich benutzt hat mir nicht weitergeholfen.

Habe die Community-Edition erfolgreich auf die Domain: schmuck-centrum.de aufgespielt. Alle vorgaben sind im grünen Bereich.
Klicke ich nun auf eine Kategorie oder Link wird mir von Firefox

  • Umleitungsfehler _ Die aufgerufene Website leitet die Anfrage so um, dass sie nie beendet werden kann-

Habe bereits das 2x mal installiert, Fehler ist aber noch vorhanden.

Wo müsste/soll ich noch etwas verändern?

Falls es wichtig ist mein Hoster ist DF mit dem ManagedHosting XXL Paket.

VG
oswalt

Hallo oswalt,

schau Dir mal den Thread an:
http://www.oxid-esales.com/forum/showthread.php?t=116&highlight=rewrite+base

Sollte Dir weiterhelfen

Hi Bronco,

danke für den Hinweis, habe ich mir durchgelesen und war auch im DF-Forum wo dieses Problem mit einem anderen User schonmal geprüft wurde.
Leider kann ich die bei der von Oxid mitgelieferten .htaccess-Datei und der config.php nichts nachsehen weil diese sich nicht öffnen lassen, mit NVU bzw. und auch nicht direkt über den Dateimanager von DF.

Habe echt keinen Plan. :confused:

Hätte nicht gedacht das dies so schwierig ist das Oxid Shop System zum laufen zu bringen. Erstmal wieder deinstalliert und werde mal gucken ob das bei einem anderen Hoster easyer ist.
Danke und Gruss

[QUOTE=oswaltk.;24878]
Leider kann ich die bei der von Oxid mitgelieferten .htaccess-Datei und der config.php nichts nachsehen weil diese sich nicht öffnen lassen, mit NVU bzw. und auch nicht direkt über den Dateimanager von DF.[/QUOTE]
Du holst dir die jeweilige Datei per FTP vom Server, bearbeitest sie und lädst sie wieder hoch. Das geht auch bei DF :wink:

Habe Notepad installiert und kann die Daten nun lesen und verändern.
Einstellungen sind soweit ich sehen kann aber ok.
Poste nachher die .htaccess

So sieht die .htccass aus, eigentlich doch alles richtig, oder? :confused:
Shopseite ist: schmuck.shivaeye.biz

<IfModule mod_rewrite.c>

Options +FollowSymLinks
RewriteEngine On
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

und so die config.inc.php

<?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

  • @package main

  • @copyright © OXID eSales AG 2003-2009

  • @version OXID eShop CE
    */

    /** @name database information */
    $this->dbHost = ‘xxxxxxxxx’; // database host name
    $this->dbName = ‘xxxxxxxx’; // database name
    $this->dbUser = ‘xxxxxxxx’; // database user name
    $this->dbPwd = ‘xxxxxxxx’; // database user password
    $this->dbType = ‘mysql’;
    $this->sShopURL = ‘xxxxxschmuck.shivaeye.biz’;
    $this->sSSLShopURL = null;
    $this->sAdminSSLURL = null;
    $this->sShopDir = ‘/xxxxxxxxxx/oxidshop’;
    $this->sCompileDir = ‘/xxxxxxxxxxxx/oxidshop/tmp’;

    // Template theme name, a directory in out/ folder containing all needed resources
    $this->sTheme = ‘basic’;

    // Custom theme, a directory in out/ folder containing only modified template files
    $this->sCustomTheme = null;

    // Uncoment only for former (pre version 4) template compatibility
    // $this->blFormerTplSupport = true;
    // $this->blFixedWidthLayout = true;

    // UTF-8 mode in shop 0 - off, 1 - on
    $this->iUtfMode = ‘0’;

    // File type whitelist for file upload
    $this->aAllowedUploadTypes = array(‘jpg’, ‘gif’, ‘png’, ‘pdf’, ‘mp3’, ‘avi’, ‘mpg’, ‘mpeg’, ‘doc’, ‘xls’, ‘ppt’);

    // timezone information
    date_default_timezone_set(‘Europe/Berlin’);

    // Search engine friendly URL processor
    // After changing this value, you should rename oxid.php file as well
    // Always leave .php extension here unless you know what you are doing
    $this->sOXIDPHP = “oxid.php”;

    // enable debug mode for template development or bugfixing
    // -1 = Logger Messages internal use only
    // 0 = off
    // 1 = smarty
    // 2 = SQL
    // 3 = SQL + smarty
    // 4 = SQL + smarty + shoptemplate data
    // 5 = Delivery Cost calculation info
    // 6 = SMTP Debug Messages
    // 7 = oxDbDebug SQL parser
    $this->iDebug = 0;

    // Log all modifications performed in Admin
    $this->blLogChangesInAdmin = false;

    // Force admin email
    $this->sAdminEmail = ‘’;

    // in case session must be started on first user page visit (not only on
    // session required action) set this option value 1
    $this->blForceSessionStart = false;

    // Use browser cookies to store session id (no sid parameter in URL)
    $this->blSessionUseCookies = true;

    // The domain that the cookie is available: array( SHOP_ID => DOMAIN );
    // check setcookie() documentation for more details @php.net
    $this->aCookieDomains = null;

    // The path on the server in which the cookie will be available on: array( SHOP_ID => PATH );
    // check setcookie() documentation for more details @php.net
    $this->aCookiePaths = null;

    // uncomment the following line if you want to leave euro sign unchanged in output
    // by default is set to convert euro sign symbol to html entity
    // $this->blSkipEuroReplace = true;

    // List of all Search-Engine Robots
    $this->aRobots = array(
    ‘googlebot’,
    ‘ultraseek’,
    ‘crawl’,
    ‘spider’,
    ‘fireball’,
    ‘robot’,
    ‘spider’,
    ‘robot’,
    ‘slurp’,
    ‘fast’,
    ‘altavista’,
    ‘teoma’,
    );

    // Deactivate Static URL’s for these Robots
    $this->aRobotsExcept = array();

[QUOTE=oswaltk.;25077]So sieht die .htccass aus, eigentlich doch alles richtig, oder? :confused:
Shopseite ist: schmuck.shivaeye.biz
[/QUOTE]

Die Tag-Cloud verlinkt aber auf: http://schmuck-centrum.de/tag/***
Liegt der Shop in einem Unterordner? - Hast du eventuell auch die Rewrite-Base vergessen?

@oswalt

.htaccess sollte bei Dir so aussehen:

RewriteEngine On
RewriteBase /

Dann klappts auch :wink:

Danke noch nachträglich