|
|
|
uploadify ทำไมผมใช้ scriptData ส่งค่าไปไม่ได้อะครับ |
|
|
|
|
|
|
|
ตามหัวข้อเลยนะครับ
index.php
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>UploadiFive Test</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script src="jquery.uploadify.min.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="uploadify.css">
<style type="text/css">
body {
font: 13px Arial, Helvetica, Sans-serif;
}
</style>
</head>
<body>
<h1>Uploadify Demo</h1>
<form>
<div id="queue"></div>
<input id="file_upload" name="file_upload" type="file" multiple="true">
<input id="idw" name="idw" value="uploads" type="hidden">
</form>
<script type="text/javascript">
<?php $timestamp = time();?>
$(function() {
$('#file_upload').uploadify({
'formData' : {
'timestamp' : '<?php echo $timestamp;?>',
'token' : '<?php echo md5('unique_salt' . $timestamp);?>'
},
'swf' : 'uploadify.swf',
'uploader' : 'uploadify.php',
'scriptData': {'idw': 'uploads'}
});
});
</script>
</body>
</html>
uploadify.php
<?php
/*
Uploadify
Copyright (c) 2012 Reactive Apps, Ronnie Garcia
Released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
*/
$idw = $_POST['idw'];
// Define a destination
$targetFolder = '/uploads'; // Relative to the root
$verifyToken = md5('unique_salt' . $_POST['timestamp']);
if (!empty($_FILES) && $_POST['token'] == $verifyToken) {
$tempFile = $_FILES['Filedata']['tmp_name'];
$targetPath = $_SERVER['DOCUMENT_ROOT'] . $targetFolder;
$targetFile = rtrim($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,$idw."/".$_FILES['Filedata']['name']);
echo '1';
} else {
echo 'Invalid file type.';
}
}
?>
ในไฟล์นี้ผมได้ลองเปลี่ยนจาก move_uploaded_file($tempFile,$idw."/".$_FILES['Filedata']['name']);
เป็น move_uploaded_file($tempFile,"uploads/".$_FILES['Filedata']['name']);
ปรากฏว่า ทำงานได้ปกติครับ ไม่ทราบว่าปัญหานี้จะต้องแก้ยังไงหรอครับ
Tag : PHP
|
|
|
|
|
|
Date :
2012-10-22 00:33:53 |
By :
dreamt256 |
View :
1314 |
Reply :
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ช่วยตอบหน่อยนะครับ ผมไม่รู้จริงๆอะครับ เป็น uploadify 3.1 นะครับ
|
|
|
|
|
Date :
2012-10-22 18:44:04 |
By :
dreamt256 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คือมันส่ง data ไม่ไปหรือเปล่าครับ ?
|
|
|
|
|
Date :
2012-10-23 08:45:06 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คือที่ไฟล์ uploadify.php มันได้รับค่า $_FILES['Filedata']['name']; นะครับ
แต่ค่า $idw มันว่างเลยอะครับ
|
|
|
|
|
Date :
2012-10-23 11:30:11 |
By :
dreamt256 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่มีวิธีแก้เลยหรอครับ หรือมีวิธีไหนที่จะสามารถส่งค่าไปได้ไหมอ่าครับ
|
|
|
|
|
Date :
2012-10-23 19:53:06 |
By :
dreamt256 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ดีใจด้วยครับ
|
|
|
|
|
Date :
2012-10-24 06:15:23 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|