Version: , by (Guest)
Developer Last Online: Jan 1970
Version: Unknown
Rating:
Released: 07-13-2000
Last Update: Never
Installs: 0
No support by the author.
How hard would it be to set things up such that the board had one look during the day and another at night? Not changing much--colors, bbtitle, and on/off icons so that at 6am the day style is seen and at 6pm the night style blinks on. It would be nice if we could set the times. Or does such a hack already exist?
[Edited by Shoe on 07-13-2000 at 08:35 AM]
Show Your Support
This modification may not be copied, reproduced or published elsewhere without author's permission.
Originally posted by Ed Sullivan Well, you could setup a cron script (or 2, one for night, other for day) to change the styles stuff
Yes, I think the cron is a good idea. I could just copy over the files in the forum directory. I would also have to force a refresh/relaod of the browser. Does anyone know how to do that off hand? Is there a script I could add to the <head>? Has anyone added js to their pages? Thanks for the feedback and help .
Originally posted by Ed Sullivan Well, you could setup a cron script (or 2, one for night, other for day) to change the styles stuff
Yea it was what I was thinking of but I'm not too sure that is safe. To be honest with you I never had too much faith in designs that revolved around time. I mean they are cool and give your site some personality but to manipulate a DATABASE's style variables daily at a set time interval with live connections is asking for a forum boo boo. I'd say the cron script should first shut down the forum (or connections) before it changes the variables, although the best way to do this safely is by hand. I'd wait until they get the software wrinkles ironed out (not to mention learn A LOT more about databases) before fooling around with forum manipulating cron scripts. Ed would know a lot more about me, I'm just a php newbie!
Well, although you'd be increasing your chance of getting an error if you didn't shut off the forum to change the colors, IMO, it's the equivalent of adding a post to the post table.
This is just coming off the top of my head, so I wouldn't count on it working:
Code:
<?php
$DB_site->query("UPDATE replacement SET replaceword='<b><FONT face=\"verdana, arial, helvetica\" size=\"4\" color=\"#000000\"' WHERE findword='<largefont'");
$DB_site->query("UPDATE replacement SET replaceword='<body bgcolor=\"#ffffff" text=\"#959595">' WHERE findword='<body>'");
//etc.... I don't feel like going all the way now
?>
Of course, it gets a little more complex as you try and replace certain options.
I think if you are wanting to do this then you shouldn't go and change the actual variables themselves it would be best to do it dynamically. i.e. get each script to look at the time and then put the appropriate colour variables into it.
It is extremely complicated though unless you know every visitor to your site is in the same part of the world, to work properly you would have to get them to input their latitude and longditude and correct current timezone and have access to forumulas which will calculate sunrise and sunset times for everywhere around the world - not an easy task.
Originally posted by Mark Hewitt I think if you are wanting to do this then you shouldn't go and change the actual variables themselves it would be best to do it dynamically. i.e. get each script to look at the time and then put the appropriate colour variables into it.
It is extremely complicated though unless you know every visitor to your site is in the same part of the world, to work properly you would have to get them to input their latitude and longditude and correct current timezone and have access to forumulas which will calculate sunrise and sunset times for everywhere around the world - not an easy task.
Umm.. I would just go for a javascript function to check the person's local time (aka time on their computer)then check it but that's just me. (and if I REALLY took the lazy route out, I would just stick to server time )
[Edited by SonnetCelestial on 07-14-2000 at 10:49 AM]