Page 3 of 5 FirstFirst 12345 LastLast
Results 21 to 30 of 41
  1. #21
    Join Date
    Aug 2006
    Location
    HCMC
    Posts
    268
    Plugin Contributions
    0

    Default Re: You must select a country from the Countries pull down menu

    Quote Originally Posted by exittheapple View Post
    thank you for this!! since i hadn't made any customizations to these files in my template, i just deleted them. anything there's not a replacement for in [yr_template] folder, zencart reverts to the default template to get it.

    so, all i did was delete the files you listed above from my templates/mytemplate/templates/ folder, and then i was able to create my test account!!

    now i need to go lower my blood pressure again after the stress of discovering, panicing, and finally fixing this bug. ;)

    thanks to zencart and the zencart community!!
    your link have problem...

  2. #22
    Join Date
    Nov 2005
    Posts
    53
    Plugin Contributions
    0

    Default Re: You must select a country from the Countries pull down menu

    Quote Originally Posted by kimsonvu View Post
    your link have problem...

    thank you; fixed it now.
    zencart installation is at http://oyinhandmade.com/shop

  3. #23
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,569
    Plugin Contributions
    25

    Default Further Clarification

    On re-reading my earlier post about the CAPTCHA mod, I realize that it needs some additional clarification.

    Firstly, I'm a big fan of this mod and its author (funkey). The mod is easily installed and does exactly what it says it will. And the author has taken the trouble to update it for each new release of Zen Cart.

    However, through no fault of the author, this is a mod that is currently very sensitive to being matched to the correct version of Zen Cart since the code upon which it is built has gone through some large changes. So if you use an earlier version of the mod on a current version of Zen Cart (and especially if you use the 099.135 version on a 1.3.6 or later Zen Cart) you will lose the benefit of corrections made to the underlying Zen Cart code and reflected in the mod. Using a newer version of the mod on an older Zen Cart might also have adverse results that are less easy to predict.

    Given this, anybody having the types of problem described above in a 1.3.6 or later Zen Cart with the CAPTCHA mod installed, should first try to resolve it by installing (or reinstalling) the version of the mod that matches their version of Zen Cart.

    If you're running version 1.3.5 or earlier, then you will need to upgrade Zen Cart to get the solution introduced in 1.3.6. And of course when upgrading your Zen Cart you will also need to upgrade your version of the CAPTCHA mod.

    A bit complicated I know, but if it's not clear, please post back here.
    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

  4. #24

    Default Re: Further Clarification

    Quote Originally Posted by kuroi View Post
    So if you use an earlier version of the mod on a current version of Zen Cart (and especially if you use the 099.135 version on a 1.3.6 or later Zen Cart) you will lose the benefit of corrections made to the underlying Zen Cart code and reflected in the mod. Using a newer version of the mod on an older Zen Cart might also have adverse results that are less easy to predict.
    In fact, anyone using 0.99.135 -- should also grab the SQL uninstall script from http://www.zen-cart.com/forum/showpo...1&postcount=98 and run it before upgrading to the latest version.

    Later versions include a much more flexible .sql install file, allowing the CAPTCHA module to seamlessly operate with a number of other third-party modifications.

  5. #25

    Default Re: You must select a country from the Countries pull down menu

    I think the problem is with a modified /includes/modules/create_account.php

    I have fixed the problem uploading a original no modified archive.
    Spanish help and Support
    Intentaré responder a tus preguntas acerca del ZENCART

  6. #26
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,569
    Plugin Contributions
    25

    Default Re: You must select a country from the Countries pull down menu

    Hi Maybrick. Could you provide more information as to how your create_account file came to be modified.

    There are several mods out there that replace this file. It would be helpful to know which one has caused you this problem.
    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

  7. #27

    Default Re: You must select a country from the Countries pull down menu

    Iīm almost sure the mod is: TIME ZONE OFFSET.

    The problem is I get the error only with one of the two sites I actually have with zencart, so itīs posible it was other mod. The header information of the file modified with time zone has a different code:

    ------------ cut ----------
    * @version $Id: create_account.php 3777 2006-06-15 07:03:03Z drbyte $
    */
    // Time Zone Offset 1.3.0.2 2006-06-22 gilby

    if (!defined('IS_ADMIN_FLAG')) {
    die('Illegal Access');
    }
    ------------ cut ------------

    The original header code for create_account in 1.3.6 version is:

    ------------ cut ------------
    * @version $Id: create_account.php 4282 2006-08-26 08:01:18Z drbyte $
    */
    // This should be first line of the script:
    $zco_notifier->notify('NOTIFY_MODULE_START_CREATE_ACCOUNT');

    if (!defined('IS_ADMIN_FLAG')) {
    die('Illegal Access');
    }
    ------------- cut ------------

    I havenīt checked other differences between the two files O:-)
    Spanish help and Support
    Intentaré responder a tus preguntas acerca del ZENCART

  8. #28
    Join Date
    Aug 2006
    Location
    HCMC
    Posts
    268
    Plugin Contributions
    0

    Default Re: You must select a country from the Countries pull down menu

    Quote Originally Posted by Maybrick View Post
    Iīm almost sure the mod is: TIME ZONE OFFSET.

    The problem is I get the error only with one of the two sites I actually have with zencart, so itīs posible it was other mod. The header information of the file modified with time zone has a different code:

    ------------ cut ----------
    * @version $Id: create_account.php 3777 2006-06-15 07:03:03Z drbyte $
    */
    // Time Zone Offset 1.3.0.2 2006-06-22 gilby

    if (!defined('IS_ADMIN_FLAG')) {
    die('Illegal Access');
    }
    ------------ cut ------------

    The original header code for create_account in 1.3.6 version is:

    ------------ cut ------------
    * @version $Id: create_account.php 4282 2006-08-26 08:01:18Z drbyte $
    */
    // This should be first line of the script:
    $zco_notifier->notify('NOTIFY_MODULE_START_CREATE_ACCOUNT');

    if (!defined('IS_ADMIN_FLAG')) {
    die('Illegal Access');
    }
    ------------- cut ------------

    I havenīt checked other differences between the two files O:-)
    My friend was fixed for me.He said file tpl_modul_creataccount.php have problem in template.

  9. #29
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,569
    Plugin Contributions
    25

    Default Re: You must select a country from the Countries pull down menu

    Quote Originally Posted by Maybrick View Post
    Iīm almost sure the mod is: TIME ZONE OFFSET.

    The problem is I get the error only with one of the two sites I actually have with zencart, so itīs posible it was other mod. The header information of the file modified with time zone has a different code:

    ------------ cut ----------
    * @version $Id: create_account.php 3777 2006-06-15 07:03:03Z drbyte $
    */
    // Time Zone Offset 1.3.0.2 2006-06-22 gilby

    if (!defined('IS_ADMIN_FLAG')) {
    die('Illegal Access');
    }
    ------------ cut ------------

    The original header code for create_account in 1.3.6 version is:

    ------------ cut ------------
    * @version $Id: create_account.php 4282 2006-08-26 08:01:18Z drbyte $
    */
    // This should be first line of the script:
    $zco_notifier->notify('NOTIFY_MODULE_START_CREATE_ACCOUNT');

    if (!defined('IS_ADMIN_FLAG')) {
    die('Illegal Access');
    }
    ------------- cut ------------

    I havenīt checked other differences between the two files O:-)
    Hi Maybrick

    As for the CAPTCHA module, the author of the Time Zone Offset mod (gilby) has been very conscientious at keeping the module up-to-date as Zen Cart has evolved.

    However, the code snippets that you have posted suggest that you are using the 1.3.0.2 version of the Time Zone Offset mod with a Zen Cart 1.3.6. To make this work you would need to use the 1.3.6 version of the Time Zone Offset module.
    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

  10. #30

    Default Re: You must select a country from the Countries pull down menu

    You will think Iīm a mad hehehe I think I have the two versions mixed in my system, but with the corrections I can have a zencart working fine :-) The only problem is sometimes I get some troubles but zencart itīs very powerfull so I can fix them and have the online shop working :-)
    Spanish help and Support
    Intentaré responder a tus preguntas acerca del ZENCART

 

 
Page 3 of 5 FirstFirst 12345 LastLast

Similar Threads

  1. Must select country on pull down menu...
    By giantbutton in forum Managing Customers and Orders
    Replies: 2
    Last Post: 4 Nov 2009, 02:56 PM
  2. Please select a state from the States pull down menu.
    By Veronika7747 in forum Managing Customers and Orders
    Replies: 5
    Last Post: 23 Oct 2009, 09:58 PM
  3. Replies: 6
    Last Post: 30 Jun 2008, 03:11 PM
  4. Purple Shades - You must select a country from the Countries pull down menu
    By dilate in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 18 Jul 2007, 05:19 AM
  5. You must select a country from the Countries pull down menu.
    By Melissa Baker in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 4 Feb 2007, 10:48 PM

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