Merhaba arkadaşlar,
Sitemde aşağıda belirttiğim hataları alıyordum:
Alıntı:
Warning: strtotime() [function.strtotime]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Europe/Helsinki' for 'EEST/3.0/DST' instead in /home/siteadi/public_html/libraries/joomla/utilities/date.php on line 56
Warning: mktime() [function.mktime]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Europe/Helsinki' for 'EEST/3.0/DST' instead in /home/siteadi/public_html/libraries/joomla/utilities/date.php on line 117
Warning: strftime() [function.strftime]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Europe/Helsinki' for 'EEST/3.0/DST' instead in /home/siteadi/public_html/libraries/joomla/utilities/date.php on line 250
Biraz araştıdıktan sonra, yabancı kaynaklı bir siteden öğrendiklerime göre aşağıda belirttiğim bir yöntemle sorunumdan kurtuldum:
libraries/joomla/utilities/date.php dosyasında (52. satır civarı) değişiklik öncesinde şöyle yazıyordu:
Alıntı:
function __construct($date = 'now', $tzOffset = 0)
{
if ($date == 'now' || empty($date))
{
$this->_date = strtotime(gmdate("M d Y H:i:s", time()));
return;
}
Yaptığım değişiklik sonrası kodun görünümü:
Alıntı:
function __construct($date = 'now', $tzOffset = 0)
{
date_default_timezone_set ("Europe/Helsinki");
{
$this->_date = strtotime(gmdate("M d Y H:i:s", time()));
return;
}
Sizinde başınıza benzer bir şey gelirse, önce date.php dosyasının yedeğini almanız tavsiyesi ile bu yöntemi deneyebilirsiniz.
Kolay gelsin.
TAMAMEN ALINTIDIR.