欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

安装wordpress后,提示的源码错误

程序员文章站 2024-01-17 13:26:22
...
刚刚把wordpress4.01上传到主机,打开域名,出现这么一句话:
Fatal error: Call to undefined function request_filesystem_credentials() in /data/home/htdocs/wp-admin/includes/class-wp-upgrader-skins.php on line 47
找到源码如下
public function request_filesystem_credentials($error = false) {		$url = $this->options['url'];		$context = $this->options['context'];		if ( !empty($this->options['nonce']) )			$url = wp_nonce_url($url, $this->options['nonce']);		return request_filesystem_credentials($url, '', $error, $context); //Possible to bring inline, Leaving as is for now.	}

提示的就是return这一行的request_filesystem_credentials($url, '', $error, $context)函数未定义,在文件里也没有找到这个函数,不过和它重名参数不同的函数有几个,百度了一下,不是说php不支持重载吗?不懂php,不知道怎么处理,哪位大神懂吗?


回复讨论(解决方案)

看看 wp-admin/includes/file.php 这个文件在不在

看看 wp-admin/includes/file.php 这个文件在不在

看看 wp-admin/includes/file.php 这个文件在不在

已经解决了,貌似是上传的时候出现了问题,重新上传好了