Results 1 to 10 of 365

Hybrid View

  1. #1
    Join Date
    Mar 2006
    Posts
    199
    Plugin Contributions
    0

    Default Re: Can't get "referrals " mod working

    Quote Originally Posted by narsaw
    Ok I reinstalled all the files and tried running "update_zen.sql and I get this message

    ERROR: Cannot ADD column customers_info_source_id because it already exists.
    Error ERROR: Cannot insert configuration_key "DISPLAY_REFERRAL_OTHER" because it already exists
    Error ERROR: Cannot insert configuration_key "REFERRAL_REQUIRED" because it already exists
    that might not be a big deal...just means they're already in the database. Still didn't work after that? Did you get any other message about any successful sql stuff in that same pass? you could change the references to "create" below to "replace and run it again to see if it is completely successful then. Not sure if that will solve your problem though.
    Code:
    DROP TABLE IF EXISTS sources;
    CREATE TABLE sources (
      sources_id int NOT NULL auto_increment,
      sources_name varchar(64) NOT NULL,
      PRIMARY KEY (sources_id),
      KEY IDX_SOURCES_NAME (sources_name)
    );
    
    INSERT INTO sources VALUES (1, 'Google');
    INSERT INTO sources VALUES (2, 'Yahoo!');
    INSERT INTO sources VALUES (3, 'AOL');
    INSERT INTO sources VALUES (4, 'MSN');
    INSERT INTO sources VALUES (5, 'ZenCart');
    
    DROP TABLE IF EXISTS sources_other;
    CREATE TABLE sources_other (
      customers_id int NOT NULL default '0',
      sources_other_name varchar(64) NOT NULL,
      PRIMARY KEY (customers_id)
    );
    
    ALTER TABLE customers_info ADD customers_info_source_id int NOT NULL AFTER customers_info_date_account_last_modified;
    
    
    INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) VALUES ('Display "Other" Referral option', 'DISPLAY_REFERRAL_OTHER', 'true', 'Display "Other - please specify" with text box in referral source in account creation', '1', '22', 'zen_cfg_select_option(array(\'true\', \'false\'), ', now());
    INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) VALUES ('Require Referral', 'REFERRAL_REQUIRED', 'true', 'Require the Referral Source in account creation', '5', '6', 'zen_cfg_select_option(array(\'true\', \'false\'), ', now());
    Zen Cart: Diva Knitting

  2. #2
    Join Date
    May 2006
    Posts
    42
    Plugin Contributions
    0

    Default Re: Can't get "referrals " mod working

    Still same thing "Other" gets update no matter what the customer selects.

    Here is what is looks like:


    ****Giant image deleted****
    Last edited by Kim; 30 Nov 2006 at 05:39 PM.
    Zen Cart 1.3.0.1
    Database Patch Level: 1.3.0.1

    PC @ppliances

  3. #3
    Join Date
    Feb 2004
    Location
    New York
    Posts
    279
    Plugin Contributions
    1

    Default Re: Can't get "referrals " mod working

    Referral Sources only show Other as a count. You have to look at Customers -> Customers to see what was entered as a "write-in" on an Other selection.

  4. #4
    Join Date
    May 2006
    Posts
    42
    Plugin Contributions
    0

    Default Re: Can't get "referrals " mod working

    Here is a screen shot of Admin->Customers->Customers

    http://www.pcappliances.com/referrals.JPG

    I've personally created some of those ac****s and selected "Google, yahoo and Other (and typed in "friend", "word of mouth", etc



    Quote Originally Posted by ranger_lp
    Referral Sources only show Other as a count. You have to look at Customers -> Customers to see what was entered as a "write-in" on an Other selection.
    Zen Cart 1.3.0.1
    Database Patch Level: 1.3.0.1

    PC @ppliances

  5. #5
    Join Date
    May 2006
    Posts
    42
    Plugin Contributions
    0

    Default Re: Can't get "referrals " mod working

    **SOLVED**

    Turns that I was using and 'override' (includes/modules/my_template/create_accoutns.php file which I neglected to update with the inclues/modules/create_account.php from the contribution. Works beautifully.


    Special thanks to ranger_lp for his tireless work in helping me track down this problem.
    Zen Cart 1.3.0.1
    Database Patch Level: 1.3.0.1

    PC @ppliances

 

 

Similar Threads

  1. How Did You Hear About Us? mod
    By yeah! in forum All Other Contributions/Addons
    Replies: 15
    Last Post: 28 Dec 2011, 06:28 PM
  2. Database Errors - Duplicate Entries - How Did You Hear About Us Mod
    By limelites in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 7 Sep 2010, 08:59 PM
  3. How Did You Hear About Us Mod...2 Instances Possible??
    By jdw1979 in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 26 Mar 2010, 02:14 PM
  4. How Did You Hear Did You About Us -- I want to install it correctly
    By johnd in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 3 Feb 2008, 03:21 AM
  5. Error in admin - PayPal - when using How Did You Hear About us mod
    By TrvlFox in forum PayPal Express Checkout support
    Replies: 3
    Last Post: 23 Nov 2007, 03:23 PM

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