aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/File_upload.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-11-28 17:37:18 -0800
committerzotlabs <mike@macgirvin.com>2017-11-28 17:37:18 -0800
commit76703dee8481075a44b254a548bb29b49530d0ad (patch)
treeb357716a3b0d1dc39b3855fe1839dbf03aa4ba7a /Zotlabs/Module/File_upload.php
parentdf45c13f622d01241ac96b2f16cb964ba688d72c (diff)
downloadvolse-hubzilla-76703dee8481075a44b254a548bb29b49530d0ad.tar.gz
volse-hubzilla-76703dee8481075a44b254a548bb29b49530d0ad.tar.bz2
volse-hubzilla-76703dee8481075a44b254a548bb29b49530d0ad.zip
more chunk work
Diffstat (limited to 'Zotlabs/Module/File_upload.php')
-rw-r--r--Zotlabs/Module/File_upload.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/Zotlabs/Module/File_upload.php b/Zotlabs/Module/File_upload.php
index 296dab708..e2a6d45e5 100644
--- a/Zotlabs/Module/File_upload.php
+++ b/Zotlabs/Module/File_upload.php
@@ -10,7 +10,8 @@ class File_upload extends \Zotlabs\Web\Controller {
function post() {
- // logger('file upload: ' . print_r($_REQUEST,true));
+ logger('file upload: ' . print_r($_REQUEST,true));
+ logger('file upload: ' . print_r($_FILES,true));
$channel = (($_REQUEST['channick']) ? channelx_by_nick($_REQUEST['channick']) : null);
@@ -56,7 +57,7 @@ class File_upload extends \Zotlabs\Web\Controller {
if(array_key_exists('HTTP_CONTENT_RANGE',$_SERVER)) {
$pm = preg_match('/bytes (\d*)\-(\d*)\/(\d*)/',$_SERVER['HTTP_CONTENT_RANGE'],$matches);
if($pm) {
- // logger('Content-Range: ' . print_r($matches,true));
+ logger('Content-Range: ' . print_r($matches,true));
$partial = true;
}
}