Code:
ircservices@LXS-SC1:~$ php server.php
Fatal error: Only variables can be passed by reference in /home/ircservices/server.php on line 57
ircservices@LXS-SC1:~$ vi +57 server.php
Next couple of lines is just here to give you a little idea of whats going on
Code:
for($i=0; $i < $config['max-conns']; $i++){
if($this->client[$i]['sock'] != null){
$this->read[$i+1]=$this->client[$i]['sock'];
}
}
}
/* Connecting User */
function connecting($config){
$read=$this->read;
And this is the line that's causing the error
Code:
$ready=socket_select($read,null,null,null);
And more stuff
Code:
/* Add Client */
if(in_array($this->sock, $this->read)){
for($i=0; $i < $config['max-conns']; $i++){
if($this->client[$i]['sock']==null){
$this->client[$i]['sock']=socket_accept($this->socket);
echo '[CONNECT] New client connected\n';
break;
}elseif($i==$config['max-conns']-1){
Any idea how I can fix this (stupid) error?