Tagged Questions

2
votes
2answers
332 views

Memcache connects but doesn't respond to any command

Setup: Apache; PHP 5.2.9; libevent (for memcached it's required) version 1.3; memcached server version 1.2.2 (tried 1.4.5, 1.4.0, now downgraded to 1.2.2, no difference); memcached php pecl module ...
2
votes
2answers
2k views

XMPP SASL authentication on Ejabberd with PHP

I'm trying to authenticate with an XMPP server using SASL. /** * Send Authentication, SASL * @return Bool * @param $username String * @param $password String */ function ...
0
votes
4answers
649 views

XMPP Handshake (DIGEST-MD5 SASL)

ive got ejabberd as my xmpp server and here is my php code: $stripped = strip_tags($returnTwo); // remove the xml tags from the response stanza $decoded = base64_decode($stripped); // decode the ...
0
votes
1answer
337 views

php_ldap over ssl difficulties

I am trying to bind to AD with php_ldap (using ADLdap), from a Ubuntu (hardy 8.04LTS) host. Binding on port 389 is fine to ldap://myserver, but does not allow me to do things like set password, so I ...