Page 1 of 1

received http status 500 internal server error

Posted: 09 Jun 2010, 12:51
by smallcap
trying to upload pictures in frontend brings this message. does somebody know why?

mysteriously some pictures went to the server, others not ( no 3MB-problem).

site hosted at '1und1'

in backend multiple javaupload works, the pictures are listed but not thumbnailed and not shown

i better speak geman
thx.

Re: received http status 500 internal server error

Posted: 09 Jun 2010, 13:53
by Jan
The best way is looking to errorLog, if there is some error or try to enable debug mode or php error reporting :idea:

https://www.phoca.cz/documents/16-joomla ... rs-on-site

Jan

Re: received http status 500 internal server error

Posted: 09 Jul 2010, 14:43
by ladbroke
I too am getting this error when users try to upload images from the front end. I turned on debug and added the suggested lines to the htaccess file. I was wondering if anyone can decipher the following debug output?

[edited by admin - no problem in the list]

Re: received http status 500 internal server error

Posted: 09 Jul 2010, 14:58
by Jan
Hi, the info is Ok there, no problem seems to be in database, check if you get any error message in php (try to run some php script with error - to see if the php error messages are correctly displayed)

Jan

Re: received http status 500 internal server error

Posted: 09 Jul 2010, 15:11
by ladbroke
Wow, what a quick response thanks Jan! Can you explain a little how to run a php script with an error? Sorry if I'm being slow!

Re: received http status 500 internal server error

Posted: 11 Jul 2010, 14:33
by Jan
Just make some php file and run it on your server. The php should include some php error, like

index.php

Code: Select all

<?php
 echo "Something"
 echo "Something"
?>
You should get the following error:
Parse error: parse error, expecting `','' or `';'' in ... index.php on line 3

Jan

Re: received http status 500 internal server error

Posted: 12 Jul 2010, 10:48
by ladbroke
OK I hope I understood you correctly, I made a minor change to my index.php file, which I will change back, and I got the following error:

Fatal error: Call to undefined method: jsite->rend() in /homepages/19/d318156179/htdocs/wedding/index.php on line 79

Re: received http status 500 internal server error

Posted: 16 Jul 2010, 14:20
by Jan
Then it seems the error reporting is displayed correctly :-( then there is a problem because if you get no error with error reporting on, it is in fact not possible to find the problem - maybe you can try to disable all differnt system and content plugins, change the template, etc. etc. Maybe try to install on some different server, ... :idea: :(

Re: received http status 500 internal server error

Posted: 27 Jul 2010, 18:00
by ladbroke
Very odd. I did a complete fresh install and all worked well, and I could upload pictures. Now however I get the same error message again. The pictures are actually on the server in the correct folder, but they don't show up as thumbnails on the site, just a circle with a line through it.......It's driving me mad!

Re: received http status 500 internal server error

Posted: 31 Jul 2010, 14:55
by Jan
Hi, it is displayed in case:

- images are not on the server
- the path to the images is wrong
- images cannot be read because of permissions or ownership

Jan