Recent content by tlamprecht

  1. T

    Confirmed Editor - Insert Code takes the first line only

    Any update for this bug? As this is quite annoying for any community dealing with lots of log/config/... output that tends to be wrapped in these tags. FWIW, we updated to 2.3.5 yesterday, no changes in this regard. I can understand that such editors are complex, so a very quick fix might not...
  2. T

    Fixed Passkey registration failed: Data too long for column 'credential_id' at row 1

    We got a few similar server error logged over the last days: ErrorException: Passkey registration failed: MySQL query error [1406]: Data too long for column 'credential_id' at row 1 src/XF/Error.php:82 Stack trace #0 src/XF.php(266): XF\Error->logError('Passkey registr...', false) #1...
  3. T

    MySQL query error: Deadlock found when trying to get lock in UPDATE xf_user

    I've seen a few similar posts, not sure how related this is with them though. And FWIW, I never saw this error in the last decade running XenForo, but now got it once a day after finally upgrading from v2.2 to v2.3.4. UPDATE xf_user SET message_count =...
  4. T

    Fixed stop forum spam email hashing doesn't seem to work

    Yes, but IMO this is in the area of being technically correct, but still worse UX than it could be. As at least I definitively don't derive such a bit subtle semantics hints from which subgroup some option is included in, especially if it talks about "submission" and the whole thing is split...
  5. T

    Fixed stop forum spam email hashing doesn't seem to work

    Thanks for your answer! Well the label and the description of that option are rather confusing then, as that reads: is clearly talking about submission, not just about doing so when checking against the SFS DB. And yeah, SFS is definitively the actual place that would need to improve. For...
  6. T

    Fixed stop forum spam email hashing doesn't seem to work

    Hello, We got a report from a new forum user that their freshly created email alias (using the proton email provider) used to create an account on our forum quite quickly got spam and phishing messages afterwards. Something that didn't happen with other such aliases used by them. I then...
  7. T

    Duplicate ICODE tags add extra disruptive new lines before, inside and after tag since v2.2.12

    ah thx, I searched for "icode" in this forum but did not find that thread. But I don't see that part adressed there:
  8. T

    Duplicate ICODE tags add extra disruptive new lines before, inside and after tag since v2.2.12

    Hi, ran into this a few times since a while already, but only got finally annoyed enough for opening a report today. Since v2.2.12 selecting a few words, then pressing the Inline code button adds disruptive new lines we need to manually remove again, e.g.: let's show with a screenshot, first...
  9. T

    Fixed [E_WARNING] Attempt to read property "result_count" on null

    I fixed it manually anyway, like I had to do when the devs messed up earlier (thus this thread which I provided the workaround for until it got actually fixed). Sure, I can hack around manually, or the XF devs just can adhere to some proper software release hygiene, I mean we pay for that after...
  10. T

    Fixed [E_WARNING] Attempt to read property "result_count" on null

    They need to release an updated one with a higher version number then so that XF can pull that in, you cannot just update an already released ZIP - what's out is out.
  11. T

    Fixed [E_WARNING] Attempt to read property "result_count" on null

    Me too, I just re-applied my fix: https://xenforo.com/community/threads/e_warning-attempt-to-read-property-result_count-on-null.207377/#post-1583052 IOW. edit src/XF/Pub/Controller/Search.php and insert: if (!is_object($search)) { return $this->message(\XF::phrase('no_results_found')); }...
  12. T

    Clarify "Automated bounced email handler" encryption options

    Please rename the options in the email server/credential setup for automatic bounce handling to less confusing terms, namely: Current TLS should get renamed to STARTTLS, as STARTTLS is a) opportunistic encryption and b) not necessarily using TLS, if encrypted. Current SSL should get renamed to...
  13. T

    Fixed [E_WARNING] Attempt to read property "result_count" on null

    Not if the fix is in another file, there maybe just some outside assumptions that got wrong with the last update. The workaround here that came from myself initially is pretty safe though and worked OK since Thursday, also, it'd be easy to remove even if a fix gets out that doesn't touch this...
  14. T

    Fixed [E_WARNING] Attempt to read property "result_count" on null

    Not yet, see: and 2.2.11 is not yet available. FWIW, the errors are harmless, but due to their amount (depending on your setup) they may drown out other, possibly relevant errors. My stop gap workaround from this thread still works, albeit it will result in a There are 1 missing files or files...
  15. T

    Fixed [E_WARNING] Attempt to read property "result_count" on null

    Yeah I rather have a daily file integrity warning until a fix is released than dozens of error log entries per minute.. So I applied the following diff as stop gap: --- src/XF/Pub/Controller/Search.orig.php 2022-07-14 09:15:02.888904630 +0200 +++ src/XF/Pub/Controller/Search.php...
Back
Top Bottom