[DCom] Live Content

[DCom] Live Content [Paid] 3.0.5

No permission to buy ($30.00)
Anyone here tried this addon on Ubuntu 24.04 and PHP 8.2 using Swoole?
I have to uninstall it for now, as it crashes often and sometimes causes MariaDB to lag.
 
Кто-нибудь пробовал это дополнение на Ubuntu 24.04 и PHP 8.2 с использованием Swoole?
Мне придется удалить его на данный момент, так как он часто дает сбои и иногда приводит к зависанию MariaDB.
I also see a problem with crashes on Ubuntu 24.04 and PHP 8.2
 
  • Sad
Reactions: rdn
Screenshot on the Pusher compatibility, please?
What options does it require?

Please make the "Pusher cluster" optional so we can use a self-hosted pusher-compatible service.
 
А чем Pusher лучше, или в чем отличие ?
Просто как альтернатива для тех у кого шаред хостинг или для тех, кто не хочет заморачиваться с настройкой swoole и конфигов сервера.
 
Please make the "Pusher cluster" optional so we can use a self-hosted pusher-compatible service.
I don't see how.)) This parameter is mandatory, even if you don't specify it, it is still required.
Here are excerpts from the Pusher library source code from the server side and from the client side.
PHP:
if (!array_key_exists('host', $this->settings)) {
            if (array_key_exists('host', $options)) {
                $this->settings['host'] = $options['host'];
            } elseif (array_key_exists('cluster', $options)) {
                $this->settings['host'] = 'api-' . $options['cluster'] . '.pusher.com';
            } else {
                $this->settings['host'] = 'api-mt1.pusher.com';
            }
        }
JavaScript:
function validateOptions(options) {
    if (options == null) {
        throw 'You must pass an options object';
    }
    if (options.cluster == null) {
        throw 'Options object must provide a cluster';
    }
    if ('disableStats' in options) {
        logger.warn('The disableStats option is deprecated in favor of enableStats');
    }
}
 
Please add some ways to host the socket server on a separate or remote server so it doesn't affect the load of the main server.
Still will benefit shared or cloud-hosted Xenforo install.

Pusher is nice for small forums but very expensive for medium size.
 
Please add some ways to host the socket server on a separate or remote server so it doesn't affect the load of the main server.
Still will benefit shared or cloud-hosted Xenforo install.

Pusher is nice for small forums but very expensive for medium size.
Great idea for load balancing. This will be in the next update.
 
  • Love
Reactions: rdn
Back
Top