MyBB.de Forum
Impressum für Gäste sichtbar machen - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Anpassungen (https://www.mybb.de/forum/forum-47.html)
+--- Forum: Plugin-Diskussionen (https://www.mybb.de/forum/forum-38.html)
+--- Thema: Impressum für Gäste sichtbar machen (/thread-18823.html)

Seiten: Seiten: 1 2


RE: Impressum für Gäste sichtbar machen - StefanT - 26.03.2016

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'
); 



RE: Impressum für Gäste sichtbar machen - raana - 26.03.2016

Habe ich umgesetzt. Leider keine Besserung. :-( Hast du noch eine Idee?


RE: Impressum für Gäste sichtbar machen - doylecc - 26.03.2016

Versuche es mal, indem du im Impressum unter ALLOWABLE_PAGE noch die folgende Zeile hinzufügst:
PHP-Code:
define('THIS_SCRIPT''impressum.php'); 



RE: Impressum für Gäste sichtbar machen - raana - 26.03.2016

DANKE! Smile Es läuft jetzt.