>  기사  >  데이터 베이스  >  mysql-PHP中这个语句imagejpeg($newim,$name);提示没有权限?

mysql-PHP中这个语句imagejpeg($newim,$name);提示没有权限?

WBOY
WBOY원래의
2016-06-06 09:37:321160검색

mysqlphp

背景:

我用的是新浪云SAE,求帮忙看一下,多谢各位了。

错误提示:

Warning: imagejpeg() [function.imagejpeg]: Unable to open '123.jpg' for writing: Permission denied in 3.php on line 86

错误对应代码:

<code>    imagejpeg($newim,$name);</code>

全部代码:

<code> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">    <form action="3.php" method="post" enctype="multipart/form-data">
<input type="file" name="file" id="file"><br><input type="submit" name="submit" value="Submit">
</form>
<?php //配置Storage的上传域、上传路径$domain = "lapiao";$path = "/uploads/";$upload_dir = "saestor://".$domain.$path;//如果路径不存在则新建if(!is_dir($upload_dir)){mkdir($upload_dir,0777);}//-------------------------上传 begin----------------   //移动目录 if(move_uploaded_file($_FILES["file"]["tmp_name"],$upload_dir.$_FILES["file"]['name'])){    $url = "http://".$_SERVER['HTTP_APPNAME']."-".$domain.".stor.sinaapp.com".$path.$_FILES["file"]['name'];    echo '<br><br>';    echo '<br><br>';    echo "Image url:<br>".$url."<br>";    echo "<img  src="%24url" alt="mysql-PHP中这个语句imagejpeg($newim,$name);提示没有权限?" >";}function resizeImage($im,$maxwidth,$maxheight,$name,$filetype){    $pic_width = imagesx($im);    $pic_height = imagesy($im);    if(($maxwidth && $pic_width > $maxwidth) || ($maxheight && $pic_height > $maxheight))    {        if($maxwidth && $pic_width>$maxwidth)        {            $widthratio = $maxwidth/$pic_width;            $resizewidth_tag = true;        }        if($maxheight && $pic_height>$maxheight)        {            $heightratio = $maxheight/$pic_height;            $resizeheight_tag = true;        }        if($resizewidth_tag && $resizeheight_tag)        {            if($widthratio';        echo $name;        imagedestroy($newim);    }    else    {        $name = $name.$filetype;        imagejpeg($im,$name);    }           }//$im=imagecreatefromjpeg("saestor:/".$_FILES["file"]["tmp_name"]);//参数是图片的存方路径$im=imagecreatefromjpeg("$url");//参数是图片的存方路径$maxwidth="50";//设置图片的最大宽度$max   style="max-width:90%";//设置图片的最大高度$name="123";//图片的名称,随便取吧$filetype=".jpg";//图片类型resizeImage($im,$maxwidth,$maxheight,$name,$filetype);//调用上面的函数?>    </code>
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.