Jump to content

manfield

Members
  • Posts

    27
  • Joined

  • Last visited

Profile Information

  • Location
    Treviso
  • Activity
    Web development agency

Recent Profile Visitors

3,154,450 profile views

manfield's Achievements

Newbie

Newbie (1/14)

  • Week One Done Rare
  • One Month Later Rare
  • One Year In Rare

Recent Badges

4

Reputation

  1. Found this https://addons.prestashop.com/en/products-on-facebook-social-networks/27017-event-tracking-csv-catalog-and-cron-for-facebook-pixel.html M
  2. Hi, Bellini answer fits my thought. We have released this website: www.gr1ps.com, totally realized on PS 1.7 platform with a custom theme. Functionalities we're using are very limited and frontend works pretty well. On the other side backend has still many issues and we cannot guarantee a full access to the customer, because if he does not behave carefully in some circumstances he may compromise data (i.e. prices in a multistore environment or product taxes). So the answer is: depends. If you've been hired for a long term project you may consider 1.7 (since is the "future" version) knowing exactly what its limits are, what workarounds may avoid some issues. Moreover keep always an eye on release notes and development timeline. It may help you to take this difficult decision. We picked version 1.7 because customer decided not to re-invest for a porting (1.6 > 1.7) to this platform, assuming his risks. At the moment everything is going ok, but we have to deal with data entry and some configurations (and this is an additional cost for our customer), just because we don't feel confident in giving them a backend access as administrators.
  3. I found the solution. controllerpage.php should be a controller class, having a specific name: mymodulecontrollerpageModuleFrontController it may extend ModuleFrontController or simply implement run() method. This way I can assign a rewrite_url to the controller declared in the module. Nice!
  4. I noticed a nice feature I'm trying to use, in PS 1.7. When a module declares controller pages, these are automatically listed in SEO & URL table. i.e: module-mymodule-controllerpage I tried to assign a friendly URL to this item, for example mycontroller. I tried to call $host/mycontroller and I always have a 404 error. Where am I wrong? is it a feature in development yet? Thanks a lot Manredi
  5. Here we go, you may download the module here: It prints bank information on the invoices, when BankWire module is installed and configured. Enjoy and ...share it! Manfredi
  6. Hi, the module is ready. I will post it here later today. Cheers! M
  7. Hi mates, first of all the best solution to remove that box is to unHook the Module. Go to Modules and Services > Positions Search for displayPDFInvoice hook and remove the PayPal Module If you want, instead to change that box content, i suggest you to override your invoice template and put static info inside. Otherwise I think I will develop a simple module that grabs information from Bank Wire module and put them automatically in the invoice. It will be ready in a week. Cheers. Manfredi
  8. Hi, have you tried to clear cache? Advanced Parameters > Performance > Cache Clear button Manfredi
  9. I solved the issue on my side, changing these lines in /modules/paypal/controllers/front/submit.php Line 45, from $this->id_order = (int) Tools::getValue('id_order'); to $this->id_cart = (int) Tools::getValue('id_cart'); $this->id_order = (int) Order::getOrderByCartId((int) $this->id_cart); Obviously this is not the right way to proceed, but it is just a workaround that will be reset on updating Paypal module. Moreover, the real issue seems to be on ipn.php (PayPalIPN class), here: $id_order = (int) PayPalOrder::getIdOrderByTransactionId($txn_id); I will open an issue in PayPal module code repository, in order to make give a look to that. Cheers.
  10. I've the same exact issue. Url confirmation is built with id_order=0, i.e.: /module/paypal/submit?id_cart=19&id_module=87&id_order=0&key=4a6617b44f87913235a764d3bb6b7430 Point where confirmation url is built is /paypal/integral_evolution/submit.php file, line 81: // Redirection $values = array( 'id_cart' => (int) $id_cart, 'id_module' => (int) Module::getInstanceByName('paypal')->id, 'id_order' => (int) Order::getOrderByCartId((int) $id_cart), ); As you can see the order is retrieved by cart id, that is correctly passed. I will dig in the queries to see where is the issue. Will make you know soon. Manfredi
  11. As for Paypal ITALY We just received a payment and order was generated. Everything seems ok now. Thanks M
  12. Hello, we're experience the same issue, and it's a big one. Please post ticket resolution as PayPal completes rollback, in order to know we've gone back to a normal situation. Thanks Manfredi
  13. I'm using paypal pro, on paypal module (last version: 3.7.2). I did not experienced this issue with the previous version I used (3.5.x). When the iframe is loaded I have a wrong call on the js console: http://screencast.com/t/OZ9gVHSVbrc The ajax call is done to "httpss" url. It stops the ajax call working properly and order confirmations never arrive. It happens both on production than on stage server, when I enable HTTPS. When SSL is disabled in Prestashop I don't get this issue (it's obvious, to the http string is attached "s" and it keeps working ok. The issue is when "s" is attached tu https, that has his own "s" already).
  14. Hello, it seems that in sandbox mode, callback is not performed by PayPal. In production mode everything is ok. Cheers!
  15. Hi everybody, I'm using again the Express Checkout after a while. I saw that many things changed during this time, on the handshake process between paypal and prestashop module. My issue is this one: I'm testing e-commerce in sandbox mode. When a transaction is done, paypal does not call back the IPN. The order remains in "waiting for paypal payment" status. My questions are: - Is IPN called in sandbox mode? - what is exactly the callback url Paypal should call? - I cannot find any longer the validation.php file in module. How did things change? Thanks Manfredi Prestashop version: 1.5.6.0 Paypal module version: 3.6.1
×
×
  • Create New...