Jump to content

Daniel F

Invision Community Team
  • Posts

    6,567
  • Joined

  • Days Won

    37

 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 Daniel F

  1. We have an internal topic about this, because it's not a simple fix which requires us to change almost the whole FURL system
  2. There's a bug in this application which is causing a 500 error page caused by this line in your hook: public function log( $status, $member ) { if( \IPS\Dispatcher::i()->controllerLocation === 'front' AND \IPS\Settings::i()->llogs_groups == '*' OR $member->inGroup( explode( ',', \IPS\Settings::i()->llogs_groups ) ) ) { you're not checking if $member is null or an instance of \IPS\Member which results in following fatal error: [22-Sep-2016 10:07:32 UTC] PHP Fatal error: Call to a member function inGroup() on array in /home/zzzz/public_html/init.php(442) : eval()'d code on line 37 So each time somebody tries to login with a not existing account, it results in a 500 error page
  3. CSS Shouldn't be vanished while the background processes run. Please submit a ticket and i'll take a look
  4. It's already on our internal suggestions list:)
  5. No, it handles this for applications, but not plugins. Plugins aren't meant to have own extensions, but you're using one here.
  6. @Adriano Faria you should delete the notifications which belong to this plugin while the uninstall process of this plugin. Once the plugin was uninstalled, the "delete_account" notifications can't be loaded anymore and will cause an exception.
  7. @Mike John couldn't you hook IPS\Member::save and run your code there if member_group_id or mgroup_others changed?
×
×
  • Create New...