Wordpress主题文件无法编辑,提示Oops, no such file exists! Double check the name and try again, merci.

当我安装好主题文件后,在后台准备编辑模板文件事,发现没有显示模板文件,并提示如下问题:

Oops, no such file exists! Double check the name and try again, merci.


原因:禁用的PHP函数导致

解决方法:

找到文件位置:/usr/local/php/etc/php.ini

编辑php.ini,寻找disable_functions字符串,

disable_functions = passthru,exec,system,chroot,scandir,chgrp,chown,shell_exec,proc_open,proc_get_status,popen,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,stream_socket_server

将scandir删除

重启php:

用SSH命令重启PHP:service php-fpm restart

问题得以解决

你可能感兴趣的:(Wordpress主题文件无法编辑,提示Oops, no such file exists! Double check the name and try again, merci.)