Jump to content

duda webservice


juanjoalh

Recommended Posts

hola estoy siguiendo el manual de prestashop para el webservice y tengo una duda, en el siguiente enlace

 

http://doc.prestasho...?pageId=5374167

 

al crear el aprchivo php y ejecutarlo en local me arroja el siguiente error

 

Fatal error: Uncaught exception 'PrestaShopWebserviceException' with message 'Please activate the PHP extension 'curl' to allow use of PrestaShop webservice library' in C:\xampp\htdocs\PSWebServiceLibrary.php:71 Stack trace: #0 C:\xampp\htdocs\list_the_clients.php(4): PrestaShopWebservice->__construct('http://localhos...', 'FQC5ZME15G3S2K08A8GH27....', false) #1 {main} thrown in C:\xampp\htdocs\PSWebServiceLibrary.php on line 71

 

he activado la libreria php_curl en php ini, he copiado los .dll a la carpeta windows32 y he reiniciado apache pero sigue apareciendome el mismo error, os copio a continuacion el codigo que tengo hecho

 

<?php

 

require_once( './PSWebServiceLibrary.php' );

$webService = new PrestaShopWebservice( 'http://localhost/prestashop', 'FQC5ZME15G3S2K08A8GH27...', false );

$opt[ 'resource' ] = 'customers';

$xml = $webService->get( $opt ) ;

$resources = $xml->customers->children();

foreach ( $resources as $resource )

echo $resource->attributes() . '<br />';

 

?>

 

que puede estar fallando?

 

gracias de antemano

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...