Alexandr Chernyaev
Alexandr Chernyaev
Hey @vladitot. I am not experiencing any problem with deleting users. How can I reproduce your problem?
I don't think it needs to be changed now. But I think it would be great to describe the problem and its solution for those who will face it in...
What do you think of such a non-database solution: ```php $search = mb_strtolower($search); $query->whereRaw("LOWER({$property}) LIKE ?", ["%{$search}%"]); ```
I have nothing against your suggestion. Would you like to prepare a PR? But you also need to consider other columns: https://github.com/orchidsoftware/platform/blob/8b68fcb2571a302135f21f3a987434d8959f804e/src/Platform/Http/Controllers/Systems/RelationController.php#L89
Hey. All is correct, usually such ports require access rights. Change the port, for example, to `8081` or write this command using the administration rights (in case no other program...
Initiate what? It just allows data exchange. If you want the server to give some information and initiate the messages, then just send it. For this you can use [Pawl](https://github.com/ratchetphp/Pawl)
Yes. I'm using a queue, but it works on normal events too ```php namespace App\Listeners; use App\Events\OrderShipped; use SocketClient; class SendShipmentNotification { /** * Handle the event. * * @param...
The package does not work with the module enabled. Please disable it Debugger always analyzes the script and stores it in memory, since the socket does not die, this results...
This package [requirement](https://github.com/ratchetphp/Ratchet/blob/master/src/Ratchet/App.php#L66) I know that there were a lot of problems with this when the xdebug was turned on. https://github.com/ratchetphp/Ratchet/issues?utf8=%E2%9C%93&q=xdebug
Hi @chantrea It duplicates #12 please note that you answered and gave [instructions](https://github.com/orchidsoftware/web-socket/issues/12#issuecomment-440929149) You must ensure [proxying of requests](http://httpd.apache.org/docs/2.4/mod/mod_proxy_wstunnel.html) through your main server (in this case, apache) _Example:_ ```apache ServerName...