Случилась следующая проблема, на сервере стит пурфтп для его администрирования используется веб интерфейс UserManager. Пока стоял пхп версии 5.3... все работало нормально, но пришлось откатиться на версию 5.2.17 после этого в верхней части веб морды появилась следующая надпись :
Код: Выделить всё
\n"); $LFile = "english.php"; } require("language/".$LFile); // Read the language file ?>
Код: Выделить всё
<?
/* 'User manager for PureFTPd' is made by M.Mastenbroek 2002 - 2005
* For more info look at http://machiel.generaal.net
* Version 2.1
*
*
* I can only speak my natural language (Dutch) and a little bit English, so if people
* use my script and have the time, knowledge and the spitted to add a language
* feel yourself free. I think the syntax speaks for itself. If you added a language or you have
* questions about it, you can contact me at machiel.mastenbroek@gmail.com, if
* that doesn?t work check my website how to contact me.
*/
$LFile = strtolower($LANG).".php";
if (!file_exists("language/".$LFile)) // If the language doesn't exist we use the 'default' language english
{
// echo ("File '$LFile' doesn't exist ! <br>\n");
$LFile = "english.php";
}
require("language/".$LFile); // Read the language file
?>