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.
Сборка Эмо-чата тебе в помощь1)может кто знает как сделать в личке всесто фулинфо сессия поставить ID пользователя?
ну сколько я знаю это в офф пачах от разрабов2)и как сделать чтобы http:// мой чат/users/имя юзера было доступно по данной ссылке?
Возможно кривоватость рук или просто напросто закрыт порт3) почему не запускается демон через putty?
- Установи mod_rewrite, это модуль для Apache2)и как сделать чтобы http:// мой чат/users/имя юзера было
RewriteEngine On
Options +FollowSymlinks
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^users/([0-9]*)$ /fullinfo.php?user_id=$1 [L]
RewriteRule ^users/(.*)$ /profiler_rewrite.php?user_to_search=$1 [L]
RewriteRule ^403$ "" [F]
- Установи mod_rewrite, это модуль для Apache
- В .htaccess добавить строки:
PHP:RewriteEngine On Options +FollowSymlinks RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^users/([0-9]*)$ /fullinfo.php?user_id=$1 [L] RewriteRule ^users/(.*)$ /profiler_rewrite.php?user_to_search=$1 [L] RewriteRule ^403$ "" [F]
PHP код:
case "do_redirect":
if($LBanType == "") {
if(strlen(trim($mesg)) > 0) $admin_script = "location.href='".$mesg."';";
else $admin_script = "location.href='http://lleo.aha.ru/na/';";
$LBanType = "REDIRECT";
}
PHP код:
case "do_kick":
if($LBanType == "") {
$admin_script = "location.href='index.php';";
$LBanType = "KICK";
}
<input type="button" class=input_button value="redirect" onClick=run_cmd('do_redirect')>
<input type="button" class=input_button value="KICK" onClick=run_cmd('do_kick')>
В case "do_kick" добавляйкак сделать чтобы в приват админам писалось типо( Юзер *имя* был кикнут из чата. Автор *имя*)
и в общак соответствующее оповещение на подобии преда
кто поможет это сделать?
$messages_to_show[] = ...
возможло ли вывести кнопку обновить список пользователей в /диз/sender_visible.php? кто-нибудь реальзовал эту идею?
<input type="button" name="refresh" title="Обновить список юзеров справа" value="R" id="but" class=input_button onClick="javascript:parent.voc_who.location.reload(); mesg.focus();">