Quantcast
Channel: OXID Community Forum
Viewing all articles
Browse latest Browse all 6951

OXID oxseo.php was not found, ht.access,LIVEbetrieb

$
0
0
Hallo!

Nachdem der Shop weitgehend fertig ist, dachte ich mal eben zu schauen wie es denn live aussieht, na ja nicht so gut.

Alfahosting> habe entsprechende weiterleitung eingerichtet, sodass meine Homepage aktiv ist bzw. war

>LIVE: homepage war erreichbar, aber mit vielen einschränkungen, Bilder nicht dargestellt. AGB, Widerruf, Artikel aufrufen geht nicht. Fehlermeldung: The requested URL /oxseo.php
not found. cms seiten gingen, bis auf die bilder, links funktionierten.

Dann Weiterleitung wieder rausgenommen> über admin konnte ich seite zwar wieder aufrufen> aber auch dort keine agb etc., abrufbar url oseo not found, Bilder + Banner wurden wieder korrekt angezeigt. oxseo fehler taucht nun dort also auch auf.

diverses probiert: ht.access hin und her geändert
config.inc.php hin und her geändert

mod rewrite wurde einmal in systemgesundheit red gemarkert, momentan nicht mehr

nun aktuelle ht.access

+ Frage, Was kann ich wie probieren+ Reihenfolge? Oder noch Servereinstellungen?

PHP Code:

# 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 
/ [COLOR="Red"](habe es hier auch mit meinem Shopordner probiertkeine Veränderung
[/
COLOR]
RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK)
RewriteRule .* - [F]

RewriteCond %{REQUEST_URIoxseo\.php$
RewriteCond %{QUERY_STRINGmod_rewrite_module_is=off
RewriteRule oxseo
\.phpoxseo.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)$ %{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\/)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond 
%{REQUEST_FILENAME} !-d
RewriteRule 
(\.jpe?g|\.gif|\.png)$ core/utils/getimg.php

</IfModule>

# disabling log file access from outside
<FilesMatch "(EXCEPTION_LOG\.txt|\.log$|\.tpl$|pkg\.rev)">
order allow,deny
deny from all
</FilesMatch>

Options -Indexes
DirectoryIndex index
.php index.html 

---------------------------------------->>>>>>>>>>>>>>>>>>>>>>>>>>>>

Hier config.inc.php

@link http://www.oxid-esales.com
* @package main
* @copyright (C) OXID eSales AG 2003-2012
* @version OXID eShop CE
*/

/** @name database information */
$this->dbHost = 'xxxxxxxxxxxxxxxx'; // database host name
$this->dbName = 'xxxxxxxxxxxxxxxxxx'; // database name
$this->dbUser = 'xxxxxxxxxxxxxxxxxx'; // database user name
$this->dbPwd = 'xxxxxxxxxxxxxxxxx'; // database user password
$this->dbType = 'mysql';
$this->sShopURL = 'http://www.pinavis-rosen-shop.de/PINAVIS'; // eShop base url, required
$this->sSSLShopURL = null; // eShop SSL url, optional
$this->sAdminSSLURL = null; // eShop Admin SSL url, optional
$this->sShopDir = '/var/www/xxxxx/html/PINAVIS';
$this->sCompileDir = '/var/www/xxxxx/html/PINAVIS/tmp';

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

// 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
// 8 = display smarty template names (requires /tmp cleanup)
$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;

Viewing all articles
Browse latest Browse all 6951

Trending Articles