Jump to content

Daniel F

Invision Community Team
  • Posts

    6,581
  • Joined

  • Days Won

    37

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Everything posted by Daniel F

  1. Ask your host if they’re using suhosin or any WAF ( web application firewall) . most of the time it’s either a WAF which is blocking the request because a security rule was trigger or suhosin blocking huge requests like when editing a template.
  2. You have to upload the content of the folder to your HQ directory.
  3. Glad to see this resolved. Yes, we’re posting here, but it may take longer to get a reply on weekends.
  4. From the 4.6 changelog: - Removed support for Twitch embeds as Twitch has removed their oembed endpoint with no plans to introduce a new one.
  5. Saturday 2am - The best time for coding and MP reviews.
  6. I have updated the dev guide with some additional information, so any 3rd party devs which are interested into utilising this in their applications and plugins should already be able to implement this on their own to have it ready once 4.6.10 is here
  7. Was the rule applied to anybody? Keep in mind that group promotions are only called when the member object is saved( e.g. when somebody gets logged in, the profile gets updated , etc..)
  8. This was available prior IPS 4.3.6 but removed because of performance reasons.
  9. The datastore was out of sync with the database .. That’s by the way what I said in literally the first reply in this topic 😞
  10. You'll have to ask the ask the author of the classifieds app for support with his app:)
  11. Yes. IDE's can support this too ( https://github.com/codingjungle/toolbox )
  12. Once you enable IN_DEV, you can also use the hook editor to see all available properties and methods 🙂
  13. Somebody probably edited your post container template. Have you tried using the build in template search to search for "dsds" ?
  14. Right now you're only able to create programatically ( see applications/core/api/webhooks.php for an example ), but starting with 4.6.10 there's now also an UI to manage webhooks.
  15. Webhooks allow other services and applications to stay in sync with your community data or to perform an action after a specific event occurs in your community. Webhooks are a performant alternative to continuously polling for changes to the IPS REST API. For example, a webhook can notify your service when a new topic is created so that your app can perform then any further actions. Webhooks can also be used to connect your community with Zapier, IFTTT or Integromat, so that any event which is covered by webhooks can trigger any further actions. Common webhook use cases Sync your member base with 3rd party newsletter lists Sync your Event RSVP with your Online Ticketing System Update your inventory after a purchase was made You can find the webhook functionality in the AdminCP, under the API section. There is also a useful webhook reference built in. Setting up a webhook Setting up a webhook is straightforward. Log into your AdminCP, then navigate to System > API. The target URL would be defined by the application you wish to fire events to. For example, in Zapier, you can set up a trigger to listen for a webhook event via a custom URL. Once you have entered the URL, simply check which events you'd like to fire to that URL. Zapier will ask you to test the URL, so to do this simply invoke the action which fires the webhook event, such as creating a test topic. Documentation If you are looking to add webhook events into your own custom code and applications, please see our documentation here. Webhooks will be implemented in 4.6.10 and will be enhanced frequently.
  16. We have located the issue. A chrome extension was causing issues with the request?! Very very very weird, but once it was disabled, editing profiles worked again.
  17. Thanks, I have moved this to our bug tracker.
  18. I can't reproduce this. The description text from the forum is black on the frontend, while it's white in the backend on the dark theme, but black with the light theme.
  19. The above form is from a 3rd party app and not include in our core.
  20. Thanks, I have fixed this for an upcoming release.
  21. Which endpoint did you use? You could either use the forums/topics or core/search endpoint for this. Webhooks support this already, BUT I don’t think that they would make you happy in regards to your previous question, bedusle webhooks are used to notify other apps/services about a specific event which happened just now. So an example: you’ll want to use the REST API to retrieve the recent X topics, files or members by either sending a manual request or polling the data frequently, but you’ll want to use webhooks to get an instant notification which is triggered by your community. This also means, that the webhook request also contains ONLY the one object (*) which triggered the event, like the topic and not the last x topics! * there are of course also some cases where’s more then only the item in a hooks payload. For example the calendarEvent_rsvp webhook will contain the event, the attendee member object and the new state as payload.
×
×
  • Create New...