juanjoalh Posted April 16, 2012 Share Posted April 16, 2012 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 More sharing options...
juanjoalh Posted April 16, 2012 Author Share Posted April 16, 2012 la duda anterior de ... de donde sacar el fichero PrestaShopWebservice.php que se pide en el punto 3.1 de ese manual ya la he solventado... ese fichero lo podemos encontrar en http://svn.prestashop.com/tags/1.4.0.3/api/samples/PrestaShopWebservice.php Link to comment Share on other sites More sharing options...
juanjoalh Posted April 16, 2012 Author Share Posted April 16, 2012 SOLUCIONADO, solo había que reiniciar la maquina. Link to comment Share on other sites More sharing options...
Recommended Posts