gpt4 book ai didi

javascript - 图像未出现在 hostgator 中但出现在 localhost 中

转载 作者:行者123 更新时间:2023-11-28 04:41:22 26 4
gpt4 key购买 nike

我在根目录的members 文件夹中有一组上传的图像。当页面加载时,图像不会显示。当我检查元素时,我正确地获得了图片名称和其他参数,但图片没有显示。

This is the output image i'm getting

This is the result of inspect element

我在本地主机中使用了相同的代码,它工作正常并且所有图像都已加载。但现在我切换到 hostgator 它不显示图像。

<tr style="color:grey; font-size:15px;">
<td width="1%"><? echo $headdata['USERID']; ?></td>
<td width="1%"><img src="/members/<? echo $headdata['USERPIC']; ?>" width="150" height="150" ></td>
<td width="1%"><? echo $headdata['NAME'];?></td>
<td width="1%"><? echo $headdata['AGE'];?></td>
<td width="1%"><? echo $headdata['SEX'];?></td>
<td width="1%"><? echo $headdata['MOBILE'];?></td>
<td width="1%"><? echo $headdata['TYPE'];?></td>

<?
$txtreceived = $headdata['ID'];
$IDS = encrypt_decrypt('encrypt', $txtreceived);
?>

<td width="1%">
<a href="editmemberdetails.php?UpdateId=<? echo $IDS; ?>" class="btn btn-sm btn-primary">
<i class="fa fa-pencil"></i>
</a>
<a href="editmember.php?UpdateId=<? echo $IDS; ?>" class="btn btn-sm btn-danger">
<i class="fa fa-times"></i>
</a>
</td>
</tr>

最佳答案

如果您在 hostgator 中的代码不在根目录(www 或 public_html)中,并且在本地主机中您的代码位于 www root 或 public_html 中,那么您的 src 路径在服务器上不起作用,因为您添加了 /src="/members/..."

所以请检查 src="./members/..." 仍然无法工作,然后检查服务器中的 members 文件夹权限,它应该是可读可写的755 对于 apache 用户。并检查 members 文件夹中是否存在 $headdata['USERPIC']; 文件?

关于javascript - 图像未出现在 hostgator 中但出现在 localhost 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43737295/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com