Что нового

проблема со скачиванием файлов

  • Автор темы Автор темы Narik
  • Дата начала Дата начала
N

Narik

Гость
загружаю файл, публикую новость... и когда кликаю по ссылке выдает вот что... Warning: strtr(): The second argument is not an array in /home/website/public_html/engine/modules/functions.php on line 106 Warning: Cannot modify header information - headers already sent by (output started at /home/website/public_html/engine/modules/functions.php:106) in /home/website/public_html/engine/classes/download.class.php on line 63 Warning: Cannot modify header information - headers already sent by (output started at /home/website/public_html/engine/modules/functions.php:106) in /home/website/public_html/engine/classes/download.class.php on line 66 Warning: Cannot modify header information - headers already sent by (output started at /home/website/public_html/engine/modules/functions.php:106) in /home/website/public_html/engine/classes/download.class.php on line 67 Warning: Cannot modify header information - headers already sent by (output started at /home/website/public_html/engine/modules/functions.php:106) in /home/website/public_html/engine/classes/download.class.php on line 68 Warning: Cannot modify header information - headers already sent by (output started at /home/website/public_html/engine/modules/functions.php:106) in /home/website/public_html/engine/classes/download.class.php on line 69 Warning: Cannot modify header information - headers already sent by (output started at /home/website/public_html/engine/modules/functions.php:106) in /home/website/public_html/engine/classes/download.class.php on line 70 Warning: Cannot modify header information - headers already sent by (output started at /home/website/public_html/engine/modules/functions.php:106) in /home/website/public_html/engine/classes/download.class.php on line 71 Warning: Cannot modify header information - headers already sent by (output started at /home/website/public_html/engine/modules/functions.php:106) in /home/website/public_html/engine/classes/download.class.php on line 72 Warning: Cannot modify header information - headers already sent by (output started at /home/website/public_html/engine/modules/functions.php:106) in /home/website/public_html/engine/classes/download.class.php on line 73 Warning: Cannot modify header information - headers already sent by (output started at /home/website/public_html/engine/modules/functions.php:106) in /home/website/public_html/engine/classes/download.class.php on line 75 Warning: Cannot modify header information - headers already sent by (output started at /home/website/public_html/engine/modules/functions.php:106) in /home/website/public_html/engine/classes/download.class.php on line 84надеюсь на вашу помощь!P.S. недавно обновлял движок...
 
это не из-за строки. просто где-то есть ошибка, что функция стоит в цикле и типо что она уже была выслана и нехер её высылать ещё раз
 
engine/modules/functions.phpВроде бы все ошибки ссылаются на 106 строчку
 
Я прост тупо сказал заменть а вдруг катит
 
да это я тоже понял... тока вот как все исправить?
 
где добавляеш новость(админка или сайт), версия дле. если в админке то файл engine/inc/addnews.php с норм двига перезалей или если на сайте то engine/modules/addnews.php с другого архива дле перезалей
 
yunger,ахаха... тут кто лучше знает?) functions.php отвечает только за функции и ничто больше!
 
версия движка 7.5новость добавляю и из админки и с сайта эффект тот же...файлы заменял, никаких изменений...
 
up!< -system: при конвертации необходимо было добавить- >
 
Warning: strtr() [function.strtr]: The second argument is not an array in /home/public_html/engine/modules/functions.php on line 106
 
Narik,Выкладывай что у тебя в строчке 106, я может быть догадался... сегодня только с этим файлом возился
 
}function langdate&#40;$format, $stamp&#41; {&nbsp;&nbsp;&nbsp;&nbsp;global $langdate;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return strtr&#40; date&#40; $format, $stamp &#41;, $langdate &#41;;&nbsp;&nbsp;&nbsp;&nbsp;}106-я строка: return strtr( date( $format, $stamp ), $langdate );
 
return strtr( date( $format, $stamp ), $langdate )The second argument is not an array inВторой аргумент не является массивомпопробуй следущееfunction langdate&#40;$format, $stamp&#41; {&nbsp;&nbsp;&nbsp;&nbsp;global $langdate;&nbsp;&nbsp;&nbsp;&nbsp;$date = date&#40; $format, $stamp &#41;;&nbsp;&nbsp;&nbsp;&nbsp;if&#40; $date&#91;&#93; &#41; $datt = strtr&#40; $date&#91;&#93;, $langdate &#41;;&nbsp;&nbsp;&nbsp;&nbsp;else $datt = strtr&#40; $date, $langdate &#41;;&nbsp;&nbsp;&nbsp;&nbsp;return $datt;}
 
Верх