views:

528

answers:

2

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  A: 

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"]
Ólafur Waage
+1  A: 

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.

Paul Dixon
well I didn't succeed in building an uploading script by myself.I'm using the samples/php/test.php and it said that the file could not be uploaded.
the_drow