Hi EE Team!
I have to sites running on MSM with 1.6.8
My problem:
The second sites index page does not show up the “custom weblog fields”.
Let’s say the template /blog/test is now set as index page.
The code of the template “test” is just this…
{exp:weblog:entries site="site2" weblog="blog" limit="1" status="open" rdf="off"}
<h1>{title}</h1>
{content}<br>
{/exp:weblog:entries}.. and results in
TESTTITLE
{content}
If I set some other template as index page, the template “test” now results in
TESTTITLE
lorem ipsum and so on
path.php of the 2nd site
$system_path = "../site1/system/";
// ------------------------------------------------------
// MANUALLY CONFIGURABLE VARIABLES
// See user guide for more information
// ------------------------------------------------------
$template_group = "blog";
$template = "test";
$site_url = "http://www.site2.com";
$site_index = "index.php";
$site_name = 'site2';
$site_404 = "";
$cp_url = "http://www.site1.com/admin.php";
$global_vars = array(); // This array must be associative
I tested already tested
- no htacess file
- strict URLs activated
- there are no php/sql debug errors
- weblog creation by the default site theme
Thank you for your help!