F1F88

Results 17 comments of F1F88

It should be a bug with a regular expression matching error. You can try modifying this line in includes/system-functions.php https://github.com/sbpp/sourcebans-pp/blob/8327d11807db3d300ce062625ac5ae5ca75f214c/web/includes/system-functions.php#L381 Modify to: ``` $regex = '/#\s*(\d+)(?>\s|\d)*"(.*)"\s*(STEAM_[01]:[01]:\d+|\[U:1:\d+\])(?>\s|:|\d)*[a-zA-Z]*\s*\d*\s([0-9.]+)/'; ```

I'm also having this issue now, does anyone know how to fix it? Operating System: Windows Server 2012 SourceBans++ Version: 1.8.0 PHP Version: 8.1.1 MySQL Version: 8.0.12

> @yy857 Hello. Do you have any PHP/JS errors or warnings (client or server side) when you try to login? No. I set "display_errors=On" in the php.ini, but I didn't...

I think this should be caused by 'Cross Origin Resource Sharing'. A simple solution is to ensure that the domain name configured when adding a website matches the address accessed...

I solved this problem in Ubuntu 24.04 LTS system using @skrrtn method ```shell wget https://launchpad.net/ubuntu/+source/ncurses/6.4-2/+build/25522504/+files/libtinfo5_6.4-2_i386.deb sudo dpkg -i libtinfo5_6.4-2_i386.deb ``` If the installation encounter an error message to overwrite the...

I'm also experiencing this problem, and a look at `sourcemod/logs/error.log` shows that the server has been crashing and rebooting repeatedly from 19:00 on the 12th until 18:00 on the 13th....

If it is confirmed that the simplified Chinese language code of mmdb is "zh-CN", would it be better to modify the variable code directly? Even if mmdb does not contain...

> sourcemod default mmdb version didnt contain zh-TW, so it will cause error. > > i not sure if mmdb is customizable. This does not cause an error, but returns...

I think it's a good idea to support passing variable parameters. Variable parameters are only available for VFormat, which will significantly increase the complexity of the code in some cases.

**Test cases :** ```sourcepawn #include #include public void OnPluginStart() { int cnt = 0; int ent = -1; while ((ent = FindEntityByClassname(ent, "*")) != -1) { PrintToServer("count = %d, entity...