安装问题 dll 丢失
今天手贱升级了win10,重新安装了一下php的套件,提示有几个组件找不到,其中有一个msvcr100.dll丢失。
google了一下:
youtube视频:Windows 10 Wamp Server Error of Missing MSVCR110 dll
dll下载地址:http://www.microsoft.com/en-us/download/details.aspx?id=30679
stackoverflow解答
出现问题的缘由
http://forum.wampserver.com/read.php?2,138295
更换document root值
wamp 3.x的版本 ,除了更改apache httpd.conf,还需要修改 httpd-vhosts.conf,该配置文件在\conf\extra。重启所有服务。
How to Change the www root directory on WampServer 3
mbstring.php and mb_strimwidth issue
问题:Fatal error: Call to undefined function mb_strimwidth() in ...
需要安装php-mbstring
yum install php-mbstring
如果提示安装不成功,需要把php解释器先停掉,再安装
service php-fpm stop;
yum install php-mbstring;
servie php-fpm start;