有没有人体验过这个免费的网络托管区域。我已经检查了所有内容,当我在我的服务器上运行它时它运行良好。但是当我将它运行到 freewebhostingarea 时。将上传的文件移动到目录失败。
我认为这是关于目录的权限。所以我将其设置为 777。有什么想法吗?
这是我的代码
$m_id=$_COOKIE['m_id'];
$image_type=$_POST['image_type'];
$upic="u_".$image_type."_pic";
$valid_formats = array("jpg", "png", "bmp","jpeg");
if(isset($_POST) and $_SERVER['REQUEST_METHOD'] == "POST")
{
$fileinfo=pathinfo($_FILES['photoimg']['name']);
$size = $_FILES['photoimg']['size'];
if(isset($fileinfo['extension']))
{
$ext=strtolower($fileinfo['extension']);
if(in_array($ext,$valid_formats))
{
if($size<(5*1024*1024)) // Image size max 1 MB
{
$name ="uploadimg.".$ext;
$tmp = $_FILES['photoimg']['tmp_name'];
if(move_uploaded_file($tmp,"../user/$m_id/$name"))
{
BLAH BLAH
exit("<script>window.location='../user_page_update.php?u_id=$m_id';</script>");
}
else
exit("<script>alert('failed');window.location='../user_page_update.php?u_id=$m_id';</script>");
}
else
exit("<script>alert('Image file size max 2 MB');window.location='../user_page_update.php?u_id=$m_id';</script>");
}
else
exit("<script>alert('Invalid file format..');window.location='../user_page_update.php?u_id=$m_id';</script>");
}
else
exit("<script>alert('Please select image..!');window.location='../user_page_update.php?u_id=$m_id';</script>");
exit;
}