当前位置:Gxlcms > PHP教程 > Uploadify上传图片后找不到文件

Uploadify上传图片后找不到文件

时间:2021-07-01 10:21:17 帮助过:24人阅读

谁用过Uploadify 使用官网的demo上传图片显示成功但是文件没有!!!
UploadiFive Test 	

Uploadify Demo



 */// 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,$targetFile);		echo '1';	} else {		echo 'Invalid file type.';	}}?>


都是官网的demo,怎么弄也没有文件!!!!


回复讨论(解决方案)

//下面这句用的是根目录
$targetFolder = '/uploads';

问题解决了,和一楼说的差不多是因为目录设置到跟目录里了

直接把这一行改成你要的目录就行了

人气教程排行