Web Shop Installation

Du hast ein Problem gefunden und weißt nicht genau wo es hinpasst...
yogi
Administrator
Beiträge: 292
Registriert: Do 6. Mai 2010, 14:16
Shop Version: die aktuelle
Wohnort: Köln
Kontaktdaten:

Re: Web Shop Installation

Beitrag von yogi »

Hallo,

könntest Du/Ihr bitte mal folgenden Code auf dem Server in eine xxx.php Datei speichern und über den Browser aufrufen.
Das Ergebnis dann bitte hier Posten:

Code: Alles auswählen

<?php
header('content-type: text/plain');
var_dump(array(
  'SCRIPT_NAME' => $_SERVER['SCRIPT_NAME'],
  'PHP_SELF' => $_SERVER['PHP_SELF'],
  'DOCUMENT_ROOT' => $_SERVER['DOCUMENT_ROOT'],
  'realpath' => realpath($_SERVER['DOCUMENT_ROOT']),
  'FILE' => __FILE__,
  'realFILE' => realpath(__FILE__),
));
patbrandy
Beiträge: 9
Registriert: Fr 9. Jul 2010, 14:45
Shop Version: XTC/ECB

Re: Web Shop Installation

Beitrag von patbrandy »

Code: Alles auswählen

array(6) {
  ["SCRIPT_NAME"]=>
  string(28) "/motorrad-teile-shop/xxx.php"
  ["PHP_SELF"]=>
  string(29) "/motorrad-teile-shop/xxx.php/"
  ["DOCUMENT_ROOT"]=>
  string(32) "/home/gab-bikeshopde/public_html"
  ["realpath"]=>
  string(32) "/home/gab-bikeshopde/public_html"
  ["FILE"]=>
  string(60) "/home/gab-bikeshopde/public_html/motorrad-teile-shop/xxx.php"
  ["realFILE"]=>
  string(60) "/home/gab-bikeshopde/public_html/motorrad-teile-shop/xxx.php"
}
Antworten