Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm always gettin a 500 internal server error on this line:

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

what's going wrong there. I'm on Ubuntu VPS, php5.32 and apache2 are up to date and everything is set up correctly (I think so). Thanks a lot for your help! Greets, jimmi

share|improve this question

2 Answers

Try this -

 echo "<ul><li class='active'><a href='".substr($dir, 3)."/".$file."'><img src='".substr($dir, 3)."/"."small_".$file."' alt='small_".$file."'/></a></li></ul>";
share|improve this answer
1  
yeah! thanks! that did the trick! – jimmi james Sep 3 '12 at 13:26

wiki quotes:

500 - generic error message, given when no more specific message is suitable

You do not have a . after $file in img and alt. Try this:

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.