BlueBug v1.5 Released!
Thursday, February 19th, 2009I’ve uploaded the newest version of BlueBug and updated the page for it as well, head on over to http://bluescripts.net/bluebug/ to download it!
I’ve uploaded the newest version of BlueBug and updated the page for it as well, head on over to http://bluescripts.net/bluebug/ to download it!
I have released an update to BlueBug today that addresses the following issues that were brought up in comments:
I will be finishing up the admin functions and installation scripts for a new bug reporting system called BlueBug the next few days that will be open source and free, look forward to it!
Here is a quick way to set a timezone:
<php putenv(‘TZ=America/New_York’); >
A list of timezones for php: http://www.theprojects.org/dev/zone.txt
To get the timezones into a file quickly:
wget http://www.theprojects.org/dev/zone.txt
cat zone.txt | awk ‘{ print $3}’ >> timezones.txt
Remove the first few lines and you have an easily read file that you can make a selection box out of.