Hi,
Can anyone tell me How to change the time in Bluehost.
I want to change my website standard time as EST.
Thanks in advance
Suja
Hi,
Can anyone tell me How to change the time in Bluehost.
I want to change my website standard time as EST.
Thanks in advance
Suja
BH is located in the Mountain Time Zone, so all server stats reflect that local time. For PHP applications, you can change the time zone by adding a line to your php.ini:
Code:date.timezone = "America/New_York"
Hi, I have the same question, but I am not sure where to put the php.ini file. I created one under public_html with just that line set to date.timezone = "Europe/Gibraltar".
However my php info says date.timezone is not set.
Sorry. Just to elaborate, using phpinfo(); in the public_html directory does say its set to Gibraltar, but when I view the PHP info from within the Joomla 1.5 administration backend it says;
Default Timezone = America/Denver
and
date.timezone = no value
Last edited by Alex53; 09-29-2008 at 07:56 AM.
On Bluehost, you have to copy your php.ini file into every directory that you want it to take effect in.
If you have shell access, you can do this with one easy command:
Hope that helps.Code:find * -type d|xargs -i cp --verbose php.ini {}![]()