|
|
fixAMFBaseDeserializer
Tutorial: Fix the AMFBaseDeserializer in order to properly make use of POG objects.
Problem
For a detailed explanation as to the nature of this please visit Renaun Erickson's post about the issue.
Solution
- Locate the AMFBaseDeserializer.php file
- Locate line#384
- insert the following code:
elseif(file_exists($GLOBALS['amfphp']['customMappingsPath'] . 'class.' . strtolower($mappedClass) . '.php'))
{
$include = $GLOBALS['amfphp']['customMappingsPath'] . 'class.' . strtolower($mappedClass) . '.php';
}
Sign in to add a comment
