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

Install stops at Building database schema...


Go to End


3 Posts   3418 Views

Avatar
rim

Community Member, 2 Posts

21 February 2009 at 4:17am

Hello all,

I'm trying to install SS for the first time: localhost, existing apache server. The install appears to be going okay but stops at "Building database schema..."

.htaccess looks okay (see below). A new MySQL database has not been created. I get nothing but blank pages.

Thanks for any help,
rim

### SILVERSTRIPE START ###
<IfModule mod_dir.c>
DirectorySlash Off
</IfModule>

RewriteEngine On
RewriteBase /silverstripe

RewriteCond %{REQUEST_URI} !(\.gif)|(\.jpg)|(\.png)|(\.css)|(\.js)|(\.php)$

RewriteCond %{REQUEST_URI} ^(.*)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .* sapphire/main.php?url=%1&%{QUERY_STRING} [L]
### SILVERSTRIPE END ###

Avatar
chris_d

Community Member, 21 Posts

21 February 2009 at 6:42am

the mysql connection test script at
http://www.wallpaperama.com/forums/simple-php-mysql-connection-test-script-example-t5702.html
has helped me out before

Avatar
rim

Community Member, 2 Posts

22 February 2009 at 7:07am

Thanks for the tip! I'll give it a shot and see what happens.