jiriermis

Results 6 comments of jiriermis

I've added the condition and the error message is gone. Unfortunately expanding the child or clicking on child's action always reloads the whole page instead of ajax processing. There must...

Hello, Is there any plan to release DSM 7.x compatible version please? Thank you

I would be nice to have such icon for *.latte files. Thanks

I seems that it will work if you update pattern for %u like below `'%u' => '(?P(?:-|[\\\\\_\w\-\.]+))',`

I tried the following custom patterns: `$parser->addPattern('%u', '(?P(?:-|[\\\\\_\w\-\.]+))');` then $parser->getPCRE() contains '`(?P(?:-|[\\\_\w\-\.]+))'` // There are missing back slashes. `$parser->addPattern('%u', '(?P(?:-|[\\\\\\\\\_\w\-\.]+))');` then $parser->getPCRE() contains `'(?P(?:-|[\\\\\_\w\-\.]+))'` // Now correct back slashes. `$parser->addPattern('%u',...

Hi @kassner The parser doesn't work for common format of Apache log if the line contains backslashe. e.g.: `::1 - DOMAIN\\user_name [03/Feb/2023:18:50:42 +0100] "GET /app/index.php HTTP/1.1" 200 229931` Two backslashes...