0

我正在使用 WordPress 主题滑块,在此我使用了piecemaker。谁能帮我吗?

警告:include() [function.include]: URL file-access is disabled in server configuration in ..wp-content\themes\TheProfessional\page-full.php on line 8

警告:包括(http://localhost/caterer/wp-content/plugins/theme-slider/wp-theme-slider.php)[function.include]:无法打开流:在..中找不到合适的包装器wp-content\themes\TheProfessional\page-full.php 在第 8 行

警告:include() [function.include]:无法打开“http://../wp-content/plugins/theme-slider/wp-theme-slider.php”以包含(include_path='.;Drive:\ xampp\php\pear\') 在第 8 行的 ..\wp-content\themes\TheProfessional\page-full.php

4

2 回答 2

0

这是因为包含使用 url (http://) 的文件是此错误背后的原因。您必须使用文件的目录路径而不是 url 路径来包含文件。由于文件来自某个插件和主题,因此将您的代码更改为此

include(bloginfo('template_directory').'/page-full.php');
include (WP_PLUGIN_DIR.'/theme-slider/wp-theme-slider.php');
于 2012-11-15T11:11:31.013 回答
0

您的指令 allow_url_include 已关闭,如果您可以控制您的主机,则需要在 php.ini 配置中打开它并重新启动 apache,如果您无法直接访问您的主机,您可以在在 wordpress 的根文件夹中的 index.php 文件的顶部打开它。

ini_set(‘allow_url_fopen’,'ON’);

如果没有按概述工作 - 这是更详细的博客文章: 附加信息

于 2012-11-15T06:28:12.633 回答