Recent content by stromb0li

  1. S

    API - Send body as json

    Reopening since other threads are locked: https://xenforo.com/community/threads/rest-api-add-ability-send-json-bodies.168785/ https://xenforo.com/community/threads/implement-json-requests-to-rest-api.190390/
  2. S

    XF 2.3 Oauth2 Client - Cannot get scope to show up on consent page

    That was it! Forgot to request for the parameter from the client 🤦‍♂️
  3. S

    XF 2.3 Oauth2 Client - Cannot get scope to show up on consent page

    I have an add-on I'm building, but am struggling to identify why I cannot see the api scope I have defined showing up on the user conscent page: <?xml version="1.0" encoding="utf-8"?> <api_scopes> <api_scope api_scope_id="myapp:delete_hard"/> <api_scope api_scope_id="myapp:read"/>...
  4. 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.
  5. 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?
  6. 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...
  7. 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?
  8. 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.
  9. S

    XF 2.3 > 30k character post

    This is exactly what I was looking for! Thank you!
  10. 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.
  11. 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.
  12. 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) {...
  13. 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.
  14. 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...
Back
Top Bottom