0

Currently I am using:

SetEnv TZ America/Los_Angeles

in htaccess.

Is there a way to define the timezone in the codeignitor config files?

Harry
  • 1,282
  • 12
  • 17
Piyush
  • 3,947
  • 9
  • 36
  • 69
  • http://stackoverflow.com/questions/16765158/date-it-is-not-safe-to-rely-on-the-systems-timezone-settings-in-codeigniter/27879205#27879205 – Shaiful Islam Mar 27 '15 at 09:05

1 Answers1

0

Write in your index.php codeignator file:

if (function_exists("date_default_timezone_set"))
    date_default_timezone_set("America/Los_Angeles");
Rizier123
  • 58,877
  • 16
  • 101
  • 156
Saty
  • 22,443
  • 7
  • 33
  • 51