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.

Archive /

Our old forums are still available as a read-only archive.

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

installation problem


Go to End


3 Posts   7670 Views

Avatar
brandstudio

Community Member, 5 Posts

28 April 2008 at 2:05pm

I modified a silverstripe locally and get error when I upload to the shared host server.

The error is "The website server has not been able to respond to your request."

Anyway I tested that I can install a clean silverstripe on the server without any trouble. If I install a clean silverstripe then replace the db with the modified one. It will show the same error.

Any one knows how to fix it?

Avatar
Sean

Forum Moderator, 922 Posts

28 April 2008 at 4:45pm

Edited: 28/04/2008 4:46pm

Add this line to your _config.php (in the mysite directory) on the server:

Director::set_environment_type('dev');

Then, refresh the page to see the error, which should be a bit more descriptive now.

Paste the error in this thread if you can't figure it out!

Cheers,
Sean

Avatar
brandstudio

Community Member, 5 Posts

29 April 2008 at 3:08pm

problem identified, it's mysql db name case sensitive issue. my local machine is running windows and export all table names on lower case. in the model, all table names actually have capital letters. this causes problem on the *unix host.

plz refer to: http://www.cybersite.com.au/node/69

thx for your help