PDA

View Full Version : Time and scheduled tasks are not working


abdobasha2004
03-09-2009, 12:46 PM
My vbulletin time and scheduled tasks are not working from 28-Feb
Plz help
http://100fm6.com/vb/
time appears blurred e.g : 11:55 am

snakes1100
03-09-2009, 12:52 PM
If you've modified the "footer" template, please make sure the cron code is still in the template, if its not, revert the template and reapply your changes, do not remove the cron code.

Regarding the time:
Check the server date/time/gmt settings
Check the vbulletin date & time settings via the admincp --> vbulletin options.

abdobasha2004
03-09-2009, 12:59 PM
I found
<!-- Do not remove $cronimage or your scheduled tasks will cease to function -->
$cronimage
<!-- Do not remove $cronimage or your scheduled tasks will cease to function -->

was removed becuase I changes copyright notice to an image

when I added $cronimage to footer the whole forum did not appear
just blank page

--------------- Added 1236610395 at 1236610395 ---------------

I removed $cronimage to make the copyright an image
so it is a mistake
when I put back $cronimage to footer
the whole forum does not appear at all

Lynne
03-09-2009, 02:36 PM
This is what I see in your page source:
<div align="center"><div align="center">
<div class="smallfont" align="center">
<br><br>
<!-- Do not remove this copyright notice -->
<img src="images/footer.gif"/>
<!-- Do not remove this copyright notice -->
</div>

</form>
You don't have the cron image in there.

You need this text above the </form> in there:

<div class="smallfont" align="center">
<!-- Do not remove $cronimage or your scheduled tasks will cease to function -->
$cronimage
<!-- Do not remove $cronimage or your scheduled tasks will cease to function -->
</div>

(It also looks like you are missing some </div> tags in there, but you can figure that out yourself.)

snakes1100
03-09-2009, 02:37 PM
revert the template back to its default settings.

backup the template as well so you have the old coding as a reference.

abdobasha2004
03-09-2009, 04:44 PM
You don't have the cron image in there.

You need this text above the </form> in there:
done, but the forum stop working and give blank page if i do so

revert the template back to its default settings.
how is that plz?

--------------- Added 1236622355 at 1236622355 ---------------

even i disabled all hacks
then added the code above my page source appear as
<!-- Do not remove this copyright notice -->
<img src="images/footer.gif"/>

<!-- Do not remove this copyright notice -->
</div>

<!-- Do not remove or your scheduled tasks will cease to function -->

<!-- Do not remove or your scheduled tasks will cease to function -->

</form>

Lynne
03-09-2009, 05:22 PM
You should not be getting a blank page when you put that code in. Can you paste the footer code around that code you are adding?

Also, check your error_logs to see what the error is that you are getting when you get that blank page.

abdobasha2004
03-09-2009, 05:53 PM
when I disabled all mods by
define('DISABLE_HOOKS', true);
the forum worked and scheduled tasks are fine
whin I enable mods again the forum is fine for 5 mins then it does not load

Lynne
03-09-2009, 06:12 PM
Then one of your plugins is causing the problem. You can try turning them all off and turning on one at a time, leaving it for a while to make sure things are OK, then add in another, etc.