From 6d36061725be4999177724da625efffe935d0883 Mon Sep 17 00:00:00 2001 From: Alib Date: Tue, 30 Mar 2010 10:34:31 +0200 Subject: fix min --- HISTORY | 4 ++++ min/config.php | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/HISTORY b/HISTORY index 176e87b..f9683eb 100755 --- a/HISTORY +++ b/HISTORY @@ -1,5 +1,9 @@ iStreamdev History ------------------ +xx.xx.2010 - 1.0.1 + +- Added fix for PHP version < 5.2.0 + 03.29.2010 - 1.0.0 diff --git a/min/config.php b/min/config.php index 12dce09..1c30344 100644 --- a/min/config.php +++ b/min/config.php @@ -123,7 +123,7 @@ $min_serveOptions['minApp']['maxFiles'] = 10; * array('//static' => 'D:\\staticStorage') // Windows * */ -//$min_symlinks = array(); +$min_symlinks = array(); /** -- cgit v1.2.3 From 1907228668303c3050035b889ae3ac346205f07b Mon Sep 17 00:00:00 2001 From: Alib Date: Tue, 30 Mar 2010 10:41:52 +0200 Subject: removed warning in php --- bin/svdrp.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/svdrp.php b/bin/svdrp.php index da83b49..386ecf9 100644 --- a/bin/svdrp.php +++ b/bin/svdrp.php @@ -29,7 +29,7 @@ class SVDRP if($this->handle) Disconnect(); $errno = 0; $errstr = ""; - $this->handle = fsockopen($this->cfgServer, $this->cfgPort, &$errno, &$errstr, $this->cfgTimeOut); + $this->handle = fsockopen($this->cfgServer, $this->cfgPort, $errno, $errstr, $this->cfgTimeOut); if(!$this->handle) { -- cgit v1.2.3 From f21cb1c93557afb69a68ea6b5f8eb65fafecf1f0 Mon Sep 17 00:00:00 2001 From: Alib Date: Tue, 30 Mar 2010 10:54:40 +0200 Subject: default to no compression if browser don't support gzip --- bin/backend.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/backend.php b/bin/backend.php index 7ea0649..cef568c 100644 --- a/bin/backend.php +++ b/bin/backend.php @@ -1,5 +1,5 @@ Date: Tue, 30 Mar 2010 10:59:09 +0200 Subject: updated README --- README | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README b/README index 713e917..6bc474b 100644 --- a/README +++ b/README @@ -74,6 +74,8 @@ iStreamdev generate a playlist from the requested file to the last file of the f - an http server with PHP5 (PHP 5 >= 5.2.0) enabled like apache or lighthttpd +- for some php installation you need to install php5-json & php5-zlib extension. + - having "at" package. - www-data user should allowed to use "at". -- cgit v1.2.3