So basically, I'm having a bit of trouble. I'm running two different blogs on b2. I want to link to both of them in the main navigation of my website.
On my website, I'm using php includes as shown below, in the area of my layout where I want my content to be:
<?php
switch( $_GET['id'] )
{
case 'news' :
include 'news/blogs/index.php';
break;
case 'bio' :
include 'music/bio.html';
break;
default:
include 'news/blogs/index.php';
break;
}
?>
In my navigation bar, then, I link to the different pages like this:
<a href="?id=news">News</a>
Fairly simple, right? Well, since the "news" blog is my default content page, when I first open the homepage, the news blog loads automatically. But when I try to navigate to it or my 2nd blog on the navigation bar, it says the following:
___
Forbidden
You don't have permission to access /news/blogs/skins/custom/ on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
___
Also, I noticed that the URL my browser has been pointed to is http://www.justplainsarah.com/news/blogs/skins/custom/?id=news, instead of what should be www.justplainsarah.com/news/blogs/index.php .
More background info: site is hosted with Dreamhost, b2 is installed under a justplainsarah.com/news , and I'm using b2 version Sparkle 0.9.2.
What am I doing wrong, and how can I fix it? I need both blogs to load within my main layout, but obviously I'm having trouble getting it work.
Any suggestions, tip, etc. would be beyond helpful.
Thanks,
~ PaperTigress
Part of your issue is due to the way b2evolution uses the "href" metatag. It is NOT your base URL! Instead it is the skin the visitor is using, which is why you're seeing a link to your skins/custom folder. What you want to do can be done. Sort of how including a link-back to [url=http://b2evolution.net]b2evolution[/url] can be done...