Uploadify完成但不上传

时间:2012-07-08 20:18:43

标签: php uploadify

我正在尝试在我的网站上使用Uploadify并使用以下uploadify.php进行设置:

<?php
// Define a destination
//$targetFolder = '/uploads'; // Relative to the root

if (!empty($_FILES)) {
$tempFile = $_FILES['Filedata']['tmp_name'];
$targetPath = $_SERVER['DOCUMENT_ROOT'];
$targetFile = rtrim($targetPath,'/') . '/' . $_FILES['Filedata']['name'];

// Validate the file type
$fileTypes = array('jpg','jpeg','gif','png'); // File extensions
$fileParts = pathinfo($_FILES['Filedata']['name']);

if (in_array($fileParts['extension'],$fileTypes)) {
move_uploaded_file($tempFile,$targetFile);
  echo '1';
} else {
  echo 'Invalid file type.';
}
}
?>

它没有上传所以我注释掉了$ targetFolder并更改了$ targetPath以便它只是文档根目录。当我尝试使用Uploadify上传file.txt时,这会导致$ targetFile为/home/user/public_html/example.com/file.txt。该文件夹设置为755.我不知道问题是什么。我正在使用一个上传的Uploadify安装,一切似乎工作正常,除了文件永远不会实际应用的地方。

1 个答案:

答案 0 :(得分:0)

这是一个文件夹权限未设置为755的问题。我退出并返回到cPanel,现在一切正常。