MyBB.de Forum
Gäste - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Archiv (https://www.mybb.de/forum/forum-57.html)
+--- Forum: MyBB 1.4.x (https://www.mybb.de/forum/forum-51.html)
+---- Forum: Allgemeiner Support (https://www.mybb.de/forum/forum-52.html)
+---- Thema: Gäste (/thread-14757.html)



Gäste - cRaZyYy - 14.10.2009

Wie kann ich den Gästen verbieten sich einzelne Seiten anzuschauen, sprich die selbst erstellten...
Also ohne Forum betreten zu verbieten.

Danke im vorraus!


RE: Gäste - MaR-V-iN - 14.10.2009

PHP-Code:
if($mybb->user['uid']==0)
  {
    
error_no_permission();
    exit();
  } 
füg das mal vor der Ausgabe, also vor "output_page(???);" in deine eigene Seite ein.

MFG
MaR-V-iN


RE: Gäste - ows - 14.10.2009

Siehe auch: https://www.mybb.de/forum/thread-11853.html


RE: Gäste - cRaZyYy - 14.10.2009

(14.10.2009, 12:53)MaR-V-iN schrieb:
PHP-Code:
if($mybb->user['uid']==0)
  {
    
error_no_permission();
    exit();
  } 
füg das mal vor der Ausgabe, also vor "output_page(???);" in deine eigene Seite ein.

MFG
MaR-V-iN

Klappt perfekt... Danke für die schnelle Hilfe (;