Skip to content
Advertisement

Fatal error: Call to a member function read() on a non-object on LanguageComponent

I am having this line in my CakePHP code: $language = $this->Cookie->read('language');

and I’m getting this error:

JavaScript

Here is my LanguageComponent.php code

JavaScript

Where could the problem be?

Advertisement

Answer

Wrong parent class

Compare the code in the question:

JavaScript

To any core component:

JavaScript

Extending the wrong class means that none of the component constructor logic is invoked, and the way components are loaded on first access will not be available.

In the process of upgrading?

This is possibly because the language component was originally written for 1.x – the parent class for components changed when 2.x was released. As mentioned in the 2.0 migration guide:

Component is now the required base class for all components.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement