automatic page re-direct at certain times...
Permalink
Hello all! I have a request from a client. He wants a specific page to redirect at a certain (specified) time and day to another page. On the first page I have an XML/flash streaming audio player that has files on my server. We want this page to automatically redirect to another page in Concrete 5 install every Saturday, 11:00 am Eastern time, USA. Is this possible? Easy? Help? Thank you everyone!!
1) Make a custom page type in your theme, create the page type in your install. Assign this page type to the page displaying your flash player.
2) At the top of the php page type file, add some code which will do your redirect i.e header("Location:target_uri") wrapped in an if test for the day/time.
That's not particularly admin friendly, so taking this further you could setup page attributes on the flash page, which you could pull into your redirect code above, to change the day/time, and target of the redirect from within C5.
Hope that helps