Icy Phoenix

     
 


Post new topic  Reply to topic 
Page 1 of 1
 
 
Reply with quote Download Post 
Post Solved - Change Time In The Forum 
 
Hi!

I have change of server, and in the new, the forum shows me the time with 6 hours more than GMT, and all times in server is set to GMT time...
How can I set also the forum to GMT?

Thanks!
 




____________
My 2 IP Forums:
ModMovil: Motorola, Nokia, SonyEricsson
 
Last edited by tiolalu on Sat 29 Dec, 2007 19:23; edited 1 time in total 
tiolaluSend private messageVisit poster's website  
Back to topPage bottom
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.

Support us
 
Reply with quote Download Post 
Post Re: Change Time In The Forum 
 
ACP>>Board>>Time zone
 



 
novice programmerSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Change Time In The Forum 
 
novice programmer, Time Zone = UTC, time that I see on the forum: 6 hours more than GMT.
Also in my profile I have GMT+1 and I see GMT+7. .

Also that option only change the time of the guests, not of the users. I know, they can change each one the timezone in order to get the real time, but they need to select another country that is 6 hours before.
 




____________
My 2 IP Forums:
ModMovil: Motorola, Nokia, SonyEricsson
 
Last edited by tiolalu on Sat 15 Dec, 2007 00:03; edited 1 time in total 
tiolaluSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Change Time In The Forum 
 
That is a wrong setting of your server... if you don't have access to your server config, ask your host.
 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Change Time In The Forum 
 
Mighty Gorgon, when I execute date command in the server it gives me the GMT time... I have asked but no response to that .

Thanks anyway MG!
 




____________
My 2 IP Forums:
ModMovil: Motorola, Nokia, SonyEricsson
 
tiolaluSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Change Time In The Forum 
 
Can you give me a link please?
 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Change Time In The Forum 
 
