This in configuration.inc.php should be like this? Coz Windows don't support shared memory?
$chat_shm_enabled = 0; // use shared memory?
BUT is this working at all? (now $socket_blocking is zero)?
irc_connect($chat_irc_server, $chat_irc_port, 0);
In this case my bot only idle and do nothing!
Connection is working fine when I use this one ($socket_blocking=1):
irc_connect($chat_irc_server, $chat_irc_port);
INFO FROM MANUAL:
The parameter $socket_blocking is optional and defaults to 1. This specifies wether to use blocking sockets or not. Non-blocking sockets are causing a high CPU load but will cause idle timers to be called whenever phpIRC idles. Idle timers need to sleep for some time in this case. If you're using blocking sockets, phpIRC will put much less load on system resource usage (default behaviour), but will also be unable to call idle timers (they do get called frequently however whenever a message is read).