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

Popular posts from this blog

gridview - Yii2 DataPorivider $totalSum for a column -

java - Suppress Jboss version details from HTTP error response -

Sass watch command compiles .scss files before full sftp upload -