Witaj Gościu! ( Zaloguj | Rejestruj )

Forum PHP.pl

> [php]Klasa phplibgg, problem, Problem z stworzeniem gadugadu w php
wert1
post 11.01.2008, 20:12:08
Post #1





Grupa: Zarejestrowani
Postów: 175
Pomógł: 2
Dołączył: 22.03.2007
Skąd: localhost

Ostrzeżenie: (0%)
-----


Witajcie,
zabrałem się za robienie bramki Gadu-Gadu przez WWW.
I mam pare problemów z działaniem klasyphplibgadu autorstwa Anakina.
Gdy chce wysłać wiadomośc za pomocą tego skryptu :

  1. <?php 
  2. /* 
  3.  * @author : Anakin 
  4.  */ 
  5.  
  6. include 'phplibgadu.php'; 
  7.  
  8.  
  9. $gg = new GG; 
  10. $gg -> connect(12068549, 'hasło'); 
  11. $gg -> changeStatus(GG_STATUS_AVAILABLE_DESCR, '@WERT - Online'); 
  12. $gg -> sendMessage('6865186', 'Witaj') or die('nie można wysłać wiadmości');
  13. $gg -> disconnect('@WERT'); 
  14. ?>


Wywala mi taki bład :

CODE
Warning: fsockopen() [function.fsockopen]: php_network_getaddresses: getaddrinfo failed: hostname nor servname provided, or not known in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 338

Warning: fsockopen() [function.fsockopen]: unable to connect to appmsg.gadu-gadu.pl:80 (Unknown error) in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 338


drugi problem powstaje przy pobieraniu wiadomosci :

  1. <?php 
  2. /* 
  3.  * @author : Anakin 
  4.  */ 
  5.  include 'phplibgadu.php';  
  6.  $gg = new GG; 
  7.  $gg -> connect(12068549, 'hasło');
  8.  $gg -> changeStatus(GG_STATUS_AVAILABLE, '@WERT - Online');  
  9.  
  10.  while (1) {
  11.  sleep(1);
  12.  $gg->ping();
  13.  
  14.  // Sprawdzamy czy s? jakie? pakiety wys?ane do nas
  15.  if (($packet = $gg->readPacket()) === false) {
  16. continue;
  17.  }
  18.  
  19.  // Czytamy pakiety
  20.  $packet = $gg->handlePacket($packet);
  21.  
  22.  if ($packet['type'] == GG_RECV_MSG) {
  23.  
  24.  print ($packet['msg']);  
  25.  break;
  26.  }
  27.  }
  28.  $gg -> disconnect('@WERT'); 
  29. ?>


problem powstaje gdy skrypt ma odebrać wiecej niż jeden pakiet :/
CODE

Warning: fsockopen() [function.fsockopen]: php_network_getaddresses: getaddrinfo failed: hostname nor servname provided, or not known in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 338

Warning: fsockopen() [function.fsockopen]: unable to connect to appmsg.gadu-gadu.pl:80 (Unknown error) in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 338

Warning: fsockopen() [function.fsockopen]: unable to connect to 217.17.41.83:8074 (Operation timed out) in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 80

Warning: fwrite(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 111

Warning: fwrite(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 189

Warning: fread(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 203

Warning: fwrite(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 189

Warning: fread(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 203

Warning: fwrite(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 189

Warning: fread(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 203

Warning: fwrite(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 189

Warning: fread(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 203

Warning: fwrite(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 189

Warning: fread(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 203

Warning: fwrite(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 189

Warning: fread(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 203

Warning: fwrite(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 189

Warning: fread(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 203

Warning: fwrite(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 189

Warning: fread(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 203

Warning: fwrite(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 189

Warning: fread(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 203

Warning: fwrite(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 189

Warning: fread(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 203

Warning: fwrite(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 189

Warning: fread(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 203

Warning: fwrite(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 189

Warning: fread(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 203

Warning: fwrite(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 189

Warning: fread(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 203

Warning: fwrite(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 189

Warning: fread(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 203

Warning: fwrite(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 189

Warning: fread(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 203

Warning: fwrite(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 189

Warning: fread(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 203

Warning: fwrite(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 189

Warning: fread(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 203

Warning: fwrite(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 189

Warning: fread(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 203

Warning: fwrite(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 189

Warning: fread(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 203

Warning: fwrite(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 189

Warning: fread(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 203

Warning: fwrite(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 189

Warning: fread(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 203

Warning: fwrite(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 189

Warning: fread(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 203

Warning: fwrite(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 189

Warning: fread(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 203

Warning: fwrite(): supplied argument is not a valid stream resource in /home/wert/domains/wert.cyberdusk.pl/public_html/wert/gadu/phplibgadu.php on line 189


oraz gdy napisze wiadomosc przed zalogowaniem się skryptu

wtedy wogóle jej nie odbiera sad.gif

Ten post edytował wert1 11.01.2008, 20:29:49


--------------------
"Homo sum, humani nihil a me alienum puto."
"Necessitas ultimum et maximum telum est."
"Ventem seminabunt et turbinem metent."
"Gallia est omnis divisa in partes tres..."
Go to the top of the page
+Quote Post

Posty w temacie


Reply to this topicStart new topic
1 Użytkowników czyta ten temat (1 Gości i 0 Anonimowych użytkowników)
0 Zarejestrowanych:

 



RSS Wersja Lo-Fi Aktualny czas: 13.06.2025 - 16:43