|
Good Morning/Afternoon All,
I have recently run up against an interesting problem. I believe that it may be a permissions problem, but I can’t seem to figure out where. I’ve been through the guides and have my folders set to 755 and files set to 644 etc etc.
My problem is this, when I run functions from PHP through the magento SOAP v2 API, they work correctly, except for the catalogProductList function. It’s pretty odd really, I’ve tested out a few other methods including catalogProductInfo and they return information as they’re supposed to, however when I make a call to catalogProductList i am returned an “Internal Server Error”. below is the code I’m running:
$client = new SoapClient('http://www.#######.net/api/v2_soap/?wsdl'); $session = $client->login('#######', '#######');
$result = $client->catalogProductList($session); var_dump($result);
Really all I want is a list of every product in the store. (My original goal had been to get every SKU that started with ‘FRA’ but I’ve pretty much given up on that. haha)
Thanks and Best Regards,
Sam
|