生活在宁静的角落
php-opcache php缓存
yum install php70u-opcache
vim /etc/php.ini
末尾添加
opcache.memory_consumption=128
opcache.interned_strings_buffer=8
opcache.max_accelerated_files=4000
opcache.revalidate_freq=60
opcache.fast_shutdown=1
opcache.enable_cli=1
phpmyadmin提示The mbstring extension is missing
centos7 装了nginx 和 mariadb 以及php71u-fpm后,我开始尝试使用phpmyadmin 去连接数据库。
出现如下错误:
网上着直接安装mbstring
yum install php-mbstring
于是搜 …
点击查看更多…centos7 安装 mariadb 出现冲突
今天在一台centos7的机器上安装mariadb 出现故障:
[root@localhost ~]# yum install mariadb101u-server Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: mirrors.yun-idc.com * epel: mirror.premi.st * extras: mirrors.tuna.tsinghua.edu.cn * ius: mirrors.tuna.tsinghua.edu.cn * updates: mirrors.nwsuaf.edu.cn * webtatic …点击查看更多…
Centos7 安装PHP7.0
默认centos7的源中php的版本是5.6的
秉着使用最新的版本的原则,此次想要安装PHP7.0
添加源:
rpm -Uvh https://centos7.iuscommunity.org/ius-release.rpm
[root@localhost ~]# rpm -Uvh https://centos7.iuscommunity.org/ius-release.rpm Retrieving https://centos7.iuscommunity.org …点击查看更多…
Nginx 出现413 Request Entity Too Large得解决方法
今天处理文件上传功能的时候,总是提示接口错误,很是郁闷。换小文件发现没有问题,所以问题肯定出现在文件大小上。切 …