Jump to content

Daniel F

Invision Community Team
  • Posts

    6,568
  • 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. This is fixed in the upcoming February release.
  2. Ive found an issue with trailing slashes which is fixed for the next release which will be released tomorrow
  3. Are you both on the recent version?
  4. I have logged a bug report and will take a look at this on monday.
  5. Yes, the full string. That's from my live board: I'm investigating this right now. Last time the necessary code was missing from the hook
  6. Thank you for bringing this issue to our attention! I can confirm this should be further reviewed and I have logged an internal bug report for our development team to investigate and address as necessary, in a future maintenance release.
  7. Thank you for bringing this issue to our attention! I can confirm this should be further reviewed and I have logged an internal bug report for our development team to investigate and address as necessary, in a future maintenance release.
  8. It sounds like you're using a custom template for the form ( check your database form option ) that contains PHP8-incompatible code.
  9. We have them in our gallery https://invisioncommunity.com/gallery/category/2-webinars/
  10. We are excited to announce that the Invision Community GraphQL API is now available. This blog takes you through what GraphQL is and what makes it better than existing APIs present in Invision Community. It does get a bit technical, but you don't need to be a developer to appreciate how GraphQL will make life easier for those that do develop. What is GraphQL? GraphQL describes itself as a query language for APIs that gives clients the power to ask for precisely what is needed and nothing more. GraphQL was created by Facebook in 2012 and is now an open-source project governed by the GraphQL Foundation, which operates independently of Facebook. What makes GraphQL better than existing REST APIs? GraphQL has several advantages over the existing REST API present in Invision Community, and these include: Flexibility: GraphQL allows clients to request only the data they need, reducing over-fetching or under-fetching data. Getting data from a REST API often means receiving many fields and values you don't need to complete the operation you're creating. Versatility: GraphQL can query multiple databases or APIs, making it a more versatile solution than REST, which often requires multiple endpoints for multiple data types. Strong Typing: GraphQL has a robust type system, making it easier to understand the capabilities of an API and catch errors early in the development process. Better Performance: By allowing the client to request only the data it needs, GraphQL can improve the performance of an application compared to REST, which often returns more data than necessary. Easier to evolve: The schema-based nature of GraphQL allows for more straightforward and less-breaking changes to the API compared to REST. Let's look at an example You're building a dashboard that uses Invision Community data for your Node.js application that shows the latest topics, latest registered members and calendar events. With the REST API, you need to make three requests to get all the data you need. With GraphQL, you can fetch the exact data you need with a single request. Modern Web Development GraphQL is now the standard for modern web development, including building mobile apps. A modern web app has a "front-end" and a "back-end". The front-end refers to the user-facing part of the web application. The front-end is typically written in client-side languages such as HTML, CSS, and JavaScript and is responsible for rendering the user interface and handling user interactions. It communicates with the back-end to retrieve and display data. The back-end refers to the server-side part of the web application. The back-end is typically written in server-side languages such as PHP, and is responsible for performing business logic, managing data, and serving API responses to the front-end. Using GraphQL as the interface between the front-end and back-end, the development and deployment of each component can be done independently, improving the overall efficiency and scalability of the application. At Invision Community, we know that some clients use REST to pull data from Invision Community for use in bespoke web and mobile apps. So we hope you're even more excited about the possibilities with GraphQL. A list with all currently available queries, mutators and data types can be found in our developer documentation section. Extending Invision Community Functionality Of course, you also have full access to the GraphQL API in the Invision Community framework, so you can use GraphQL inside your controllers to run your queries, which has the advantage that you won't need to worry about future changes to the API. In addition, we have also created a GraphQL template plugin, which can be utilized inside templates to fetch any data. This is a more technology-heavy blog than usual. The main takeaway is that we continue to invest in ways to allow your Invision Community data to be used by your own applications. GraphQL makes that job a lot easier and much more efficient. Let me know if you have any questions!
  11. Yes, it can take some time. Unarchiving a topic will only flag it for unarchiving, the real unarchiving happens via a background task in the background.
  12. This application isn't working for people with archived content. SELECT * FROM `forums_archive_posts` LEFT JOIN `dp44indefinitepostsedits_posts` AS `indefiniteedit` ON indefiniteedit.post_id = forums_posts.pid WHERE `archive_id`='341869' Unknown column 'forums_posts.pid' in 'on clause'
  13. There's already a suggestion and the explentation why it's not included.
  14. Item::getLastCommentTime() which as far as I see is present in \IPS\communitymap\Markers\Group
  15. Something that you and the author in the other community have in common is the Member Map app Are you aware of any issues here @Martin A. ?
  16. Has anything changed on your server? Is the htaccess file still present in the api directory?
  17. Thank you for bringing this issue to our attention! I can confirm this should be further reviewed and I have logged an internal bug report for our development team to investigate and address as necessary, in a future maintenance release.
  18. That's a blog post from 2018.... Here's a more accurate blog from a probably also more SEO related site https://www.searchenginejournal.com/does-url-length-affect-seo/425230/ Or if you prefer videos, the answer straight from the Google Search Advocate. Nr1 John Mueller.
  19. Is there a way for you to tell what exactly triggered the firewall? Posts contain HTML so I've seen this once for a client that his firewall was very sensitive and blocked literally any post containing formatted text.
  20. @Ryan Ashbrookrockstar found it ( there’s a broken link on mobile view sending the album instead of Album\Item) while reviewing my fix.
  21. How was the album promoted? Promoting an album will promote it as \IPS\Gallery\Album\Item and not as \IPS\Gallery\Album
  22. Thank you for bringing this issue to our attention! I can confirm this should be further reviewed and I have logged an internal bug report for our development team to investigate and address as necessary, in a future maintenance release.
  23. I agree and in fact I know about at least one client who's using a pages database for this. Pages is perfect for this since a real estate database doesn't require that many additional features ( which you can always add as a custom app, which is also much easier to maintain compared to a stand alone app which would need to be updated after BC breaking changes in IPS) Categories would be the types and then create custom fields for location , size, price, status, upload field for pictures, etc..
×
×
  • Create New...