2014-11-25 43 views
0

我想從一個子域中的父域中包含一個PHP文件。如何從parentdomain包含一個php文件?

在subdomain.parentdomain.com/test.php我

include ('/var/www/vhosts/parentdomain.com/website/wp-blog-header.php'); 

我的子域看起來像

$_SERVER['DOCUMENT_ROOT'] gives /var/www/vhosts/parentdomain.com/subdomain.parentdomain.com 

我有11版Plesk服務器訪問,但我不知道是哪個PHP設置我必須更改以啓用包含來自父域的文件?我應該編輯php_settings-> include_path設置並添加/var/www/vhosts/parentdomain.com作爲路徑?

我已經試過

ini_set("include_path","/var/www/vhosts/parentdomain.com/website/"); 
require "wp-blog-header.php"; 
+1

這可能有幫助:http://stackoverflow.com/questions/7021000/use-external-class-file-from-parent-domain-onto-subdomain – Tejesh 2014-11-25 09:31:54

回答

0

幾乎工作。

這一個

ini_set("include_path","/var/www/vhosts/parentdomain.com/httpdocs/website/"); 
require "wp-blog-header.php"; 

似乎當我打電話代碼bloginfo

echo bloginfo('stylesheet_url').'<br/>'; 
echo bloginfo('name').'<br/>'; 

但WordPress的功能,如get_the_title WordPress的功能發揮作用的()不工作?

相關問題