Page 156 of 248 FirstFirst ... 56106146154155156157158166206 ... LastLast
Results 1,551 to 1,560 of 2475
  1. #1551
    Join Date
    Jun 2007
    Location
    Bronx, New York, United States
    Posts
    681
    Plugin Contributions
    8

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

    I'm trying to figure this out. Either its me or Reward Points is ignoring the category based rewards. Example:

    I have my categories set up to give 0 rewards for the category "Gift Certificates". However, I still see the Gift Certificates awarding points as if I didn't even tell Rewards Points to award 0.

    To further this, the item's product page reflects 0 points in the item display.

    Can anyone help?

  2. #1552
    Join Date
    Jun 2007
    Location
    Bronx, New York, United States
    Posts
    681
    Plugin Contributions
    8

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

    Quote Originally Posted by lauriesscraps View Post
    Would doing a complete restore of all the files in my back up do it? If so I can do that but I do not want to wipe any orders I have recieved since the back up was done, and I don't want to erase any products that were added. Does anybody know which files I should avoid restoring as to not erase the orders and products that were added since the back up?

    Thanks again.
    Not really. Database data and files are two different notes.

    If you didn't do a back up of your database schemas prior to doing the update, then there is no reversal on this. You would need the SQL coding for your entire database available. Just backing up your files isn't enough. This is why whenever you do anything involving the database, it's a good idea to go to your hosting control panel and log into likely phpMyAdmin and do a complete backup of all your databases (even those not necessarily of ZenCart) before doing such work.

    I would check with your host to see if they provide any automated back up and see if they a copy of your MySQL somewhere.

    If you do a restore, there is a way to avoid losing your data. Restores normally involve doing a "IF THIS TABLE EXISTS, DELETE IT" sort of thing... So you may want to remove the CREATE TABLE coding. Secondly, any inserts should be changed from INSERT INTO to INSERT IGNORE INTO. This way you prevent duplicates. Doing this will tell MySQL to insert all of the data from the backup before you did MySQL ignoring any conflicts. This way you keep your current data and add your backup data.

    This may sound a bit complicated but just remember before you begin... BACKUP EVERYTHING...
    Last edited by retched; 9 Aug 2010 at 01:06 AM.

  3. #1553
    Join Date
    Sep 2009
    Posts
    254
    Plugin Contributions
    0

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

    Trying it now. I hope it works. Long process and I have never done it before. Thanks for the information. I hope it saves me! THANK YOU, THANK YOU, THANK YOU!!!
    Last edited by lauriesscraps; 9 Aug 2010 at 01:45 AM.

  4. #1554
    Join Date
    Jun 2007
    Location
    Bronx, New York, United States
    Posts
    681
    Plugin Contributions
    8

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

    If you need help with this I can help you through it. Otherwise, make sure you get the backup just in case something goes wrong.

  5. #1555
    Join Date
    Sep 2009
    Posts
    254
    Plugin Contributions
    0

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

    Quote Originally Posted by retched View Post
    If you need help with this I can help you through it. Otherwise, make sure you get the backup just in case something goes wrong.
    Thank you. I might, but I have a tutorial that HostMonster has created for this so I will give it a try, but I have downloaded a back up. Now I just have to do another backup before I do it. This seems so confusing! UGH! Thanks, I will let you know what happens.

    Actually, I do have one question, how do I now which database to use. I have one called "_zc01 (106)". Is that the one? The others that are even close all say "_znc...something".

  6. #1556
    Join Date
    Jun 2007
    Location
    Bronx, New York, United States
    Posts
    681
    Plugin Contributions
    8

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

    Quote Originally Posted by lauriesscraps View Post
    Thank you. I might, but I have a tutorial that HostMonster has created for this so I will give it a try, but I have downloaded a back up. Now I just have to do another backup before I do it. This seems so confusing! UGH! Thanks, I will let you know what happens.

    Actually, I do have one question, how do I now which database to use. I have one called "_zc01 (106)". Is that the one? The others that are even close all say "_znc...something".
    An easy way to answer this would be to check configure.php file for your ZenCart installation.

    Open includes/configure.php in a text editor and look for define('DB_PREFIX', 'zen_');

    Anything with the value listed in the second set of quotes, in my example 'zen_' is the database for ZenCart.

    As for which database, look for define('DB_DATABASE', 'betadata');. That will list your zencart database. In my example, that is 'betadata'.

  7. #1557
    Join Date
    Sep 2005
    Location
    Waikato, New Zealand
    Posts
    1,539
    Plugin Contributions
    3

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

    Still can't get it to work

    I turned on my error log and I have this error

    [09-Aug-2010 14:38:22] StoreRewardPoints called but SESSION['REWARD_POINTS_EARNED'] not found

    This seems to happen when i place the order

  8. #1558
    Join Date
    Jun 2007
    Location
    Bronx, New York, United States
    Posts
    681
    Plugin Contributions
    8

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

    Quote Originally Posted by nigelt74 View Post
    Still can't get it to work

    I turned on my error log and I have this error

    [09-Aug-2010 14:38:22] StoreRewardPoints called but SESSION['REWARD_POINTS_EARNED'] not found

    This seems to happen when i place the order
    While installing, did you make sure to make all of the changes in each folder?

  9. #1559
    Join Date
    Sep 2009
    Posts
    254
    Plugin Contributions
    0

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

    Quote Originally Posted by retched View Post
    An easy way to answer this would be to check configure.php file for your ZenCart installation.

    Open includes/configure.php in a text editor and look for define('DB_PREFIX', 'zen_');

    Anything with the value listed in the second set of quotes, in my example 'zen_' is the database for ZenCart.

    As for which database, look for define('DB_DATABASE', 'betadata');. That will list your zencart database. In my example, that is 'betadata'.
    Could I find this configure.php file under admin? If so, it does not show any text like this. Do I need to be looking for it somewhere else? Thanks!

  10. #1560
    Join Date
    Jun 2007
    Location
    Bronx, New York, United States
    Posts
    681
    Plugin Contributions
    8

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

    Quote Originally Posted by lauriesscraps View Post
    Could I find this configure.php file under admin? If so, it does not show any text like this. Do I need to be looking for it somewhere else? Thanks!
    The configure.php file I'm referring to is /catalog/includes/configure.php.

    Essentially that is the <root of the zencart>/includes/configure.php

 

 

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

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