Time in application 5 hours ahead - Printable Version +- CoreBOSBB (https://discussions.corebos.org) +-- Forum: Support (https://discussions.corebos.org/forumdisplay.php?fid=17) +--- Forum: Administrator Support (https://discussions.corebos.org/forumdisplay.php?fid=8) +--- Thread: Time in application 5 hours ahead (/showthread.php?tid=794) |
Time in application 5 hours ahead - mweaver - 12-12-2017 UGH! yup... ready to pull out my hair. Time zone correct in php.ini file. Checked it a dozen times. Let me start from where I'm at...
All right, you twisted my arm... These variables don't seem to work at all now: Code: // helpdesk support email id and support name (Example: 'support@your_support_domain.tld' and 'your-support name') Those three lines used to make handle how the emails that went out when a ticket was created, and updated. Now, when they get sent out its "your_name" that appears on the message. Ugh... more beer is definitely required. RE: Time in application 5 hours ahead - mweaver - 12-12-2017 UPDATE: Just cause I was curious I set the time value in config.inc.php to 'UTC +5:00' and it didn't make a difference. I have no idea where it's getting it's timezone information from at this point. RE: Time in application 5 hours ahead - joebordes - 12-13-2017 Timezone: Set the $default_timezone to UTC, that is the only value that it should have. In fact, I am thinking of eliminating that variable from there completely. Then go to your user preferences and select your timezone. That should be all you need to do. Make sure your admin user also has the correct timezone set. Let me know how it goes. Variables. Those variables (and almost all others in config.inc and config.performance) have been moved to Global Variables module. You can define them there. Have a look at config.template.php, that file contains the currently valid variables you should have in your config.inc.php RE: Time in application 5 hours ahead - mweaver - 12-13-2017 Hi Joe, Timezone mystery solved.... I knew it would be something I missed. Right in front of me too. Perhaps mid-afternoon naps would help. Global variables... I can see this is going to be an adventure... and I've already got a pot of dark roast brewing. Geez Joe! you've been busy. It's like getting to know the program all over again. RE: Time in application 5 hours ahead - joebordes - 12-13-2017 :-) |