2007年12月2日 星期日

教學 / 找不到 PHP 內的 mbstring 編碼模組

For Windows

安裝版本:appserv-win32-2.4.9

解決方法:
1.用記事本開啟 "C:\windows\php.ini"

2.搜尋 "php_mbstring.dll"
找到這行 將extension=php_mbstring.dll 前面的 ";" 分號 刪除

3.重新啟動apache

For Linux

解決方法:安裝 php-mbstring 套件,重新啟動apache就可以解決了

fedora可以用以下指令完成

yum install php-mbstring

/etc/rc.d/init.d/httpd restart

其他的linux distribution 可以搜尋一下自己的php-mbstring
安裝編譯完後,一樣重新啟動apache就可以了 :)

沒有留言:

張貼留言

如何在 golang 裡面引用 gitlab private repo

參考文章:https://stackoverflow.com/questions/27500861/whats-the-proper-way-to-go-get-a-private-repository 原文是用 gitlab.company.com 當範例,這邊改成一般帳號...