RumcajsJumper Napisano 2 Września 2014 Udostępnij Napisano 2 Września 2014 Domyślnie IP.Board działa tak, że jeśli użytkownik jest zbanowany to nie może się wylogować. Ale czasem jest to przydatna funkcja np. jeśli korzystamy z aplikacji (SD) Token of Death 1.0.0 Wtedy jak najbardziej pożądana jest możliwość wylogowywania. Aby tego dokonać należy otworzyć plik /admin/sources/base/ipsRegistry.php i znaleźć: /* Are we banned: By DB */ if ( self::$handles['member']->getProperty('member_banned') == 1 or self::$handles['member']->getProperty( 'temp_ban' ) ) { /* Don't show this message if we're viewing the warn log */ if ( ipsRegistry::$request['module'] != 'ajax' or ipsRegistry::$request['section'] != 'warnings' ) { self::getClass( 'class_localization' )->loadLanguageFile( 'public_error', 'core' ); $message = ''; if ( self::$handles['member']->getProperty('member_banned') ) { $message = self::getClass( 'class_localization' )->words['no_view_board_b']; } else { $ban_arr = IPSMember::processBanEntry( self::$handles['member']->getProperty( 'temp_ban' ) ); /* No longer banned */ if( time() >= $ban_arr['date_end'] ) { self::DB()->update( 'members', array( 'temp_ban' => '' ), 'member_id=' . self::$handles['member']->getProperty( 'member_id' ) ); } /* Still banned */ else { $message = sprintf( self::getClass( 'class_localization' )->words['account_susp'], self::getClass( 'class_localization' )->getDate( $ban_arr['date_end'], 'LONG', 1 ) ); } } /* Get anything? */ if ( $message ) { $warn = ipsRegistry::DB()->buildAndFetch( array( 'select' => '*', 'from' => 'members_warn_logs', 'where' => 'wl_member=' . self::$handles['member']->getProperty('member_id') . ' AND wl_suspend<>0', 'order' => 'wl_date DESC', 'limit' => 1 ) ); if ( $warn['wl_id'] and ipsRegistry::$settings['warn_show_own'] ) { $moredetails = "". self::getClass('class_localization')->words['warnings_moreinfo'] .""; } self::instance()->getClass('output')->showError( "{$message} {$moredetails}", 1001, true, null, 403 ); } } }a następnie zamienić na: /* Are we banned: By DB */ if ( self::$handles['member']->getProperty('member_banned') == 1 or self::$handles['member']->getProperty( 'temp_ban' ) ) { /* Don't show this message if we're viewing the warn log */ if( ( ipsRegistry::$request['module'] != 'ajax' or ipsRegistry::$request['section'] != 'warnings' ) && ( ipsRegistry::$request['section'] != 'login' && ipsRegistry::$request['do'] != 'logout' ) ) { self::getClass( 'class_localization' )->loadLanguageFile( 'public_error', 'core' ); $message = ''; if ( self::$handles['member']->getProperty('member_banned') ) { $message = self::getClass( 'class_localization' )->words['no_view_board_b']; } else { $ban_arr = IPSMember::processBanEntry( self::$handles['member']->getProperty( 'temp_ban' ) ); /* No longer banned */ if( time() >= $ban_arr['date_end'] ) { self::DB()->update( 'members', array( 'temp_ban' => '' ), 'member_id=' . self::$handles['member']->getProperty( 'member_id' ) ); } /* Still banned */ else { $message = sprintf( self::getClass( 'class_localization' )->words['account_susp'], self::getClass( 'class_localization' )->getDate( $ban_arr['date_end'], 'LONG', 1 ) ); } } /* Get anything? */ if ( $message ) { $warn = ipsRegistry::DB()->buildAndFetch( array( 'select' => '*', 'from' => 'members_warn_logs', 'where' => 'wl_member=' . self::$handles['member']->getProperty('member_id') . ' AND wl_suspend<>0', 'order' => 'wl_date DESC', 'limit' => 1 ) ); if ( $warn['wl_id'] and ipsRegistry::$settings['warn_show_own'] ) { $moredetails = "". self::getClass('class_localization')->words['warnings_moreinfo'] .""; } self::instance()->getClass('output')->showError( "{$message} {$moredetails}", 1001, true, null, 403 ); } } }Gotowe :) POSZUKUJE WSPÓLNIKÓW / OPIEKUNÓW - NA SERWERKI CS:GO! Skontaktuj się ze mną po więcej szczegółów Odnośnik do komentarza https://csowicze.pl/topic/1870-poradnik-umo%C5%BCliwienie-wylogowania-si%C4%99-dla-zbanowanych-u%C5%BCytkownikow-ipb-33-34/ Udostępnij na innych stronach Więcej opcji udostępniania...
Elevate Napisano 5 Lipca 2017 Udostępnij Napisano 5 Lipca 2017 Wiadomość automatyczna Temat został przeniesiony z "Sprawy ogólne → Sprawy dotyczące forum → Skrypty → Invision Power Board" do "Sprawy ogólne → Sprawy dotyczące forum → Archiwum". Odnośnik do komentarza https://csowicze.pl/topic/1870-poradnik-umo%C5%BCliwienie-wylogowania-si%C4%99-dla-zbanowanych-u%C5%BCytkownikow-ipb-33-34/#findComment-226657 Udostępnij na innych stronach Więcej opcji udostępniania...
Evanella Napisano 5 Lipca 2017 Udostępnij Napisano 5 Lipca 2017 Wiadomość automatyczna Temat został przeniesiony z "Sprawy ogólne → Sprawy dotyczące forum → Archiwum" do "Archiwum Forum → Tematy Archiwalne". Przeczytaj Regulamin! ✔ Odwiedź mnie! ❤ W razie problemów, napisz do mnie! ✎ Zobacz moją galerię! ♦ Reklamuj naszą sieć innym! ★ Odnośnik do komentarza https://csowicze.pl/topic/1870-poradnik-umo%C5%BCliwienie-wylogowania-si%C4%99-dla-zbanowanych-u%C5%BCytkownikow-ipb-33-34/#findComment-227006 Udostępnij na innych stronach Więcej opcji udostępniania...
Rekomendowane odpowiedzi