Jump to content

Sale Mechanics

Members
  • Posts

    5
  • Joined

  • Last visited

1 Follower

Contact Methods

Profile Information

  • Location
    München
  • Activity
    Web development agency

Recent Profile Visitors

5,377,507 profile views

Sale Mechanics's Achievements

Newbie

Newbie (1/14)

2

Reputation

  1. Leider nicht in systematischer Form ... aktive gedankliche Verdrängung, aber ich baue gerade den nächsten Shop. Das Thema steht in den nächsten paar Wochen also wieder an. Meld Dich, wenn die ersten Probleme auftreten. Vielleicht hatte ich die gleichen Stolpersteine.
  2. Das Modul "MZ Amazon Payments" (http://mz-hosting.com/prestashop/modules/amazon-checkout-module-free) gibt es kostenlos für Amazon.de. Allerdings muss man es erst an diversen Stellen debuggen, um es zum Laufen zu bringen. Da stecken eine Reihe kleiner Stolpersteine drin und zwei größere Fehler. Na ja, 3 Tage später ... es läuft ... http://www.temptatu.de
  3. Worked like a charm for men. Thanks for sharing! Saved me hours maybe ...
  4. I'm referring to PS 1.5.3.1. I had the same problems. The fix described above didn't work for me. My server-settings caused problems due to an empty "From"-field (FYI: my shop is hosted with Hosteurope). It can be fixed changing these files: /tools/swift/Swift/Plugin/MailSend.php /tools/swift/Swift/Message.php /tools/swift/Swift.php /tools/swift/Swift/Plugin/MailSend.php (around line 158) Old: $headers = $headers->build(); New: $headers = $headers->build(); $params = ""; /tools/swift/Swift/Message.php (around line 79) Old: $this->setFrom(""); New: $this->setFrom("yourmail@yourdomain"); /tools/swift/Swift.php (around line 370) Old: if (!($has_reply_to = $message->getReplyTo())) $message->setReplyTo($from); New: if (!($has_reply_to = $message->getReplyTo())) $message->setReplyTo($from); if (!$has_reply_to[0]) $message->setReplyTo($from->getAddress());
×
×
  • Create New...