Marvin Lukaschek

Results 11 comments of Marvin Lukaschek

Changing [line 3031 in includes/sb-callback.php](https://github.com/sbpp/sourcebans-pp/blob/1.6.3/web/includes/sb-callback.php#L3031) from ```PHP $ret = $r->sendCommand('sm_psay "'.$name.'" "'.preg_replace('/[^A-Za-z0-9\ ]/', '', $message).'"'); ``` to ```PHP $ret = $r->sendCommand('sm_psay "'.$name.'" "'.$message.'"'); ``` should fix that. Not sure why...

Interesting. Since it's the first time coming up here, can you verify that [`mail()`](http://php.net/manual/en/function.mail.php) is working outside of SourceBans++, just to make sure that it isn't some kind of configuration...

I'm already working on it

Tbh I have done most of the updates from ADODB to PDO [here](https://github.com/Groruk/sourcebans-pp/commits/master), but I also encountered some strange behavior of PDO with SourceBans++ (these are mostly easy to fix,...

HTTP Response code 500 is `Internal Server error`, so it could be a multitude of different error source. A good starting point would be to look through your `apache` and...

Yeah, neither SourceBans++ nor Xajax have CSRF protection. SourceBans++'s SessionManager is currently getting some updates, mainly to fix recurring session timeout issues for some users, but also to step up...

No, those `IN_*` constants in PHP, mostly serve the sole purpose of preventing people to run accessible PHP scripts that contain some kind of business logic.

This will be one of them first features that will be worked on after SourceBans++ 1.7.0 releases as a stable version. I think caching in the webpanel should be enough....

I have to agree with @geominorai, the coding style becomes quite hard to read, especially when multiple closing brackets are placed on the same line. For example here: https://github.com/sbpp/sourcebans-pp/blob/dfcced280bb8e8b8aecc891549e5018176cb50db/game/addons/sourcemod/scripting/sbpp_checker.sp#L199-L205 ---...