xmpp
xmpp copied to clipboard
Library for XMPP protocol connections (Jabber) for PHP
It is possible to have a XEPs and RFCs support page with version (XEP-XXXX v1.2)? Examples: - https://github.com/UWPX/UWPX-Client/blob/master/README.md - https://github.com/telldus/xmppjs-client-plugins/blob/master/README.md - https://github.com/ortuman/jackal/blob/master/README.md - https://profanity-im.github.io/xeps.html - https://metronome.im/supported-xeps-list - https://dev.gajim.org/gajim/gajim/wikis/help/GajimXEPSupport - https://github.com/jappix/jappix/blob/master/PROTOCOL.md
The jabberd2 in Mac OS X Yosemite is 2.3.1. This module can connect and send messages to other clients, but it can't join a room or send to a room....
Missing semi-colon
Error connect to server. Starttls send after authentication. Code ` $options = new Options('tcp://' . $server . ':' . $port); $options->setUsername($user) ->setPassword($pass) ->setTo($domain) // ->setLogger($logger) ->setContextOptions(['ssl'=>['allow_self_signed' => true, 'verify_peer' =>...
I'm trying to connect to server on my localhost as below: ``` $address = 'tcp://localhost:5222'; $username = 'admin@localhost'; $password = 'admin'; $options = new Options($address); $options->setUsername($username) ->setPassword($password) ->setTo('localhost') ->setContextOptions([ 'ssl'...
[https://packagist.org/packages/norgul/xmpp-php](https://packagist.org/packages/norgul/xmpp-php) I have tried keeping the documentation as detailed as possible, and enabling sending and receiving messages for the first version. I'd appreciate some feedback and what can I do...
Found an error in documentation `// send a message to another user $message = new Message; $message->setMessage('test') ->setTo('[email protected]') send($message);`
Hello. How a send a message to all users online?
Is there a known problem when connecting to prosody? I always get a Uncaught exception 'Fabiang\Xmpp\Exception\Stream\StreamErrorException' with message 'Stream Error: "host-unknown"' but the host can't be the problem. I can...
I try to create a web client (with laravel) for openfire but I couldn't connect openfire xmpp server? I apply all the settings from documentation but I got an error...