Mighty Gorgon, www.forov360.com (it's in the WWW icon )
 




____________
My 2 IP Forums:
ModMovil: Motorola, Nokia, SonyEricsson
 
tiolaluSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Change Time In The Forum 
 
I'm 99% sure that it is a wrong setting on your server.
 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Change Time In The Forum 
 
Mighty Gorgon, ok, thanks. But there is not any other way to change it?
 




____________
My 2 IP Forums:
ModMovil: Motorola, Nokia, SonyEricsson
 
Last edited by tiolalu on Sun 16 Dec, 2007 02:03; edited 1 time in total 
tiolaluSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Change Time In The Forum 
 
tiolalu wrote: [View Post]
Mighty Gorgon, ok, thanks. But there is not any other way to change it?

No because if your server time is set to be 7 o'clock when UTC, then IP cannot understand which is the real time... it gets time from the server.

The only thing you can do for now is changing lang files...

Code: [Download] [Hide]
  1. $lang['-12'] = 'GMT - 12 Hours';  
  2. $lang['-11'] = 'GMT - 11 Hours';  
  3. $lang['-10'] = 'GMT - 10 Hours';  
  4. $lang['-9'] = 'GMT - 9 Hours';  
  5. $lang['-8'] = 'GMT - 8 Hours';  
  6. $lang['-7'] = 'GMT - 7 Hours';  
  7. $lang['-6'] = 'GMT - 6 Hours';  
  8. $lang['-5'] = 'GMT - 5 Hours';  
  9. $lang['-4'] = 'GMT - 4 Hours';  
  10. $lang['-3.5'] = 'GMT - 3.5 Hours';  
  11. $lang['-3'] = 'GMT - 3 Hours';  
  12. $lang['-2'] = 'GMT - 2 Hours';  
  13. $lang['-1'] = 'GMT - 1 Hours';  
  14. $lang['0'] = 'GMT';  
  15. $lang['1'] = 'GMT + 1 Hour';  
  16. $lang['2'] = 'GMT + 2 Hours';  
  17. $lang['3'] = 'GMT + 3 Hours';  
  18. $lang['3.5'] = 'GMT + 3.5 Hours';  
  19. $lang['4'] = 'GMT + 4 Hours';  
  20. $lang['4.5'] = 'GMT + 4.5 Hours';  
  21. $lang['5'] = 'GMT + 5 Hours';  
  22. $lang['5.5'] = 'GMT + 5.5 Hours';  
  23. $lang['6'] = 'GMT + 6 Hours';  
  24. $lang['6.5'] = 'GMT + 6.5 Hours';  
  25. $lang['7'] = 'GMT + 7 Hours';  
  26. $lang['8'] = 'GMT + 8 Hours';  
  27. $lang['9'] = 'GMT + 9 Hours';  
  28. $lang['9.5'] = 'GMT + 9.5 Hours';  
  29. $lang['10'] = 'GMT + 10 Hours';  
  30. $lang['11'] = 'GMT + 11 Hours';  
  31. $lang['12'] = 'GMT + 12 Hours';  
  32. $lang['13'] = 'GMT + 13 Hours';  
  33.  
  34. $lang['tz']['-12'] = '(GMT -12 Hours) Eniwetok, Kwajalein';  
  35. $lang['tz']['-11'] = '(GMT -11 Hours) Midway Island, Samoa';  
  36. $lang['tz']['-10'] = '(GMT -10 Hours) Hawaii';  
  37. $lang['tz']['-9'] = '(GMT -9 Hours) Alaska';  
  38. $lang['tz']['-8'] = '(GMT -8 Hours) Pacific Time (US & Canada)';  
  39. $lang['tz']['-7'] = '(GMT -7 Hours) Mountain Time (US & Canada)';  
  40. $lang['tz']['-6'] = '(GMT -6 Hours) Central Time (US & Canada), Mexico City';  
  41. $lang['tz']['-5'] = '(GMT -5 Hours) Eastern Time (US & Canada), Bogota, Lima, Quito';  
  42. $lang['tz']['-4'] = '(GMT -4 Hours) Atlantic Time (Canada), Caracas, La Paz';  
  43. $lang['tz']['-3.5'] = '(GMT -3.5 Hours) Newfoundland';  
  44. $lang['tz']['-3'] = '(GMT -3 Hours) Brazil, Buenos Aires, Georgetown';  
  45. $lang['tz']['-2'] = '(GMT -2 Hours) Mid-Atlantic';  
  46. $lang['tz']['-1'] = '(GMT -1 Hour) Azores, Cape Verde Islands';  
  47. $lang['tz']['0'] = '(GMT) Western Europe Time, London, Lisbon, Casablanca, Monrovia';  
  48. $lang['tz']['1'] = '(GMT +1 Hour) CET(Central Europe Time), Brussels, Madrid, Paris';  
  49. $lang['tz']['2'] = '(GMT +2 Hours) EET(Eastern Europe Time), Kaliningrad, South Africa';  
  50. $lang['tz']['3'] = '(GMT +3 Hours) Baghdad, Kuwait, Riyadh, Moscow, St. Petersburg';  
  51. $lang['tz']['3.5'] = '(GMT +3.5 Hours) Tehran';  
  52. $lang['tz']['4'] = '(GMT +4 Hours) Abu Dhabi, Muscat, Baku, Tbilisi';  
  53. $lang['tz']['4.5'] = '(GMT +4.5 Hours) Kabul';  
  54. $lang['tz']['5'] = '(GMT +5 Hours) Ekaterinburg, Islamabad, Karachi, Tashkent';  
  55. $lang['tz']['5.5'] = '(GMT +5.5 Hours) Bombay, Calcutta, Madras, New Delhi';  
  56. $lang['tz']['5.75'] = '(GMT +5.75 Hours) Kathmandu';  
  57. $lang['tz']['6'] = '(GMT +6 Hours) Almaty, Dhaka, Colombo';  
  58. $lang['tz']['6.5'] = '(GMT +6.5 Hours)';  
  59. $lang['tz']['7'] = '(GMT +7 Hours) Bangkok, Hanoi, Jakarta';  
  60. $lang['tz']['8'] = '(GMT +8 Hours) Beijing, Perth, Singapore, Hong Kong, Urumqi';  
  61. $lang['tz']['9'] = '(GMT +9 Hours) Tokyo, Seoul, Osaka, Sapporo, Yakutsk';  
  62. $lang['tz']['9.5'] = '(GMT +9.5 Hours) Adelaide, Darwin';  
  63. $lang['tz']['10'] = '(GMT +10 Hours) EAST(East Australian Standard), Guam';  
  64. $lang['tz']['11'] = '(GMT +11 Hours) Magadan, Solomon Islands, New Caledonia';  
  65. $lang['tz']['12'] = '(GMT +12 Hours) Auckland, Fiji, Kamchatka, Marshall Island';  
  66. $lang['tz']['13'] = '(GMT +13 Hours) Nuku'alofa'; 

 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Change Time In The Forum 
 
Mighty Gorgon, thanks again, I thinked in that, but... If I get to the well state I will have to change it again   , I will ask again to my host...

Thanks MG!
 




____________
My 2 IP Forums:
ModMovil: Motorola, Nokia, SonyEricsson
 
tiolaluSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Change Time In The Forum 
 
Hi MG,

I have this asnwer after 10 emails, access to the server configuration and to the forum:
"We have checked the configurations and it looks like a problem with the forum since its not picking up the time zone from the server, Kindly contact a developer to check the files which picks the data settings from the server."

I don't think it's an error in the code because I've changed 5 times of server and in all it has been working well  
 




____________
My 2 IP Forums:
ModMovil: Motorola, Nokia, SonyEricsson
 
tiolaluSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Solved - Change Time In The Forum 
 
Mighty Gorgon, solved, the problem was the cache of the forum, I had deleted it and it was solved _ _U
 




____________
My 2 IP Forums:
ModMovil: Motorola, Nokia, SonyEricsson
 
tiolaluSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Solved - Change Time In The Forum 
 
Great!
 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Post new topic  Reply to topic  Page 1 of 1
 


Display posts from previous:    

HideWas this topic useful?

Link this topic
URL
BBCode
HTML




 
Permissions List
You cannot post new topics
You cannot reply to topics
You cannot edit your posts
You cannot delete your posts
You cannot vote in polls
You cannot attach files
You can download files
You cannot post calendar events


  

 

  cron