Configuring the PHP Environment With php.ini in Bluehost

Bluehost Logo

Bluehost 允許網站管理者修改 php.ini,這是相當方便的功能。我開發了一個簡單的圖片空間網站 pic.qoding.us,在上傳檔案和處理縮圖上碰到了記憶體不足的問題,這時候就要靠修改 php.ini 來解決。

首先登入到 bluehost 後台,往下找到 PHP Config

再點第一步的 INSTALL PHP.INI MASTER FILEIonCubeSourceGardian 都是程式碼加解密用的工具,如果不知道那是什麼,就代表沒用到,不需要打勾。按下 INSTALL 後畫面上會出現提示說已經在 /public_html 產生 php.ini.default

再來就是根據需求修改 php.ini.default。改完之後將檔名改成 php.ini ( 一樣放在 /public_html 裡面 )。

然後選 PHP5 ( Single php.ini ),按下 SAVE CHANGES。再過一會就生效了。

 

為了解決 memory 的問題,我做了以下修改:

; Maximum amount of memory a script may consume (16MB)
memory_limit = 64M

; Maximum size of POST data that PHP will accept.
post_max_size = 100M

; Defines the default timezone used by the date functions
date.timezone = "Asia/Taipei"

時區只是順便。(笑


Posted

in

by

Tags:

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

Exit mobile version