0

私が持っているもの:

私が書いているイントラネット アプリケーションのファイルをアップロードするために、uploadifyを使用しています。

1 人のユーザーに属するディレクトリにファイルをアップロードする必要があります (ディレクトリの動的作成を使用)。

私の明らかに間違った解決策:)

ユーザーがログインしたら、彼にフォルダーを作成します(タイトルはuser_idです)。

これで、uploadify.php は次のようになります。

    session_name("test_tool_cookie");
    session_start();
    $targetFolder = '/test_tool/app/webroot/uploadify/' . $_SESSION['Auth']['User']['user_id']; //Relative to the root
    //the 3 lines above are my only change to the script
//$targetFolder = '/test_tool/app/webroot/uploadify/tmpFile'; //this was here before my changes

    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('html' , 'docx', 'pdf', 'xls', 'xlsx', 'txt'); // 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.';
        }
    }

問題

  • 上記のスクリプトは、ファイルをフォルダーにアップロードしません (チェックして、ファイルを他の場所にアップロードしません)。

  • $targetFile を静的な値に変更すると、正常に動作します。

  • セッション値は正しい (ただし無視)

他に何が回答済みの質問を獲得する可能性がありますか

Cake php と簡単に統合でき、カスタマイズ可能で、データベース内のすべてのオブジェクトが独自のフォルダーを持つことができる優れたマルチアップロード プラグイン (簡単な説明付き) を提案する場合は、質問を回答としてマークします。

あなたの答えを考えてください。この問題の解決策は大いに役立ちます。

4

2 に答える 2

1

ここの例のように、フォームデータでセッション名を送信しようとしましたか?

于 2013-02-06T20:14:06.687 に答える
0

何を$_SERVER['DOCUMENT_ROOT']返すかを確認する必要があります。

それが返された場合、たとえば/home/your_username/public_html/test_tool/app/webroot、これが起こると信じており、追加している場合/test_tool/app/webroot/uploadify/、ファイルをアップロードすることは決してないからです。

私の見解では、次のことを行い、他のすべてをそのままにしておく必要があります。

// As long as $_SESSION['Auth']['User']['user_id'] has a value, it should work. If not, statically place a number there like /uploadify/1 to see if it works
$targetFolder = '/uploadify/' . $_SESSION['Auth']['User']['user_id']; //Relative to the root
于 2013-02-07T13:43:38.523 に答える