I am at a loss why you can not go to
admin->configuration->contest NOT admin->reports->Contest Prize Entries and edit the start date and end date for the contest.
And are you setting Contest Reference Code with a unique code for each contest?
If none of that helps this debug code might help to see whats with the date.
So I can see what the issue is you will need to add this debug code.
Find in this file /includes/templates/YOUR_TEMPLATE/templates/tpl_contest_default.php
Around line 47
PHP Code:
if ($now >= $start_date && $now <= $close_date) {
} else {
$show_invite = false;
}
And change it to look like this.
PHP Code:
if ($now >= $start_date && $now <= $close_date) {
// Debug see dates
echo 'Server Date Now '.date("m/d/Y").'<br />';
echo 'Start '.$start_date.' Close '.$close_date.' Now '.$now.' Contest is Active';
} else {
// Debug see dates
echo 'Server Date Now '.date("m/d/Y").'<br />';
echo 'Start '.$start_date.' Close '.$close_date.' Now '.$now.' Contest is Closed';
$show_invite = false;
}
Now when you enter the contest you will get the time stamp info.
Example: Start 1285905600 Close 1287460800 Now 1286251200 Contest is Active
For the contest to be active now must be between start and close.
Skip