文件不会在PHP中上传

时间:2013-07-08 11:44:16

标签: php cakephp iis

我在IIS上安装了php并尝试在CakePHP中实现文件上传。

我已遵循文件上传的必要指南,但每次上传时,我都会使用uploadError获取以下内容。即使temp_name是空的,也可能出错。

最初认为IIS没有对临时文件夹的写入权限,但即使授予IIS_IUSRSIUSR

的完全权限后它也无效
array(5) {
  ["name"]=>
  string(14) "DSC02474_2.JPG"
  ["type"]=>
  string(0) ""
  ["tmp_name"]=>
  string(0) ""
  ["error"]=>
  int(1)
  ["size"]=>
  int(0)
}           

FORM

<?php 
  echo $this->Form->create('User', array('class'=>'form-horizontal', 'action'=>'uploadProfilePicture', 'id'=>'change-picture', 'type'=>'file'));
  echo $this->Form->input('id', array('value'=>$authUser['id']));
  echo $this->Form->file('picture');
?>
<input type="submit" value="Upload" class="btn btn-info" name="submit">
<?php echo $this->Form->end(); ?>

模型中的处理程序

public function uploadFile( $check ) {

    $uploadData = array_shift($check);
    if ( $uploadData['size'] == 0 || $uploadData['error'] !== 0) {
        return false;
    }

    $uploadFolder = APP.'uploads'.DS."profile-pictures";
      $fileName = time()."_".$uploadData['name'];
    $uploadPath =  $uploadFolder . DS . $fileName;

    if( !file_exists($uploadFolder) ){
        mkdir($uploadFolder);
    }

    if (move_uploaded_file($uploadData['tmp_name'], $uploadPath)) {
        $this->set('picture', $fileName);
        return true;
    }

    return false;
}

1 个答案:

答案 0 :(得分:0)

我刚刚在http://php.net/manual/en/function.is-uploaded-file.php上找到了问题的解决方案。

如果您的$ _FILES和$ _POST为空,则可能是由于

  • 由php.ini
  • 中的post_max_size设置的限制
  • 由php.ini
  • 中的upload_max_filesize设置的限制

不幸的是,第一个限制没有报告为$ _FILES ['error']中的错误代码。