I have a problem with CakePHP (newest version) themes. I have created new theme to /app/View/Themed/Start/
and it contains default.ctp inside the Start folder.
I have edited /app/Controller/AppController.php and I placed this code inside it:
class ThemeController extends AppController {
public $theme = 'Start';
}
But it still uses the default layout instead of my own template. What am I doing wrong here?