Jump to content

WebService Error


ldellacherie

Recommended Posts

 
You receive errors in the file
 Illegal string offset 'id' (/var/www/prestashop/classes/webservice/WebserviceOutputBuilder.php, line 674)
[php Warning #2] Illegal string offset 'id' (/var/www/prestashop/classes/webservice/WebserviceOutputBuilder.php, line 683)
[php Warning #2] Illegal string offset 'id' (/var/www/prestashop/classes/webservice/WebserviceOutputBuilder.php, line 674)
[php Warning #2] Illegal string offset 'id' (/var/www/prestashop/classes/webservice/WebserviceOutputBuilder.php, line 683)

 

 

 
The problem is the variable can be declared like a string, to resolve the problem i add this line in the function renderFlatAssociation of the file 'WebserviceOutputBuilder.php'
 
if(is_array($object_assoc)== false)
{
$object_assoc = array('id' => $object_assoc);
}
i don't know if that resolve all bad calling, but in my case i don't have problem now with the webservice :)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...