dalvisadashiv
-
Posts
1 -
Joined
-
Last visited
Never
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.
How can I remove __PHP_Incomplete_Class Object error
in Third Party Scripts
Posted
check that you are store the object by serializing i.e.
$obj = new myclass();
$_SESSION['obj'] = serialize($obj);
and while retrieving use
$obj = unserialize($_SESSION['obj']);
HTH,
Sadashiv.