No Email model

The Controller with your code:
<?php
class ApplicationsController extends AppController{
        //var $scaffold;
        var $name = 'Applications';
        var $components=array('Email');

        function index(){
e("Start Debug<br>Here s Email:");
pr ($this->Email);
e("Here s email:");
pr ($this->email); // Just to be sure
e("<br>End Debug:");
$this->Email->controller = $this;
...

And then the View :
Start Debug
Here s Email:
Notice: Undefined property: Email in
/usersdev/wii/web/html/check/app/controllers/applications_controller.php
on line 9


Here s email:
Notice: Undefined property: email in
/usersdev/wii/web/html/check/app/controllers/applications_controller.php
on line 11



End Debug:
Fatal error: Call to undefined function: startup() in
/usersdev/wii/web/html/check/app/controllers/applications_controller.php
on line 18

the component doesn't seem to be loaded.


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

Reply via email to