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. To be clear, "databases" within Pages are actually stored in a MySQL database table, however there's no way you would be able to remotely connect to our database network in order to directly reinsert data (since it sounds like you're using Community In The Cloud) so the option you were looking at in Zapier wouldn't work with our environment. We will offer direct Zapier integration with our upcoming 4.5 release however.
  2. There were a few different Spotify issues that occurred within a short period of time. I would suggest testing the issue here on this forum (in the test forum) and if it's fixed then the issue is resolved for 4.5. If the issue is still occurring let us know.
  3. We released a patch yesterday to resolve a new issue with Facebook logins. Make sure you've installed that patch (run the support tool in your AdminCP).
  4. If you haven't already, that issue should definitely be reported via a ticket or in our bug tracker. Actually, I'll go ahead and log an internal bug report now so it's not overlooked.
  5. We used to set this header and it was removed sometime around 4.2.0. We have an internal suggestion/discussion regarding adding it back.
  6. I would recommend editing your theme template to add the title next to the logo if you want to do so. As others have indicated, in our experience most users who use a logo image don't want the site name displayed as text next to it.
  7. Please submit a ticket in your client area for support.
  8. That behavior has not changed in 4.5, no.
  9. I've put a bug in the ear of the person who maintains our guides already last week about this (probably from your post in the other thread you alluded to).
  10. Administrators and moderators can often reply to locked content. It's also not uncommon for some communities to lock certain news announcements they don't want discussion on, but you may still want to allow sharing and so forth. I guess what I'm saying is I see your point, but I don't know that a blanket change would work for all communities.
  11. It's not possible. Like, for attachments you also need code that deletes the physical file on disk (including accounting for S3 storage). This is just a process that is best left to running correct PHP methods to ensure everything is accounted for (notifications, tags, attachments, etc. etc.)
  12. There is no real need or benefit to moving them to a dedicated group, really that's the only reason.
  13. You should be able to change the height by adding something like this to your custom.css :root { --logo--height: 100px; } by default it's a percentage based on the AdminCP theme setting, but you can override it with a hardcoded pixel height.
  14. You would need to make a template edit first to wrap the version number in something that can be targeted (perhaps something like <span class='elVersionNumber'></span>). Then you'd edit your custom.css to target that selector.
  15. {{if $value == 'yes'}} <b> OK! </b> {{endif}} You don't need curley brackets around the variable in an if statement. The above is translated basically to if( $value == 'yes' ) { print "<b>OK</b>"; }
  16. Can you define "broken"? You can try this:
  17. Not out of the box, no - there is no "consolidation" of locations into a single map. Each image shows an individual map (if the image has GPS info embedded and the option to show the map has been enabled).
  18. I wouldn't recommend this approach. Things like notifications would be hard to capture, and deleting attachments wouldn't be possible. You would be better off writing a background queue task that loops through all PMs and deletes them using the built in content item delete() method.
  19. You may need to submit a ticket then.
  20. You use AdminCP restrictions. You can restrict an individual administrator (or group administrator) from being able to edit other administrators. So you then leave yourself unrestricted, but the new account restricted from editing administrators (AdminCP > Members > Administrators page).
  21. If you're finding that to be the case it's probably a bug. Click the bug tracker link at the top of the forum and report it.
  22. You can't. Imagine that you have a string like "<b>some text here</b>" and the truncating would fall in between the HTML tags. If you allowed raw HTML to be retained, you would have an opening bold tag but no closing tag, resulting in invalid HTML that would make the entire rest of your page bold.
  23. Use the AdminCP live search to look for "System Logs" and click on it. Find the error logged (there should be one) and provide it here along with the stacktrace (you can modify the paths if you want to in order to hide/obscure them).
  24. Because it's code we need to maintain. We've supported memcache for many years, but these days we find Redis works far better for the vast majority of our clients, so we feel development efforts are better directed towards maintaining Redis.
  25. What problems are you getting?
×
×
  • Create New...