Jump to content

Daniel F

Invision Community Team
  • Posts

    6,592
  • Joined

  • Days Won

    37

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Projects

Forums

Events

Store

Gallery

Everything posted by Daniel F

  1. Somebody probably edited your post container template. Have you tried using the build in template search to search for "dsds" ?
  2. 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.
  3. 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.
  4. 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.
  5. Thanks, I have moved this to our bug tracker.
  6. 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.
  7. The above form is from a 3rd party app and not include in our core.
  8. Thanks, I have fixed this for an upcoming release.
  9. 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.
  10. Glad to see this resolved and thanks for sharing the reason, this might help others too.
  11. https://invisioncommunity.com/4guides/promotion/seo-r295/#furls
  12. What was the response? Did you get any error?
  13. Thx, we're aware of this. It happens only when the cleanup task is called via the cronjob
  14. I can't reproduce this. The tracking URL results in a link which contains the encoded URL with the email and key parameter , so the email and key parameters which are added by the tracking code don't conflict with the one in the url parameter. And I can also confirm that the unsubscribe link in the bulk email with enabled email tracking works correct and that I was redirected to the proper target once my clicks as logged. Have you tried to debug the target URL inside the redirect controller?
  15. We have fixed this for an upcoming release.
  16. They have deprecated the sitemap submission endpoint l. We’re aware of it. More information TBA 😉
  17. Yes exactly, these files contain data which don't change often. IPS will rebuild them while the next request. Further details and the alternatives to the File System can be found in our guides
  18. Yea, what @opentypesaid and keep in mind that due to the guest output cache 99% of the views won’t even be logged at all, while the download will be logged.
  19. {{if \IPS\Dispatcher::i()->application->directory == 'nexus'}} Your code to show only inside commerce {{endif}}
  20. I'm sorry for the confusion here, https://invisioncommunity.com/forums/topic/457431-ipb-as-a-lms/?do=findComment&comment=2869734 is still the last official reply here! I was only curious about your idea.
  21. The read state can't be shown because the widget output is cached, meaning that it would return the read state for the first visitor who triggered the widget output which was now cached and which is returned to every other member with the same groups/permissions.
  22. This one was resolved via the ticket.
×
×
  • Create New...