21282 Posts in 5730 Topics by 2601 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 2095 Views |
-
Fatal error: Cannot redeclare

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
-
Re: Fatal error: Cannot redeclare

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.
| 2095 Views | ||
|
Page:
1
|
Go to Top |


