Wo liegt der Fehler? Haben die bei ICQ was umgestellt?
Hier mal der MOD:
Code: Alles auswählen
##############################################################
## MOD Title: Add phpMyAdmin Link
## MOD Author: SubArea < board@subarea.net >
## MOD Description: Sends you a notification via ICQ (Trillian)
## if a new user registers to your board.
## MOD Version: 1.0.0
##
## Installation Level: Easy
## Installation Time: 2 Minutes
## Files To Edit: includes/usercp_register.php
## Included Files: n/a
##############################################################
## Authors Notes:
##
## In the BEFORE, ADD action below, I use the text YOUR-ICQ-NUMBER.
## You should replace this with your ICQ-Number.
##
## This one was testet with Trillian 0.74 (www.trillian.cc)
##
## Future versions can be found at http://www.subarea.net
## I've set up a support forum for my mods at http://www.subarea.net/board
##
## This MOD is released under the GPL License.
## Intellectual Property is retained by the MOD Author(s) listed above
##############################################################
## Before Adding This MOD To Your Forum,
## You Should Back Up All Files Related To This MOD
##############################################################
#
#-----[ OPEN ]------------------------------------------
#
includes/usercp_register.php
#
#-----[ FIND ]------------------------------------------
#
//
// Get current date
//
#
#-----[ BEFORE, ADD ]------------------------------------------
#
//
// Start ICQ-Pager
//
$pager_uin ="YOUR-ICQ-NUMBER";
$pager_message ="New User:++" . $username;
$req = "&from=phpBB++&to=" . $pager_uin . "&body=" . $pager_message . "&fromemail=%40";
$header .= "POST /whitepages/page_me/ HTTP/1.0\r\n";
$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
$header .= 'Content-Length: ' . strlen($req) . "\r\n\r\n";
$fp = fsockopen ('web.icq.com', 80, $errno, $errstr, 30);
if (!$fp) {
echo "$errstr ($errno)";
}
else {
fputs ($fp, $header . $req);
while (!feof($fp)) {
$res = fgets ($fp, 1024);
}
fclose ($fp);
}
//
// End ICQ-Pager
//
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM