当前位置: 首页 > PHP > 正文

1.上传后提示500错误

chown -R www 目录

2.安装nextcloud后提示404 错误

启用pathinfo.

修改对应虚拟主机的配置文件(/usr/local/nginx/conf/vhost/域名.conf)
将include enable-php.conf;替换为include enable-php-pathinfo.conf;

修改pathinfo需要重启nginx生效。

3.不能自动检测语言

修改/usr/local/php/etc/php.ini 查找disable_functions 将后面的scandir删掉。

执行:/etc/init.d/php-fpm restart 重启后即可。

4.安装fileinfo插件

1)tar zxvf php-5.6.20.tar.gz # 解压已经安装的php版本

cd /lnmp1.2-full/src/php-5.6.9/ext/fileinfo

2)运行 /usr/local/php/bin/phpize

./configure –with-php-config=/usr/local/php/bin/php-config

make && make install
3) 修改php.ini文件,添加fileinfo扩展

extension = fileinfo.so

4) 重启服务器和php-fpm后在phpinfo即可看到fileinfo已经开启

/etc/init.d/php-fpm reload

nextcloud安装记录:等您坐沙发呢!

发表评论

gravatar

快捷键:Ctrl+Enter