When you point your browser to http://localhost/users/ , cakePHP
searches for an index action in users_controller.php, and an
index.thtml. So you must add them.

/app/controllers/users_controller.php
<?php
class UsersController extends AppController {
   var $name = 'Users';
function index() {
//Do something
}
}
?>

/app/views/users/index.thtml

<?php echo "hello, world!" ?>



On 4월4일, 오전7시00분, "Dave" <[EMAIL PROTECTED]> wrote:
> I tried making the permissions really open - read/write for everybody
> and this didn't help.  Didn't really expect it to, but oh well.
> Anybody?


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to