2012-07-10 52 views
2

我有一個uploadify腳本正在運行,基本設置。當我將圖像的目標文件夾硬編碼爲uploadify.php時正常工作 - 現在我想讓該文件夾變爲動態文件。我該怎麼做呢?PHP JQuery:在哪裏指定uploadify目標文件夾

我有一個PHP變量$uploadify_path其中包含我想要的文件夾的路徑。我已經把uploadify.php和check_exists.php中的$targetPath = $uploadify_path替換爲硬編碼的$targetPath = path/to/directory,但它不起作用。文件上傳動畫運行,表示它已完成,但該目錄仍爲空。該文件沒有隱藏在其他地方。

我看到有一個選項在Javascript中指定一個文件夾。我也嘗試過,但無濟於事。

如果任何人都可以教育我如何通過這個可變的目的地uploadify,我會非常感激。

我包括我的檢查(基本上默認)當前的代碼:

JavaScript的

uploadify.php

$targetPath = $_SERVER['DOCUMENT_ROOT'] . $uploadify_path; // Relative to the root 

if (!empty($_FILES)) { 
    $tempFile = $_FILES['Filedata']['tmp_name']; 
    $targetFile = $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.'; 
    } 
} 
+0

我的猜測是,你沒有適當的權限設置上只是任何隨機文件夾,當你硬編碼,因爲你必須對設置適當的權限它的工作原理特定文件夾。 – jpea 2012-07-10 03:13:04

+0

我實際上是在頁面上創建文件夾。所有設置爲755.我沒有手動將它們更改爲777只是爲了測試,但沒有喜悅... – Eamonn 2012-07-10 03:14:08

回答

4

JS

<script type="text/javascript"> 
    $(function() { 

     $('#file_upload').uploadify({ 
      'formData' : {'path':'/file/path'}, 
      'swf'  : 'uploadify/uploadify.swf', 
      'uploader' : 'uploadify/uploadify.php' 
      // Put your options here 
     }); 
    }); 
</script> 

PHP

$targetPath = $_SERVER['DOCUMENT_ROOT'] . $_POST['path']; // Relative to the root 

if (!empty($_FILES)) { 
    $tempFile = $_FILES['Filedata']['tmp_name']; 
    $targetFile = $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.'; 
    } 
} 
+0

第一次工作。感謝你,好先生:) – Eamonn 2012-07-10 03:19:41