Hallo ihr Lieben wie ich festgestellt habe funktioniert das Möbelstück Roomads nicht Sobald ich also ein Bild aus meiner SWF verlinken möchte zeigt er mir immer wieder folgendes an
Beiträge von F4ncy
-
-
Hallo ihr lieben, undzwar bräuchte ich ein Logo, mit der Aufschrift Hebbu
Im anhang findet ihr wie das logo aussehen sollte
Würde mich freuen wenn mir jemand weiterhelfen kann
logo.png -
Im Emulator Ordner, oder im CMS unter SWF?
-
Habe ma geschaut, finde nichts benutze den azure Emulator
-
Danke Zeumus, nun noch eine kleine Frage, wo finde ich die texte bzw kann ich die ändern
-
ich habe eine Frage undzwar wo ändert man diese Nachricht.:
http://prntscr.com/d2avqb -
Hallo, ich wollte ma fragen wo der fehler liegt undzwar zeigt er mir die images nicht an beim Myhabbo CMS und das nur beim Index und register
http://prntscr.com/d1nq8g -
Wenn ich dies mache kommt "Fatal error: Namespace declaration statement has to be the very first statement in the script in C:\xampp\htdocs\System\Bootstrap.php on line 15"
-
Das in der view.php habe ich schon getauscht aber was soll ich in der bootstrap.php datei tauschen? Hier die datei
PHP
Alles anzeigen<?php /* * The ____ _ _ * | _ \| | | | * | |_) | |_ _ ___| |__ ___ _ __ _ __ _ _ * | _ <| | | | |/ _ \ '_ \ / _ \ '__| '__| | | | * | |_) | | |_| | __/ |_) | __/ | | | | |_| | * |____/|_|\__,_|\___|_.__/ \___|_| |_| \__, | * __/ | * |___/ CMS * @author Caglar <Caglar@outlook.de> * @copyright 2015 Caglar */ namespace System; use System\View\View; use System\Common\Configuration; use System\Common\Server; use Application\Models\User\Object as User; use PDO; class Bootstrap { public $connection, $cfg, $server, $user; private $controller, $action, $query, $page; public function __construct($connection, $data) { $this->connection = $connection; $this->cfg = new Configuration($this->connection); $this->server = new Server($this->connection); $this->user = new User($this->connection); $this->controller = $data[0]; $this->action = $data[1]; $this->prepare(); } public function prepare() { if(isset($_GET["p"])) { $params = array(); $params = explode("/", $_GET["p"]); $this->controller = ucwords($params[0]); if(isset($params[1]) && !empty($params[1])) { $this->action = $params[1]; } if(isset($params[2]) && !empty($params[2])) { $this->query = $params[2]; } } $this->page = $this->controller; $this->create(); } public function create() { $this->controller = ucfirst($this->controller); $plugins = []; $isPlugin = false; $sth = $this->connection->get()->query("SELECT * FROM `BB_Plugins` WHERE `Activated` = 'true' ORDER BY Importend DESC"); while($obj = $sth->fetch(PDO::FETCH_ASSOC)) { $plugins[$obj["Namespace"]] = $plugins[$obj["Namespace"]] = array("Name" => $obj["Name"], "Author" => $obj["Author"]); } if(!defined("LICENSE") || LICENSE !== strtoupper(sha1(md5(sha1($_SERVER["SERVER_NAME"])) * 60 * 60 * 3600))) { if(file_exists("{$_SERVER["DOCUMENT_ROOT"]}/Exceptions/License.Exception")) { die(file_get_contents("{$_SERVER["DOCUMENT_ROOT"]}/Exceptions/License.Exception")); } else { die("Ungültige Lizenz"); } } if(!array_key_exists($this->controller, $plugins)) { $this->controller = "Error"; $this->action = "Index"; $this->page = $this->controller; require_once("./Application/Controllers//{$this->controller}.php"); $obj = "\Application\Controllers\\{$this->controller}"; } else { $isPlugin = true; $this->controller = ucfirst($this->controller); $obj = "\Application\Plugins\\{$plugins[$this->controller]["Author"]}\\{$this->controller}\\Plugin"; } $load = new $obj(array($this->controller, ucfirst($this->action), $plugins, $isPlugin, $this->connection, $this->cfg, $this->server, $this->user)); if(method_exists($load, $this->action)) { $load->{$this->action}($this->query); } else { header("Location: http://{$_SERVER["HTTP_HOST"]}/error"); } } } ?>
-
Was soll ich den in der Bootsrap entfernen? das ist meine Frage damit es endlich Läuft..
-
Hallo liebe Mitmenschen ich wollte mal nachfragen wo ich was entfernen muss um die Lizenz von den Content zu umgehen
PHP
Alles anzeigen<?php /* * The ____ _ _ * | _ \| | | | * | |_) | |_ _ ___| |__ ___ _ __ _ __ _ _ * | _ <| | | | |/ _ \ '_ \ / _ \ '__| '__| | | | * | |_) | | |_| | __/ |_) | __/ | | | | |_| | * |____/|_|\__,_|\___|_.__/ \___|_| |_| \__, | * __/ | * |___/ CMS * @author Caglar <Caglar@outlook.de> * @copyright 2015 Caglar */ namespace System; use System\View\View; use System\Common\Configuration; use System\Common\Server; use Application\Models\User\Object as User; use PDO; class Bootstrap { public $connection, $cfg, $server, $user; private $controller, $action, $query, $page; public function __construct($connection, $data) { $this->connection = $connection; $this->cfg = new Configuration($this->connection); $this->server = new Server($this->connection); $this->user = new User($this->connection); $this->controller = $data[0]; $this->action = $data[1]; $this->prepare(); } public function prepare() { if(isset($_GET["p"])) { $params = array(); $params = explode("/", $_GET["p"]); $this->controller = ucwords($params[0]); if(isset($params[1]) && !empty($params[1])) { $this->action = $params[1]; } if(isset($params[2]) && !empty($params[2])) { $this->query = $params[2]; } } $this->page = $this->controller; $this->create(); } public function create() { $this->controller = ucfirst($this->controller); $plugins = []; $isPlugin = false; $sth = $this->connection->get()->query("SELECT * FROM `BB_Plugins` WHERE `Activated` = 'true' ORDER BY Importend DESC"); while($obj = $sth->fetch(PDO::FETCH_ASSOC)) { $plugins[$obj["Namespace"]] = $plugins[$obj["Namespace"]] = array("Name" => $obj["Name"], "Author" => $obj["Author"]); } if(!defined("LICENSE") || LICENSE !== strtoupper(sha1(md5(sha1($_SERVER["SERVER_NAME"])) * 60 * 60 * 3600))) { if(file_exists("{$_SERVER["DOCUMENT_ROOT"]}/Exceptions/License.Exception")) { die(file_get_contents("{$_SERVER["DOCUMENT_ROOT"]}/Exceptions/License.Exception")); } else { die("Ungültige Lizenz"); } } if(!array_key_exists($this->controller, $plugins)) { $this->controller = "Error"; $this->action = "Index"; $this->page = $this->controller; require_once("./Application/Controllers//{$this->controller}.php"); $obj = "\Application\Controllers\\{$this->controller}"; } else { $isPlugin = true; $this->controller = ucfirst($this->controller); $obj = "\Application\Plugins\\{$plugins[$this->controller]["Author"]}\\{$this->controller}\\Plugin"; } $load = new $obj(array($this->controller, ucfirst($this->action), $plugins, $isPlugin, $this->connection, $this->cfg, $this->server, $this->user)); if(method_exists($load, $this->action)) { $load->{$this->action}($this->query); } else { header("Location: http://{$_SERVER["HTTP_HOST"]}/error"); } } } ?>
-
Da ich das aZureCMS kenne, und keinerlei Ähmlichkeit festellen kann da Azure sich auf der Habbo.com Designe Fixiert ist, und nicht das Designe was iBabbo.de oder Hubbahotel.cc Benutzt auf der Homepage ggf, die Community Page als Beispiel Seite damit wir uns beim Designe treffen
-
iBabbo benutzt es ebenfalls.. Suche immernoch
-
Moin Jungs, Ich suche ein CMS was das Designe vom Hubba hat die ganzen Pages etc.. Würde mich freuen wenn ihr mir weiterhelfen könntet.
-
Falsch, in der Datenbank Config der Port ist falsch angegeben. am besten du schreibst wo host steht nur "localhost" hin, dann müsste das klappen:-)
-
Kind bleibt Kind Habbo.nz Spricht mich aufjedenfall nicht an mit den ganzen Idioten im Team besonders Dogus
-
Es kommt um die ganzen User Tabellen also User_...
in den Tabellen speichert er die Statisiken nicht ab die die User erspielenp.s die normale "Tabelle" USer wo die Regstrierten landen die funktioniert.
-
Es sind halt die fehler das die spielstände nicht gespeichert werden, bzw Aktivitätspunkte und gnzen anderen Statistiken.
-
Hallo, Ich benutze den Azure Emulator und die Datenbank nun, haben sich ein paar User registriert und die Datenbank übernimmt die User, aber nicht die user_info user_stats und alle anderen Tabellen von den User_
Jetzt bräuchte ich mal eure Hilfe, würde mich freuen wenn ihr mir helfen würdet. / Hilfestellungen bitte nur im Theard Posten -
Furnidata auf Deutsch?