Index: typo3/sysext/install/mod/class.tx_install.php =================================================================== --- typo3/sysext/install/mod/class.tx_install.php (revision 7907) +++ typo3/sysext/install/mod/class.tx_install.php (working copy) @@ -228,7 +228,6 @@ 'about' => 'About', 'logout' => 'Logout from Install Tool', ); - var $JSmessage = ''; @@ -323,18 +322,6 @@ // ******************* if (!$this->session->hasSession()) { $this->session->startSession(); - - $this->JSmessage='SECURITY: -Make sure to protect the Install Tool with another password than "joh316". -Better yet you can add a die() function call to typo3/install/index.php after usage. - -IF THE INSTALL TOOL CRASHES... -The Install Tool is checking PHPs support for image formats. However certain versions of PHP (fx. 4.3.0 with bundled GD) will crash when trying to read the PNG test file. If this happens you will see a blank screen or error message. -Workaround: Open the file typo3/sysext/install/mod/class.tx_install.php, go to the line where the function "isPNG()" is defined and make it return "0" hardcoded. PNG is not checked anymore and the rest of the Install Tool will work as expected. The same has been known with the other image formats as well. You can use a similar method to bypass the testing if that is also a problem. -On behalf of PHP we regret this inconvenience. - -BTW: This Install Tool will only work if cookies are accepted by your web browser. If this dialog pops up over and over again you didn\'t enable cookies. -'; } if ($this->session->isAuthorized() || $this->checkPassword()) { @@ -492,6 +479,8 @@ The Install Tool Password is not the admin password of TYPO3.
+ The default password is joh316. Be sure to change it! +

If you don\'t know the current password, you can set a new one by setting the value of $TYPO3_CONF_VARS[\'BE\'][\'installToolPassword\'] in @@ -7635,11 +7624,6 @@ ) . '" />'; } - // Include javascript message - $this->javascript[] = $this->JSmessage ? - '' : - ''; - // Define the markers content if ($this->mode == '123') { $this->markers['headTitle'] = 'Installing TYPO3 ' . TYPO3_branch;