From f3a7bf913f3bb03c1601b105271daf77df4e3bbb Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 19 Jan 2014 14:08:21 -0800 Subject: add the jquery file uploader. Have been suggesting this as a replacement for the valum uploaders for quite some time - as there is client resize ability and no license incompatibilities. It still requires integration. --- library/jqupload/server/php/index.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 library/jqupload/server/php/index.php (limited to 'library/jqupload/server/php/index.php') diff --git a/library/jqupload/server/php/index.php b/library/jqupload/server/php/index.php new file mode 100644 index 000000000..3ae1295ef --- /dev/null +++ b/library/jqupload/server/php/index.php @@ -0,0 +1,15 @@ + Date: Sun, 19 Jan 2014 14:21:26 -0800 Subject: don't allow the demo upload server to operate - otherwise one could find themselves with a bunch of unwanted uploads --- library/jqupload/server/php/index.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'library/jqupload/server/php/index.php') diff --git a/library/jqupload/server/php/index.php b/library/jqupload/server/php/index.php index 3ae1295ef..be29bf479 100644 --- a/library/jqupload/server/php/index.php +++ b/library/jqupload/server/php/index.php @@ -10,6 +10,10 @@ * http://www.opensource.org/licenses/MIT */ +// Don't allow files to be stored from the demo server + +exit; + error_reporting(E_ALL | E_STRICT); require('UploadHandler.php'); $upload_handler = new UploadHandler(); -- cgit v1.2.3