One time ago, I was ever asked to do a web project in which there is a web page containing the video look like on youtube. The video file should be able to upload by their self. Later after the video uploaded, it have to be converted automatically to the .flv format which is...
Image Object on Silverstripe
If you read a post about Creating a New Page Type[creating-a-new-page-type/], I created a new type of pages that contain the image object. If we see inside of Class Articlepage there is a definition: public static $has_one = array( 'Picture' => 'Image' ); The meaning of the definition is each Articlepage will have a field of Image...
Creating Contact Page
At each web site, contact page (Contact Us) is one of the pages needed for site visitors to contact/comment to the creator's web. From the business side of this page must be made to accommodate the client desires. From this page also a business transaction can be starts. In silverstripe, we can create a contact...
Creating a New Page Type
The first time when we install silverstripe, silverstripe has provided some type of standard pages that can we use. These page types are: *Page*: this is the type of standard pages for each page shown. *ErrorPage*: This page is a page to display a customizable error conditions. For example we can use this type...