Internet Explorer 9 Çıkıyor

Browser kavgaları içerisinde hep başı çeken Internet Explorer, yeni bir sürümüyle karşımıza çıkmaya hazırlanıyor: Internet Explorer 9. Internet Explorer 6, 7 ve belkide 8′de sürekli sorunlar yaşadık. Hatta 8 çıkmadan önce “tüm sorunlar kalkacak” müjdesini bekliyorduk ki, çok ta mutlu etmedi bizi. Bizi derken evet, çoğu son kullanıcı ve bir çok tasarımcıdan bahsediyorum. Aslında deneyeniniz oldu mu bilmiyorum ama 64′lik Windows sürümlerinde IE8 gayet güzel çalışıyor. Hatta Firefox’la yarışır bile diyebilirim (belirli bir noktaya kadar). Evet bende çok sevmiyorum IE sürümlerini fakat bu sefer kesinlikle tarayıcı savaşlarında önemli rol olmak için geliyor!

Continue reading

“It is not safe to rely on the system’s timezone” Problemi

WordPress’te herhangi bir yerde şöyle bir hata ile karşılaşıyorsanız:

Warning: date() [function.date]: 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 wp-includes/functions.php on line 43

bunu çözmek için wp-includes/functions.php dosyasını açın ve ilk fonsiyondan önce şu kodu yapıştırın:

date_default_timezone_set('UTC');

“It is not safe to rely on the system’s timezone” Problem

In WordPress, if you got a warning message in anywhere:

Warning: date() [function.date]: 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 wp-includes/functions.php on line 43

you should add below in wp-includes/functions.php file before the first function:

date_default_timezone_set('UTC');