Taki Elias
Taki Elias
> @takielias > > Have you solved this query ? if yes please share I am also stuck. Sorry, I could not make it. I'm also looking for a solution.
How can I reproduce this error? Can you please explain?
Maybe you can do it by extending [ConnectionInterface](https://github.com/ratchetphp/Ratchet/blob/master/src/Ratchet/ConnectionInterface.php). Or you may add an extra property of the attached object.
There is a Pending pull request. But it's not resolved yet. You may check it.
Can you please explain it?
On Unix systems, every user that connects to your WebSocket server is represented as a file somewhere on the system. As a security measurement of every Unix-based OS, the number...
Hi, did you check #20 ?
@rodriguesfas can you please try [this](https://github.com/takielias/codeigniter-websocket-example) ?
@rodriguesfas @JacoSJKruger Please look at the Welcome.php controller. public function index() { // Load package path $this->load->add_package_path(FCPATH . 'vendor/takielias/codeigniter-websocket'); $this->load->library('Codeigniter_websocket'); $this->load->remove_package_path(FCPATH . 'vendor/takielias/codeigniter-websocket'); // Run server $this->codeigniter_websocket->set_callback('auth', array($this, '_auth')); $this->codeigniter_websocket->set_callback('event',...
> Hi there, Thanks your suggestions did work indeed. I have another question though. Using php, how can I check which clients are currently active? My problem: What is a...