Page 26 of 41 FirstFirst ... 16242526272836 ... LastLast
Results 251 to 260 of 408
  1. #251
    Join Date
    Jun 2008
    Location
    Washington, DC
    Posts
    789
    Plugin Contributions
    7

    Default Re: Contest System [support thread]

    This was the fix that I gave Tagyourbaby but he never came back.

    Quote Originally Posted by skipwater View Post
    Picture is worth 1000 words

    See if this fixes your issue.

    First thing backup your zencart database.
    Use phpmyadmin open your zencart database locate the configuration table. Browse and find in the field configuration_key CONTEST_SHOW edit the date_added to at least the day before your contest started.

    Let us know if that fixes it.

    Skip
    • 446F63746F722057686F •

  2. #252
    Join Date
    Jul 2010
    Location
    Welland, ON Canada
    Posts
    46
    Plugin Contributions
    0

    Default Re: Contest System [support thread]

    Hello Skip,

    Thanks for the reply... Yes I did see that post, I just wasn't sure what it meant. I am not familiar with phpMyAdmin, and not sure how to implement it.

  3. #253
    Join Date
    Jun 2008
    Location
    Washington, DC
    Posts
    789
    Plugin Contributions
    7

    Default Re: Contest System [support thread]

    Quote Originally Posted by TinMan780 View Post
    Hello Skip,

    Thanks for the reply... Yes I did see that post, I just wasn't sure what it meant. I am not familiar with phpMyAdmin, and not sure how to implement it.
    OK no phpMyAdmin use ZC
    Under ZC Admin go to tools->Install SQL Patches
    And paste this into the window.
    Code:
    UPDATE `configuration` SET `date_added` = '2010-10-01 00:00:00' WHERE `configuration`.`date_added` !='2010-12-01 00:00:00';
    That will set the date to 10.01.2010.

    I you are going to use this fix this query will not work if it is run on 12.01.2010 00:00:00 The way today has gone someone will try.

    Skip
    • 446F63746F722057686F •

  4. #254
    Join Date
    Jul 2010
    Location
    Welland, ON Canada
    Posts
    46
    Plugin Contributions
    0

    Default Re: Contest System [support thread]

    Quote Originally Posted by skipwater View Post
    OK no phpMyAdmin use ZC
    Under ZC Admin go to tools->Install SQL Patches
    And paste this into the window.
    Code:
    UPDATE `configuration` SET `date_added` = '2010-10-01 00:00:00' WHERE `configuration`.`date_added` !='2010-12-01 00:00:00';
    That will set the date to 10.01.2010.

    I you are going to use this fix this query will not work if it is run on 12.01.2010 00:00:00 The way today has gone someone will try.

    Skip


    Hey Skip, a page comes up reading...

    1054 Unknown column 'configuration.date_added' in 'where clause'
    in:
    [UPDATE zen_configuration SET date_added = '2010-10-01 00:00:00' WHERE configuration.date_added !='2010-12-01 00:00:00';]
    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.

  5. #255
    Join Date
    Jun 2008
    Location
    Washington, DC
    Posts
    789
    Plugin Contributions
    7

    Default Re: Contest System [support thread]

    1054 Unknown column 'configuration.date_added' in 'where clause'
    in:
    [UPDATE zen_configuration SET date_added = '2010-10-01 00:00:00' WHERE configuration.date_added !='2010-12-01 00:00:00';]
    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.
    It looks like you are using a prefix of zen_ so try this.
    Code:
    UPDATE `configuration` SET `date_added` = '2010-10-01 00:00:00' WHERE `zen_configuration`.`date_added` !='2010-12-01 00:00:00';

    Skip
    • 446F63746F722057686F •

  6. #256
    Join Date
    Jul 2010
    Location
    Welland, ON Canada
    Posts
    46
    Plugin Contributions
    0

    Default Re: Contest System [support thread]

    Quote Originally Posted by skipwater View Post
    It looks like you are using a prefix of zen_ so try this.
    Code:
    UPDATE `configuration` SET `date_added` = '2010-10-01 00:00:00' WHERE `zen_configuration`.`date_added` !='2010-12-01 00:00:00';

    Skip
    Yes Skip, that has resolved the date issue. It no longer reads 2036. However the "contest has ended" is still displaying over top of the contest that just ended and entry form.

  7. #257
    Join Date
    Jun 2008
    Location
    Washington, DC
    Posts
    789
    Plugin Contributions
    7

    Default Re: Contest System [support thread]

    I have attached this zip file check_contest_files.zip.

    Unzip the file and then upload it to your web sites admin folder.
    To run log in to your ZC admin and then change the index.php to check_contest_files.php this will check that all the mod's files have been loaded into the correct locations.

    Let me know what the out come is.

    Skip
    Attached Files Attached Files
    • 446F63746F722057686F •

  8. #258
    Join Date
    Jul 2010
    Location
    Welland, ON Canada
    Posts
    46
    Plugin Contributions
    0

    Default Re: Contest System [support thread]

    Quote Originally Posted by skipwater View Post
    I have attached this zip file check_contest_files.zip.

    Unzip the file and then upload it to your web sites admin folder.
    To run log in to your ZC admin and then change the index.php to check_contest_files.php this will check that all the mod's files have been loaded into the correct locations.

    Let me know what the out come is.

    Skip
    It reads all the files were found OK except:

    ........./myadmin/install-sql-contest-v1.6.php

  9. #259
    Join Date
    Jun 2008
    Location
    Washington, DC
    Posts
    789
    Plugin Contributions
    7

    Default Re: Contest System [support thread]

    Question I see start date as October 01 2010 and ending date November 01 2010 is this true?

    So if you go to admin->Configuration->Contests

    Show contest invitation = true (If you turn this to false the contest page only shows CONTEST HAS ENDED?)

    Prize 1 (product #)

    Contest Start Date = 10/01/2010 (This is what you have set?)
    Contest Close Date = 11/01/2010 (This is what you have set?)
    Allow guest to enter contest = true
    Allow customers to enter contest = true
    Contest Reference Code = 0xx (Every new contest you are changing this value?)

    Skip
    • 446F63746F722057686F •

  10. #260
    Join Date
    Jul 2010
    Location
    Welland, ON Canada
    Posts
    46
    Plugin Contributions
    0

    Default Re: Contest System [support thread]

    Quote Originally Posted by skipwater View Post
    Question I see start date as October 01 2010 and ending date November 01 2010 is this true?

    So if you go to admin->Configuration->Contests

    Show contest invitation = true (If you turn this to false the contest page only shows CONTEST HAS ENDED?)

    Prize 1 (product #)

    Contest Start Date = 10/01/2010 (This is what you have set?)
    Contest Close Date = 11/01/2010 (This is what you have set?)
    Allow guest to enter contest = true
    Allow customers to enter contest = true
    Contest Reference Code = 0xx (Every new contest you are changing this value?)

    Skip


    Those values are all correct, except when :

    Show contest invitation = false (the page has no change, it is still displaying the contest that just past.

    odd huh?

 

 
Page 26 of 41 FirstFirst ... 16242526272836 ... LastLast

Similar Threads

  1. Hebrew Support - latest release [Support Thread]
    By eranariel in forum Addon Language Packs
    Replies: 22
    Last Post: 26 Jan 2026, 06:47 AM
  2. ZX Slideshow support thread
    By balihr in forum All Other Contributions/Addons
    Replies: 766
    Last Post: 18 Oct 2025, 11:23 AM
  3. v151 Help with contest system mod
    By tod4life in forum General Questions
    Replies: 1
    Last Post: 15 Dec 2012, 05:26 PM
  4. SnapShot [support thread]
    By skipwater in forum All Other Contributions/Addons
    Replies: 32
    Last Post: 26 Oct 2012, 08:38 PM
  5. Contest System addon Error
    By ruralcraftsman in forum All Other Contributions/Addons
    Replies: 18
    Last Post: 5 Feb 2010, 04:12 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