فهرست منبع

Hello web interface (http as default)

markseu 11 سال پیش
والد
کامیت
d46610a626
2فایلهای تغییر یافته به همراه3 افزوده شده و 3 حذف شده
  1. 1 1
      system/config/config.ini
  2. 2 2
      system/core/core-webinterface.php

+ 1 - 1
system/config/config.ini

@@ -31,7 +31,7 @@ configExtension = .ini
 errorPageFile = error(.*).txt
 errorPageFile = error(.*).txt
 textStringFile = text(.*).ini
 textStringFile = text(.*).ini
 webinterfaceLocation = /edit/
 webinterfaceLocation = /edit/
-webinterfaceServerScheme = https
+webinterfaceServerScheme = http
 webinterfaceUserHashAlgorithm = bcrypt
 webinterfaceUserHashAlgorithm = bcrypt
 webinterfaceUserHashCost = 10
 webinterfaceUserHashCost = 10
 webinterfaceUserFile = user.ini
 webinterfaceUserFile = user.ini

+ 2 - 2
system/core/core-webinterface.php

@@ -5,7 +5,7 @@
 // Web interface core plugin
 // Web interface core plugin
 class YellowWebinterface
 class YellowWebinterface
 {
 {
-	const Version = "0.3.4";
+	const Version = "0.3.5";
 	var $yellow;				//access to API
 	var $yellow;				//access to API
 	var $users;					//web interface users
 	var $users;					//web interface users
 	var $active;				//web interface is active? (boolean)
 	var $active;				//web interface is active? (boolean)
@@ -19,7 +19,7 @@ class YellowWebinterface
 	{
 	{
 		$this->yellow = $yellow;
 		$this->yellow = $yellow;
 		$this->yellow->config->setDefault("webinterfaceLocation", "/edit/");
 		$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("webinterfaceServerName", $this->yellow->config->get("serverName"));
 		$this->yellow->config->setDefault("webinterfaceUserHashAlgorithm", "bcrypt");
 		$this->yellow->config->setDefault("webinterfaceUserHashAlgorithm", "bcrypt");
 		$this->yellow->config->setDefault("webinterfaceUserHashCost", "10");
 		$this->yellow->config->setDefault("webinterfaceUserHashCost", "10");