webim
webim copied to clipboard
使用PHP+Swoole实现的网页即时聊天工具
http://webim.swoole.com/无法访问
![Uploading 截屏2021-08-03 上午10.43.26.png…]()
page/login Not Found 应该怎么解决呢
`Uncaught RuntimeException: failed to connect mysql server. in /website/wwwroot/webim/src/Pool.php:26 ` 我自己的mysql肯定没问题的,试过各种改configs/db就是死活报这个错
希望能参考一下,这个可以跑起来
src/Server.php的line519原来为 $this->db->escape(json_encode($msg)); client发消息后 ,server报错:Fatal error: Uncaught Error: Call to undefined method Swoole\Coroutine\MySQL::escape() in webim/src/Pool.php:48 改为 $_msg = Filter::escape(json_encode($msg));后程序执行正常。 烦请看一下修改是否正确。