Page 21 of 50 FirstFirst ... 11192021222331 ... LastLast
Results 201 to 210 of 491
  1. #201
    Join Date
    Jun 2007
    Posts
    71
    Plugin Contributions
    0

    Default Re: Additional Customers Fields

    Here is my /catalog/includes/languages/english/extra_definitions/additional_customers_fields_create_account.php
    [ php ] $additional_customers_fields_form_create_account_pull_down_title['customers_age'] = array('Sales Representative: ');
    $additional_customers_fields_form_create_account_pull_down_content['customers_age'] = array('None', 'Mel Kimmel', 'Boyd Thomas');
    [ /php ]

    and here is my /catalog/includes/languages/english/extra_definitions/additional_customers_fields_account_edit.php
    [ php ] $additional_customers_fields_form_account_edit_pull_down_title['customers_age'] = array('Sales Representative: ');
    $additional_customers_fields_form_account_edit_pull_down_content['customers_age'] = array('None', 'Mel Kimmel', 'Boyd Thomas');
    [ /php ]

    create_account shows two identical fields and account_edit only shows one

  2. #202
    Join Date
    Aug 2004
    Posts
    1,590
    Plugin Contributions
    1

    Default Re: Additional Customers Fields

    Again - without spaces between the tags (same for the quotes btw):

    Here is my /catalog/includes/languages/english/extra_definitions/additional_customers_fields_create_account.php
    PHP Code:
    $additional_customers_fields_form_create_account_pull_down_title['customers_age'] = array('Sales Representative: ');
    $additional_customers_fields_form_create_account_pull_down_content['customers_age'] = array('None''Mel Kimmel''Boyd Thomas'); 
    and here is my /catalog/includes/languages/english/extra_definitions/additional_customers_fields_account_edit.php
    PHP Code:
    $additional_customers_fields_form_account_edit_pull_down_title['customers_age'] = array('Sales Representative: ');
    $additional_customers_fields_form_account_edit_pull_down_content['customers_age'] = array('None''Mel Kimmel''Boyd Thomas'); 
    And the rest ... ? What does it say in both template files between // Additional customers fields and // End of additional customers fields paragraph ?

  3. #203
    Join Date
    Aug 2004
    Posts
    1,590
    Plugin Contributions
    1

    Default Re: Additional Customers Fields

    No updates regarding the rest of the infos from both template files in order to cover this problem ?

    Was it covered already ?

  4. #204
    Join Date
    Jun 2007
    Posts
    71
    Plugin Contributions
    0

    Default Re: Additional Customers Fields

    Sorry to bother you!
    I have had nothing but problems for some reason. If I delete all the files from your mod my loggin works as soon as I upload them back into the appropriate directories I get this error:

    1054 Unknown column 'moderators_level' in 'field list'
    in:
    [INSERT INTO customers (moderators_level, customers_firstname, customers_lastname, customers_email_address, customers_nick, customers_telephone, customers_fax, customers_newsletter, customers_email_format, customers_default_address_id, customers_password, customers_authorization, customers_gender) VALUES ('0', 'Robert', 'Bepple', '[email protected]', '', '5099432192', '', '0', 'TEXT', '0', 'e5b5473162202bc010bc033501662b7c:02', '0', 'm')]

  5. #205
    Join Date
    Aug 2004
    Posts
    1,590
    Plugin Contributions
    1

    Default Re: Additional Customers Fields

    You appear to have installed the 'Moderator level' MOD and probably missed one of my instructions. The 'moderators_level' field, from your TABLE_CUSTOMERS table, is considered a core field. Make sure to have created this field (using the query I added from my installation instruction) and have upgraded the $customers_table_fields from your extra_configure's additional_customers_fields.php file since this field must NOT be affected during any injections or update procedures.

  6. #206
    Join Date
    Jun 2007
    Posts
    71
    Plugin Contributions
    0

    Default Re: Additional Customers Fields

    How do I do that?

  7. #207
    Join Date
    Jun 2007
    Posts
    71
    Plugin Contributions
    0

    Default Re: Additional Customers Fields

    I ran the

    CREATE TABLE customers_additional (
    field_id int(11) NOT NULL auto_increment,
    field_name varchar(255) NOT NULL default '',
    field_status char(2) NOT NULL default '',
    PRIMARY KEY (field_id)
    ) ENGINE=MyISAM;

    in the Install SQL Patch of the admin site, if that is what you mean by installing the query.

  8. #208
    Join Date
    Aug 2004
    Posts
    1,590
    Plugin Contributions
    1

    Default Re: Additional Customers Fields

    in the Install SQL Patch of the admin site, if that is what you mean by installing the query.
    No, that is not what was said. Since you installed the moderators level MOD, there's a specific instruction, from the installation text file, regarding the moderators_level field. This since MOD has nothing to do with the additional customers fields, I invite you to post to the official topic of the subject.

  9. #209
    Join Date
    Jun 2007
    Posts
    71
    Plugin Contributions
    0

    Default Re: Additional Customers Fields

    My co-worker and I have read through the complete install.txt, upgrade.txt, and changelog.txt files along with the includes/languages/english/extra_definitions/additional_customers_fields.php and found nothing referring to moderators Mod.
    I download Additional Customers Fields Mod v2.02 from the zencart.com download center. The v1.02 Mod I had before worked but I just had to do some configuring, this one doesn't work at all, I can uninstall it and site works great, reinstall it and doesn't work again.

  10. #210
    Join Date
    Aug 2004
    Posts
    1,590
    Plugin Contributions
    1

    Default Re: Additional Customers Fields

    Since I can't reproduce this error, please post your $customers_core_fields array table from your includes/extra_configures/additional_customers_fields.php file as well as your includes/modules/<your_template>/create_account.php array block where instructions were involved for the moderators_level field as well. I will investigate this more closely.

 

 
Page 21 of 50 FirstFirst ... 11192021222331 ... LastLast

Similar Threads

  1. Additional Customers Fields
    By mizio78 in forum All Other Contributions/Addons
    Replies: 4
    Last Post: 12 Aug 2011, 09:27 AM
  2. Additional Customers Fields Addon SQL problem
    By Dasha in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 12 Sep 2008, 05:41 PM
  3. Additional customers fields v2-55 Question
    By balonglong78 in forum General Questions
    Replies: 0
    Last Post: 26 May 2008, 04:04 AM
  4. Need help installing "additional customers fields" module
    By CKlemow in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 1 Sep 2007, 03:22 AM

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