Send icq message via php -
i need send message icq php. i`m using webicqpro.
<?php require_once('webicqpro.class.php'); $uin = '******'; $pass = '******'; $to_uin = '******'; $icq = new webicqpro(); $icq->debug = true; $icq->setoption('useragent', 'miranda'); if ($icq->connect($uin, $pass)) { $icq->sendmessage($to_uin, 'hello! test message'); } else { die('icq connection error: ' . $icq->error); }
this code fails error: error: server close connection
p.s.: maybe there other working icq classes?
increase limits.
edit file "webicqpro.class.php":
// $this->settimeout(6, 0); $this->settimeout(60, 60000);
Comments
Post a Comment