Recent content by Jake Bunce

  1. Jake Bunce

    XF 2.1 Recalculate Trophy Points?

    The same queries work in XF2. But in my testing it seems this might require the user to actually log in before the point values are actually updated.
  2. Jake Bunce

    I wonder where are current XenForo 2 devs from.

    Correct. California. Hi Lawrence!
  3. Jake Bunce

    Fixed table prefix not reliably applied by db adapter regex (affects IPB importer)

    This was initially reported by my customer as a problem with the IPB importer. The users step was failing due to one of the tables not existing. The reason for the error is because the table in question wasn't being properly prefixed in the executed query. I have tracked this down to a...
  4. Jake Bunce

    XF 2.1 Tabs become 4 spaces after upgrade from 2 to 2.1?

    Bug or not, you can try to affect this with CSS by adding this to your extra.less template: Admin CP -> Appearance -> Templates -> extra.less .bbCodeBlock.bbCodeBlock--spoiler > .bbCodeBlock-content { white-space: pre; } In my testing that preserves white space inside of the rendered...
  5. Jake Bunce

    Cannot reproduce Maximum selectable responses can't be changed to Single choice on a specifc poll

    I have examined the code and performed some testing. The software DOES let you make the change you are wanting, but only if the poll has not yet been voted on. Otherwise the conversion back to Single choice might conflict with current votes. I can see that some people have already voted on...
  6. Jake Bunce

    Fixed Inconsistent 404 behavior with ending slash in /tags route

    404 - https://xenforo.com/community/tags/customization works - https://xenforo.com/community/tags/customization/ works - https://xenforo.com/community/forums/bugs works - https://xenforo.com/community/forums/bugs/
  7. Jake Bunce

    vBulletin Big Board Importer [vBulletin 3 + vBulletin 4] [Paid]

    If memory serves, relatively few users were affected and my client was content to just deal with those situations with manual password resets. I didn't actually find a fix. It's probably an encoding issue.
  8. Jake Bunce

    Fixed route filters, ending slash

    I'm not sure if you would consider this a bug, but at the least it is a parity issue between XF1 and XF2. Create a route filter like this in both XF1 and XF2: In XF1 you can then visit: http://yoursite.com/index.php?important ...and the result is that it redirects you to...
  9. Jake Bunce

    Forum concept is dying, don't you think so?

    My room is a mess. I don't blame the room.
  10. Jake Bunce

    Forum concept is dying, don't you think so?

    I think we need to disambiguate. I would posit the following: forum = discussion and production of content social media = social interaction and consumption of content Forums are really intended to produce and organize content, especially original content, that is being contributed by a team...
  11. Jake Bunce

    Fixed Importing From vB 4.2.4

    Confirmed. src/addons/XFI/Import/Importer/vBulletin.php The mapUserFields() function doesn't correctly handle multiple choice fields where $fieldValue is an array. I was able to fix this by adding the red code: protected function mapUserFields(array $user, array $profileFieldChoices) {...
  12. Jake Bunce

    Password Reset Query

    Jake Bunce submitted a new resource: Password Reset Query - A database query to reset a user's password. Useful for recovery of admin login. Read more about this resource...
  13. Jake Bunce

    Unmaintained Password Reset Query

    You can use this query to reset a user's password. It is especially useful if you forget your admin password. You need to replace new-password and 1 (the user_id). You don't have to change salt, but if you do then both instances need to be the same. UPDATE xf_user_authenticate SET data =...
  14. Jake Bunce

    Not a bug "Report Resource Update" language not appropriate

    Posted on behalf of a customer. When reporting a resource: The suggestion here is that the language is inappropriate given that you are reporting the resource itself, not an update.
  15. Jake Bunce

    Fixed uncheck "Enable Animations, Using Multiplier" causes javascript error with ajax loading image

    1) Uncheck "Enable Animations, Using Multiplier" in the style properties. 2) Go to a forum on the front end. 3) Click "Watch Forum". 4) Click the "Watch Forum" button in the overlay to confirm. You will notice the loading image in the top right corner doesn't go away. The console shows an...
Top Bottom