Hi,
after reading a few threads in this forum,
http://forum.coppermine-gallery.net/index.php?topic=1196
-That one just deals with blocks in the portal...
i feel still alone with my problem... :cry: :
I integrated coppermine and it works fine, userbase and cookies.
The problem is, i can´t integrate it visually:
I build a link in my navigation bar, that links directly to the index.php (Coppermine) -> that one is cleaning the window and opens the index.php in the complete window.
What i want is, that the header from the webpage remains where it is and the navigation-bar at the left side as well.
I figured out, that my portal.php is building the page and integrates the templatefiles overall_header.tpl and portal_body.tpl, the portal_body file is in html-code and it maintains a table with 3 td-datafields.
I tried to take the portal_body and change it ->portal_gallerie.tpl tocall
<?php include "mygallerie/index.php");> in the second td-field, then i changed the portal.php ->into a gallerie.php and changed it to call the portal_gallerie.tpl as the tamplate file...
in my navigation bar i set up the link for gallerie on the gallerie.php.
guess what, nothing works... :evil: !
Has anyone food for thoughts? :shock:
Thanks for reading,
and doublethanks for helping...
Bullett
*edit
Hey i went on trying it, with this code:
<?php
define('IN_PHPBB', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
// Start session management
$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);
//
// End session management
//
//
// Start output of page
//
$page_title = "Disclaimer";
include($phpbb_root_path . 'includes/page_header.'.$phpEx);
?>
<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
<tr>
<th class="catHead" height="25">
<b>Disclaimer</b></th>
</tr>
<tr>
<td class="row1" align="center">
<?php
include('mygallerie/index.'.$phpEx);
?>
</td></tr></table>
<?php
include('includes/page_tail.'.$phpEx);
?>
now i can see the writings from Coppermine index.php, i have the right header and footer from my phpbb, but i can´t see any image only the redcrosses, and the template is the wrong one...
do i have to define a root, or anything else?
still searching for help!
Thx
Bullett