Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

Installing SilverStripe /

Getting SilverStripe up and running on your computer and on your web server.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

Internal Server Error in Control Panel


Go to End


7 Posts   4478 Views

Avatar
dynasty

Community Member, 5 Posts

6 January 2009 at 8:53am

Hi guys,

I recently installed SilverStripe v2.2.3 on my webhost. I am able to log in to my control panel, but when I click on any of the links on the left I receive an Internal Server Error message saying that the server encountered aa internal error or misconfiguration and was unable to complete the request. My web host was not able to help as they cannot find an 'admin' folder among the SilverStripe files. Can anyone help?

Avatar
Hamish

Community Member, 712 Posts

6 January 2009 at 9:47am

This wiki page has some info on debugging:

http://doc.silverstripe.com/doku.php?id=debugging

Your error is pretty inspecific - so try some of the suggestions on that page and post your results.

Avatar
Sam

Administrator, 690 Posts

6 January 2009 at 4:27pm

Open the .htaccess file and try removing these lines:

<IfModule mod_dir.c>
DirectorySlash Off
</IfModule>

Also, ask your web host to confirm that mod_rewrite is enabled and AllowOverride is set to "AllowOverride all" or some other setting where RewriteRules can be specified in the .htaccess file.

Avatar
dynasty

Community Member, 5 Posts

7 January 2009 at 5:33am

Thank you for replying. Is this the .htaccess file within the SilverStripe folder or the one in the root folder?

Avatar
Tobbe

Community Member, 25 Posts

7 January 2009 at 6:28am

It is in the .htaccess file in the folder of SilverStripe.
Do you have a similar text in the root too?

Avatar
dynasty

Community Member, 5 Posts

7 January 2009 at 8:16am

No, the text in the root is in fact different. So do I just put in the following in the .htaccess file?

<Directory />
AllowOverride All
</Directory>

Avatar
Sam

Administrator, 690 Posts

7 January 2009 at 5:33pm

No, AllowOverride all needs to be set by your server administrator. It specifies which settings are allowed to be controlled within a .htaccess file, so it wouldn't make sense to have it editable within the .htaccess itself.