Typo3 installation index.php

sleipner
Unzwar wollte ich vorhin endlich mal das typo3 CMS versuchen und bei der installtion als ich das erste mal die seite aufgerufen habe kam folgende meldung!


Zitat:
In the source distribution of TYPO3, the install script is disabled by a die() function call.
Fix: Open the file typo3/install/index.php and remove/out-comment the line that outputs this message!



ich habe keine ahnung was ich machen muss den english kann ich nicht ( Sowas gibt es heutzutage noch großes Grinsen und PHP erst recht nicht
bobic
Das Typo3-Installationsprogramm wird per default gleich am anfang abgebrochen (--->sicherheit :-)

Du musst die typo3/install/index.php per FTP herunterladen und editieren.

recht weit oben wird eine die('.........') Funktion aufgerufen. diese musst du auskommentieren:
//die ('...........

damit ist die Sicherheitssperre deaktiviert und Du kannst das Installationsprogramm starten (= die Fehlermeldung kommt nicht mehr )
support
Hallo,

bei der Standardinstallation - welche vom Server durchgeführt wird - ist dieser Abbruch durch uns bereits auskommentiert. Lediglich wenn Sie eine eigene Version installieren ist das vorbeschriebene notwendig.
sleipner
HM, Irgendwie bin ich zu blöd!

Kann mir das bitte einer machen?
Hier ist der code

code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
// This checks for my own IP at home. You can just remove the if-statement.
if (1==0 || (substr($_SERVER['REMOTE_ADDR'],0,7)!='192.168' && $_SERVER['REMOTE_ADDR']!='127.0.0.1'))		{
	die("In the source distribution of TYPO3, the install script is disabled by a die() function call.<br/><b>Fix:</b> Open the file typo3/install/index.php and remove/out-comment the line that outputs this message!");
}



// *****************************************************************************
// Defining constants necessary for the install-script to invoke the installer
// *****************************************************************************
define('TYPO3_MOD_PATH', 'install/');
$BACK_PATH='../';

	// Defining this variable and setting it non-false will invoke the install-screen called from init.php
define('TYPO3_enterInstallScript', '1');
require ('../init.php');
?>
bobic
code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
// This checks for my own IP at home. You can just remove the if-statement.
if (1==0 || (substr($_SERVER['REMOTE_ADDR'],0,7)!='192.168' && $_SERVER['REMOTE_ADDR']!='127.0.0.1'))		{
	//die("In the source distribution of TYPO3, the install script is disabled by a die() function call.<br/><b>Fix:</b> Open the file typo3/install/index.php and remove/out-comment the line that outputs this message!");
}



// *****************************************************************************
// Defining constants necessary for the install-script to invoke the installer
// *****************************************************************************
define('TYPO3_MOD_PATH', 'install/');
$BACK_PATH='../';

	// Defining this variable and setting it non-false will invoke the install-screen called from init.php
define('TYPO3_enterInstallScript', '1');
require ('../init.php');
?>
sleipner
Es geht immernoch nicht verwirrt
support
Hallo,

löschen Sie den Bereich am Besten komplett aus der Setup-Datei:
code:
1:
2:
3:
4:
5:
// This checks for my own IP at home. You can just remove the if-statement.
if (1==0 || (substr($_SERVER['REMOTE_ADDR'],0,7)!='192.168' && $_SERVER['REMOTE_ADDR']!='127.0.0.1'))		{
	//die("In the source distribution of TYPO3, the install script is disabled by a die() function call.<br/><b>Fix:</b> Open the file typo3/install/index.php and remove/out-comment the line that outputs this message!");
}
sleipner
Besten Dank!

Jetzt klappt es