smartcall Posted November 28, 2008 Share Posted November 28, 2008 Hi,Thank you for your wonderful product!I almost finished creating a shop with 200 products. The most important thing to notice is that the shop is in Cyrillic. I tested all the functionality and always registered my test users with Latin names.The problem occurred to me just today, when I was about to put the shop in production.And the problem is:User try to register and enter his first and last name as well as address and city with Cyrillic letters -> Submit -> Internal Server ErrorAnd in server log malformed header from script. Bad header=No recipient addresses found i: authentication.php If the same user with the same email address enter his details in English, the registration completes with success.Not to mention the PDF creation issues, but this is a separate topic.Prestashop 1.0php running as fast-cgi Link to comment Share on other sites More sharing options...
smartcall Posted November 28, 2008 Author Share Posted November 28, 2008 SOLVED with dirty hack.In classes/Mail.php line 55from $to = new Swift_Address($to, $toName); to $to = new Swift_Address($to, $to); Looks like when $toName is not in Latin there is a problem. 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