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. Because it's not an option from the AdminCP, but is an option at the software level. You can review init.php and see all the available constants there with comments explaining what they do.
  2. Views are stored in a temporary table and then resynced over to the main content items via a task. The taks may run every 5 minutes, but depending upon activity it can take longer for the view updates to be copied over. Just a heads up.
  3. \IPS\GeoLocation::getByIp() returns an instance of \IPS\GeoLocation (so it's an object, not an array). {{$geoData = \IPS\GeoLocation::getByIp( 'my IP' );}} {$geoData->lat} {$geoData->long}
  4. I've logged an internal bug report. Thanks for pointing it out.
  5. I can't reproduce - this looks like a problem with your install, specifically. I expect it's a legacy thing where the template was inserted but stored differently than it would now. You may be able to fix the issue by removing the plugin completely and re-adding it. Alternatively you may be able to fix the issue by removing the template row from core_theme_templates manually in phpmyadmin. I just created a new plugin with a widget and a template and can export it as many times as I want without issue.
  6. I've opened a bug report to take a closer look at this.
  7. Some errors are caused by things that do not need to be communicated to end users. Each error has an error code, however, which allows us to look up the problem at the code level more specifically. Sometimes errors also log more details to the system logs. Where are you seeing "You have an error"? What is the error code, and if you view the system logs in the AdminCP (use the live search to look for "System Logs") do you see any related logs?
  8. No, there are no settings for that other than the "Remember Me" option on the login form. Typically reports like this come down to browser-based security/privacy extensions in my experience if you can't reproduce yourself.
  9. When it is fixed, the fix will be noted in the changelog.
  10. You have a foreach loop nested inside the foreach loop - there are two images and two thumbs, so you're going to end up with 4 images in that case. A better loop in your case is probably {{$images = $record->customFieldDisplayByKey('galerie', 'raw') and $thumbs = $record->customFieldDisplayByKey('galerie', 'thumbs');}} {{foreach $images as $k => $image_url}} <a href='{$image_url}' data-ipsLightbox><img src='{$thumbs[$k]}'/></a> {{endforeach}}
  11. You can edit the moderator permissions in the AdminCP to remove permission to manage the sidebar. Your moderator permissions are most likely currently unrestricted, so you'd have to change your moderator permissions to restricted first to do that. Is there some reason you want to remove the sidebar block manager for your account?
  12. You're missing the multibyte extension which is required. You will need to install that into PHP. This may help:
  13. The methods are still available in 4.5 yes.
  14. An improvement like that will not be introduced in a point release. It will be something for a major version, just to be clear.
  15. In 4.5 we adjusted how sizing of header images works. You now set the height as a percentage on the form where you upload the logo image. You can adjust this value as needed to size the image height up and down.
  16. A bug report was opened internally about this yesterday (presumably from a ticket you submitted given the information you've supplied here).
  17. There are no public plans for anything at this time, but we are aware of the needs/desires of many administrators to improve video handling within the software. I was mostly just stating a fact, but that doesn't mean it's something we've not looked into either.
  18. Just tested and can confirm the bug. I've logged an internal report, thanks.
  19. Thanks, I've pulled your ticket and reopened it.
  20. There was an issue with the initial 4.5.3 release which has since been resolved. Apologies for any trouble.
  21. I've raised the suggestion internally, thanks.
  22. Typically I'd recommend writing a new converter routine. We do this routinely for enterprise clients converting to us when they have a custom (or previously unsupported) system.
  23. If you submitted a ticket we'll take care of it from there. Typically this means the attachments aren't getting "claimed" properly in a specific area, which wipes out your "we are currently uploading these files" cookie.
  24. Our software supports the tenets of a PWA, but does not register a ServiceWorker. To that end, it may not show up as a PWA on your device just yet.
  25. If your browser/user agent/device supports the video it will embed. This will depend upon the codecs installed on your system. In order to make things universally supported we will need to implement video transcoding.
×
×
  • Create New...