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.

General Questions /

General questions about getting started with SilverStripe that don't fit in any of the categories above.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

Fatal error: Cannot redeclare


Go to End


2 Posts   3006 Views

Avatar
StuBlackett

Community Member, 2 Posts

27 May 2009 at 4:17am

Hi,

I'm just working with SS at the moment and struggling along.

All I want to do is store an image in a Database, But I'm getting the error :

Fatal error: Cannot redeclare CourseProfilePage::$has_one in C:\xampp\htdocs\silverstripe\mysite\code\CourseProfilePage.php on line 65

I'm pretty much copying this word for word from the tutorial, Just tweaked it ever so slightly.

Any ideas on what would cause this?

My code is as follows :

static $db = array(
'CourseName' => 'VarChar(100)',
'CourseDescription' => 'HTMLText',
'CourseAddress' => 'Text',
'Phone' => 'Text',
'Fax' => 'Text',
'Email' => 'Text',
'Website' => 'Text',
'RoadDirections' => 'HTMLText',
'RailDirections' => 'HTMLText',
'AdmissionPrice' => 'HTMLText',
'WeatherLocation' => 'Text'
);
static $has_one = array(
'CoursePicture' => 'Image'
);

But it doesnt like the $has_one array. What would cause this?

Thanks in advance

Avatar
Willr

Forum Moderator, 5523 Posts

27 May 2009 at 10:18pm

atal error: Cannot redeclare CourseProfilePage::$has_one in ...

Would normally happen if you have 2 static $has_one arrays in the same page class. Remove the other one and you should be sorted.