Recent content by Vekseid

  1. Vekseid

    XF 2.2 Xenforo returning 404 when POSTing to API

    Apparently, the API was unable to find the forum by name on the live forum, though it could on the test forum. Resolved, sortof, but several things in this chain are bugs.
  2. Vekseid

    XF 2.2 Xenforo returning 404 when POSTing to API

    Through the power of editing phrases one by one I've found this one comes from assertRecordExistsByUnique in Mvc/Controller.php
  3. Vekseid

    XF 2.2 Xenforo returning 404 when POSTing to API

    This has been causing me no end of frustration. A user wants me to move a thread for them. We have an import script written. - On my test forum, it runs perfectly. Posts the thread. - On my live forum, it fails when it tries to post a thread. Error 404 in POST at...
  4. Vekseid

    Granular Administrator Permissions

    This functions in 2.2 yes.
  5. Vekseid

    Possible to use external url as avatar?

    Older versions of Internet Explorer had a bug that would run scripts in any embedded file they found. I ended up forcing even signature images to be local on my own forum because the stuff people put in their signatures would often slow down the entire page.
  6. Vekseid

    mySQL Query to find Users with complex specifications

    Try adding aliases, sorry. Does this work? select o.user_id from {{table}} as o where o.user_id != {{userid}} and o.user_answer_id in (select p.accepted_answer_id from {{table}} as p where p.user_id = {{userid}}) having count(p.user_answer_id) >= 2;
  7. Vekseid

    mySQL professionals - I need a Query

    This appears trivial. Posted a solution though I may have a typo or swapped something around on accident. Test the independent queries first.
  8. Vekseid

    mySQL Query to find Users with complex specifications

    select user_id from {{table}} where user_id != {{userid}} and user_answer_id in (select accepted_answer_id from {{table}} where user_id = {{userid}}) having count(user_answer_id) >= 2; select user_id from {{table}} where user_id in (select user_id from {{table}} where user_id != {{userid}} and...
  9. Vekseid

    Fixed Froala editor is effectively non-functional for rich text in Android.

    To be clear, I am able to reproduce this issue here, on my own dev forum, and on Froala's site.
  10. Vekseid

    Not a bug Email bans can be bypassed with sub-addressing and dots

    Periods not being relevant is a GMail-only thing. Sub-addressing can be done with any character, depending on the server's setting. + addressing is the default, but others use - addressing, + or -, or other characters. I use underscores on my server, for example. While this is certainly a...
  11. Vekseid

    Fixed Froala editor is effectively non-functional for rich text in Android.

    I have verified this on some of Froala's own demo sites, so this is a Froala issue directly, but figured I would report it here. Users report one of two issues: 1) The buttons instantly disable themselves on being enabled. This happens most often in Firefox. 2) Turning off a button will reset...
  12. Vekseid

    Chat 2 by Siropu [Paid]

    Apparently, a data rebuild fixed this. I have no idea what got borked. : /
  13. Vekseid

    email to post?

    The only forum software I know of that does this is Elkarte.
  14. Vekseid

    Chat 2 by Siropu [Paid]

    XF, Chat, and PHP (7.4). I'm still looking into one of my own extension issues before I can properly debug this.
  15. Vekseid

    Chat 2 by Siropu [Paid]

    After upgrading, chat no longer functions, spamming the following error: Uncaught TypeError: x is undefined editorSetPlaceholder https://bluemoonroleplaying.com/community/js/siropu/chat/core.min.js?_v=9b8dcd7e:1 _initTabs...
Top Bottom