Recent content by ivp

  1. I

    Spam action doesn't wipe all profile data

    When marking a user as "Spam", all profile fields should be cleared. Right now, sections like Personal Details, Profile Info and Additional Contact stay filled in, often with spammy links, fake contact info, or spam content. These accounts are typically created just to spread such data, so...
  2. I

    replaceSmiliesHtml template compilation error

    Haven’t touched the database lately, so this came out of nowhere. Could be leftovers from a vBulletin import ages ago, or as a consequence of running php cmd.php xf:convert-utf8mb4. Interesting that phpMyAdmin also couldn’t update the values and returned something like "JSON encoding failed"...
  3. I

    replaceSmiliesHtml template compilation error

    Here's a quick-and-dirty fix for cleaning up badly encoded messages. Important: It forces conversion to Latin characters and strips everything else. List such messages: SELECT post_id, message FROM xf_post WHERE message LIKE BINARY CONCAT('%', _binary 0xed, '%')...
  4. I

    Add "Edit account" button to profile page

    User profile page contains links to edit avatar and edit profile banner. It should also have a button to edit account details (/account/account-details).
  5. I

    Duplicate Editor inserts line break with smiley

    Using Google Chrome browser. Didn't notice particular issue in XenForo v2.3.6.
  6. I

    Duplicate Editor inserts line break with smiley

    Steps to reproduce: Type some text in editor Begin typing text shortcut for smiley, e.g. :oo Wait for drop down menu to appear Select smiley from the list Editor inserts both smiley and line break before it. Line break should not be inserted. This issue was not present in v2.3.6. See example...
  7. I

    Signup abuse detection and blocking [Paid]

    The problem isn't the links - it's the troublesome behavior of such members.
  8. I

    Signup abuse detection and blocking [Paid]

    Some users are creating accounts via regular ISPs to avoid being detected and then switch to VPNs/proxies. It would be useful to have an option to either (1) prevent posting or (2) send post to approval queue when a VPN/proxy is detected.
  9. I

    XF 2.2 The user views the deleted message

    Created a suggestion for this: https://xenforo.com/community/threads/allow-members-to-view-deleted-content-in-notifications.230975/
  10. I

    Allow members to view deleted content in notifications

    When a member gets a notification about a deleted post, it would be useful if they could see the content that was removed. This would allow them to learn what is not allowed, serving as a helpful guide. Right now, they have no idea which content has been deleted. We could offer a link that...
  11. I

    [Liam W] (RIP) Member Self Delete

    @Ozzy47 please be so kind to add to wish list deleting user's XFMG albums in finaliseDeleteDisable() function: $albumRepo = \XF::repository('XFMG:Album'); $albumList = $albumRepo->findAlbumsForUser($this->user); $albums = $albumList->fetch(); foreach ($albums AS $album) { /** @var...
  12. I

    Username auto-complete using XFES [Paid]

    The last task during upgrade from 1.6.0 to 1.6.2 failed with timeout connecting to Elasticsearch. Tried optimizing "Users" index, but it reports again: XFES\Elasticsearch\ConnectException: cURL error 28: Operation timed out after 20000 milliseconds with 0 bytes received (see...
  13. I

    Support for Facebook's reel URL embedding

    Found that it is working if instead of: https://www.facebook.com/reel/2350072485349531 use the following: https://www.facebook.com/facebook/videos/2350072485349531
  14. I

    Duplicate No notification on mention after post edit

    Deleting and reposting is just a workaround. There is no valid reason to handle post edits differently. Our members have raised concerns about not receiving notifications, despite their names being clearly mentioned in the post.
  15. I

    Duplicate No notification on mention after post edit

    Steps to reproduce: Write post Edit that post Add user mention in edited post: @someuser Save post The user 'someuser' does not receive notification about that mention.
Back
Top Bottom