Recent content by robdog

  1. robdog

    XF 2.3 Accessing OAuth Requests through Jobs

    Anyone needed to create an OAuth request through a job? (ie - not when a users session is active) I am going through this right now, but I am running into session issues(obviously). I am about to go through the process of not using the provider functionality within a job function, but I wanted...
  2. robdog

    XF 2.4 XenForo 2.4 status and what's new under the hood?

    Good stuff on some of these developer tools. Definitely going to help with my app development.
  3. robdog

    XF 2.3 AI agents

    Using AI every day now. Helped me rewrite a Java app that was crazy old. Its getting too good to ignore how much faster things can get built and deployed.
  4. robdog

    XF 2.3 Problem with multiple AWS PHP SDKs

    I think I have a fix. Just going to upload the SQS required files to the public/src/vendor folder. Fingers crossed that is the "easy" fix.
  5. robdog

    XF 2.3 Problem with multiple AWS PHP SDKs

    So I have successfully integrated an SQS job queue into my app, but I am running into an interesting situation. It appears that at times, it will look for the SQS client in the vendor folder that comes with XenForo. However, XenForo doesn't come with the SQS client SDK files/code. Is there a way...
  6. robdog

    Declaration Issue for Get Cache Items

    What Jeremy said... is there a specific reason you need to include the updated version of symfony?
  7. robdog

    XF 2.3 Has anyone needed to run multiple concurrent jobs at once?

    In my app, I have some long running jobs. Out of the box, XenForo runs one job at a time in pretty linear fashion. This is not a problem, but I wanted to see if any extended this to run jobs concurrently. My app will process documents and then process pages. (for an example) One document could...
  8. robdog

    Think of XenForo as a site, not (necessarily) a forum

    I can tell you that I have had no problem extended the system. The biggest hurdle was disabling most of the forum views and routes to redirect to the main index page. (and I am sure I still missed a few routes, lol) But the structure is there to build literally anything you want if you have the...
  9. robdog

    Think of XenForo as a site, not (necessarily) a forum

    Not sure how I missed this suggestion/thread, but this would be great if we could get the platform to this point. Definitely a lot of DEV work, so I don't see it happening anytime soon. However, I do have my core plugins that disable most of the forum specific functionality. Always a good...
  10. robdog

    Possible Issue with Stripe when Cancelling a Subscription from the Dashboard.

    Here is the payload that was sent to the callback: { "id": "[REMOVED]", "object": "event", "api_version": "2024-06-20", "created": 1740013651, "data": { "object": { "id": "[REMOVED]", "object": "charge", "amount": 2000, "amount_captured": 2000...
  11. robdog

    Possible Issue with Stripe when Cancelling a Subscription from the Dashboard.

    Sorry, good point. I cancelled the subscription AND issued a refund at the same time. The above information is the entire block(s) of information in the XenForo log. I can post what Stripe thinks was sent over.
  12. robdog

    Possible Issue with Stripe when Cancelling a Subscription from the Dashboard.

    The message I am getting in the AdminCP for the payment provider log is: Error: Event data received from Stripe does not contain the expected values. I looked in the Stripe developer dashboard and it sent the following data: DELETE /v1/subscriptions/sub_[SUB_ID] Response Body { "id"...
  13. robdog

    XF 2.4 Chunked uploads

    Definitely not the ideal way. If you are doing the upgrade process like this, I would do it late at night and use the setting in the admin panel to make the board "in active". Then go through that process you are talking about. Once you are done, re-activate the board. In an "ideal" world, you...
Back
Top Bottom