0

我总是在这条线上遇到 500 内部服务器错误:

echo "<ul><li class='active'><a href='".substr($dir, 3)."/".$file."'><img src='".substr($dir, 3)."/"."small_".$file"' alt='small_".$file"'/></a></li></ul>";

那里出了什么问题。我在 Ubuntu VPS 上,php5.32 和 apache2 是最新的,一切都设置正确(我认为是这样)。非常感谢你的帮助!问候,吉米

4

2 回答 2

0

尝试这个 -

 echo "<ul><li class='active'><a href='".substr($dir, 3)."/".$file."'><img src='".substr($dir, 3)."/"."small_".$file."' alt='small_".$file."'/></a></li></ul>";
于 2012-09-03T12:01:17.150 回答
0

维基引用:

500 - 通用错误消息,当没有更具体的消息适合时给出

你没有一个.after $fileinimgalt。尝试这个:

echo "<ul><li class='active'><a href='".substr($dir, 3)."/".$file."'><img src='".substr($dir, 3)."/"."small_".$file."' alt='small_".$file."'/></a></li></ul>";
于 2012-09-03T11:58:48.463 回答