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 - install.php shows me a "white screeen"


Go to End


2 Posts   2199 Views

Avatar
Fabian

Community Member, 1 Post

20 February 2007 at 2:29am

Edited: 20/02/2007 2:30am

Hello from Germany! =)

I'm trying to test SilverStripe on a LAMP system:

- openSUSE 10.2
- Apache 2.2.3
- MySQL 5.0.26
- PHP 5.2.0

I've downloaded the source file and copied it into my apache directory. If I will open http://myhost/silverstripe-2.0/install.php in my webbrowser (Firefox 2.0.0.1), i can only see a white background but not the installation page.

Can anybody tell me, what I does wrong?

Avatar
Marcus

Administrator, 89 Posts

4 March 2007 at 1:23am

Do you have "display_errors" enabled in your php.ini?

I've found that php 5.2 and mysql 5+ have a problem with the installer on line 77 when it makes a call to "mysql_get_server_info" which requires an authenticated user to make that call, whereas I think earlier versions of mysql let that be executed without an authenticated connection. Try commenting line 77 (see below) and see if that works.

$this->requireMySQLVersion("4.1", array("MySQL Configuration", "MySQL version at least 4.1", "MySQL version 4.1 is required, you only have ", "MySQL " . mysql_get_server_info()));