I have installed new site in Joomla 1.7 and its working fine, but when i checked its back-end (administrator) got 500 Internal Server Error.

Note: Site is working fine in Local server.

Please suggestion me any solution.

Thanks in advance.

link|improve this question

79% accept rate
Did the logfiles show anything? – nfechner Nov 22 '11 at 10:08
thankx for the reply.... and log is not showing anything :( – Dheeraj Agrawal Nov 22 '11 at 10:48
The apache error.log (if you are using apache) should show at least something. – nfechner Nov 22 '11 at 10:52
Can you add a little more info? How did you place the files on the server initially - unzip locally and ftp individual files to server, install locally an transfer with akeeba backup .jpa file(s) or manually unzipping on the remote server? Is the error as soon as you go to /administrator/, as soon as you successfully login, or when you go to one specific page within the admin area? Depending upon your server's setup you may need the apache error log, or perhaps suexec's error log file. – Dean Marshall Nov 23 '11 at 2:40
Have you tried a different browser? I know this sounds like madness but I've just been helping someone on the Joomla forums and one particular browser produces a server 500 error whilst another doesn't. The upshot is that the 'server error' may not be a true server error but something triggered due to a cookie or some other external factor. – Dean Marshall Nov 24 '11 at 1:39
feedback

5 Answers

up vote 4 down vote accepted

First you have change folder permission to 775 for the following folders:

cache, logs, tmp & administrator/cache

then go to: configuration.php

find code:

$log_path = 'XXXXXXXXXXXXX';
$tmp_path = 'XXXXXXXXXXXXX';

and change code into:

$log_path = './logs';
$tmp_path = './tmp';

problem solved :)

link|improve this answer
Thanks a thousand times. I searched the wole internet. I have a pretty big project I working on, and the jomsocial component didn't wanted to work. With this trick it worked. Thanks !! – Legycsapo Apr 10 at 7:51
JomSocial user here as well, and the solution worked for my client's site! Thank you :) – Khairul May 16 at 3:15
feedback

Check your error logs and backtrace what is causing the error. It sounds like you have MySQL errors, make sure any of your components/modules/aren't tricking out your site.

Think it's a component?

You can login into PHPMyAdmin and disable/enable modules manually by unpublishing them using the table editor, changing isPublished to 0 .

link|improve this answer
feedback

May be some files are not uploded.Check failed transfer of your FTP server.Make sure all the files are uploded online

link|improve this answer
Don't know who gave you the down vote - but I've upvoted you because frankly this is always a good debugging step with a site transferred from one host to another (if done via ftp). Error log analysis would be best - but often they aren't easily accessible from shared hosting or people don't know where to find them. – Dean Marshall Nov 23 '11 at 2:33
thank you for up vote , i posted the answer because it has happened with me in the past so i thought that can be one of the case – Karee Nov 23 '11 at 5:41
feedback

Try reinstalling database with the correct compatibility and also check web.config file on ftp for correct configuration paths !

link|improve this answer
feedback

The problem is in your configuration.php, you'll need to change a few lines. I written your solution on my blog:

500 internal server error at joomla backend

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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