Am 30.09.2004 13:14, schrieb Steffen Fahl:
Hallo David,

Danke erstmal für dein nettes Angebot.
Die phpinfo.php ist jetzt im Rootordner von http://ohg.s-fahl.bplaced.de
Es wäre wirklich eine große Erleichterung für mich, wenn du das hin bekämst.

Gruß
Steffen Fahl


Hallo Steffen,

aus irgendeinem Grund sind viele "Superglobals" in PHP nicht verfügbar.

um den Mißstand zumindest in der index.php zu umgehen kannst Du folgenden Inhalt dort einfügen (Alles andere löschen), vor "<?php" und nach "?>" darf kein Leerzeichen oder Zeilenumbruch mehr erscheinen.

<?php
/***************************************************************
*  Copyright notice
*
*  (c) 1999-2010 Kasper Skaarhoj (kaspery...@typo3.com)
*  All rights reserved
*
*  This script is part of the TYPO3 project. The TYPO3 project 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 2 of the License, or
*  (at your option) any later version.
*
*  The GNU General Public License can be found at
*  http://www.gnu.org/copyleft/gpl.html.
* A copy is found in the textfile GPL.txt and important notices to the license
*  from the author is found in LICENSE.txt distributed with these scripts.
*
*
*  This script 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.
*
*  This copyright notice MUST APPEAR in all copies of the script!
***************************************************************/
/**
* This is the MAIN DOCUMENT of the TypoScript driven standard front-end (from the "cms" extension) * Basically this is the "index.php" script which all requests for TYPO3 delivered pages goes to in the frontend (the website)
 *
 * $Id: index.php 7905 2010-06-13 14:42:33Z ohader $
 *
 * @author    René Fritz <r.fr...@colorcube.de>
 * @package TYPO3
 * @subpackage tslib
 */

// *******************************
// Set error reporting
// *******************************

if (defined('E_DEPRECATED')) {
    error_reporting(E_ALL ^ E_NOTICE ^ E_DEPRECATED);
} else {
    error_reporting(E_ALL ^ E_NOTICE);
}


// ******************
// Constants defined
// ******************

define('PATH_thisScript', '/users/s-fahl/www/ohg/index.php');

define('PATH_site', dirname(PATH_thisScript).'/');

if (@is_dir(PATH_site.'typo3/sysext/cms/tslib/')) {
    define('PATH_tslib', PATH_site.'typo3/sysext/cms/tslib/');
} elseif (@is_dir(PATH_site.'tslib/')) {
    define('PATH_tslib', PATH_site.'tslib/');
} else {

    // define path to tslib/ here:
    $configured_tslib_path = '';

    // example:
    // $configured_tslib_path = '/var/www/mysite/typo3/sysext/cms/tslib/';

    define('PATH_tslib', $configured_tslib_path);
}

if (PATH_tslib=='') {
die('Cannot find tslib/. Please set path by defining $configured_tslib_path in ' . htmlspecialchars(basename(PATH_thisScript)) . '.');
}

// ******************
// include TSFE
// ******************

require (PATH_tslib.'index_ts.php');

?>



________________________________


Die "Superglobals" betreffend solltest Du den Provider konsultieren, da es sicherlich öfter zu mehr oder weniger gravierenden Problemen mit TYPO3 kommen kann, wenn diese nicht verfügbar sind. Im aktuellen Skript werden "PHP_SAPI" und einige "$_SERVER"-Variablen ("$_SERVER" ist ein Array) ignoriert, möglicherweise auch alle. Generell werden in TYPO3 jedoch auch alle anderen Superglobals verwendet ( http://www.php.net/manual/de/language.variables.superglobals.php ) und sollten zur Verfügung stehen.

Gruß,
David
_______________________________________________
TYPO3-german mailing list
TYPO3-german@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-german

Antwort per Email an