Добро пожаловать, Гость!
Fatal error: help help - Страница 2
Общие вопросы | Fatal error: help help

Fatal error: help help
6 Мая 2014Fatal error: Call to undefined method user::get_user() in /home/tnchatne/public_html/user/blacklist/inc/add.php on line 4
how to correct this error
Комментарии:



zaid, edit 4 line in your add.php and replace it $ank = user::get_user($ID); at $ank = get_user($ID);



insert into /sys/inc/settings.php this code
<?
/*
-----------------------------------------------------------------
Загрузка Классов из папки "sys/inc/classes"
-----------------------------------------------------------------
*/
$dirclasses = opendir($_SERVER['DOCUMENT_ROOT'] . '/sys/inc/classes');
while ($fileclass = readdir($dirclasses))
{
if (preg_match('#.php$#i', $fileclass))
{
require_once ($_SERVER['DOCUMENT_ROOT'] . '/sys/inc/classes/' . $fileclass);
}
}
?>
and upload this file in /sys/inc/classes/