Jump to content

Ryan Ashbrook

Invision Community Team
  • Posts

    12,727
  • Joined

  • Last visited

  • Days Won

    13

 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 Ryan Ashbrook

  1. They are not. In the case of sessions - those are always temporary even when using the database, so them being "lost" is not an issue. If the user associated with the session has opted to have their login remembered, then it will just create a new one. Otherwise, they would just need to login again. For views - a task runs through these and updates content items view counts accordingly. If these are lost for some reason before they are applied by the task, then they will not be processed.
  2. Admin CP > Customization > Editor > Settings > Paste Behavior
  3. It can break the editor and cause it to not load in some cases. I'm not sure of the configuration options for Rocket Loader, so it may not be an issue for you. Every instance I've seen, disabling it resolved the issue.
  4. I've been digging into this pretty significantly, and unfortunately it's a bug within Firefox itself. https://bugzilla.mozilla.org/show_bug.cgi?id=1421580
  5. There is an editor button for that.
  6. I'm not sure what you mean - can you clarify what it is you are wanting to do? Everything in the software is fully translatable - just go to your Admin CP > Customization > Languages. Click the Translate button to the right of the language your community is using, and the text box on the top right can be used to find any words you wish to change.
  7. It would be the locale defined by your language pack. Edit your language pack in the AdminCP and make sure it is set correctly. The default is English (United States) whereas you likely want English (Australia) instead.
  8. It does a number of things: Cancel all invoices. Resolve all support requests. Ban the account. Add a note indicating why the account was voided. Void or refund all transactions. Cancel all billing agreements. Cancel all purchases. All of these are elective, so you decide what happens when you void an account.
  9. GD is a part of PHP by default so if there are any issues it would likely be between libgd and PHP itself, rather than IPS4.
  10. As mentioned, you can chain the method calls: $select = \IPS\Db::i()->select( ... ) ->join( ... ) ->join( ... ) ->first(); The same applies to forceIndex(), setKeyField(), and setValueField().
  11. Account Settings > Content View Behavior. https://invisioncommunity.com/settings/links/
  12. AFAIK, 3.4.8 was mostly compatible with strict mode, though it's been a very long time. For Invision Community 4, we develop with strict mode enabled (it's a requirement of our development standards and actually enforced when in development mode), so yes it is fully compatible.
  13. There should be no difference in how the software operates between MySQL and MariaDB.
  14. Correct - it's a warning reference. It contains data pertaining to the last item you were viewing to store with the warning if you issue one.
  15. The instanceof operator would also work. if ( \IPS\File::getClass('core_Emoticon') instanceof \IPS\File\Amazon ) { // ... etc ... }
  16. You can still email in, as always. Send an email to support@invisionpower.com and we can take a look for you. I'll move this to the development gateway forum as it's not explicitly feedback.
  17. Are they just JS and Image files? If so, you have a few options: You can add them as Resources to your application (resources do not necessarily need to be images - they can be anything from images, fonts, JS, etc.) and then load them via the {resource} plugin. Any reason you're not using the hosted version? Leaflet seems to offer several free CDN's for hosting: https://leafletjs.com/download.html - using a hosted option means you only need to keep track of the version to include in your app, rather than needing to update the entire file itself. It'll also reduce the size (though, in this case, not likely enough to make a big difference).
  18. What kind of icon? You can include really any HTML in there - for your prefix, you would either do this, for an actual image: <img src='/path/to/image.png' alt='Group Name'><span style='color:white; background:#cd7f32; font-weight: bold; padding: 3px 8px; border-radius: 3px; text-shadow: #000 2px 2px 4px ;'> Or for a Font Awesome icon, you would do this (in this case, you can also control the color - if you want it to match the rest of the group name, then you would place it inside the span rather than outside): <i class='fa fa-ICON'></i><span style='color:white; background:#cd7f32; font-weight: bold; padding: 3px 8px; border-radius: 3px; text-shadow: #000 2px 2px 4px ;'>
  19. You're missing the mbstring extension in PHP, so your host will need to install it.
  20. It's a built-in feature - you can choose what happens when clicking on the title: https://invisioncommunity.com/settings/links/
  21. You need to set up a local server in order to do so - personally, on Windows, I use AppServ.
  22. Please submit a ticket - looks like an issue with the SSL Certificate which, if you're on Cloud, we'll need to take care of.
  23. Can you submit a ticket so we can look into this please?
  24. Yes, more than likely - you can use the Theme Differences tool to see all the changes: https://invisioncommunity.com/index.php?app=core&module=system&controller=plugins&do=diff
×
×
  • Create New...