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

Installing SS latest build --> Error


Go to End


11 Posts   5715 Views

Avatar
ezero

Community Member, 7 Posts

20 January 2009 at 8:48am

Edited: 20/01/2009 8:49am

why don't you go back to a stable release (2.2 perhaps) if you are not comfortable with debugging and fixing errors yourself? I also wouldn't advise on using daily builds.

I already brought this to willrs attention the problems with silverstripe daily build and his forums. He seems to be very sure that there shouldn't be any problems.

Avatar
OnebyOne

Community Member, 54 Posts

20 January 2009 at 7:17pm

Edited: 07/02/2009 1:56am

THX, but
as you saw in my previous post i've tested SS 2.2.3 with 0.1.2 forum stable , i've change http://www.silverstripe.org/archive/show/232817 to get out that error, but i see that blank page for posts. Since i've tested other version of forums with SS 2.2.3 and got blank post page.
Runing dev mode didn't help, because no error was showing :(

I've build severals SS2.2.3 simple website, one with ecommerce stable (spent some time to make it work, because of some errors), but none with the forum...

Avatar
werkzeugH

Community Member, 3 Posts

26 January 2009 at 11:02am

Edited: 26/01/2009 11:02am

i fixed the Forum Member-Register Bug:

i took the constructor from stable forum version and put it into

forum/code/ForumMemberProfile.php :

...
class ForumMemberProfile extends Page_Controller {

public $URLSegment = "ForumMemberProfile";

function __construct() {
return parent::__construct(null);
}

...

Go to Top