1

Uploadifyを自分のサイトにダウンロードしましたが、選択したファイルをアップロードできません。ここでライブで見ることができます:http://www.guydavid.org/test/

フォルダツリー:

  • テスト
    • uploadify
      • ...ファイルをアップロード...
    • アップロード
    • index.php

index.php:

<!DOCTYPE html>
<html lang='en' xml:lang='en' xmlns='http://www.w3.org/1999/xhtml'>
<meta content='text/html; charset=utf-8' http-equiv='Content-Type'>
<title>File Management</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="uploadify/jquery.uploadify-3.1.min.js"></script>
<link rel="stylesheet" type="text/css" href="uploadify/uploadify.css" />
<script type="text/javascript">
$(document).ready(function() {
    $(function() {
        $('#file_upload').uploadify({
            'swf'      : 'uploadify/uploadify.swf',
            'uploader' : 'uploadify/uploadify.php',
            'method'   : 'post',
            'formData' : { 'someKey' : 'someValue' },
            'folder'      : '/uploads',
            'auto'        : true,
            'onError'     : function (event,ID,fileObj,errorObj) {
                alert(errorObj.type + ' Error: ' + errorObj.info);
            }
        });
    });
});
</script>
</head>
<body>

<input type="file" name="file_upload" id="file_upload" />

</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

if (!empty($_FILES)) {
    $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.';
    }
}
?>

その原因は何でしょうか?すべてのファイルに777パーマを設定しました。

エラーは表示されません。

4

1 に答える 1

3

私はあなたの前に../に気づきました

$targetFolder = '../uploads';

上部のINDEX.PHPファイルでこれを試して、実際にそこで何をしているのかを確認してください..私の推測では間違ったパスです...

<?php
$targetFolder = '../uploads';
$targetPath = $_SERVER['DOCUMENT_ROOT'] . $targetFolder;
echo $targetPath;
?>

おそらく

<?php
$targetFolder = '/uploads';
$targetPath = $_SERVER['DOCUMENT_ROOT'] . $targetFolder;
echo $targetPath;
?>

また

<?php
$targetFolder = 'uploads';
$targetPath = $_SERVER['DOCUMENT_ROOT'] . $targetFolder;
echo $targetPath;
?>

サーバーの設定と末尾のスラッシュに応じて..。

于 2012-07-20T19:31:44.440 に答える