xmpp-php icon indicating copy to clipboard operation
xmpp-php copied to clipboard

PHP client library for XMPP (Jabber) protocol

Results 14 xmpp-php issues
Sort by recently updated
recently updated
newest added

Good day. I made changes to the Example.php file, everything works, but the status of the bot is "offline". Please tell me how to set the status of the bot...

Added `return false` to: - `src/Socket.php` in `send()` - `src/XML/Stanzas/Iq.php` in `ping()` In `Example.php`: Added some logic to detect problems with the socket and then exit with error code 1....

Added support for SSL context to bypass verify_peer and verify_host and allow self signed certificates. Added support for realms on supporting servers. Fixed timestamps in logger.

i am getting an error even with the ssl is installed on my server. stream_socket_enable_crypto(): SSL operation failed with code 1. OpenSSL Error messages: error:14090086:SSL routines:ssl3_get_server_certificate:certificate verify failed Please help.

I am currently using this library to build a Bot to run automation tasks. However when it loses connectivity because either the server became unavailable or was restarted it does...

I can't set proxy on this function stream_socket_client; My Code (Socket.php): ``` $context = stream_context_create(array( 'http' => array( 'timeout' => 5, 'proxy' => 127.0.0.1:8080, 'request_fulluri' => true ), 'ssl' =>...

I can do: `$client->message->send($message, $recipient,$msg_type);` where $msg_type = 'chat' and send the specified message to the specified recipient. changing $msg_type to 'groupchat' does not get the message sent to a...

Hi @Norgul , I use your library and I try to connect with Google Hangout with this config ``` use Norgul\Xmpp\Options; use Norgul\Xmpp\XmppClient; class XmppController extends Controller { protected static...

enhancement

Writing to a fixed path in this manner creates problems in Laravel, i.e. the `/public` folder is not writable for security reasons.

I have raspberry 3. installed composer. I run php composer.phar require norgul\xmpp-php, I get "Installation failed, deleting ./composer.json. In RequireCommand.php line 225: No composer.json present in the current directory (./composer.json),...