Page 2 of 40 FirstFirst 123412 ... LastLast
Results 11 to 20 of 395
  1. #11
    Join Date
    Jan 2009
    Posts
    2
    Plugin Contributions
    0

    Default Re: Contest System [support thread]

    Quote Originally Posted by skipwater View Post
    Yes that was the last install Yes deleting is good they are not needed.
    I am working on v1.2 and when I upload it maybe I will get it right.
    I have installed every thing but I cant see the contest under the admin section. Pls advice

    Oops sorry man Its working there were some files I needed to upload. Thanks for the Module I am trying it out now

  2. #12
    Join Date
    Jun 2008
    Location
    Washington, DC
    Posts
    771
    Plugin Contributions
    7

    Default Re: Contest System [support thread]

    Quote Originally Posted by bouga View Post
    I have installed every thing but I cant see the contest under the admin section. Pls advice

    Oops sorry man Its working there were some files I needed to upload. Thanks for the Module I am trying it out now
    FYI Version 1.2 is available for download now so the first thing is to get the newest files.

    As for contest not showing in admin.
    1. You ran the install-sql-contest-v1.?.php to update your database?

    2. If so is Contest showing under Admin>Configuration>Contest ?
    Also is it showing under Admin>Reports>Contest Prize Entries?

    Skip
    • 446F63746F722057686F •

  3. #13
    Join Date
    Jun 2008
    Posts
    232
    Plugin Contributions
    0

    Default Re: Contest System [support thread]

    Hi Skipwater,

    This problem has gotten me intrigued! I uploaded all the files again, and still get the same problem.

    1. on the admin, not seeing any value under column ENTRY, I assume that is normal because on your screenshot it shows the same thing, nothing on ENTRY whether the entry is validated or not so I assume there really isnt anything there.

    2. My main problem is still the fact that the left and right sideboxes goes screwy on the contest end page. It only seems to be affected on the contest end. The other pages where you enter your answer and or see who won comes out ok. So my question is what drives the template of the contest end?

    I was toying with definecontestend.php and trying to see where the problem is. I deleted the whole code on it and it still show that the sideboxes are screwed up and the middle portion is blank.

    So I went to the tpl_contest_default.php and was looking to see what drives the center template. Took out the button, and still shows the sideboxes pushed to the right.

    I'm using Cherry Zen template. Maybe some css code is affecting the display of the contest end page.

    I don't know... maybe you could shed some light on what the difference is in the coding of the rest of the contest page as compared to the contest end page? Thanks!!



    Quote Originally Posted by skipwater View Post
    The first thing that comes to mind is that you had a bad upload of the files. Try and upload just the files again.

    That answer was based on both of your post.

  4. #14
    Join Date
    May 2005
    Location
    England
    Posts
    399
    Plugin Contributions
    0

    Default Re: Contest System [support thread]

    Hi there,

    I use the same template, so it definitely must be something to do with CSS.

  5. #15
    Join Date
    Jun 2008
    Posts
    232
    Plugin Contributions
    0

    Default Re: Contest System [support thread]

    How to correct? there must be a code somewhere. Did it work on yours without problem?

  6. #16
    Join Date
    Jan 2007
    Posts
    1,086
    Plugin Contributions
    4

    Default Re: Contest System [support thread]

    Hi Skipwater!

    Thank you for this great contribution! I had some problems getting the SQL patch installed on my 1.3.7.1. I use the prefix zen_ and your script wouldn't append the prefix to the SQL queries or to the contest table so I had to go into the SQL script and change the table names to include zen_. A suggestion for the next update is to include auto appending the database prefix to table names. I have it sorted now and am testing it out on my live test site.

    Thanks again!

    Zen Cart and it's community are the best!!

  7. #17
    Join Date
    Jun 2008
    Location
    Washington, DC
    Posts
    771
    Plugin Contributions
    7

    Default Re: Contest System [support thread]

    I'm using Cherry Zen template. Maybe some css code is affecting the display of the contest end page.
    sunflower

    There is only one difference that I can see that might be css code breaking your templet that is the pageHeading.
    in /includes/languages/english/html_includes/YOUR_TEMPLATE /define_contestend.php
    Code:
    <table border="0" width="100%" cellspacing="10" cellpadding="10">
    <tr>
      <td class="pageHeading"" width=100% align="center" valign="top">
      <font size="5"><strong>CONTEST HAS ENDED</strong></font><br/>
      </td>
    </tr>
    <tr>
      <td class="main" align="center">
      <p class="biggerText"> <strong>There Will be a NEW contest soon please check back.</strong></p>
      </td>
    </tr>
    </table>
    How is the rules and winner page display?
    • 446F63746F722057686F •

  8. #18
    Join Date
    Jun 2008
    Location
    Washington, DC
    Posts
    771
    Plugin Contributions
    7

    Default Re: Contest System [support thread]

    Quote Originally Posted by lankeeyankee View Post
    Hi Skipwater!

    Thank you for this great contribution! I had some problems getting the SQL patch installed on my 1.3.7.1. I use the prefix zen_ and your script wouldn't append the prefix to the SQL queries or to the contest table so I had to go into the SQL script and change the table names to include zen_. A suggestion for the next update is to include auto appending the database prefix to table names. I have it sorted now and am testing it out on my live test site.

    Thanks again!
    Thanks for your input . I will look into it and add it to the next upgrade.
    • 446F63746F722057686F •

  9. #19
    Join Date
    Jun 2008
    Location
    Washington, DC
    Posts
    771
    Plugin Contributions
    7

    Default Re: Contest System [support thread]

    sunflowertami and HeathenMagic

    Here is the fix for your cherry_zen template and I have test on others and seems to work on all.
    Replace this file with the zip attached here. Or you can just edit as below.
    /includes/languages/english/html_includes/YOUR_TEMPLATE /define_contestend.php

    Code:
    <!-- bof define_contestend -->  
    <div class='centerColumn' id='contest'>
    <h1 id='contest-heading'><?php echo HEADING_TITLE; ?></h1>
    	<div id='contest-content' class='content'>
    
    	<table border="0" width="100%" cellspacing="10" cellpadding="10">
    		<tr>
    			<td class="pageHeading"" width=100% align="center" valign="top">
    			<font size="5"><strong>CONTEST HAS ENDED</strong></font><br/>
    			</td>
    		</tr>
    		<tr>
    			<td class="main" align="center">
    			<p class="biggerText"> <strong>There Will be a NEW contest soon please check back.</strong></p>
    			</td>
    		</tr>
    	</table>
    
    <!-- eof define_contestend DO NOT close with the two div -->
    Attached Files Attached Files
    • 446F63746F722057686F •

  10. #20
    Join Date
    Jan 2007
    Posts
    1,086
    Plugin Contributions
    4

    Default Re: Contest System [support thread]

    EDIT: I saw the above post which fixed the problem!

    Thanks again Skipwater!!

    Zen Cart and it's community are the best!!

 

 
Page 2 of 40 FirstFirst 123412 ... LastLast

Similar Threads

  1. Save For Later Support Thread
    By swguy in forum All Other Contributions/Addons
    Replies: 116
    Last Post: 3 May 2013, 05:35 PM
  2. Better Together Contribution Support Thread
    By swguy in forum All Other Contributions/Addons
    Replies: 579
    Last Post: 21 Apr 2013, 04:59 AM
  3. Autoresponder+ for ZC v1.3.x [support thread]
    By Steven300 in forum All Other Contributions/Addons
    Replies: 227
    Last Post: 13 Dec 2012, 07:42 PM
  4. SnapShot [support thread]
    By skipwater in forum All Other Contributions/Addons
    Replies: 32
    Last Post: 26 Oct 2012, 08:38 PM
  5. PO Box Ban [support thread]
    By Steven300 in forum Addon Shipping Modules
    Replies: 23
    Last Post: 28 Oct 2009, 11:58 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
  •