我在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 );
}
}
}我能知道错误是什么吗?以及如何修复它?
发布于 2017-06-19 22:19:31
https://stackoverflow.com/questions/44632974
复制相似问题