Page 3 of 4 FirstFirst 1234 LastLast
Results 21 to 30 of 32
  1. #21
    Join Date
    Sep 2012
    Posts
    104
    Plugin Contributions
    0

    Default Re: costumer account reg. email sent in two languages but not the third

    Can you send me some instructions on how to use Notepad in my case? Just open and save? Or modify something?

    thanks
    Nandor

  2. #22
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,385
    Plugin Contributions
    94

    Default Re: costumer account reg. email sent in two languages but not the third

    Nandor, just open (with Windows you can right-click and select Open With ...) the language PHP files using NotePad++. On the top command bar, select "Encoding", choose "UTF-8 without BOM" and save the file. I'm not convinced that this is the issue, but it can't hurt ...

  3. #23
    Join Date
    Sep 2012
    Posts
    104
    Plugin Contributions
    0

    Default Re: costumer account reg. email sent in two languages but not the third

    Quote Originally Posted by lat9 View Post
    Nandor, just open (with Windows you can right-click and select Open With ...) the language PHP files using NotePad++. On the top command bar, select "Encoding", choose "UTF-8 without BOM" and save the file. I'm not convinced that this is the issue, but it can't hurt ...
    Hello,

    i just did all the encoding in all hungarian files (in admin/languages,includes/languages too)
    try registering a new costumer but email wasnt sent to neither to costumers nor to me.
    In admin i see new costumer.
    Tried buying with paypal in hungarian same error as earlier. Can buy some items but others not...
    What do you think a next step should be?

    thanks

    Nandor

  4. #24
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,385
    Plugin Contributions
    94

    Default Re: costumer account reg. email sent in two languages but not the third

    You have two issues going on:
    1) The Hungarian emails don't send
    2) Some products can be purchased and others can't.

    For #1, could you post your current admin settings for Localization->Languages (make sure to obsure/edit-out any account-specific filepath information).

    For #2, I think that you will need to do what DrByte and others suggested in your other thread, i.e. you'll need to review each of the Hungarian product descriptions and re-save the information now that the admin is setup to use utf-8 encoding. It seems that the information is stored in non-UTF-8 format for some of the products.

  5. #25
    Join Date
    Sep 2012
    Posts
    104
    Plugin Contributions
    0

    Default Re: costumer account reg. email sent in two languages but not the third

    Quote Originally Posted by lat9 View Post
    You have two issues going on:
    1) The Hungarian emails don't send
    2) Some products can be purchased and others can't.

    For #1, could you post your current admin settings for Localization->Languages (make sure to obsure/edit-out any account-specific filepath information).

    For #2, I think that you will need to do what DrByte and others suggested in your other thread, i.e. you'll need to review each of the Hungarian product descriptions and re-save the information now that the admin is setup to use utf-8 encoding. It seems that the information is stored in non-UTF-8 format for some of the products.

    1.not much info there, at least for me and if you meant this :

    Click image for larger version. 

Name:	english.jpg 
Views:	47 
Size:	51.3 KB 
ID:	12223

    Click image for larger version. 

Name:	german.jpg 
Views:	43 
Size:	49.8 KB 
ID:	12224

    Click image for larger version. 

Name:	hungarian.jpg 
Views:	52 
Size:	50.7 KB 
ID:	12225

    2. i removed two categories and their subcategories and products that couldnt be bought in hungarian. Removed them totally from catalog/categories products and created as first one of the two again. Rewrote all description,prices uploaded photos again , but it still cant be bought with paypal in hungarian language.

    3.and the bigger problem is that the reg. email is still not sent in hungarian. Isnt it possible that this welcome email isnt sent because it isnt written or there somewhere among the php-s? Maybe this was a rookie assumption...
    I havent found this particular php file, but havent found the english, german neither......

    thanks so much in advance

    Nandor

  6. #26
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,385
    Plugin Contributions
    94

    Default Re: costumer account reg. email sent in two languages but not the third

    Nandor, if you turn your admin's Configuration->Email Options->Email Archiving Active to true then every email that is actually sent by your store (other than password-forgotten and others like that) will be recorded in your database.

    Unfortunately, to view these you'll either need to either install another admin plugin or look directly in your database via phpMyAdmin. Are you familiar with how to access your webhost's phpMyAdmin tool? That's what you'll need to see the results in the email_archive table of your database.

  7. #27
    Join Date
    Sep 2012
    Posts
    104
    Plugin Contributions
    0

    Default Re: costumer account reg. email sent in two languages but not the third

    Quote Originally Posted by lat9 View Post
    Nandor, if you turn your admin's Configuration->Email Options->Email Archiving Active to true then every email that is actually sent by your store (other than password-forgotten and others like that) will be recorded in your database.

    Unfortunately, to view these you'll either need to either install another admin plugin or look directly in your database via phpMyAdmin. Are you familiar with how to access your webhost's phpMyAdmin tool? That's what you'll need to see the results in the email_archive table of your database.

    unfortunately i am not. But i suppose it would be easire to access webhosts phpMyadmintool?
    Can you give me some hints on how to do this?
    Hope i can figure it out....

    thanks in advance

    Nandor

  8. #28
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,385
    Plugin Contributions
    94

    Default Re: costumer account reg. email sent in two languages but not the third

    Would you also report what PHP version you're running your store on? You can use your admin's Tools->Server/Version Info to find out.

  9. #29
    Join Date
    Sep 2012
    Posts
    104
    Plugin Contributions
    0

    Default Re: costumer account reg. email sent in two languages but not the third

    Quote Originally Posted by lat9 View Post
    Would you also report what PHP version you're running your store on? You can use your admin's Tools->Server/Version Info to find out.
    PHP Version: 5.2.17 (Zend: 2.2.0) PHP Memory Limit: 128M

  10. #30
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,385
    Plugin Contributions
    94

    Default Re: costumer account reg. email sent in two languages but not the third

    It turns out that the issue with the welcome email not being sent in Hungarian was the result of the file /includes/languages/hungarian/create_account.php. Specifically, the EMAIL_SUBJECT definition contained new-line ("\n") characters and the zen_mail function (which sends the Zen Cart emails) has code that specifically checks for carriage-returns ("\r") and new-line characters in the to- and from-names, to- and from-addresses and the subject; if any are found, an injection attempt is assumed and the email is (silently) not sent.

    The fix is to change the line
    Code:
    define('EMAIL_SUBJECT', 'Üdvözöljük' . STORE_NAME .' webáruházban !' . "\n\n");
    to
    Code:
    define('EMAIL_SUBJECT', 'Üdvözöljük' . STORE_NAME .' webáruházban !');

 

 
Page 3 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. Copy of Create Account Email not being sent after switching to Paypal Express
    By Dreamer40 in forum PayPal Express Checkout support
    Replies: 7
    Last Post: 11 Mar 2015, 01:01 AM
  2. v151 Order confirmation email not sent to customers but I get a copy
    By Olet in forum General Questions
    Replies: 1
    Last Post: 13 May 2014, 08:02 PM
  3. v139e Orders not shown in admin, and no email sent to costumer and to admin email
    By Nandor in forum Managing Customers and Orders
    Replies: 26
    Last Post: 5 Mar 2013, 02:48 PM
  4. Wellcome Email, on two languages ?
    By sicness in forum General Questions
    Replies: 1
    Last Post: 18 Jul 2006, 07:58 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR