前些日子我一直在搞Dolphin安装,但显然所有在linux下的所有软件的初次安装都很难一次到位的,这不在安装过程中出现了种种错误。但是我把很难从国内找到解决方法的错误给写了出来,并附带解决方案,希望遇到同样错误的午饭们可以轻松些。
Warning
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 ' America

instead in /Users/{me}/Sites/localmirror/htdocs/tests/phpinfo.php on line 3 /New_York' for 'EDT/-4.0/DST' : phpinfo()[function.phpinfo]:Itisnot safe to rely on the system's  

我们可以在Users/{me}/Sites/localmirror/htdocs/tests/phpinfo.php 这个页面添加以下

的代码:
if(date_default_timezone_set('Europe/Stockholm') == 0) {
print "\n";
           date_default_timezone_set('UTC');
}
phpinfo();
?>