Prestalia Posted August 27, 2013 Share Posted August 27, 2013 hello to all, seen that these days has been released version 1.5.1 of the module ebay official and that in all the forums (of all nations) was reported this problem, we decided to see what could be done and to put here in the forum solution. Download the file here and replace that of the loaded module 1.5.1 folder classes (always make a copy of the original). TEST IT AND WRITE US IF IT IS ALL OK. ll module has several other bugs to fix, this is the only solution to that reported in the title. good work to all staff Prestalia www.prestalia.it EbaySynchronizer.php 3 Link to comment Share on other sites More sharing options...
stratomagic Posted August 27, 2013 Share Posted August 27, 2013 ho provato adesso questa soluzione e sembra funzionare bene grazie I tried this solution and now seems to work well thanks Link to comment Share on other sites More sharing options...
stratomagic Posted August 27, 2013 Share Posted August 27, 2013 allora questa soluzione pare funzionare con il problema che per quel che ne capisco io sia dovuto ai collegamenti dei video youtube , mi da questo errore La tua inserzione non può contenere javascript (".cookie", "cookie(", "replace(", IFRAME, META), cookie o href. ditemi se mi sbaglio e se non sbaglio avete idea di come risolvere la cosa ? Link to comment Share on other sites More sharing options...
Prestalia Posted August 27, 2013 Author Share Posted August 27, 2013 video? our solution work only in shipping cost. this is another problem, but you must see in description and javascript that ebay don't want, there is online something abount but is not a problem of the module. la nostra soluzione riguarda i costi di spedizione. il tuo problema è legato alla descrizione, il messaggio è chiaro, ebay non vuole javascript nella descrition. in giro ci sono trucchi per questa cosa, ma non riguardano il modulo. ciao Link to comment Share on other sites More sharing options...
stratomagic Posted August 27, 2013 Share Posted August 27, 2013 dimenticavo di dire che funziona nel senso che sincronizzando prodotti senza video tutto fila liscio , quando incontra prodotti con i collegamenti video a youtube questi non vengono caricati Link to comment Share on other sites More sharing options...
stratomagic Posted August 27, 2013 Share Posted August 27, 2013 ok ho capito , devo cercare di capire come ovviare quel problema , se avete link dove guardare vi ringrazio Link to comment Share on other sites More sharing options...
stratomagic Posted August 27, 2013 Share Posted August 27, 2013 problema ovviato, basta inserire nelle descrizione del prodotto il vecchio codice di incorporazione di youtube e quindi viene sincronizzato , scusate la mia ignoranza da principiante ! Link to comment Share on other sites More sharing options...
johndyergallery Posted August 27, 2013 Share Posted August 27, 2013 We tried the new .php file for the ebay module EbaySynchronizer.php but we get: Input data for tag is invalid or missing. Please check API documentation. Item.ConditionID Product(s) concerned : Help ! Thanks. Link to comment Share on other sites More sharing options...
Prestalia Posted August 27, 2013 Author Share Posted August 27, 2013 We tried the new .php file for the ebay module EbaySynchronizer.phpbut we get: Input data for tag is invalid or missing. Please check API documentation. Item.ConditionID Product(s) concerned : Help ! Thanks. condictionId is another problem, you must verify the new tab specific if you save the condction of category. in some tests we have done depends on did not install the module from 0 but in having only updated files from the previous version. regards Link to comment Share on other sites More sharing options...
narelien Posted August 27, 2013 Share Posted August 27, 2013 (edited) THANKS Edited August 27, 2013 by narelien (see edit history) Link to comment Share on other sites More sharing options...
narelien Posted August 27, 2013 Share Posted August 27, 2013 (edited) Ok merci j'ai trouvé le bon dossier à changer et ça fonctionne, merci beaucoup pour votre aide --------------------------------------------------------------- Ok thank you I found the right file to change and it works, thank you very much for your help Edited August 27, 2013 by narelien (see edit history) Link to comment Share on other sites More sharing options...
Prestalia Posted August 27, 2013 Author Share Posted August 27, 2013 (edited) we are like if you like uor work and post ;-) Edited August 27, 2013 by Prestalia (see edit history) 1 Link to comment Share on other sites More sharing options...
narelien Posted August 27, 2013 Share Posted August 27, 2013 yes i like your work thanks again Link to comment Share on other sites More sharing options...
hmonte Posted August 27, 2013 Share Posted August 27, 2013 SUPER : grazzie mille ;-) it works fine for me now with your .php file Link to comment Share on other sites More sharing options...
Prestalia Posted August 27, 2013 Author Share Posted August 27, 2013 for other needs do not hesitate to write about [email protected] Link to comment Share on other sites More sharing options...
jlefe Posted August 30, 2013 Share Posted August 30, 2013 Thanks Link to comment Share on other sites More sharing options...
irrelevant Posted August 30, 2013 Share Posted August 30, 2013 I notice your fix removes the changes made to check the carrier's actual shipping method. As per PNM-1633, this can cause products listed on eBay to be set to Free P&P in cases where a shipping cost was not found for a product, e.g. because the appropriate carrier is set to a shipping method which does not match the default shipping method. [The fix for 1.4 which I posted has only partially been implemented in 1.5.1 - it needs a "if ($price === false) return;" in various places in _getShippingPriceForProduct() - this preserves any other error condition rather than changing it to zero later.] I haven't encountered the error referred in the OP myself, so cannot comment on it's cause or if this does fix it, but without the check on $carrier->shipping_method then I for one cannot use it - it ended up costing me more to just post two items than I received last time, so wouldn't want to see this happen again. There IS a typo in GetShippingDetails.tpl .... {if $service.serviceCosts !== fase} should refer to false not fase. It's possible this is relevant! To re-iterate - Watch items carefully in case they go up with Free P&P when they shouldn't. Link to comment Share on other sites More sharing options...
irrelevant Posted September 4, 2013 Share Posted September 4, 2013 OK. After finally getting this error myself, I can offer a proper solution. Sorry Prestalia. As I suspected... in ./ebay/api/GetShippingDetails.tpl change the typo of "fase" to "false". This fixes the ShippingDetails.ShippingServiceOptions etc error. Now you get "At least one postage option must be specified." To fix THAT ... In classes/EbaySynchronizer.php within private static function _getShippingPriceForProduct Change all occurrences of === to == This is because different "types" of number are not exactly equal, even if they have the same value. === checks type as well as value, == only checks value. Whoops 202! If you want some belt-and-braces, to protect against accidental Free P&P, after every $price = <whatever> add: if ($price === false) return false; (yes, that one IS three equals signs) 1 Link to comment Share on other sites More sharing options...
Prestalia Posted September 5, 2013 Author Share Posted September 5, 2013 Why sorry? The important is that my or your solution resolve the problem Link to comment Share on other sites More sharing options...
David475 Posted September 13, 2013 Share Posted September 13, 2013 Hi irrelevant. thanks for your fix. You could please add the file to this post ? thanks OK. After finally getting this error myself, I can offer a proper solution. Sorry Prestalia. As I suspected... in ./ebay/api/GetShippingDetails.tpl change the typo of "fase" to "false". This fixes the ShippingDetails.ShippingServiceOptions etc error. Now you get "At least one postage option must be specified." To fix THAT ... In classes/EbaySynchronizer.php within private static function _getShippingPriceForProduct Change all occurrences of === to == This is because different "types" of number are not exactly equal, even if they have the same value. === checks type as well as value, == only checks value. Whoops 202! If you want some belt-and-braces, to protect against accidental Free P&P, after every $price = <whatever> add: if ($price === false) return false; (yes, that one IS three equals signs) Link to comment Share on other sites More sharing options...
irrelevant Posted September 13, 2013 Share Posted September 13, 2013 Hi irrelevant. thanks for your fix. You could please add the file to this post ? thanks try these.. ebayfixes.zip Link to comment Share on other sites More sharing options...
mtnegecio Posted September 14, 2013 Share Posted September 14, 2013 OK. After finally getting this error myself, I can offer a proper solution. Sorry Prestalia. As I suspected... in ./ebay/api/GetShippingDetails.tpl change the typo of "fase" to "false". This fixes the ShippingDetails.ShippingServiceOptions etc error. Now you get "At least one postage option must be specified." To fix THAT ... In classes/EbaySynchronizer.php within private static function _getShippingPriceForProduct Change all occurrences of === to == This is because different "types" of number are not exactly equal, even if they have the same value. === checks type as well as value, == only checks value. Whoops 202! If you want some belt-and-braces, to protect against accidental Free P&P, after every $price = <whatever> add: if ($price === false) return false; (yes, that one IS three equals signs) ------------------------------ THANKS A LOT - Very Good solution . work for me --- struggling from 2 days -- mucha gracias Link to comment Share on other sites More sharing options...
David475 Posted September 16, 2013 Share Posted September 16, 2013 (edited) Hi irrelevant thank you for your patch. finally you could resolve the problem with free shipping! the problem is that i configure the international shipping and in this moment don't work. In ebay, tells like... " your shipping country are avaliable but don't have the price inserted. please make a question about shipping price" i have a carrier for each zone that i plan to send Edited September 16, 2013 by David475 (see edit history) Link to comment Share on other sites More sharing options...
Prestalia Posted September 17, 2013 Author Share Posted September 17, 2013 hello, in module free version 1.5.2 this problem is fix. regards Link to comment Share on other sites More sharing options...
David475 Posted September 23, 2013 Share Posted September 23, 2013 the problem with shipping not configured in intenational shipping is from i don't have to pay any tax for this zone and the module don't complete the international shipping info. any idea? Link to comment Share on other sites More sharing options...
pacopardo1 Posted October 8, 2013 Share Posted October 8, 2013 Io utilizzo la versione 1.5.2 che mi aggiorna ogni volta la foto della galleria anche se io l'ho precedentemente modificata su ebay. Ebay Italia vuole foto di almeno 500 pixel altrimenti tra qualche mese non si potranno pubblicare inserzioni con foto più piccole di 500pixel. C'è la possibilità di non far sincronizzare la foto una volta modificata? Link to comment Share on other sites More sharing options...
Prestalia Posted October 9, 2013 Author Share Posted October 9, 2013 (edited) Io utilizzo la versione 1.5.2 che mi aggiorna ogni volta la foto della galleria anche se io l'ho precedentemente modificata su ebay. Ebay Italia vuole foto di almeno 500 pixel altrimenti tra qualche mese non si potranno pubblicare inserzioni con foto più piccole di 500pixel. C'è la possibilità di non far sincronizzare la foto una volta modificata? L'errore di fondo non è del modulo, ma il fatto che cambi la foto su ebay invece di cambiare il formato su prestashop, solo in questo modo non avrai di questi problemi. ciao Edited October 9, 2013 by Prestalia (see edit history) Link to comment Share on other sites More sharing options...
pacopardo1 Posted October 9, 2013 Share Posted October 9, 2013 L'errore di fondo non è del modulo, ma il fatto che cambi la foto su ebay invece di cambiare il formato su prestashop, solo in questo modo non avrai di questi problemi. ciao Modificando la dimensione della foto large_default diventa troppo grande per il sito di prestashop. In pratica o la allargo e vado bene su ebay oppure la lascio come sta per andar bene sul sito. Inoltre vendendo anche abbigliamento intimo ebay non accetta foto dove si vedono ad esempio i capezzoli e devo coprirli modificando la foto ma vorrei lasciarla così come sul sito. Link to comment Share on other sites More sharing options...
Prestalia Posted October 10, 2013 Author Share Posted October 10, 2013 Allora devi agire nel codice del modulo e modificare il tipo di immagine che viene mandata a Ebay. Ciao 1 Link to comment Share on other sites More sharing options...
David475 Posted October 30, 2013 Share Posted October 30, 2013 i continue having the problem with free international sending without tax in ebay 1.5.3 in prestashop ( update for 1.5.2). Please solution this. This problem could make some vendor lost money! Link to comment Share on other sites More sharing options...
garyjj127 Posted February 18, 2015 Share Posted February 18, 2015 I'm getting this problem with 1.9.2 module version. I get the error: Some products have not been listed successfully due to the error(s) belowInput data for tag is invalid or missing. Please check API documentation.Item.ShippingDetails It's driving me mad!!! I'm using PS version 1.5.6.2 1 Link to comment Share on other sites More sharing options...
PrestanceDesign Posted March 11, 2015 Share Posted March 11, 2015 +1 garyjj127 : One of my clients has the same problem with the latest version (1.9.2) with PS version 1.5.4.1. 1 Link to comment Share on other sites More sharing options...
garyjj127 Posted March 11, 2015 Share Posted March 11, 2015 It's incredibly frustrating, as the module works fine apart from these issues, and puts us at risk of negative feedback if not addressed. I've looked around at other modules, but would rather go on recommendation than picking one at random. Any ideas guys? Link to comment Share on other sites More sharing options...
garyjj127 Posted March 11, 2015 Share Posted March 11, 2015 I've just noticed that 1.10.0 has been launched. I've now installed it and will let you know how I get on! Link to comment Share on other sites More sharing options...
garyjj127 Posted March 11, 2015 Share Posted March 11, 2015 Prestancedesign: I can confirm that changing the stock level in PS back office is now instantly changed on eBay - including taking the stock down to 0. I'm not sure about the Cron task working, as I probably haven't left enough time for it to execute yet. Link to comment Share on other sites More sharing options...
kuweio Posted March 28, 2015 Share Posted March 28, 2015 salve,io ho questo problema come posso risolverlo : Le impostazioni sono state aggiornate (Opzione B : 2 / 2 Sincronizzazione prodotti con eBay)Alcuni prodotti non sono stati messi in vendita a causa dei seguenti erroriI dati di input per il tag non sono validi o mancano. Verifica la documentazione API.Item.CurrencyProdotti interessati :- COLLANA CON CIONDOLO A FORMA DI LOGO CRONOTECH aiutatemi il prima possibile. Link to comment Share on other sites More sharing options...
Sandro6124 Posted June 25, 2016 Share Posted June 25, 2016 Hello, Can anybody please, explain me how i can use this file to solve this error. I mean how i should use this php file. Thanks. Link to comment Share on other sites More sharing options...
shoma05 Posted September 28, 2016 Share Posted September 28, 2016 Some products have not been listed successfully due to the error(s) below Input data for tag is invalid or missing. Please check API documentation.Item.ShippingDetails.ShippingServiceOptions.ShippingServiceCostProduct(s) concerned : Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now