MyBB.de Forum

Normale Version: Impressum für Gäste sichtbar machen
Du siehst gerade eine vereinfachte Darstellung unserer Inhalte. Normale Ansicht mit richtiger Formatierung.
Seiten: 1 2
Für "Login erzwingen" müsstest du in der global.php dies:
PHP-Code:
$force_bypass = array(
    
'member.php' => array(
        
'login',
        
'do_login',
        
'logout',
        
'register',
        
'do_register',
        
'lostpw',
        
'do_lostpw',
        
'activate',
        
'resendactivation',
        
'do_resendactivation',
        
'resetpassword',
    ),
    
'captcha.php',
); 
durch das ersetzen:
PHP-Code:
$force_bypass = array(
    
'member.php' => array(
        
'login',
        
'do_login',
        
'logout',
        
'register',
        
'do_register',
        
'lostpw',
        
'do_lostpw',
        
'activate',
        
'resendactivation',
        
'do_resendactivation',
        
'resetpassword',
    ),
    
'captcha.php',
    
'impressum.php'
); 
Habe ich umgesetzt. Leider keine Besserung. :-( Hast du noch eine Idee?
Versuche es mal, indem du im Impressum unter ALLOWABLE_PAGE noch die folgende Zeile hinzufügst:
PHP-Code:
define('THIS_SCRIPT''impressum.php'); 
DANKE! Smile Es läuft jetzt.
Seiten: 1 2