Page 30 of 37 FirstFirst ... 202829303132 ... LastLast
Results 291 to 300 of 363
  1. #291
    Join Date
    Nov 2005
    Location
    France
    Posts
    595
    Plugin Contributions
    8

    Default Re: Reward Points Full Suite v2.5 (for ZC v1.5x) Support Thread

    Quote Originally Posted by twitchtoo View Post
    strelitzia - You're welcome to email me directly and I'll send a copy immediately.
    Email sent. Thanks

  2. #292
    Join Date
    Apr 2007
    Location
    Ontario, Canada
    Posts
    1,731
    Plugin Contributions
    27

    Idea or Suggestion Re: Reward Points Full Suite v2.5 (for ZC v1.5x) Support Thread

    Quote Originally Posted by strelitzia View Post
    Email sent. Thanks
    Check your snail mail

    Reward Points Full Suite 2.5h for 1.55f has been submitted for approval

    v2.5h - 01/07/2019 Updated By Twitch:
    • Strelitza - Bug Reported - Twitch Wholesale code found in YOUR_ADMIN/orders.php:
    • https://www.zen-cart.com/showthread....00#post1353100
    • Reward Points 2.5h - Twitch Updated:
    • Bugfix - Reset YOUR_ADMIN/orders.php in new install + upgrade fileset to 1.55f stock
    • Version change updated in the installation instructions
    • File naming standards enforced on directory names.
    Twitch.
    https://www.twitchtoo.com Do you work for free? Please donate.
    Twitch Base8 - Obsidian - This, is what's new.

  3. #293
    Join Date
    Nov 2005
    Location
    France
    Posts
    595
    Plugin Contributions
    8

    Default Re: Reward Points Full Suite v2.5 (for ZC v1.5x) Support Thread

    I've come across an issue with this module.
    As the number of entries in reward_status_track table increases, loading the admin page takes longer and longer.
    A site I just fixed had around 9700 entries, and admin was crashing every time I tried to load customers_reward_points.php
    TTFB was in excess of 2 minutes!
    I resolved this issue by applying an index to the database table like

    ALTER TABLE `reward_status_track` ADD INDEX(`customers_id`);

    Admin now loads instantly.
    Please update your installer to include this index on the database table

  4. #294
    Join Date
    Aug 2014
    Location
    Lisbon
    Posts
    594
    Plugin Contributions
    0

    Default Re: Reward Points Full Suite v2.5 (for ZC v1.5x) Support Thread

    Quote Originally Posted by strelitzia View Post
    I've come across an issue with this module.
    As the number of entries in reward_status_track table increases, loading the admin page takes longer and longer.
    A site I just fixed had around 9700 entries, and admin was crashing every time I tried to load customers_reward_points.php
    TTFB was in excess of 2 minutes!
    I resolved this issue by applying an index to the database table like

    ALTER TABLE `reward_status_track` ADD INDEX(`customers_id`);

    Admin now loads instantly.
    Please update your installer to include this index on the database table
    got to check this
    “Though the problems of the world are increasingly complex, the solutions remain embarrassingly simple.” ― Bill Mollison

  5. #295
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,582
    Plugin Contributions
    29

    Default Re: Reward Points Full Suite v2.5 (for ZC v1.5x) Support Thread

    Is anyone working on updating for 1.5.6? Or has anyone tried this in 1.5.6?

  6. #296
    Join Date
    Nov 2005
    Location
    France
    Posts
    595
    Plugin Contributions
    8

    Default Re: Reward Points Full Suite v2.5 (for ZC v1.5x) Support Thread

    Quote Originally Posted by jeking View Post
    Is anyone working on updating for 1.5.6? Or has anyone tried this in 1.5.6?
    I've installed it to a 1.5.6a site. It's currently with the client for testing prior to go live. I haven't had any reports of issues with it so far

  7. #297
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,582
    Plugin Contributions
    29

    Default Re: Reward Points Full Suite v2.5 (for ZC v1.5x) Support Thread

    Quote Originally Posted by strelitzia View Post
    I've installed it to a 1.5.6a site. It's currently with the client for testing prior to go live. I haven't had any reports of issues with it so far
    Good to know, thank you.

  8. #298
    Join Date
    Sep 2011
    Posts
    20
    Plugin Contributions
    0

    Default Re: Reward Points Full Suite v2.5 (for ZC v1.5x) Support Thread

    I have used this since a 1.5.6a upgrade and I had an issue similar to those in the past where the reward points were not being applied to the order total.

    The fix contained in post 202 of this thread contains a fix and it has worked just fine for me.

  9. #299
    Join Date
    Apr 2012
    Location
    Los Angeles, CA
    Posts
    185
    Plugin Contributions
    2

    Default Re: Reward Points Full Suite v2.5 (for ZC v1.5x) Support Thread

    Quote Originally Posted by strelitzia View Post
    I've come across an issue with this module.
    As the number of entries in reward_status_track table increases, loading the admin page takes longer and longer.
    A site I just fixed had around 9700 entries, and admin was crashing every time I tried to load customers_reward_points.php
    TTFB was in excess of 2 minutes!
    I resolved this issue by applying an index to the database table like

    ALTER TABLE `reward_status_track` ADD INDEX(`customers_id`);

    Admin now loads instantly.
    Please update your installer to include this index on the database table
    Where exactly do we do this? Should I use the Admin->Install SQL Patches or can I copy and past this into the Installation SQL in this area:
    Code:
    CREATE TABLE reward_status_track (
    rewards_id INT( 11 ) NOT NULL AUTO_INCREMENT PRIMARY KEY ,
    customers_id INT( 11 ) NOT NULL ,
    orders_id INT( 11 ) NOT NULL ,
    date DATETIME NOT NULL ,
    reward_points DOUBLE( 15, 4 ) NOT NULL ,
    status TINYINT( 1 ) NOT NULL,
    UNIQUE (orders_id));
    ALTER TABLE `reward_status_track` ADD INDEX(`customers_id`);
    before I complete the installation or can I just stick it anywhere at the bottom of the page? Also, if I am to add it to the Installation SQL would I write it like this
    Code:
    ALTER TABLE reward_status_track ( ADD INDEX(customers_id));
    or exactly as it is written above?
    Last edited by sammirah; 7 Mar 2019 at 08:30 AM.

  10. #300
    Join Date
    Aug 2014
    Location
    Lisbon
    Posts
    594
    Plugin Contributions
    0

    Default Re: Reward Points Full Suite v2.5 (for ZC v1.5x) Support Thread

    You just have to do it one time.
    For example in phpmyadmin.
    But I guess it can be done with Install SQL Patches also.

    Perhaps someone will update the module to add this index upon installation.
    “Though the problems of the world are increasingly complex, the solutions remain embarrassingly simple.” ― Bill Mollison

 

 
Page 30 of 37 FirstFirst ... 202829303132 ... LastLast

Similar Threads

  1. First 1.0 Release of Reward Points module [Support Thread]
    By hem in forum All Other Contributions/Addons
    Replies: 38
    Last Post: 4 Apr 2013, 02:34 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