开发者社区> 问答> 正文

[php]uploadify 无法上传文件

本人初学uploadify上传,使用给的demo无法将文件上传到uploads文件夹内
请各位大神给予指导

index.php
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>UploadiFive Test</title>
<script src="jquery.min.js" type="text/javascript"></script>
<script src="jquery.uploadify.min.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="uploadify.css">
<style type="text/css">
body {
    font: 13px Arial, Helvetica, Sans-serif;
}
</style>
</head>

<body>
    <h1>Uploadify Demo</h1>
    <form>
        <div id="queue"></div>
        <input id="uploadify" name="uploadify" type="file" multiple="true">
    </form>
        <a href="javascript:$('#uploadify').uploadify('upload')" >upload</a>
    <script type="text/javascript">
        <?php $timestamp = time();?>
        $(function() {
            $('#uploadify').uploadify({
                'formData'     : {
                    'timestamp' : '<?php echo $timestamp;?>',
                    'token'     : '<?php echo md5('unique_salt' . $timestamp);?>'
                },
                'swf'      : '/php_test/uploadify/uploadify.swf',
                'uploader' : '/php_test/uploadify/uploadify.php',
                'folder'   : '/php_test/uploadify/uploads'
            });
        });
    </script>
</body>
</html> 

uploadify.php 上传处理文件
<?php
/*
Uploadify
Copyright (c) 2012 Reactive Apps, Ronnie Garcia
Released under the MIT License http://www.opensource.org/licenses/mit-license.php 
*/
// Define a destination
$targetFolder = '/uploads'; // Relative to the root
$verifyToken = md5('unique_salt' . $_POST['timestamp']);
if (!empty($_FILES) && $_POST['token'] == $verifyToken) {
$tempFile = $_FILES['Filedata']['tmp_name'];
$targetPath = $_SERVER['DOCUMENT_ROOT'] . $targetFolder;
$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.';
}
}
?>

展开
收起
小旋风柴进 2016-03-10 10:25:16 4415 0
1 条回答
写回答
取消 提交回答
  • swf和uploader配置对了吗?jquery和uploadify的js路径对了没有

    按照你的配置网站更目录下要存在php_test/uploadify/这个路径,添加onUploadSuccess和onUploadError事件看有什么错误,并且你请求的文件也要在php_test/uploadify/下

       $(function() {
            $('#uploadify').uploadify({
                'formData'     : {
                    'timestamp' : '<?php echo $timestamp;?>',
                    'token'     : '<?php echo md5('unique_salt' . $timestamp);?>'
            },
                'swf'      : '/php_test/uploadify/uploadify.swf',
                'uploader' : '/php_test/uploadify/uploadify.php',
                'folder'   : '/php_test/uploadify/uploads', 
                'onUploadError' : function(file, errorCode, errorMsg, errorString) {   //上传错误   
                            alert('The file ' + file.name + ' could not be uploaded: ' + errorString);   
                 }
          });
        });
    2019-07-17 18:57:01
    赞同 展开评论 打赏
问答分类:
问答标签:
问答地址:
问答排行榜
最热
最新

相关电子书

更多
阿里云栖开发者沙龙PHP技术专场-深入浅出网络编程与swoole内核-吴镇宇 立即下载
PHP安全开发:从白帽角度做安全 立即下载
PHP 2017.北京 全球开发者大会——高可用的PHP 立即下载