Page 1 of 1 [ 2 posts ] 

Albinoboy
Yellow-bellied Woodpecker
Yellow-bellied Woodpecker

User avatar

Joined: 5 Aug 2010
Age: 29
Gender: Male
Posts: 70
Location: Surrey, England

09 Dec 2010, 7:29 pm

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?



mcg
Veteran
Veteran

User avatar

Joined: 26 Jan 2010
Age: 35
Gender: Male
Posts: 538
Location: Sacramento

09 Dec 2010, 9:17 pm

Try this:
$nil = NULL;
$ready=socket_select($read,$nil,$nil,$nil);