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

no install SilverStripe-v2.3.0-rc3


Go to End


3 Posts   3143 Views

Avatar
lavrnn

Community Member, 1 Post

31 January 2009 at 4:28am

error
----------------------------------------

Installing SilverStripe...

I am now running through the installation steps (this should take about 30 seconds)

If you receive a fatal error, refresh this page to continue the installation

* Creating 'mysite/_config.php'...
* Creating /home/nikson/data/susilverstripe/mysite/_config.php
* Creating '.htaccess' file...
* Creating /home/nikson/data/susilverstripe/.htaccess

Avatar
warwick

Community Member, 13 Posts

31 January 2009 at 7:24pm

I am also having issues with installing SilverStripe-v2.3.0-rc3. I have tested of 2 different sites with the same result on both. I have copy pasted the dev mode error below

Building Database
Creating database tables

PageComment
ForumCategory
Post
Post_Subscription
GalleryPage_Extension
SiteTree
Email_BounceRecord
[User Error] Bad class to singleton() - Email_BlackList
GET /listeroid/dev/build?flush=1
Line 263 in C:\Program Files\VertrigoServ\www\listeroid\sapphire\core\Core.php

Source
254 if(($pos = strpos($className,'_')) !== false) $className = substr($className,0,$pos);
255 if($_CLASS_MANIFEST[$className]) return $_CLASS_MANIFEST[$className];
256 }
257
258 function singleton($className) {
259 static $_SINGLETONS;
260 if(!isset($className)) user_error("singleton() Called without a class", E_USER_ERROR);
261 if(!is_string($className)) user_error("singleton() passed bad class_name: " . var_export($className,true), E_USER_ERROR);
262 if(!isset($_SINGLETONS[$className])) {
263 if(!class_exists($className)) user_error("Bad class to singleton() - $className", E_USER_ERROR);
264 $_SINGLETONS[$className] = Object::strong_create($className,null, true);
265 if(!$_SINGLETONS[$className]) user_error("singleton() Unknown class '$className'", E_USER_ERROR);
266 }
267 return $_SINGLETONS[$className];
268 }
269
Trace
Bad class to singleton() - Email_BlackList
Line 263 of Core.php
singleton(Email_BlackList)
Line 161 of DatabaseAdmin.php
DatabaseAdmin->doBuild(,1)
Line 81 of DatabaseAdmin.php
DatabaseAdmin->build()
Line 118 of DevelopmentAdmin.php
DevelopmentAdmin->build(HTTPRequest)
Line 107 of RequestHandler.php
RequestHandler->handleRequest(HTTPRequest)
Line 122 of Controller.php
Controller->handleRequest(HTTPRequest)
Line 262 of Director.php
Director::handleRequest(HTTPRequest,Session)
Line 106 of Director.php
Director::direct(/dev/build)
Line 115 of main.php

Avatar
pezi5499

Community Member, 6 Posts

5 February 2009 at 1:43am