在Wordpress中require_once失败

时间:2016-08-16 22:09:26

标签: php wordpress

我第一次开发一个WordPress插件。我有两个.php( file1.php file2.php )。在 file1.php 中,我为上传图片定义了一个带 file2.php 操作的表单。在 file2.php 中,我只是做了一个

require_once('./wp-admin/includes/file.php');

但我收到此错误

  

NetworkError:500内部服务器错误 - http://localhost/wordpress/wp-content/plugins/file2.php

我尝试使用require_once()include(),整个路线等。我查看了权限,路线,这是正确的。我在 file1.php 中尝试了require_once(),但它确实有效但我需要在 file2.php 中。

有什么想法吗?提前谢谢。

部署日志:

require_once('./wp-admin/includes/file.php');

警告:require_once(./ wp-admin / includes / file.php):无法打开流:/var/www/html/wordpress/wp-content/plugins/file2.php中没有此类文件或目录第15行

致命错误:require_once():在/ var中打开所需的'./wp-admin/includes/file.php'(include_path ='。:/ usr / share / php:/ usr / share / pear')失败第15行/www/html/wordpress/wp-content/plugins/file2.php

require_once('/var/www/html/wordpress/wp-admin/includes/file.php');

致命错误:在第16行的/var/www/html/wordpress/wp-admin/includes/file.php中调用未定义的函数__()

这个错误是一个WordPress函数,所以我认为它不是错误,它将是另一个但是....

0 个答案:

没有答案