Jump to content

bfarber

Clients
  • Posts

    163,911
  • Joined

  • Days Won

    346

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Projects

Release Notes v5

Invision Community 5 Bug Tracker

Forums

Events

Store

Gallery

Everything posted by bfarber

  1. There is a bug in the current release that can affect embeds. It will be resolved for our next maintenance release.
  2. You will need to do something like <video> <source src='{media="1"}'> </video> https://www.w3schools.com/html/html5_video.asp
  3. I would recommend looking at an existing app that supports comments (such as Calendar) and following what it is doing.
  4. 1. Pagination is typically generated within the PHP controller, and then the appropriate template is included within theme templates. \IPS\Theme::i()->getTemplate( 'global', 'core', 'global' )->pagination( $this->baseUrl, $this->pages, $this->page, $this->limit, TRUE, $this->paginationKey, $this->simplePagination ) Swap out the parameters as appropriate of course. Alternatively, you can use something like the table helper (\IPS\Helpers\Table) which handles things like pagination automatically. 2. You should not need to pass any content in the database through any sort of parser before putting it in the editor.
  5. You will probably need to change the forum type at the database level using something like phpmyadmin.
  6. For managed clients that I've worked on I've effectively done the same. We have a tracker that lists any custom applications and plugins, and further separates them by "marketplace" (or third party) resource vs a resource we've built in-house. For anything we've built in-house, we review the code and test locally. For third party resources, we check the marketplace to see if the resource is compatible with 4.5. That's it in a nutshell. You can then decide if you have resources that aren't compatible if you're willing to forge ahead or if you need to wait for updates.
  7. Can you clarify where/what you are referring to, because Gallery does already include alt text (using the image caption) everywhere I can think of.
  8. This information is not displayed in the interface at present
  9. You cannot adjust the sorting of standard emoji. You can drag and drop the custom emoticons that you upload in the AdminCP to reorder them.
  10. I would strongly encourage you to submit a ticket so we can take a look before you start manually deleting records to try to fix this. You shouldn't have run into issues upgrading from 4.4 to 4.5 with subscriptions. The behavior of subscriptions changed slightly, but naturally the upgrade process should have taken care of any adjustments that were needed.
  11. Quickly to address this - if the thing being followed has more than NOTIFICATIONS_PER_BATCH followers (which defaults to 30), the notifications are queued and send in the background.
  12. 4.5.0 has already been released so this won't be added for 4.5.0. I cannot say whether it will be added in a future release at this time.
  13. It's on our radar, yes. It's not an insurmountable technical limitation, I just wanted to clarify that there was a reason this hasn't been implemented just yet.
  14. The bug report is still open.
  15. You don't need to add that property to a model class. It should be added to your controller class. Generally speaking you shouldn't be handling CSRF checks within your model at all.
  16. I've submitted an internal suggestion for your request
  17. Most clients still run based on traffic. I'm uncertain on the specifics for cron-enabled accounts I'm afraid. I'm a developer and not intimately involved in the hosting setup.
  18. Most likely your core > front > global > mobile* templates are modified and thus are not importing the template that defines the mobile menu properly.
  19. You can try Recovery Mode
  20. You also need the correct csrfKey value to be included in the request. If you are using javascript for this, you can obtain this value from ips.getSetting('csrfKey');
  21. There is a technical challenge to implement this (it's honestly the same reason we don't have group-based advertisements in emails right now). For something like Sendgrid, we compile the email and use replacement variables to swap out the email variables (username, etc.). We do this per-language right now, but we'd have to start doing it per-language per-group in order to implement per-group options within emails.
  22. I didn't say Sendgrid has been around longer than SES (frankly I don't know). I was just saying we've had Sendgrid integration longer available within our software.
  23. We do not have any Instagram API integration built in.
  24. The fundamental issue is that we don't track which content items and comments were hidden due to flagging as a spammer, so we can't unhide only those things.
  25. If these are pages within the Pages application you should check (1) the permissions for the page itself in AdminCP > Pages > Pages, and (2) the permissions for the pages module if guests cannot see any page under AdminCP > System > Applications, expand the Pages application, and check the permissions for the module(s) listed.
×
×
  • Create New...