I recently uploaded my codeigniter project to the live server and it shows the following error.but it is working fine on my local server.
Fatal error: Cla
if you use a namespaces you must write new \stdClass()
new \stdClass()
This could be solved using either
use \stdClass
or
$my_obj = new \stdClass();
Hope this helps!