Aleksey Andreev
Aleksey Andreev
> I have this error in my crons It was fixed two week ago: https://github.com/liuch/dmarc-srg/commit/ff37a1759f68caad1c653af7720cdebe19baadd8
A couple other corrections: ```patch -for (var i = 0; i < $links.length; i = ++i) { +for (var i = 0; i < $links.length; ++i) { ``` ```patch -for...
I can't reproduce it either, but I have added one check to try fixing the crash: a973e1405a1fdada2bbcdb5643f4f3f88ab5209d Can you check it out?
Hello, Check to see if you have an updated database structure: `php -f utils/database_admin.php status` Are the IP addresses displayed in the web interface for the same period?
> Because there might be encoded IP6 2A0227AB00000002000000000000082D. and it is way longer than 16 chars. Hm. ``` $ php -a php > echo strlen(inet_pton("ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff")); 16 ``` Could you please...
> Why do only me have this problem? I don't know. It could be a php problem or a database problem. To check out php, execute the following php code:...
> I am using mariaDB 10.6. Probably that is the problem? (you mentioned 10.11) Unfortunately, I don't remember why I chose this particular version. Perhaps the problem is not with...
Is this issue still relevant?
Hi VilainMamuth, williamdes, Quoting column names is not necessary in my implementation. I find it convenient (to search for fields and table names in code), but I'm not willing to...
@VilainMamuth If I make a modification (moving to Common and removing name quoting), can you modify your PR?