[Mod] Платные моды для TBDev YSE бесплатно

Скачал чат, у меня возникла проблема. Вот ошибку которую он выдает:
PHP:
Fatal error: Call to undefined function convert_text() in V:\appserv\www\shoutbox.php on line 29
как побороть эту проблему? :confused:
 
?

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1 как убрать эту ошибку в [mod]ajax-usedetails-merdox? она появляется после удаления комментария из стены
 
У кого есть нормальная карма details и комментариев?
 
Скачал чат, у меня возникла проблема. Вот ошибку которую он выдает:
PHP:
Fatal error: Call to undefined function convert_text() in V:\appserv\www\shoutbox.php on line 29
как побороть эту проблему? :confused:
Добавьте эту функцию в shoutbox.php:
PHP:
function convert_text($s)
{
 $out = "";
 for ($i=0; $i<strlen($s); $i++)
 {
  $c1 = substr ($s, $i, 1);
  $byte1 = ord ($c1);
  if ($byte1>>5 == 6) // 110x xxxx, 110 prefix for 2 bytes unicode
  {
  $i++;
  $c2 = substr ($s, $i, 1);
  $byte2 = ord ($c2);
  $byte1 &= 31; // remove the 3 bit two bytes prefix
  $byte2 &= 63; // remove the 2 bit trailing byte prefix
  $byte2 |= (($byte1 & 3) << 6); // last 2 bits of c1 become first 2 of c2
  $byte1 >>= 2; // c1 shifts 2 to the right
  $word = ($byte1<<8) + $byte2;
  if ($word==1025) $out .= chr(168);                    // ?
  elseif ($word==1105) $out .= chr(184);                // ?
  elseif ($word>=0x0410 && $word<=0x044F) $out .= chr($word-848); // ?-? ?-?
  else
  {
    $a = dechex($byte1);
    $a = str_pad($a, 2, "0", STR_PAD_LEFT);
    $b = dechex($byte2);
    $b = str_pad($b, 2, "0", STR_PAD_LEFT);
    $out .= "&#x".$a.$b.";";
  }
  }
  else
  {
  $out .= $c1;
  }
 }
 return $out;
}
sem94 написал(а):
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
Написано же, что синтаксис SQL запроса нарушен. Код в студию.
 
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1 как убрать эту ошибку в [mod]ajax-usedetails-merdox? она появляется после удаления комментария из стены

Ошибка синтаксиса sql смотри код запроса на удаление комментария . $post - попробуй заключить переменную в кавычки
 
Перезалейте пожалуйста чат веб нета. В теме наел 2 сылки на него и обе не работают.
 
Похожие раздачи

Кто нибудь подскажите как исправить ошибку в похожих раздачах на этой строчке
$eng = str_ireplace($stuff, '', $eng);
 
Кто нибудь подскажите как исправить ошибку в похожих раздачах на этой строчке
$eng = str_ireplace($stuff, '', $eng);
По синтаксису там нету ошибки. Текст в переменной $eng со значением $stuff - удалится.
 
блок аккордионом как на uniongang
*** скрытое содержание ***
aec5acef470be2a70f77b55d2444.jpeg

P.S Кто автор незнаю
Можете перезалить?
 
Добавьте эту функцию в shoutbox.php:
PHP:
function convert_text($s)
{
 $out = "";
 for ($i=0; $i<strlen($s); $i++)
 {
  $c1 = substr ($s, $i, 1);
  $byte1 = ord ($c1);
  if ($byte1>>5 == 6) // 110x xxxx, 110 prefix for 2 bytes unicode
  {
  $i++;
  $c2 = substr ($s, $i, 1);
  $byte2 = ord ($c2);
  $byte1 &= 31; // remove the 3 bit two bytes prefix
  $byte2 &= 63; // remove the 2 bit trailing byte prefix
  $byte2 |= (($byte1 & 3) << 6); // last 2 bits of c1 become first 2 of c2
  $byte1 >>= 2; // c1 shifts 2 to the right
  $word = ($byte1<<8) + $byte2;
  if ($word==1025) $out .= chr(168);                    // ?
  elseif ($word==1105) $out .= chr(184);                // ?
  elseif ($word>=0x0410 && $word<=0x044F) $out .= chr($word-848); // ?-? ?-?
  else
  {
    $a = dechex($byte1);
    $a = str_pad($a, 2, "0", STR_PAD_LEFT);
    $b = dechex($byte2);
    $b = str_pad($b, 2, "0", STR_PAD_LEFT);
    $out .= "&#x".$a.$b.";";
  }
  }
  else
  {
  $out .= $c1;
  }
 }
 return $out;
}
А теперь Call to undefined function decode_unicode_url() in shoutbox.php on line 64
Что делать?
 
Назад
Сверху