3212 Posts in 847 Topics by 809 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 790 Views |
-
KEEPS GIVING ME THE SAME ERROR >< !!

20 January 2009 at 6:01am Last edited: 20 January 2009 6:05am
Hey Dudes,
Im kinda frustrated, because I made a template and I can't seem to get it right. SS keeps giving me the same error, over and over again. I've tried several "how to make a template" tutorials, and I've spoken to some dudes. But nothin' seems to work.
Ok, I wanted to have a template with 2 columns (left and right). So I made a template with the following code:
<?php
class HomePage extends SiteTree
{
static $db = array(
'mySubContent' => 'HTMLText'
);static $defaults = array(
);function getCMSFields()
{
$fields = parent::getCMSFields();
$fields->addFieldToTab('Root.Content.Main', new HtmlEditorField ( $name = "mySubContent", $title = "Sub Content" ), 'Content' );
return $fields;
}}
?>
I saved it in the code map, and after I flushed the db I really could select it. I was a happy man, until I looked at my homepage:
LINK TO MY WEBSITE: http://www.marksten.nl/blog/
Somebody, help this suicidal man
-
Re: KEEPS GIVING ME THE SAME ERROR >< !!

20 January 2009 at 6:37am
Looks like you don't have a Controller set up.
First, make sure HomePage extends Page.
Second, add
class HomePage_Controller extends Page_Controller
{
}below your HomePage class.
| 790 Views | ||
|
Page:
1
|
Go to Top |

