Quantcast
Channel: Sunny – Sunny Blog
Viewing all articles
Browse latest Browse all 100

PHP In Case Of

$
0
0

Fatal error: Call to undefined function mb_strlen()

apt-get / yum search mbstring ; apt-get / yum install php-mbstring ...

http://blog.fity.cn/post/187/

 

Fatal error: Call to undefined function imagecreate()

and it takes a lot of time to upload a image.

apt-get install php5-gd

http://www.php.net/manual/en/image.installation.php

 

Warning: It is not safe to rely on the system’s timezone settings

Solution: modify php.ini:

date.timezone = Asia/Shanghai

http://stackoverflow.com/questions/2213608/php-configuration-it-is-not-safe-to-rely-on-the-systems-timezone-settings

 

Set Include Path in PHP File

set_include_path(get_include_path() . PATH_SEPARATOR . $path);

 


Viewing all articles
Browse latest Browse all 100