Ervin Hegedus

Results 233 comments of Ervin Hegedus

Well, I've removed all Serial function call (no Serial.begin(), any .print()...), and the problem solved. Is there any explanation for this?

Hi stevstrong, I'm using arduino nano with ENC28J60. Library is uipethernet. Thanks, a.

Hi @stevstrong, thanks for your reply. That's a bad news for me - now I don't know, what can I do. Anyway, meantime I've ran into a (several) new problems....

Another issue - that's not linked to this original issue. Here is a small "syslog" routine: ```c void syslog(char *msg) { udp.beginPacket(IPAddress(192,168,72,254),514); udp.write("IPBridge "); udp.write(msg); udp.endPacket(); udp.flush(); udp.stop(); } ```...

He @stevstrong - thanks again your feedback. Yep, you're right - the board has run about 30 hours ago, now it answers all requests, but the syslog doesn't work much....

Wow! :) Thank you (köszönöm :)) again. I've found some other modules in .hu, in a chinese webshop (but the delivery time is only few days).

Hi @zimmerle there is one bug in libmodsecurity3, what I couldn't fixed yet. In the tests what I referred above, I've used a quick and dirty workaround for some CRS...

@ririsoft could you check this solution before I send the PR? https://github.com/airween/ModSecurity-apache/tree/smallfixes You can use it: ``` autoreconf --install ./configure ``` OR with optional arguments: `./configure --with-apache=/path/to/httpd --with-apxs=/path/to/apxs` Then you...

Hi @ririsoft I've never used DESTDIR, but after a quick check it looks like `make` supports DESTDIR argument only with "install" or "uninstall" arguments: https://www.gnu.org/prep/standards/html_node/DESTDIR.html > `DESTDIR` should be supported...

@ririsoft as @zimmerle said, this is the libapr's issue. I'll check it soon, how could we solve this.