Kann damit nichts zu tun haben.
Hört sich für mich wie ein Virus an xD
Lg.
SynteXo
Kann damit nichts zu tun haben.
Hört sich für mich wie ein Virus an xD
Lg.
SynteXo
Lösch alle außer 5.3
Wenn das Bild angezeigt werden würde könnte Ich dir besser helfen.
Welche PHP Version hast Du drauf?
lg.
SynteXo
Danke für die Info!
lg.
SynteXo
Welche CMS benutzt Du?
Lg.
SynteXo
Danke für die info!
Wie wird die Installiert?
Such Ich auch
Bei mus.tcp.allowedaddr=localhost
Stat localhost ( 127.0.0.1 eingeben )
Ps. Kenne mich nicht gut aus.
Bei Datenbank Port anstatt : 4783 ( 3306 ) benutzen!
Zeig mal bitte deine Emulator Config.
Lg.
SynteXo
Moin,
Welche CMS benutzt du ?
Und Du hast in der Config vom Emulator was falsch eingestellt.
Lg.
SynteXo
Du bist der Beste!
Hat geklappt danke dir!
<?php
/*
* The ____ _ _
* | _ \| | | |
* | |_) | |_ _ ___| |__ ___ _ __ _ __ _ _
* | _ <| | | | |/ _ \ '_ \ / _ \ '__| '__| | | |
* | |_) | | |_| | __/ |_) | __/ | | | | |_| |
* |____/|_|\__,_|\___|_.__/ \___|_| |_| \__, |
* __/ |
* |___/ CMS
* @author Caglar <Caglar@outlook.de>
* @Copyright 2015 Caglar
*/
namespace System\View;
class View {
private $controller, $action, $file, $header, $footer, $_data = array();
public $plugins, $isPlugin;
public function __construct($controller, $action, $plugins, $isPlugin) {
$this->controller = $controller;
$this->plugins = $plugins;
$this->action = $action;
$this->isPlugin = $isPlugin;
}
public function get($key) {
return $this->_data[$key];
}
public function set($key, $value) {
$this->_data[$key] = $value;
}
public function display($custom = null) {
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(!$this->isPlugin) {
$this->file = "./Application/View/{$this->controller}/{$this->action}.php";
if(!file_exists($this->file)) {
$this->file = "./Application/View/Error/Index.php";
}
} else {
$this->path = "./Application/Plugins/{$this->plugins[$this->controller]["Author"]}/{$this->controller}";
$this->header = "{$this->path}/Templates/Header.php";
$this->file = "{$this->path}/Pages/{$this->action}.php";
$this->footer = "{$this->path}/Templates/Footer.php";
if(!file_exists($this->file)) {
$this->file = "./Application/View/Error/Index.php";
}
}
extract($this->_data);
ob_start();
switch($custom) {
case 0:
require_once("./Application/View/Header.php");
require_once($this->file);
require_once("./Application/View/Footer.php");
break;
case 2:
if($this->isPlugin) {
require_once($this->header);
}
require_once($this->file);
if($this->isPlugin) {
require_once($this->footer);
}
break;
default:
require_once($this->file);
}
$output = ob_get_contents();
ob_end_clean();
echo $output;
}
}
?>
Da wo ungültige Lizenz steht
Bittö
<?php
/*
* The ____ _ _
* | _ \| | | |
* | |_) | |_ _ ___| |__ ___ _ __ _ __ _ _
* | _ <| | | | |/ _ \ '_ \ / _ \ '__| '__| | | |
* | |_) | | |_| | __/ |_) | __/ | | | | |_| |
* |____/|_|\__,_|\___|_.__/ \___|_| |_| \__, |
* __/ |
* |___/ CMS
* @author Caglar <Caglar@outlook.de>
* @Copyright 2015 Caglar
*/
namespace System\View;
class View {
private $controller, $action, $file, $header, $footer, $_data = array();
public $plugins, $isPlugin;
public function __construct($controller, $action, $plugins, $isPlugin) {
$this->controller = $controller;
$this->plugins = $plugins;
$this->action = $action;
$this->isPlugin = $isPlugin;
}
public function get($key) {
return $this->_data[$key];
}
public function set($key, $value) {
$this->_data[$key] = $value;
}
} else {
if(!$this->isPlugin) {
$this->file = "./Application/View/{$this->controller}/{$this->action}.php";
if(!file_exists($this->file)) {
$this->file = "./Application/View/Error/Index.php";
}
} else {
$this->path = "./Application/Plugins/{$this->plugins[$this->controller]["Author"]}/{$this->controller}";
$this->header = "{$this->path}/Templates/Header.php";
$this->file = "{$this->path}/Pages/{$this->action}.php";
$this->footer = "{$this->path}/Templates/Footer.php";
if(!file_exists($this->file)) {
$this->file = "./Application/View/Error/Index.php";
}
}
extract($this->_data);
ob_start();
switch($custom) {
case 0:
require_once("./Application/View/Header.php");
require_once($this->file);
require_once("./Application/View/Footer.php");
break;
case 2:
if($this->isPlugin) {
require_once($this->header);
}
require_once($this->file);
if($this->isPlugin) {
require_once($this->footer);
}
break;
default:
require_once($this->file);
}
$output = ob_get_contents();
ob_end_clean();
echo $output;
}
}
?>
Dann kommt der Fehler.
Parse error: syntax error, unexpected 'if' (T_IF), expecting function (T_FUNCTION) in C:\inetpub\wwwroot\System\View\View.php on line 30
Danke Dir!
Weis jemand wie man die TC CMS zum laufen bringt?
Bzw eine Lizenz hat?
Lg.
SynteXo
Kommt drauf an welche du benutzt, teste einfach mal ein paar.
Danke dir!
Lg.
SynteXo