[BS] Real time chat

Eklenti [BS] Real time chat 1.5.0

indirmek için izniniz yok
Eklenti
.to start the server side of the chat - you need to open the SSH console, go to the forum directory and enter the php chat_start.php start -d command
Restart command: php chat_start.php restart
Stop command: php chat_start.php stop

If you use Cloudflare, then you need to enable the Websockets option in the Network section.
And read this https://support.cloudflare.com/hc/en-us/articles/200169156-Identifying-network-ports-compatible-with-Cloudflare-s-proxy.

If you want to change the port of the chat, then after you change it in the options, you need to restart the server part of the chat.

Chat port must be opened for TCP connections.
Channel adapter port must be opened for TCP connections from localhost (127.0.0.1).

Nginx proxy configuration template:
NGINX:
location /chat.io/ {
    proxy_pass http://127.0.0.1:{your_chat_port};
    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection $connection_upgrade;
}

.features:
  • All changes occur in real time (new post, delete, edit, etc.)
  • Editing own/all messages
  • Deleting own/all messages
  • Clear chat (/clear command)
  • Command handlers
  • Chat notifications
  • Sound notifications in chat
  • Chat ad above messages
  • The username of the user who is currently typing a message
  • Insert username by clicking on it
  • Insert and process BB codes
  • Mention via the /to command
  • Private messages via the /pm command
  • Exiting edit mode using the escape key
  • User banning
  • Banned users list
  • Reports to messages
  • Chat history
Geri
Üst