How do I set the uploaded files folder for SWFUplo

2020-07-18 04:46发布

I don't see in the documentation how to set the uploaded files folder with SWFUpload.

Can anyone point me to the right direction?

I'm using PHP 5 if it helps.

2条回答
够拽才男人
2楼-- · 2020-07-18 05:04

What you do is call a PHP script, and that script handles the file uploading.

You can turn on debug, this will give you a pretty nice debug view of what is happening, and the output of the PHP file in question.

The flash doesn't handle the uploading because the flash is actually running on the client machine.

Here's an example of the config I use.

    flash_url : "js/swfupload/flash/swfupload.swf",
    upload_url: "ajax/flash_upload.php",
    post_params: {"PHPSESSID" : "<?php echo session_id(); ?>", "folder_id" : "<?php echo $_SESSION["folder_id"]; ?>"},
    file_size_limit : "100 MB",
    file_types : "*.*",
    file_types_description : "All Files",
    file_upload_limit : 100,
    file_queue_limit : 0,
    custom_settings : {
        progressTarget : "fsUploadProgress",
        cancelButtonId : "btnCancel"
    },
    debug: true,

Then flash_upload.php has something like this (just an example)

$location = "/var/www/html/example.com/files/";
move_uploaded_file($_FILES["Filedata"]["tmp_name"], location .$_FILES["Filedata"]["name"]
查看更多
迷人小祖宗
3楼-- · 2020-07-18 05:14

SWFUpload is given a URL to send the upload to, e.g. http://yourdomain.com/upload.php - it is this script which determines what will happen to the upload.

See the PHP Manual section on Handling File Uploads for more information.

查看更多
登录 后发表回答