Recent content by stromb0li

  1. S

    Disabling OAuth2 clients don't disable

    I'm unable to disable an OAuth2 client. I see "Your changes have been saved.", but on page refresh, the app continues to show enabled. Edit: I can disable/enable if I check/uncheck the "Client is active" checkbox in the app. It's only the toggle buttons that seem to not persist the change.
  2. S

    Happy Birthday Emails

    Isn't it already implemented? You can skip banned users, specify minimum message count they need to have, and you are only selecting the groups you want the message to be sent to. Do you have specifics on what you are looking for?
  3. S

    XF 2.3 How to force dkim validation

    Appreciate the response and share. I ended up setting up enabling signing on my mailserver and abandoning XF's implementation, given the limited ability to troubleshoot and manage the records. For someone else that decides to give it a go, this post was really helpful in understanding how...
  4. S

    XF 2.3 How to force dkim validation

    Is there a way to force XenForo to try DKIM validation after validation again instead of waiting 24 hours?
  5. S

    Allow retrieval of configured DKIM txt record

    There's no way to retrieve the current DKIM txt record configuration after DKIM setup has started via admin CP. Please allow the ability to retrieve the record configuration.
  6. S

    XF 2.3 > 30k character post

    This is exactly what I was looking for! Thank you!
  7. S

    Allow Maximum message length set per forum vs globally

    Please allow the ability to set Maximum message length per forum. We have some forums that are of type article where they can be lengthy. For other forums, we would like the limit lower to keep discussions more brief per post.
  8. S

    XF 2.3 > 30k character post

    Is there a way to allow a particular forum to allow greater than 30k characters? Edit: looks like this is controlled by Maximum message length, but that is non-configurable per forum.
  9. S

    Unable to preserve image resolution

    Per the HYS threads back when 2.3 was released, I also read this. I've tried the following and still see the image compressed to the 2.1MB filesize. ... $upload = $this->request->getFile('upload', false, false); if ($upload) {...
  10. S

    Unable to preserve image resolution

    In Admin CP, we left the restrictions blank and also tried setting as 0 and still saw compression applied to the images.
  11. S

    Unable to preserve image resolution

    In 2.3.x, it appears images are always resized client side prior to upload, even if under attachments, we set image optimization to "Do not optimize". If I take a 300 dpi image that is about 20MB and upload, it is compressed down to about 2MB (which is great for those that don't want the...
  12. S

    XF 2.3 How do I unlock an account?

    In order to unlock an account, you will need to delete the entries for the user out of the xf_login_attempt table; there is no option to unlock an account via Admin CP. Posting this as a question here since I couldn't find this via search.
  13. S

    XF 2.3 Reply to thread by email

    Sorry to bubble this up, but follow up question. If not, has anyone built such an add-on? :D
  14. S

    XF 2.3 Textarea spellcheck

    I have a textarea input but when I add the "spellcheck="true" attribute, I still don't see the squiggles on mispelled words. Is there something specific I need to add to the field to allow spellcheck recommendations? <xf:textarea placeholder="My placeholder" name="field1"...
  15. S

    XF 2.2 Output HTML without PAGE_CONTAINER

    Sorry to bubble up an old topic, but can you provide an example of how to reference different view within the same class? E.g. return $this->view('Some\AddOn:Some\Page', '', $viewParams); // Goes to renderRaw1 return $this->view('Some\AddOn:Some\Page', '', $viewParams); // Goes to renderRaw2
Back
Top Bottom