nilashan
nilashan

Reputation: 690

PHP errors when migrating a joomla site to another server

When I switch my joomla site to another server, it shows this error:

Non-static method JApplication::getMenu() should not be called statically, 
assuming$this   from incompatible context 

Upvotes: 0

Views: 53

Answers (2)

atpatil11
atpatil11

Reputation: 433

Just use Akeeba back to get your joomla site backup. & Using kickstart file set up it where ever you want. Its very easy & simple.

Upvotes: 1

MasterAM
MasterAM

Reputation: 16488

This is the result of the PHP error reporting.

Joomla contains some coding issues, some more subtle than others and those trigger Strict and Notice messages.

You can handle this by telling the PHP engine to hide those messages by editing the following directive in your php.ini file :

error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT

Upvotes: 2

Related Questions