commit d46610a626eee148e18361a4ea706ff3f3089124
parent 1f7edd092eac8c13e048ded11ed272adf988e251
Author: markseu <mark2011@mayberg.se>
Date: Tue, 19 Aug 2014 12:06:09 +0200
Hello web interface (http as default)
Diffstat:
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/system/config/config.ini b/system/config/config.ini
@@ -31,7 +31,7 @@ configExtension = .ini
errorPageFile = error(.*).txt
textStringFile = text(.*).ini
webinterfaceLocation = /edit/
-webinterfaceServerScheme = https
+webinterfaceServerScheme = http
webinterfaceUserHashAlgorithm = bcrypt
webinterfaceUserHashCost = 10
webinterfaceUserFile = user.ini
diff --git a/system/core/core-webinterface.php b/system/core/core-webinterface.php
@@ -5,7 +5,7 @@
// Web interface core plugin
class YellowWebinterface
{
- const Version = "0.3.4";
+ const Version = "0.3.5";
var $yellow; //access to API
var $users; //web interface users
var $active; //web interface is active? (boolean)
@@ -19,7 +19,7 @@ class YellowWebinterface
{
$this->yellow = $yellow;
$this->yellow->config->setDefault("webinterfaceLocation", "/edit/");
- $this->yellow->config->setDefault("webinterfaceServerScheme", "https");
+ $this->yellow->config->setDefault("webinterfaceServerScheme", "http");
$this->yellow->config->setDefault("webinterfaceServerName", $this->yellow->config->get("serverName"));
$this->yellow->config->setDefault("webinterfaceUserHashAlgorithm", "bcrypt");
$this->yellow->config->setDefault("webinterfaceUserHashCost", "10");