我在godaddy上托管了一个wordpress网站,但是晚期更新导致托管正在删除,我恢复后,我收到此错误:
Warning: mkdir(): Permission denied in /home/mickaeladmin/public_html/en/wp-content/themes/getphoto/admin/redux-framework/ReduxCore/inc/class.redux_filesystem.php on line 104
我发现代码行是
elseif ( $action == 'copy' && ! isset( $this->filesystem->killswitch ) ) {
$res = $wp_filesystem->copy( $file, $destination, $overwrite, $chmod );
if ( ! $res ) {
$res = copy( $file, $destination );
if ( $res ) {
chmod( $destination, $chmod );
}
}
}
我可以知道错误是什么吗?以及如何解决它?
答案 0 :(得分:0)
基本上,错误意味着缺少某些权限
您可以使用FTP Cllient更改文件夹的用户权限。详细信息可以在here
找到你应该检查权限并在775或664上设置它们,取决于需要什么类型的权限。
希望这有帮助!