HTTP/1.1 302 Found
Date: Mon, 10 Feb 2014 22:32:17 GMT
Server: Apache/2.2.16 (Debian)
X-Powered-By: PHP/5.3.3-7+squeeze18
location: http://myserver.com/api/categories?filter%5Bname%5D=%5Bcategoria+test%5D?url=categories&filter%5Bname%5D=%5Bcategoria+test%5D
Vary: Accept-Encoding
Content-Length: 0
Content-Type: text/html; charset=utf-8
Il problema potrebbe essere nel modo in cui hai impostato il server, ovvero, diciamo che il tuo server si chiama:
ilmioserver.com
ma come indirizzo del webservice hai scritto:
www.ilmioserver.com
define('PS_SHOP_PATH', 'http://www.ilmioserver.com');
se si fa caso al percorso di risposta, il "location:" del messaggio di errore, è senza "www.", perciò basta solo riscrivere la riga precedente come:
define('PS_SHOP_PATH', 'http://ilmioserver.com');
tutto risolto.
Nessun commento:
Posta un commento