I've been tasked with reviewing Cakephp as a framework. I installed version 1.3 to my local server (Apache 2.2) but I keep getting this error:
Error: Index.phpController could not be found.
Error: Create the class Index.phpController below in file: app\Controller\Index.phpController.php
<?php
class Index.phpController extends AppController {
}
So, I created the file "Index.phpController.php" in the Controller directory and then created the class as instructed. But then I got this error:
Parse error: syntax error, unexpected '.', expecting '{' in C:\wamp\www\cakephp\app\Controller\Index.phpController.php on line 2
It apparently did not like the period after "Index" (which also looks funny to me for a class name). So, I took out the period and was then back to square one:
Error: Index.phpController could not be found.
I'm beginning to wonder, if it's this difficult to install this framework then is it going to be even more difficult to learn it? :rolleyes: