I use XAMPP and it's all ok. Then when I move the site with Akeeba, after instalation show the error:
Fatal error: Call to a member function get() on a non-object in ...../public_html/plugins/system/remember/remember.php on line 94
In the remember.php has
- Code: Select all
93 // Use domain and path set in config for cookie if it exists.
94 $this->cookie_domain = $this->app->get('cookie_domain', '');
95 $this->cookie_path = $this->app->get('cookie_path', '/');
96 $this->lifetime = time() + ($this->params->get('cookie_lifetime', '60') * 24 * 60 * 60);
97 $this->secure = $this->app->isSSLConnection();
98 $this->length = $this->params->get('key_length', '16');
Whats the problem?