Open GoogleCodeExporter opened 8 years ago
im seeing the same thing here, just messing around and using prosody as the
xmpp server... i can see the code that should allow the auth and it does call
it, but not much else happens...
Original comment by takig...@gmail.com
on 18 Jun 2010 at 5:15
my problem was prosody... its not quite passing messages the way it should for
some reason... if i logged out and back in with it, that solved my problem, but
i switched over to ejabberd anyways.
Original comment by takig...@gmail.com
on 19 Jun 2010 at 1:27
$conn = new XMPPHP_XMPP(...);
$conn->autoSubscribe(true);
try {
$conn->connect();
$conn->processUntil('session_start');
while(true)
{
$conn->presence();
$conn->processUntil('presence');
echo ".";
sleep(3);
}
} catch(XMPPHP_Exception $e) {
die($e->getMessage());
}
This may help.
Original comment by bolsunov...@gmail.com
on 21 Jul 2012 at 12:49
Original issue reported on code.google.com by
soichih
on 22 Apr 2010 at 7:16