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. I've logged an internal bug report to have these things checked on
  2. Are you saying they aren't created? Because I'm unclear otherwise if this wasn't a typo?
  3. No, but you may be able to set a session or global variable first if needed, or store data temporarily elsewhere. {$_SESSION['tempvar']} {block="blockkey"}
  4. Thanks, updated the report with that information as well.
  5. I've take a look at the backend code and have submitted a bug report to get this looked at for an upcoming release. Thanks!
  6. Yes and it's strongly recommended. That said, you may wish to verify with your webhost that their MySQL configuration is optimized for InnoDB.
  7. When you create a "database" within Pages, it is designed to store data that you (or your users) submit. It will not auto-populate with other data on your site. What is your end goal, because there's a few ways you could go about this? For instance, you could create a custom activity stream that shows (specific or all) topics, or you could use RSS imports to pull topics into your newly created database.
  8. If you're experiencing an issue you're always welcome to open a ticket, as suggested.
  9. Eh...not really. At the software level we can largely add support for webp by adjusting one line of code in a central library. /** * @brief Image Extensions */ public static $imageExtensions = array( 'gif', 'jpeg', 'jpe', 'jpg', 'png' ); Adding video support to areas like cover photos and profile pictures requires going through those form helpers, tagging which file extensions are allowed, then adjusting the HTML output to be conditional on the top of file (i.e. <img> tag for pictures and <video> tag for videos, although the reality is we use background-image for cover photos so it's not even quite that simple). It's two separate requests, trust me. 😉 That isn't to discount either suggestion either.
  10. I agree, I believe the file is either missing or corrupted.
  11. Yes, there are options to control this in the AdminCP. There's only so much crawl budget so the idea is to focus Google's indexing on things that make more sense to index.
  12. I did a full project search and we don't reference that constant anywhere in our code base. It looks like this might be related to a third party customization you have installed.
  13. I would recommend looking for some sort of pattern. Find something that you believe you should have been notified about and then look at potential reasons you weren't. There's an option to prune follows if there haven't been any updates in a period of time. Make sure under Manage Followed Content you are still following the area or thing. Check your notification preferences and make sure they're set to send you email updates. Check your spam folder in your email provider Check your email error logs in the AdminCP and make sure there aren't errors sending you the notifications. Check the system logs and make sure there aren't general errors logged that might explain the issue. There are probably other things you could check but I'd start there.
  14. You add the "similar content" widget to pages that display content items (such as topic view), and it should show links to other items that have matching tags. That's basically all there is to it.
  15. As noted in the linked topic, they should work but it sounds like the UI just isn't updating to reflect this. We have an open report on the issue and will look into it for an upcoming update.
  16. I think that's a suitable solution yes.
  17. You may be able to install a CKEditor plugin to allow embedding of remote videos. Additionally, some services support embedding of videos (think youtube, vimeo, etc.). For randomly linked videos, we wouldn't just automatically embed it.
  18. Thanks, I've added those notes to the internal bug report.
  19. Thanks for the feedback. I'll raise this internally for consideration. 🙂
  20. Another feedback topic recently mentioned supporting SSL for the MySQL database server. What if we did something like /* Connect */ parent::real_connect( $sqlCredentials['host'], $sqlCredentials['username'], $sqlCredentials['password'], $sqlCredentials['database'], $sqlCredentials['port'], $sqlCredentials['socket'], $this->_getFlags() ); and then the _getFlags() method returned nothing by default, but a plugin could add a hook to set other flags?
  21. I do just want to note - you can use any service that supports SMTP delivery using the built in SMTP option. You don't necessarily need a specific API to send emails. (This post is not discounting the rest of the conversation, I just want to be sure anyone who comes across this realizes you can still use Sparkpost or whatever else via SMTP if you want)
  22. Thanks, I've logged an internal bug report to get the issue checked on.
  23. If you've set the configuration so that club content does not show up throughout the community, but it's showing up in Gallery anyways, that would potentially be a bug and I would recommend submitting a ticket.
  24. It is not retroactive, but would apply to the user if they received a new warning.
  25. If you disable the share by email feature, then spammers will not be able to use that feature. I am unaware at this time of any other areas where an end user could send an arbitrary email through your site.
×
×
  • Create New...