Doctor_zlo
Хранитель порядка
- Регистрация
- 25 Апр 2008
- Сообщения
- 458
- Реакции
- 1.339
Под PHP 5.5-5.6 чат переделывали, отпишу чтобы выложили.
Последнее редактирование:
Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
Бан по id браузера. Кого-то забанили по браузеру имеющий такой же id как у вашей Оперы.Может кто сталкивался с проблемой - не могу попасть в чат через Opera. Ошибка - отключены от чата. При том в chrome все ок.
привет форумчане!Если кого интересует вот ссылки под чаты PHP 5.5.*-5.6.*
Voc++ BSE
Для просмотра ссылки Войдиили Зарегистрируйся
Для просмотра ссылки Войдиили Зарегистрируйся
Voodoo чат
Для просмотра ссылки Войдиили Зарегистрируйся
Для просмотра ссылки Войдиили Зарегистрируйся
только что проверил, все ссылки работаютпривет форумчане!
а кто нибудь может выложить сюда? ссылки не работают... всем мир!
открыть
inc_common.php
найти
eval($conf_content);
перед добавить
# http or https
$http_or_https = isset($_SERVER['HTTP_SCHEME']) ? $_SERVER['HTTP_SCHEME'] : ( ( (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on' ) || ( isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https' ) || $_SERVER['SERVER_PORT'] == 433 ) ? 'https' : 'http' );
if ( $http_or_https == 'https' )
{
$conf_content = str_replace('http://', 'https://', $conf_content);
}
else
{
$conf_content = str_replace('https://', 'http://', $conf_content);
}
после добавить
# http or https
$daemon_host = str_replace('https://', 'http://', $daemon_host);
if ( $http_or_https == 'https' )
{
if ( in_array('tail', $chat_types) && in_array('php_tail', $chat_types) )
{
unset($chat_types[array_search('tail', $chat_types)]);
}
if ( in_array('tail', $chat_types) && !in_array('php_tail', $chat_types) )
{
$chat_types[array_search('tail', $chat_types)] = 'php_tail';
}
if ( in_array('php_tail', $chat_types) && in_array('js_tail', $chat_types) )
{
unset($chat_types[array_search('php_tail', $chat_types)]);
}
if ( in_array('php_tail', $chat_types) && !in_array('js_tail', $chat_types) )
{
$chat_types[array_search('php_tail', $chat_types)] = 'js_tail';
}
$old_chat_types = $chat_types;
unset($chat_types);
$chat_types = array();
$i = 0;
foreach ($old_chat_types as $val)
{
$chat_types[$i] = $val;
++$i;
}
}
открыть
admin/configure/inc_cfg_engine.php
найти
*Различные типы чата доступные для пользователей рекомендуется 'tail' и 'reload'
в строке после добавить
<br>если пользователь заходит в чат по https, то tail и php_tail заменяются на js_tail, потому что tail и php_tail на https не работают