Page 1 of 2 12 LastLast
Results 1 to 10 of 2475

Hybrid View

  1. #1
    Join Date
    Feb 2008
    Location
    West Virginia
    Posts
    137
    Plugin Contributions
    0

    Default Re: Reward Points Module- Live Release now available.

    Quote Originally Posted by Rasyr View Post
    So did I. I even went ahead and created my own FAQ that is HEAVILY inspired by the one Nullmind did for his site.

    http://shop.ironcrown.com/index.php?...ard_points_faq
    Mine pales in comparison to his. Well done I guess I will have to revist mine and give it it's own page since atm it's buried with my other FAQ's.
    Zen Cart: 1.3.8a
    PHP: 5.2.4
    MySQL: 5.0.45

    Pine Tree Candles

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

    Default Re: Reward Points Module- Live Release now available.

    Quote Originally Posted by pinetreecandles View Post
    Mine pales in comparison to his. Well done I guess I will have to revist mine and give it it's own page since atm it's buried with my other FAQ's.
    Same here. By the way, how do you send someone points?

  3. #3
    Join Date
    Feb 2006
    Location
    Central Coast, NSW, Australia
    Posts
    560
    Plugin Contributions
    0

    Default Re: Reward Points Module- Live Release now available.

    Hmmm.

    Trying to install on my local site and I get this error when trying to access admin

    1146 Table 'nortsandones.reward_status_track' doesn't exist
    in:
    [SELECT ph.*, o.orders_status FROM reward_status_track ph, orders o WHERE ph.orders_id=o.orders_id AND ph.date If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.


    I renamed the custom folder to the same as mine, and then uploaded both the admin and includes. But as soon as I try and do anyting in Admin, it throws up the above error. ?

    What steps did I miss ?

  4. #4
    Join Date
    Aug 2006
    Posts
    231
    Plugin Contributions
    0

    Default Re: Reward Points Module- Live Release now available.

    Quote Originally Posted by Mike_Dean View Post
    Hmmm.

    Trying to install on my local site and I get this error when trying to access admin

    1146 Table 'nortsandones.reward_status_track' doesn't exist
    in:
    [SELECT ph.*, o.orders_status FROM reward_status_track ph, orders o WHERE ph.orders_id=o.orders_id AND ph.date If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.


    I renamed the custom folder to the same as mine, and then uploaded both the admin and includes. But as soon as I try and do anyting in Admin, it throws up the above error. ?

    What steps did I miss ?
    Mike, read back through this thread

    Basically, that is an issue with the sql file and IF you have a DB prefix in use.

  5. #5
    Join Date
    Feb 2006
    Location
    Central Coast, NSW, Australia
    Posts
    560
    Plugin Contributions
    0

    Default Re: Reward Points Module- Live Release now available.

    Quote Originally Posted by Rasyr View Post
    Mike, read back through this thread

    Basically, that is an issue with the sql file and IF you have a DB prefix in use.
    Thanks,

    I'm not using a prefix, my db is nortandones not xxx_nortsandones.

    What am I supposed to be renaming the following file to ?

    Rename reward_points_functions.php to reward_points_functions.xxx

  6. #6
    Join Date
    Aug 2006
    Posts
    231
    Plugin Contributions
    0

    Default Re: Reward Points Module- Live Release now available.

    Quote Originally Posted by Mike_Dean View Post
    Thanks,

    I'm not using a prefix, my db is nortandones not xxx_nortsandones.

    What am I supposed to be renaming the following file to ?

    Rename reward_points_functions.php to reward_points_functions.xxx
    The prefix isn't on the DB name, it is on the DB table names. (i.e. the configuration table might be names zen_configuration).

    You can look inside your includes/configure.php file to see if the store thinks you are using a DB Prefix -- for a line that says something like:
    define('DB_PREFIX', 'zen_');
    It it isn't that you need to rename the sql file, it is that you may need to make changes to it and rerun it (if your DB is using a prefix).

    Here is the post that I was referring to finding -- http://www.zen-cart.com/forum/showpo...7&postcount=19

    I don't think that you need to be renaming that file you are listing at all.

  7. #7
    Join Date
    Feb 2006
    Location
    Central Coast, NSW, Australia
    Posts
    560
    Plugin Contributions
    0

    Default Re: Reward Points Module- Live Release now available.

    Quote Originally Posted by Rasyr View Post
    The prefix isn't on the DB name, it is on the DB table names. (i.e. the configuration table might be names zen_configuration).

    You can look inside your includes/configure.php file to see if the store thinks you are using a DB Prefix -- for a line that says something like:


    It it isn't that you need to rename the sql file, it is that you may need to make changes to it and rerun it (if your DB is using a prefix).

    Here is the post that I was referring to finding -- http://www.zen-cart.com/forum/showpo...7&postcount=19

    I don't think that you need to be renaming that file you are listing at all.
    Thanks Rasyr, appreciate your help on this,

    Ok..

    I checked the file as you suggested and it's as follows.

    define('DB_PREFIX', '');

    So we can assume that there is no prefix..

    The problem is, that I can't even run the sql file to begin with.

    I uploaded the files, and then when I try and enter the Admin CP, thats when I get the error, so I can't even run the sql to begin with, so modifying the sql is not going to help ?

    Sorry....

  8. #8
    Join Date
    Feb 2008
    Posts
    7
    Plugin Contributions
    0

    Default Re: Reward Points Module- Live Release now available.

    Quote Originally Posted by Rasyr View Post

    Here is the post that I was referring to finding -- http://www.zen-cart.com/forum/showpo...7&postcount=19
    Hi,
    I've tried this procedure and I still get the same error when I try to uninstall this (even my backup files aren't overriding this). How can I get rid of it?

    Thanks!

  9. #9
    Join Date
    Sep 2007
    Location
    Dublin, Ireland
    Posts
    1,288
    Plugin Contributions
    8

    Default Re: Reward Points Module- Live Release now available.

    Quote Originally Posted by Mike_Dean View Post
    Thanks,

    I'm not using a prefix, my db is nortandones not xxx_nortsandones.

    What am I supposed to be renaming the following file to ?

    Rename reward_points_functions.php to reward_points_functions.xxx
    Exactly as it shows- change the extension to 'xxx'- that will stop it causing the error until you can do the SQL table rename.
    Andrew

    Andrew Moore
    Omnicia Agile Development
    www.omnicia.com

  10. #10
    Join Date
    Aug 2006
    Posts
    231
    Plugin Contributions
    0

    Default Re: Reward Points Module- Live Release now available.

    Quote Originally Posted by Berserker View Post
    Same here. By the way, how do you send someone points?
    If you, as admin, want to give a person some points (beyond what they earn), the go to Admin|Customers|Reward Points, and then find and edit the customer.

    My boss gave everybody on our store 1000 points to begin with (and then I had another 83 that I need to give even more to) -- i.e. every got 1000 points, those who had purchased more than $500 since 2002 (I have the records from the old online store, pre-zen) got additional points - equal to 2x the dollar amount that they spent.

    So for the "everybody gets 1000 points, I did a sql statement and ran it and then have been working on editing the others since then.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v139h Reward Points module display order totals including reward points
    By irsarahbean in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 23 Jun 2013, 01:19 AM
  2. Reward points module : 0 points earned
    By jonnyboy22 in forum Addon Payment Modules
    Replies: 5
    Last Post: 5 Jun 2012, 09:52 AM
  3. Reward Points module- points not calculated correctly
    By cpoet in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 9 Sep 2010, 05:02 PM
  4. Reward Points Module - Hide message when 0 points offered
    By expresso in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 11 Dec 2008, 06:58 PM
  5. Experimental Reward Points Module
    By precursor999 in forum Addon Payment Modules
    Replies: 7
    Last Post: 2 Apr 2007, 09:32 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