OXID Community Forum

> German forum > Installation und Konfiguration > Frontend von OXID shop unter XAMPP
Login
FAQ Members List Calendar Search Today's Posts Mark Forums Read

Thread: Frontend von OXID shop unter XAMPP


Reply
 
Thread Tools Display Modes
#Top   #1  
Old 06-27-2009, 08:00 PM
mdmnet's Avatar
mdmnet mdmnet is offline
Junior Member
Join Date: Jun 2009
Location: Roßbach
Posts: 12
mdmnet is on a distinguished road
Default Frontend von OXID shop unter XAMPP

Hallo jetzt habe ich noch eine Frage!

Installation hat mit IE funktioniert. In den Admin-Bereich komme ich auch problemlos rein und habe den ganzen Tag ausprobiert, verändert und eingestellt. Dies ist die Log in für den Admin Bereich:
http://localhost:8080/oxid/admin/index.php?redirected=1

Kann mir jemand sagen wie ich mir das jetzt unter XAMPP anschauen kann?
mdmnet
Reply With Quote
#Top   #2  
Old 06-27-2009, 11:55 PM
fragarena fragarena is offline
Senior Member
Join Date: Oct 2008
Posts: 209
fragarena is on a distinguished road
Default Re: Frontend von OXID shop unter XAMPP

Hallo,

wenn alles richtig eingestell ist, müsste das Frontend unter

http://localhost:8080/oxid/

erreichbar sein.

Gruß
__________________
Frank Schumacher

Möbel AKUT GmbH
www.moebel-akut.de
Reply With Quote
#Top   #3  
Old 06-28-2009, 01:28 PM
mdmnet's Avatar
mdmnet mdmnet is offline
Junior Member
Join Date: Jun 2009
Location: Roßbach
Posts: 12
mdmnet is on a distinguished road
Default AW: Frontend von OXID shop unter XAMPP

Erscheint eben nicht. Was kann ich denn noch einstellen?
mdmnet
Reply With Quote
#Top   #4  
Old 06-28-2009, 10:42 PM
fragarena fragarena is offline
Senior Member
Join Date: Oct 2008
Posts: 209
fragarena is on a distinguished road
Default AW: Frontend von OXID shop unter XAMPP

Was hast du denn in der config.inc.php bei

$this->sShopURL
$this->sShopDir
$this->sCompileDir

eingetragen?

Gruß
__________________
Frank Schumacher

Möbel AKUT GmbH
www.moebel-akut.de
Reply With Quote
#Top   #5  
Old 06-29-2009, 12:25 PM
mdmnet's Avatar
mdmnet mdmnet is offline
Junior Member
Join Date: Jun 2009
Location: Roßbach
Posts: 12
mdmnet is on a distinguished road
Default AW: Frontend von OXID shop unter XAMPP

Vielen Dank für die Antwort. Habe alles nochmal neu installiert.

Mein einziger Fehler den ich jetzt noch habe sieht folgendermaßen aus:
Ich logge mich im Admin-Bereich ein und will dann z.B. Kaegoerien anlegen, sobald ich auf neu anlegen gehe vervielfältigt sich in der Adresszeile die Adminadresse permanent und ich bekomme error 403. Hast Du da eine Idee.
mdmnet
Nachtrag; Das sieht dann so aus:
http://localhost:8080/oxid/admin/://...dmin/index.php

Last edited by mdmnet; 06-29-2009 at 12:50 PM. Reason: Zum besseren Verständnis
Reply With Quote
#Top   #6  
Old 06-29-2009, 04:23 PM
fragarena fragarena is offline
Senior Member
Join Date: Oct 2008
Posts: 209
fragarena is on a distinguished road
Default Re: Frontend von OXID shop unter XAMPP

Hallo,

da scheint aber irgendwas komplett schief zu laufen. Das Frontend funktioniert jetzt nach der Neuinstallation?

Interessant wäre schon, was du in der config.inc.php eingetragen hast...

Gruß
__________________
Frank Schumacher

Möbel AKUT GmbH
www.moebel-akut.de
Reply With Quote
#Top   #7  
Old 06-29-2009, 04:30 PM
mdmnet's Avatar
mdmnet mdmnet is offline
Junior Member
Join Date: Jun 2009
Location: Roßbach
Posts: 12
mdmnet is on a distinguished road
Default AW: Frontend von OXID shop unter XAMPP

So sieht die config.inc aus:
<?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 (C) OXID eSales AG 2003-2009
* @version OXID eShop CE
*/


/** @name database information */
$this->dbHost = 'localhost'; // database host name
$this->dbName = 'ruby'; // database name
$this->dbUser = 'root'; // database user name
$this->dbPwd = ''; // database user password
$this->dbType = 'mysql';
$this->sShopURL = 'http://localhost:8080/oxid';
$this->sSSLShopURL = null;
$this->sAdminSSLURL = null;
$this->sShopDir = 'M:/php_video_kurs/xampp/htdocs/oxid';
$this->sCompileDir = 'M:/php_video_kurs/xampp/htdocs/oxid/tmp';

$this->sTheme = 'basic';

// utf 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
$this->iDebug = 0;

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

$this->sAdminEmail = '';

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

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

// uncomment the following line if you want euro sign leave unchanged in output
// the default is 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();

// Only for former templates: Fixed Shop Width
$this->blFixedWidthLayout = 1;

// set this parameter when your shop runs on different subdomains in ssl/non ssl mode
// e.g. if you setup "ssl.shop.com"/"www.shop.com" - config value should be ".shop.com"
$this->sCookieDomain = null;

http://www.oxid-esales.com/forum/ima...lies/smile.gif
Reply With Quote
#Top   #8  
Old 06-29-2009, 10:14 PM
fragarena fragarena is offline
Senior Member
Join Date: Oct 2008
Posts: 209
fragarena is on a distinguished road
Default AW: Frontend von OXID shop unter XAMPP

Hallo,

bis auf den von dir verwendeten Standardport 8080 sieht meine config.inc.php unter xampp genauso aus. Allerdings wird bei mir die Seite nicht mehr richtig geladen, wenn ich den Port 8080 in den Link einfüge. Lass mal testweise den Port weg...

Gruß
__________________
Frank Schumacher

Möbel AKUT GmbH
www.moebel-akut.de
Reply With Quote
Reply

Bookmarks

Tags
frontend, shop, xampp

« Previous Thread | Next Thread »
Thread Tools
Display Modes

Nicht Sichtbar
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Instalation unter XAMPP dax_fritz Installation und Konfiguration 10 01-09-2013 11:49 AM
Shop Sortierung zerschossen - Anzeige im Frontend ebenso Mainriff Administration 3 04-09-2010 11:49 AM
OXID Installation unter XAMPP mdmnet Installation und Konfiguration 9 07-04-2009 10:04 AM
Backend unter Xampp mdmnet Installation und Konfiguration 0 06-29-2009 03:40 PM
Admin funktioniert nicht unter Xampp Hupi Installation and configuration 16 12-05-2008 01:38 AM

All times are GMT +2. The time now is 07:29 PM.