Jump to content

teraßyte

Clients
  • Posts

    33,372
  • Joined

  • Days Won

    47

teraßyte last won the day on March 23

teraßyte had the most liked content!

Contact Methods

Profile Information

  • Gender
    Male
  • Location
    Italy

Recent Profile Visitors

27,850 profile views
  1. I'm confused. 🤨 You're adding data to $_SESSION, but then you're dumping \IPS\Member::loggedIn() which doesn't contain/read $_SESSION in the other file. What exactly are you trying to do?
  2. The Converters application allows you to import also data from another Invision Community. Start a new conversion and select Invision Community from the What software are you converting from? dropdown.
  3. The original image is used to rebuild all other images if you change the max or thumbnail sizes, and also if you add or remove a watermark.
  4. In the file /system/File/Amazon.php inside the function deleteContainer() this code is executed when adding a new delete task to delete the files in a bucket folder (container): /* Turn on task */ \IPS\Db::i()->update( 'core_tasks', array( 'enabled' => 1 ), array( '`key`=?', 's3_delete' ) ); The problem is that the task's key is not s3_delete but s3Delete (no space + capitalized). This causes the task to delete the S3 files to not activate correctly. The same issue is also present inside the code of the s3Delete task to disable itself in 2 different locations. Lines 44-50: if ( !( $obj instanceof \IPS\File\Amazon ) ) { /* Class is not Amazon, so just stop here and truncate the table as there's nothing we can really do now. */ \IPS\Db::i()->delete( 'core_s3_deletions' ); \IPS\Db::i()->update( 'core_tasks', array( 'enabled' => 0 ), array( '`key`=?', 's3_delete' ) ); return NULL; } Lines 96-97: /* Nothing to do, so switch off the task */ \IPS\Db::i()->update( 'core_tasks', array( 'enabled' => 0 ), array( '`key`=?', 's3_delete' ) ); Again s3_delete is being used instead of s3Delete.
  5. When adding an announcement it's possible to select an ending date before the starting date. When that happens that announcement will never show. Example: Start date: 26 March End date: 7 March (instead of 7 April) When adding/editing an announcement, it should throw an error if the end date comes before the starting one.
  6. Member Map is an old modification that's been abandoned. There is a new application for it called Community Map: https://www.invisioneer.org/files/file/376-community-map/
  7. There was a paid modification from DevFuse for this, but it's not available anymore. The developer has recently gone missing. You'll need someone to make a new modification for you. 🤷‍♂️ EDIT: I take that back. Looks like Adriano made a new modification for it already: https://www.invisioneer.org/files/file/220-disable-friendly-number-format/
  8. I believe they'll need to click the reset password link on the login screen to set a password if they never set one. Other than that, you should be good.
  9. That's what I did more than a year ago already. 😋
  10. You have the old license most likely, but it's possible to upgrade to a Classic License from your client area. Check this topic for more info:
  11. I don't think normal members will be able to see that someone is assigned to the topic. I might be wrong, though. 🙄
  12. If you disable the guest group from accessing the site, nobody, not even search engines, will see the content. If you also want to control who registers and can see the content, enable the admin validation for new accounts. Or you can disable new registrations, and manually add the accounts for the club if they're only a few. Or only allow certain email domains to register if your club has a specific domain for all members.
  13. I had the same issue recently. I received errors that Gmail rejected my emails because they did not pass DKIM/SPF. Switching from the PHP mail method to SMTP increased my score on https://www.mail-tester.com/ and the emails started being delivered again.
×
×
  • Create New...