:-((

Then: put this method into Your ApplicationsController:

function __construct() {
    e('Components before parent constructor: ');
    pr($this->components);
    parent::__construct();
    e('Components after parent constructor: ');
    pr($this->components);
}

For explanation of I'm trying to resolve take a look into
Controller::__construct()  method last 5 lines.

If I was You I will also try temporarily change line 63 of
cake/libs/controller/component.php from

$loaded = $this->_loadComponents($loaded,
$this->controller->components);

to $loaded =& $this->_loadComponents($loaded,
$this->controller->components);

I'm not sure right now this line is what bites You.... Another thing:
try rename this component from Email to something else - It should not
interfere with PHP.INI settings (restricted functions), but who knows...


--~--~---------~--~----~------------~-------~--~----~
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