Jump to content

Ryan Ashbrook

Invision Community Team
  • Posts

    12,663
  • Joined

  • Days Won

    13

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Everything posted by Ryan Ashbrook

  1. @Randy Calvert is correct. This would be a browser issue - most likely because it suspended the contents of the tab, so when put back into focus, it automatically refreshes to get the latest update for the page.
  2. It looks like there was a temporary issue with your license - I have refreshed that, and your databases are back now.
  3. You can also temporarily block those countries from registering under Spam Prevention > GeoLocation Settings.
  4. The default for Action to take for 1/4 has always been Allow user to register as normal. Typically, you would only change that if you going through a spam attack, so yes setting it back to that is recommended.
  5. By default, it's 90 seconds. Then it looks at the max_execution_time PHP configuration and will then use that instead, if it's less than 90 seconds. Then it looks at wait_timeout in MySQL and if it's less than max_execution_time, it uses that instead. Then, it looks at the memory_limit PHP configuration and if it's not unlimited, it takes that into account. Then it will run the task as many times as it can until one of the following happens (in this order): The task indicates it has nothing else to do. If the task is explicitly told to run X amount of times, it will stop when it reaches that amount. If it gets close enough to the timeout that it cannot run another cycle. If it gets close enough to the memory limit that it cannot run another cycle.
  6. No, only MySQL is supported at this time.
  7. You are missing your beginning and end delimiters. Try this: /^(fa(-[0-9a-zA-Z]+)+)( (fa(-[0-9a-zA-Z]+)+)+)*$/i And then set Apply text formatter to Yes, and then set Formatting Option to All lower-case in case someone enters a valid Font Awesome icon class, but uppercase.
  8. To clarify - if a member is in a group with permission to see anonymously online users, if you hover over the status it will state that they are online anonymously.
  9. Working with images, particularly large ones, is actually a pretty intensive process. For instance, if I open Affinity Designer, t immediately uses about 750-800MB of memory, then opening a single 1.6 MB file makes memory usage jump to 1 GB. If the files are going to /tmp then it's likely because ImageMagick is running out of memory available to it so it's forced to use disk instead, which has larger space to work with, but is much slower. It may be worth contacting ImageMagick with your configuration to see if any improvements can be made.
  10. I believe key is a reserved keyword in MySQL. Try this. \IPS\Db::i()->delete( 'core_tasks', array ('`key`=? AND app=?','steamCleanup','steam') )
  11. Yes, in your Admin CP > Community > Calendars, edit the calendar and set "Events must be approved?" to Yes.
  12. I would try downloading the full package from the client area, and upload that. It looks like the files may have only been partially applied.
  13. It looks like you are editing a package - once a package is created and saved, it cannot be changed from the type that was initially chosen. You will need to create a new package, which will allow you to select Advertisement.
  14. That's controlled by your group settings. Admin CP > Members > Groups. Edit your group, and adjust the upload limits under the Content tab.
  15. I use Monosnap for Screen Captures. https://monosnap.com For Video, it uses mp4 format, which is compatible with most browsers.
  16. Any of the following would likely work. {{if \IPS\Member::loggedIn()->inGroup( array( \IPS\Settings::i()->guest_group ) )}} {{if \IPS\Member::loggedIn()->member_group_id == \IPS\Settings::i()->guest_group}} {{if !\IPS\Member::loggedIn()->member_id}} Generally speaking, the third one is the most accepted way of determining if a user is a guest or not.
  17. The statuses page has not existed for many years - it was replaced with the Activity Stream system in 4.1.0.
  18. To start, I would avoid using dashes in the database name. Use letters, numbers, and underscores only.
  19. That is a bug in that version that manifests as a fatal error in later versions of PHP. The only fix is to upgrade, I'm afraid.
  20. There isn't really much we can do about that, honestly. All of those are being loaded directly by ReCAPTCHA itself, rather than the software.
  21. This is intended currently. That link is always the last post made in the forum, and therefore always takes you to that post.
×
×
  • Create New...