Contentteller Community Forums  

Go Back   Contentteller Community Forums > Contentteller > Version 1.x

Reply
 
LinkBack Thread Tools Display Modes
  #1  
Old 04-19-2004, 04:12 PM
Manuba
Guest
 
Posts: n/a
Post Integrate with Invision Board

How can I get my trial version to integrate with my invision power board the way the board on this forum integrates into www.esselbach.com?

That is to say, when someone clicks on the link to my forum, the form opens into my site instead of openining in a new page outside my site homepage.


I like this cms; I will buy a copy.

Thanks.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2  
Old 04-20-2004, 04:22 AM
Philipp
Guest
 
Posts: n/a
Post Integrate with Invision Board

Originally posted by Manuba:
Quote:
How can I get my trial version to integrate with my invision power board the way the board on this forum integrates into www.esselbach.com?
Invision Board and Storyteller CMS are using two different template systems. The bbwrapper script allows Storyteller to use the Invision Board user database for logins, but not the same templates.

For full design integration, you need to customize both the Invision and Storyteller templates.

Originally posted by Manuba:
Quote:
That is to say, when someone clicks on the link to my forum, the form opens into my site instead of openining in a new page outside my site homepage.
Where? In the main menu?

To change this, you need to use the parameter target="_blank" in the templates.

For example:
Code:
<li><a href="forums/index.php" target="_blank">Forums</a><br /></li>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3  
Old 04-20-2004, 07:27 AM
Manuba
Guest
 
Posts: n/a
Post Integrate with Invision Board

Quote:
For full design integration, you need to customize both the Invision and Storyteller templates.
Where? In the main menu?

To change this, you need to use the parameter target="_blank" in the templates.

For example:
Code:
<li><a href="forums/index.php" target="_blank">Forums</a><br /></li>

Philipp:

Maybe I did not make my comment very clear.
I want Invision forum TO OPEN INTO Storyteller, NOT in a new page via target="_blank"

Also I DO NOT want Invision to open in a new window via target="_self"

Look at your own homepage (www.esselbach.com) and see how your "community" link behaves when clicked --- it opens and integrates into Storyteller. That is how I want Invision to behave. Is this possible?

Thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4  
Old 04-20-2004, 01:24 PM
Philipp
Guest
 
Posts: n/a
Post Integrate with Invision Board

I just found an easy way to integrate Storyteller's header/footer template with Invision Power Board. IPB must be installed in a subdirectory (e.g. yoursite.com/forum) and Storyteller in the root directory to get this working.

Open sources/functions.php in an editor and replace:

Code:
        $this->do_headers();
		
        print $ibforums->skin['template'];
        exit;
with

Code:
        require("../templates/site_header.tmp.php");
        $EST_TEMPLATE = str_replace("img src="", "img src="../", $EST_TEMPLATE);	
	$EST_TEMPLATE = str_replace("a href="", "a href="../",$EST_TEMPLATE);
	echo $EST_TEMPLATE;
	
        $this->do_headers();
		
        print $ibforums->skin['template'];
	
	require("../templates/site_footer.tmp.php");    
        $EST_TEMPLATE = str_replace("img src="", "img src="../", $EST_TEMPLATE);	
	$EST_TEMPLATE = str_replace("a href="", "a href="../",$EST_TEMPLATE);	
	echo $EST_TEMPLATE;
        
        exit;
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to integrate mcimagemanager? error General Questions 2 10-12-2008 07:52 PM
Integrate Storyteller CMS skin into forum. t3chb0y Version 1.x 6 07-02-2006 07:49 PM
Invision Power Board 2.0.0 Integrationsscript Philipp Version 1.x 0 06-27-2004 01:15 PM
Invision Power Board 2.0.0 integration script Philipp Version 1.x 0 06-27-2004 01:12 PM
Updated Invision Board integration scripts Philipp Version 1.x 0 03-24-2004 02:41 PM


All times are GMT. The time now is 01:43 PM.


Copyright ©2002 - 2009 Esselbach Internet Solutions
Powered by vBulletin® Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.3.0 ©2009, Crawlability, Inc.