| /plugin/flowchartjs/ |
| D | admin.php | 24 if (!isset($_FILES['_new']) && !isset($_POST['_del'])) return; 26 if (isset($_FILES['_new']) && $_FILES['_new']['error'] == 0){ 27 if ('json' != pathinfo($_FILES['_new']['name'], PATHINFO_EXTENSION)){ 28 msg($_FILES['_new']['name'].' is not a json file', 2); 30 move_uploaded_file($_FILES['_new']['tmp_name'], 31 DOKU_PLUGIN.'flowchartjs/styles/'.$_FILES['_new']['name']); 32 msg($_FILES['_new']['name'].' has been successfully uploaded', 1);
|
| /plugin/imageshack/ |
| D | action.php | 35 if(!isset($_FILES['imageshack_file'])) return; 37 if($_FILES['imageshack_file']['error'] || 38 !is_uploaded_file($_FILES['imageshack_file']['tmp_name'])){ 40 $_FILES['imageshack_file']['error']),-1); 52 'filename' => $_FILES['imageshack_file']['name'], 53 'mimetype' => $_FILES['imageshack_file']['type'], 54 'body' => file_get_contents($_FILES['imageshack_file']['tmp_name'])
|
| /plugin/dropfiles/action/ |
| D | ajax.php | 72 if ($_FILES['qqfile']['tmp_name']) { 73 $id = $INPUT->post->str('mediaid', $_FILES['qqfile']['name']); 88 if ($_FILES['qqfile']['error']) { 89 unset($_FILES['qqfile']); 93 if ($_FILES['qqfile']['tmp_name']) { 94 $res = media_upload($NS, $AUTH, $_FILES['qqfile']);
|
| /plugin/jplayer/vendor/james-heinrich/getid3/demos/ |
| D | demo.write.php | 68 if (!empty($_FILES['userfile']['tmp_name'])) { 70 if (is_uploaded_file($_FILES['userfile']['tmp_name'])) { 71 if ($APICdata = file_get_contents($_FILES['userfile']['tmp_name'])) { 73 if ($exif_imagetype = exif_imagetype($_FILES['userfile']['tmp_name'])) { 77 $TagData['attached_picture'][0]['description'] = $_FILES['userfile']['name']; 84 echo '<b>cannot open '.htmlentities($_FILES['userfile']['tmp_name']).'</b><br>'; 87 echo '<b>!is_uploaded_file('.htmlentities($_FILES['userfile']['tmp_name']).')</b><br>';
|
| /plugin/doxycode/ |
| D | admin.php | 67 global $_FILES; 83 …if ($cmd['update'] && isset($_FILES['upload']) && $_FILES['upload']['error'] != UPLOAD_ERR_NO_FILE… 84 if ($_FILES['upload']['error'] == 0) { 85 if ('xml' != pathinfo($_FILES['upload']['name'], PATHINFO_EXTENSION)) { 86 … msg(sprintf($this->getLang('admin_err_no_xml_file'), $_FILES['upload']['name']), 2); 92 $_FILES['upload']['tmp_name'], 93 DOKU_PLUGIN . 'doxycode/tagfiles/' . $_FILES['upload']['name'] 95 … msg(sprintf($this->getLang('admin_info_upload_success'), $_FILES['upload']['name']), 1); 96 $this->tag_config[pathinfo($_FILES['upload']['name'], PATHINFO_FILENAME)] = [];
|
| /plugin/grensladawritezor/fckeditor/editor/filemanager/upload/php/ |
| D | upload.php | 42 if ( !isset( $_FILES['NewFile'] ) || is_null( $_FILES['NewFile']['tmp_name'] ) || $_FILES['NewFile'… 46 $oFile = $_FILES['NewFile'] ;
|
| /plugin/photogallery/phpThumb/demo/ |
| D | phpThumb.demo.object.simple.php | 31 if (is_uploaded_file(@$_FILES['userfile']['tmp_name'])) { 32 $phpThumb->setSourceFilename($_FILES['userfile']['tmp_name']); 33 …$output_filename = './thumbnails/'.basename($_FILES['userfile']['name']).'_'.$thumbnail_width.'.'.…
|
| /plugin/wysiwyg/fckeditor/editor/filemanager/connectors/php/ |
| D | commands.php | 160 if (!isset($_FILES)) { 161 global $_FILES; 166 if ( isset( $_FILES['NewFile'] ) && !is_null( $_FILES['NewFile']['tmp_name'] ) ) 170 $oFile = $_FILES['NewFile'] ;
|
| D | phpcompat.php | 9 if ( !isset( $_FILES ) ) { 10 $_FILES = $HTTP_POST_FILES ; variable
|
| /plugin/zwidoku/ |
| H A D | open_file.php | 33 $target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]); 45 if ($_FILES["fileToUpload"]["size"] > 10000000) { 73 if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) { 74 echo "The file ". basename( $_FILES["fileToUpload"]["name"]). " has been uploaded.";
|
| /plugin/file2dw/ |
| D | action.php | 153 if ( $_FILES['userFile'] && $_FILES['userFile']['error'] == 0 ) { 154 $this->_msg( array('ok_info','userFile found: '.$_FILES['userFile']['name']) ); 208 … && strpos( $this->getConf( 'parserMimeTypeSOffice' ), $_FILES['userFile']['type'] ) !== false) { 413 if ( ! $_FILES['userFile'] ) return $this->_msg('er_file_miss'); 416 if ( $_FILES['userFile']['error'] > 0 ) { 417 return $this->_msg( array( 'er_file_upload', $_FILES['userFile']['error'] ) ); 436 $this->userFileName = $_FILES['userFile']['name']; 438 if ( ! move_uploaded_file( $_FILES['userFile']['tmp_name'], $this->userFile ) ) {
|
| /plugin/fckg/fckeditor/editor/filemanager/connectors/php/ |
| D | phpcompat.php | 9 if ( !isset( $_FILES ) ) { 10 $_FILES = $HTTP_POST_FILES ; variable
|
| D | commands.php | 527 if (!isset($_FILES)) { 528 global $_FILES; 582 $sFileUrl = CombinePaths( $sFileUrl, $_FILES['NewFile']['name']); 583 SendUploadResults( '203', $sFileUrl, $_FILES['NewFile']['name'], $msg ) ; 591 if ( isset( $_FILES['NewFile'] ) && !is_null( $_FILES['NewFile']['tmp_name'] ) ) 595 $upload_err = $_FILES['NewFile']['error']; 597 send_ckg_UploadError($upload_err,$sFileUrl, $_FILES['NewFile']['name']); 600 $oFile = $_FILES['NewFile'] ;
|
| /plugin/wordimport/action/ |
| D | ui.php | 42 isset($_FILES['file']['tmp_name']) && 43 is_uploaded_file($_FILES['file']['tmp_name']) && 47 $this->import($_FILES['file']['tmp_name'], $ID);
|
| /plugin/odtplus2dw/ |
| D | action.php | 124 if ( $_FILES['userFile'] ) { 330 if ( ! $_FILES['userFile'] ) return $this->_msg('er_file_miss'); 332 …if ( $_FILES['userFile']['error'] > 0 ) return $this->_msg( array( 'er_file_upload', $_FILES['user… 334 …parserMimeTypeAuthorized' ), $_FILES['userFile']['type'] ) === false ) return $this->_msg( array( … 343 $this->userFileName = $_FILES['userFile']['name']; 345 …if ( ! move_uploaded_file( $_FILES['userFile']['tmp_name'], $this->userFile ) ) return $this->_msg… 353 …ypePandoc' ) != "" && strpos( $this->getConf( 'parserMimeTypePandoc' ), $_FILES['userFile']['type'… 363 …eSOffice' ) != "" && strpos( $this->getConf( 'parserMimeTypeSOffice' ), $_FILES['userFile']['type'…
|
| /plugin/docimporter/ |
| D | action.php | 25 if ( $_FILES['doc'] ) { 35 $fileName = basename($_FILES['doc']['name']); 39 if(move_uploaded_file($_FILES['doc']['tmp_name'], $tempDir."/". $fileName)){
|
| /plugin/odt2dw/ |
| D | action.php | 107 if ( $_FILES['odtFile'] ) { 313 if ( ! $_FILES['odtFile'] ) return $this->_msg('er_odtFile_miss'); 315 …if ( $_FILES['odtFile']['error'] > 0 ) return $this->_msg( array( 'er_odtFile_upload', $_FILES['od… 317 …arserMimeTypeAuthorized' ), $_FILES['odtFile']['type'] ) === false ) return $this->_msg( array( 'e… 323 $this->odtFileName = $_FILES['odtFile']['name']; 325 …if ( ! move_uploaded_file( $_FILES['odtFile']['tmp_name'], $this->odtFile ) ) return $this->_msg('…
|
| /plugin/struct/admin/ |
| H A D | schemas.php | 69 if (isset($_FILES['schemafile']['tmp_name'])) { 70 $json = io_readFile($_FILES['schemafile']['tmp_name'], false); 85 if (isset($_FILES['csvfile']['tmp_name'])) { 89 … $csvImporter = new CSVPageImporter($table, $_FILES['csvfile']['tmp_name'], $datatype); 91 … $csvImporter = new CSVSerialImporter($table, $_FILES['csvfile']['tmp_name'], $datatype); 93 … $csvImporter = new CSVImporter($table, $_FILES['csvfile']['tmp_name'], $datatype);
|
| /plugin/grensladawritezor/fckeditor/editor/filemanager/browser/default/connectors/php/ |
| D | commands.php | 156 if ( isset( $_FILES['NewFile'] ) && !is_null( $_FILES['NewFile']['tmp_name'] ) ) 160 $oFile = $_FILES['NewFile'] ;
|
| /plugin/supa/action/ |
| D | action.php | 60 $f = &$_FILES['Filedata']; 69 …if( empty($_FILES) && empty($_POST) && isset($_SERVER['REQUEST_METHOD']) && strtolower($_SERVER['R…
|
| /plugin/pgn4web/pgn4web/ |
| D | viewer.php | 201 } elseif (count($_FILES) == 0) { 204 } elseif ($_FILES['pgnFile']['error'] === UPLOAD_ERR_OK) { 205 $pgnFileName = $_FILES['pgnFile']['name']; 207 $pgnFileSize = $_FILES['pgnFile']['size']; 217 $pgnSource = $_FILES['pgnFile']['tmp_name']; 221 switch ($_FILES['pgnFile']['error']) {
|
| /plugin/upload/ |
| D | action.php | 40 if($_FILES['upload']['tmp_name']) { 68 if($_FILES['upload']['tmp_name']) {
|
| /plugin/zip/pear/File/ |
| D | Archive.php | 495 if (!isset($_FILES[$name])) { 498 switch ($_FILES[$name]['error']) { 505 $_FILES[$name]['name'] 510 $_FILES[$name]['name'] 522 "Unknown error ".$_FILES[$name]['error']." in file upload. ". 526 if (!is_uploaded_file($_FILES[$name]['tmp_name'])) { 532 $_FILES[$name]['tmp_name'], 533 $_FILES[$name]['name'], 534 $_FILES[$name]['type']
|
| /plugin/pdftools/ |
| D | admin.php | 57 $filename = $_FILES["zip_file"]["name"]; 58 $source = $_FILES["zip_file"]["tmp_name"]; 59 $type = $_FILES["zip_file"]["type"];
|
| /plugin/addressbook/ |
| D | syntax.php | 416 …if (isset($_FILES) && $_FILES['photo']['error'] == UPLOAD_ERR_OK && $_FILES['photo']['tmp_name']!=… 417 if (filesize($_FILES['photo']['tmp_name']) > (2*1024*1024)) { 420 } elseif (exif_imagetype($_FILES['photo']['tmp_name']) != IMAGETYPE_JPEG){ 424 $pic = $this->scaleJPG($_FILES['photo']['tmp_name']); 430 …if ($_FILES['photo']['error'] != UPLOAD_ERR_OK && $_FILES['photo']['tmp_name']!='' ) msg('Image co…
|