I am lost here..I lost many hours searching on google and trying to find a fix be myself, but I fail.
Please, someone can help me?

Moderator: Dyo
Hi,ghostman wrote:Does [RC] Portalview v1.0.0RC3 work with portal 1.0.6 ?
/Ghostman
Halte dich bitte in Zukunft daran.# Topic-Bumping Das Hochschubsen eines Themas ist erst nach Ablauf von 24 Stunden zulässig.
I personally would like this, too. Any help to adjust the columns down a bit, please?Mess wrote:I have also been trying my luck a little with portal view.
I have 2 questions (sorry about the big pictures).
Would it be possible to make this:
http://img254.imageshack.us/img254/8015/pw1m.jpg
Look like this:
http://img233.imageshack.us/img233/4316/pw2l.jpg
Hallo,Marc wrote:Du kannst z.B. einfach die portal/includes/portalview.php bearbeiten. Lösche die include-Befehle der Blöcke die du nicht willst.
Wenn du z.B. nicht willst, dass die Suche angezeigt wird, lösche einfach das hier:Code: Select all
if ($portal_config['portal_search']) { include($phpbb_root_path . 'portal/block/search.' . $phpEx); }
Code: Select all
<?php
/**
*
* @package - Portalview for Board3portal
* @version $Id: portalview.php 612 2010-01-22 19:39:32Z marc1706 $
* @copyright: (c) Christian_N (www.phpbb-projekt.de)
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
define('IN_PORTAL', true);
define('IN_PORTALVIEW', true);
if (!function_exists('display_forums'))
{
include($phpbb_root_path . 'includes/functions_display.' . $phpEx);
}
if (!class_exists('bbcode_firstpass'))
{
include($phpbb_root_path . 'includes/message_parser.' . $phpEx);
}
if ($portal_config['portal_phpbb_menu'])
{
$template->assign_var('S_DISPLAY_PHPBB_MENU', true);
}
// load blocks in the left column
if($portal_config['portal_left_column'])
{
$template->assign_var('S_LEFT_COLUMN', 'portalview');
// show login box and user menu
// only registered user see user menu
if ($user->data['is_registered'])
{
include($phpbb_root_path . 'portal/block/user_menu.' . $phpEx);
}
else
{
include($phpbb_root_path . 'portal/block/login_box.' . $phpEx);
}
if ($portal_config['portal_user_menu'])
{
$template->assign_var('S_DISPLAY_USERMENU', true);
}
if ($portal_config['portal_search'])
{
include($phpbb_root_path . 'portal/block/search.' . $phpEx);
}
}
// load blocks in the right column
if($portal_config['portal_right_column'])
{
$template->assign_var('S_RIGHT_COLUMN', 'portalview');
}
include($phpbb_root_path . 'portal/block/additional_blocks.' . $phpEx);
$template->assign_vars(array(
'PORTAL_LEFT_COLUMN' => $portal_config['portal_left_column_width'],
'PORTAL_RIGHT_COLUMN' => $portal_config['portal_right_column_width'],
'IN_PORTALVIEW' => true,
));
?>
Genau so ist es...wie peinlich... bitte entschuldige...Marc wrote:Es sieht so aus als ob du die portal/includes/functions.php mit der includes/functions.php von phpBB3 überschrieben hast. Das sagt mir zumindest die Fehlermeldung.
Oh, klar:Marc wrote:Ein Link zu deiner Seite wäre ganz hilfreich.
Code: Select all
<?php
/**
*
* @package - Portalview for Board3portal
* @version $Id: portalview.php 612 2010-01-22 19:39:32Z marc1706 $
* @copyright: (c) Christian_N (www.phpbb-projekt.de)
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
define('IN_PORTAL', true);
define('IN_PORTALVIEW', true);
if (!function_exists('display_forums'))
{
include($phpbb_root_path . 'includes/functions_display.' . $phpEx);
}
if (!class_exists('bbcode_firstpass'))
{
include($phpbb_root_path . 'includes/message_parser.' . $phpEx);
}
if ($portal_config['portal_phpbb_menu'])
{
$template->assign_var('S_DISPLAY_PHPBB_MENU', true);
}
// load blocks in the left column
if($portal_config['portal_left_column'])
{
$template->assign_var('S_LEFT_COLUMN', 'portalview');
// show login box and user menu
// only registered user see user menu
if ($user->data['is_registered'])
{
include($phpbb_root_path . 'portal/block/user_menu.' . $phpEx);
}
else
{
include($phpbb_root_path . 'portal/block/login_box.' . $phpEx);
}
if ($portal_config['portal_user_menu'])
{
$template->assign_var('S_DISPLAY_USERMENU', true);
}
if ($portal_config['custom_small'])
{
include($phpbb_root_path . 'portal/block/custom_small.' . $phpEx);
}
if ($portal_config['portal_search'])
{
include($phpbb_root_path . 'portal/block/search.' . $phpEx);
}
}
// load blocks in the right column
if($portal_config['portal_right_column'])
{
$template->assign_var('S_RIGHT_COLUMN', 'portalview');
}
include($phpbb_root_path . 'portal/block/additional_blocks.' . $phpEx);
$template->assign_vars(array(
'PORTAL_LEFT_COLUMN' => $portal_config['portal_left_column_width'],
'PORTAL_RIGHT_COLUMN' => $portal_config['portal_right_column_width'],
'IN_PORTALVIEW' => true,
));
?>
Code: Select all
<!-- INCLUDE portal/_block_config.html -->
<!-- $Id: portal_header.html 612 2010-01-22 19:39:32Z marc1706 $ -->
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<!-- [+] left block area -->
<!-- IF S_LEFT_COLUMN and IN_PORTALVIEW -->
<td valign="top" style="width: <!-- IF $S_COLUMNS_WIDTH_OVERRIDE -->{$PORTAL_LEFT_COLUMN_OVERRIDE}<!-- ELSE -->{PORTAL_LEFT_COLUMN}<!-- ENDIF -->px; padding-<!-- IF S_CONTENT_DIRECTION eq 'rtl' -->left<!-- ELSE -->right<!-- ENDIF -->:{$BLOCK_DISTANCE};">
<br style="clear:both" />
if($portal_config['portal_left_column'])
{
$template->assign_var('S_LEFT_COLUMN', 'portalview');
// show login box and user menu
// only registered user see user menu
if ($user->data['is_registered'])
{
include($phpbb_root_path . 'portal/block/user_menu.' . $phpEx);
}
else
{
include($phpbb_root_path . 'portal/block/login_box.' . $phpEx);
}
if ($portal_config['portal_user_menu'])
{
$template->assign_var('S_DISPLAY_USERMENU', true);
}
if ($portal_config['custom_small'])
{
include($phpbb_root_path . 'portal/block/custom_small.' . $phpEx);
}
if ($portal_config['portal_search'])
{
include($phpbb_root_path . 'portal/block/search.' . $phpEx);
}
}
</td>
<!-- ENDIF -->
<!-- [-] left block area -->
<!-- [+] center block area -->
<td valign="top">
<br style="clear:both" />
Code: Select all
<!-- $Id: portal_footer.html 612 2010-01-22 19:39:32Z marc1706 $ -->
</td>
<!-- [-] center block area -->
<!-- [+] right block area -->
<!-- IF S_RIGHT_COLUMN and IN_PORTALVIEW -->
<td valign="top" style="width: <!-- IF $S_COLUMNS_WIDTH_OVERRIDE -->{$PORTAL_RIGHT_COLUMN_OVERRIDE}<!-- ELSE -->{PORTAL_RIGHT_COLUMN}<!-- ENDIF -->px; padding-<!-- IF S_CONTENT_DIRECTION eq 'rtl' -->right<!-- ELSE -->left<!-- ENDIF -->:{$BLOCK_DISTANCE};">
<br style="clear:both" />
</td>
<!-- ENDIF -->
<!-- [-] right block area -->
</tr>
</table>
<!--// board3 Portal by www.board3.de //-->
marschi wrote: Oh, klar:
http://arbeitslehrer.de
Ich habe derzeit jedoch wieder die Originaldateien hochgeladen...
Das geht nicht!!!!!!!!!!marschi wrote:Sooo, ich bekomme es einfach nicht gebacken - möchte im Forum, völlig unabhängig vom Portal,
Code: Select all
<!-- IF S_DISPLAY_BIRTHDAY_LIST -->
<!-- INCLUDE portal/block/birthday_list.html -->
<!-- ENDIF -->
Code: Select all
<!-- IF S_DISPLAY_USERMENU -->
<!-- IF not S_USER_LOGGED_IN -->
<!-- INCLUDE portal/block/login_box.html -->
<!-- ENDIF -->
<!-- IF not S_IS_BOT and S_USER_LOGGED_IN -->
<!-- INCLUDE portal/block/user_menu.html -->
<!-- ENDIF -->
<!-- ENDIF -->
entferne aus portal_footer.html:marschi wrote: in der der linken Spalte die Blöcke user_menu, custom_small und search angezeigt bekommen.
Code: Select all
<!-- INCLUDE portal/portal_right.html -->
Code: Select all
<?php
/**
*
* @package - Portalview for Board3portal
* @version $Id: portalview.php 612 2010-01-22 19:39:32Z marc1706 $
* @copyright: (c) Christian_N (www.phpbb-projekt.de)
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
define('IN_PORTAL', true);
define('IN_PORTALVIEW', true);
if (!function_exists('display_forums'))
{
include($phpbb_root_path . 'includes/functions_display.' . $phpEx);
}
if (!class_exists('bbcode_firstpass'))
{
include($phpbb_root_path . 'includes/message_parser.' . $phpEx);
}
if ($portal_config['portal_phpbb_menu'])
{
$template->assign_var('S_DISPLAY_PHPBB_MENU', true);
}
// load blocks in the left column
if($portal_config['portal_left_column'])
{
$template->assign_var('S_LEFT_COLUMN', 'portalview');
// show login box and user menu
// only registered user see user menu
if ($user->data['is_registered'])
{
include($phpbb_root_path . 'portal/block/user_menu.' . $phpEx);
}
else
{
include($phpbb_root_path . 'portal/block/login_box.' . $phpEx);
}
if ($portal_config['portal_user_menu'])
{
$template->assign_var('S_DISPLAY_USERMENU', true);
}
if ($portal_config['portal_search'])
{
include($phpbb_root_path . 'portal/block/search.' . $phpEx);
}
if ($portal_config['portal_custom_center'] || $portal_config['portal_custom_small'])
{
include($phpbb_root_path . 'portal/block/custom.' . $phpEx);
}
}
$template->assign_vars(array(
'PORTAL_LEFT_COLUMN' => $portal_config['portal_left_column_width'],
'IN_PORTALVIEW' => true,
));
?>