|
Hi I have created a new CakePHP project.
I am at the end of the tutorial but when I type localhost/myproject/users/add I have this error: Error: Create the class myproject below in file: app\Controller\myprojectController.php <?php
class myproject extends AppController {
}So I add myproject class and now I have this error: Error: Create MyvehiclesController::users() in file: app\Controller\myprojectController.php. <?php
class myprojectController extends AppController {
public function users() {
}
}What I have to do? Thank you so much...sorry but I am a newbie... Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to [hidden email] For more options, visit this group at http://groups.google.com/group/cake-php |
|
The first message is misleading. What happened was that your app is
available at localhost/, not localhost/myproject/ and so Cake received the request and assumed that myproject is a controller. Remove the file you created and try with localhost/users/add instead. If you want to have multiple projects available at localhost (likely yes) the best thing to do (IMHO) is to set up virtual hosts. Even better, assign a hostname to your local computer and then include new projects in your hosts file: 127.0.0.1 myproject.myserver 127.0.0.1 myotherproject.myserver etc. On Tue, Jun 26, 2012 at 6:33 PM, michele pierri <[hidden email]> wrote: > Hi I have created a new CakePHP project. > I am at the end of the tutorial but when I type > localhost/myproject/users/add I have this error: > > Error: Create the class myproject below in file: > app\Controller\myprojectController.php > > <?php > class myproject extends AppController { > > } > > > So I add myproject class and now I have this error: > > Error: Create MyvehiclesController::users() in file: > app\Controller\myprojectController.php. > > <?php > class myprojectController extends AppController { > > > public function users() { > > } > > } > > > What I have to do? > Thank you so much...sorry but I am a newbie... > > -- > Our newest site for the community: CakePHP Video Tutorials > http://tv.cakephp.org > Check out the new CakePHP Questions site http://ask.cakephp.org and help > others with their CakePHP related questions. > > > To unsubscribe from this group, send email to > [hidden email] For more options, visit this group at > http://groups.google.com/group/cake-php -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to [hidden email] For more options, visit this group at http://groups.google.com/group/cake-php |
| Powered by Nabble | Edit this page |
