0

I've been trying to create a specialised CMS, as none of the current open-source ones fit my needs for this project.

I did my research on Google, tried multiple times but haven't got very far with this project.

I'm trying to create a CMS for a TV/episode guide which is similar to this where records expire and delete from the database after expiration.

This is the design I'm trying to emulate:

the programme

a typical episode, could use .htaccess to remove php from name

paginated episode display (using script that I found in search here possibly)

I don't have access to cron job as it's on Windows/Apache, so that's out the question for this one.

I'm not sure how to go about this successfully, anyone got any advice?

(Note:Although the linked site runs in ASP.NET, it's the design and feel of it I'm trying to emulate, except in PHP. I've managed to emulate that site's design, but with my own tweaks to it.)

Joel Coehoorn
  • 399,467
  • 113
  • 570
  • 794
whitstone86
  • 295
  • 1
  • 4
  • 16
  • 2
    Welcome to SO. What exactly is your question? Where are you stuck? – Pekka Apr 02 '10 at 19:02
  • 2
    This question has entirely too much scope. What skill level are you at in coding/web design? – dclowd9901 Apr 02 '10 at 19:02
  • I don't understand at all what `cron` has to do with anything here. Shouldn't you first and foremost be concerned with much deeper, fundamental architectural questions? – Pekka Apr 02 '10 at 20:12
  • I am competent at the basics of PHP; but actually creating any usable application is something I need to learn. CSS I have some skill in, web design I am OK at. Hope this helps. – whitstone86 Apr 02 '10 at 21:10

2 Answers2

0

I can't tell what you are asking but...

Windows has its own scheduler options similar to a cron (at), or you can run something like Quartz for scheduling inside Java containers.

codenheim
  • 20,467
  • 1
  • 59
  • 80
0

If you're asking how to do scheduled tasks to delete expired records you should read:

How to emulate cron jobs on a Windows Server?

Last resort you can take a page out from PHP sessions and run a script to do it when people visit the site (not every time, just randomly).

Community
  • 1
  • 1
webbiedave
  • 48,414
  • 8
  • 88
  • 101