MyBB.de Forum
Seitenanzeige nicht für Gäste - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Archiv (https://www.mybb.de/forum/forum-57.html)
+--- Forum: MyBB 1.2.x und älter (https://www.mybb.de/forum/forum-27.html)
+---- Forum: Allgemeiner Support (https://www.mybb.de/forum/forum-36.html)
+---- Thema: Seitenanzeige nicht für Gäste (/thread-8907.html)



Seitenanzeige nicht für Gäste - gastwirt - 09.03.2008

Hab mit folgendem Code und einem entsprechenden template die Coppermine Galerie eingebunden. Das funktioniert auch tadellos, bis auf die Kleinigkeit, dass die Galerie nur für eingelogte User aber nicht für Gäste angezeigt wird.
(hab eine andere Seite ähnlich eingebunden - da funktioniert es)
Hat jemand eine Idee ? DAnke!

PHP-Code:
<?php
define
("IN_MYBB"1);
require_once 
"./global.php";
$plugins->run_hooks("index_start");

$lang->load("index");

add_breadcrumb("gallery""cpgallery.php");

$plugins->run_hooks("index_end");

if (
$mybb->user['cpgid'] == 11){
 
$query$db->query("SELECT  SUM(total_filesize)AS 'xx' FROM cpgal01_pictures WHERE owner_id=".$mybb->user['uid']);
 
$gal_mem $db->fetch_array($query);
 
$gal_space round(($gal_mem['xx']/ 1048576),2)."MB"
}
else {
$gal_space="_";}
eval(
"\$index = \"".$templates->get("cpgallery")."\";");

output_page($index);

?>



RE: Seitenanzeige nicht für Gäste - Mak - 09.03.2008

DIe Variable $mybb->user['cpgid'] ist für Gäste wahrscheinlich nicht definiert.