Recent content by tlamprecht

  1. 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...
  2. 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...
  3. 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...
  4. 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:
  5. 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...
  6. 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...
  7. 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.
  8. 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')); }...
  9. 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...
  10. 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...
  11. 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...
  12. 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...
  13. T

    XF 2.2 Users can still submit new threads if already in the moderation queue, allowing to bypass spam-detection/cleaner limits

    Hi, We configured "Maximum messages to check for spam" to 15, as with that amount of valid messages (i.e., not hanging in the approval queue) its highly unlikely that a user starts spamming, so the "Spam cleaner user criteria" setting was also set to 15 for similar reasons and because we...
Top Bottom