我正在制作多个电子商务网站。所有站点都连接到中央管理站点以获取数据,并且使用WHM从单个服务器进行工作。
WHM帐户名称: mercan
/home/mercan/public_html/img.php
内容:
<?php
$image=imagecreatefromjpeg('/home/mercan/public_html/images/testimage.jpg');
header('Content-Type: image/jpeg');
imagejpeg($image);
//ok no problem
?>
WHM帐户名称: apple
/home/mercan/public_html/img.php
内容:
<?php
$image=imagecreatefromjpeg('/home/apple/public_html/images/otherimage.jpg');
header('Content-Type: image/jpeg');
imagejpeg($image);
// ok no problem
?>
WHM帐户名称: kivi
/home/kivi/public_html/imgkivi.php
内容:
<?php
$image=imagecreatefromjpeg('/home/apple/public_html/images/otherimage.jpg');
// php file in kivi account.
header('Content-Type: image/jpeg');
imagejpeg($image);
// error not acces this folder.
// i neeed acces other(apple) account folder or files..
?>
如何在root访问权限上运行$image=imagecreatefromjpeg('/home/apple/public_html/images/otherimage.jpg');
?