我正在尝试在magento中实现uploadify。我在 magento 中的 phtml 模板有这个:
<script type="text/javascript">
( function($) {
$(function() {
$('.uploadify').uploadify({
'swf' : 'uploadify.swf',
'uploader' : '<?php echo Mage::helper("adminhtml")->getUrl('*/index/upload') ?>',
'auto' : true,
});
});
} ) ( jQuery );
</script>
和这样的上传动作:
public function uploadAction()
{
$targetFolder = '/uploadify/uploads'; // Relative to the root
if (!empty($_FILES)) {
$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,$targetFile);
echo '1';
} else {
echo 'Invalid file type.';
}
}
}
这不起作用:(
上传操作中的脚本与uploadify.php 中的脚本完全相同,如果我将上传器选项更改为uploadify.php,它就可以工作('uploader':'uploadify.php')。
欢迎所有帮助。