Ok I'm not sure what the difference in the links you posted are as both
look like the same address.
As for the " Error: UsersController could not be found. " this error is
correct if you don't have the UsersController.php with an add function.
Make sure you have the controller created.
Example:
<?php
App::uses('CakeEmail', 'Network/Email');
class UsersController extends AppController {
var $name = 'Users';
var $uses = array('User', 'Ticket');
public function index() {
}
public function edit() {
}
public function add() {
}
}
?>
On Thursday, July 26, 2012 5:51:52 AM UTC-4, Luís de Sousa wrote:
>
> Hello again,
>
> There's a detail in the first message that may provide further clues on
> what is wrong with this project. No matter what debug level I try (0, 1 or
> 2) I don't get any messages. It is as if the core.php file was being
> ignored.
>
> Thank you for reading.
>
--
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
[email protected] For more options, visit this group at
http://groups.google.com/group/cake-php