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

CMS installation error


Go to End


3 Posts   2443 Views

Avatar
mark115

Community Member, 1 Post

3 August 2009 at 4:01am

I am a beginner trying to install silverstripe on windows vista, I am using web platform installer to install silverstripe but I got this message "Silverstripe CMS This product did not install successfully: The database 'silverstripe could not be created'. Web platform installer Log.

Can anyone give me some guidance?

Avatar
Heike-san

Community Member, 52 Posts

29 September 2009 at 2:13am

I got the same error! Were you able to solve the problem ?

Avatar
dalesaurus

Community Member, 283 Posts

30 September 2009 at 4:06pm

Edited: 30/09/2009 4:07pm

Fix the error, of course! The DB user you are putting in doesn't have CREATE rights on your database. Use your favorite mysql admin to add those rights or something like this as an admin SQL user:

GRANT ALL PRIVILEGES ON yoursilverstripedbname.* TO 'yourdbusername'@'%' WITH GRANT OPTION;