dropzone.js php上传不起作用

时间:2015-12-28 01:47:45

标签: javascript php file file-upload upload

不幸的是我的" dropzone"不工作,我按照本教程:

http://www.startutorial.com/articles/view/how-to-build-a-file-upload-form-using-dropzonejs-and-php

我的ordner结构与教程中提到的相同

好的,所以我有我的index.php:

<html>

<head>   

<link rel="stylesheet/less" type="text/css" href="../css/style.less"/>
<script src="../scripts/less.js"> </script>
<script src="../scripts/dropzone.js"> </script>

</head>

<body>

<!-- 3 -->
<form action="upload.php" class="dropzone">

</form>

</body>

</html>>

upload.php的:

<?php
$ds          = DIRECTORY_SEPARATOR;  //1

$storeFolder = 'uploads';   //2

if (!empty($_FILES)) {

    $tempFile = $_FILES['file']['tmp_name'];          //3             

    $targetPath = dirname( __FILE__ ) . $ds. $storeFolder . $ds;  //4

    $targetFile =  $targetPath. $_FILES['file']['name'];  //5

    move_uploaded_file($tempFile,$targetFile); //6

}
?>  

一切看起来都不错,我的uploads文件夹中没有文件。 我没有错误,但我不确定我的错误报告是否正确。

感谢您的帮助

1 个答案:

答案 0 :(得分:1)

上面的代码运行正常。我意识到我的文件太大了,我才开始工作。