0

スクリプトに Uploadify を使用しています。

メインページ:

<?php

session_start();

var_dump($_SESSION);
$uploaded_files = $_SESSION['uploaded_files'];

?>

//Uploadify, HTML forms and more (not related, No PHP in this section)

uploadify.php:

<?php

session_start();

require_once('includes/functions.php');

// Define a destination
$targetFolder = 'uploads/temp'; // Relative to the root

if (!empty($_FILES)) {
    $fileParts = pathinfo($_FILES['Filedata']['name']);
    $file_hash = GenRndStr(20) . '.' . $fileParts['extension'];
    $tempFile = $_FILES['Filedata']['tmp_name'];
    $targetPath = $targetFolder;
    $targetFile = rtrim($targetPath,'/') . '/' . $file_hash;

    // Validate the file type
    $fileTypes = array(); // File extensions

    move_uploaded_file($tempFile, $targetFile);
    $_SESSION['uploaded_files'][] = $file_hash;
    echo '1';
}

?>

$_SESSION['uploaded_files'][] = $file_hash;実際のファイルがディレクトリにアップロードされるので、その部分に到達すると確信しています。私の問題は、var_dumpof$_SESSION['uploaded_files']が null を返すことです。

ファイルは同じディレクトリ レベルにあります。

前もって感謝します。

4

1 に答える 1

0

解決策を見つけました。問題は、Uploadify のフラッシュ バージョンがサーバーの別のクライアントとして扱われるため、サーバーが新しいセッション ID を作成することです。

私はこのトピックに従いました: http://www.uploadify.com/forum/#/discussion/43 他の人に役立つことを願っています。

于 2012-07-22T10:07:32.807 に答える