[DCom] Live Content

[DCom] Live Content [Paid] 2.7.12

No permission to buy ($30.00)

DimmmCom

Well-known member
DimmmCom submitted a new resource:

[DCom] Live Content - Real time communication

  • Communication in topics and personal correspondence without reloading the page.
  • Transitions between pages via AJAX.
  • There are two styles of personal correspondence to choose from.
  • Customizable sound alerts.
The plugin uses the phpsocket.io library

To view this content we will need your consent to set third party cookies.
For more detailed information, see our cookies page.

Read more about this resource...
 
This seems like something I'd use, but I don't know if its a $30 addon, tbh. Feels like a 15-20 price tag may be more tempting (to me at least)
 
Maybe if I had a demo site to play around on, or a more in-depth video preview, it could convince me. But the video didn't show very much like outside of the conversation area.
 
What server ports/tcp/udp I need to open on the server to fully utilize this?
On cloudflare I need to enable this?

1654239071743.webp
 
Must be open to the public right?
Cause I have my firewall right now only open for port 80 and 443.

Is that TCP or UDP port?
 
How does it behave on mobile? Does it auto scroll to unread messages? Can it be permissioned per user group and/or forum? Does it support other events?
A little later I will record a video of the work in the mobile. Each user can disable the display of the "Typing" block and turn off sound alerts. It is problematic to completely disconnect users from the socket with access rights, because it is necessary to catch events of their actions for other users.
 
Certificate must be valid?
Or the one that is issued by Cloudflare is enough?
It is best to set up a connection through a proxy.
Here are example configs
NGINX:
location /socket.io/ {
        proxy_pass http://127.0.0.1:2053;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "Upgrade";
    }
Code:
websocket /socket.io {
  address                 127.0.0.1:2053
}
 
  • Like
Reactions: rdn
Top Bottom