Arkadaşlar phpbb ye dizin gibi bir şey eklemek istiyorum.. Yani böyle bir mod varmı bildiğiniz? Sanki ben bi arkadaşta görmüştüm.
mesela www.xxxxxsitexxxxx.com/linkler.html tarzında açılıp. Overal_header.tpl üst tarafta include edilmiş bir biçimde olucak. Yani istiyen linklere baktıktan sonra foruma giriş yapabilicek ...
Foruma Dizin eklemek istiyorum ..
5
●458
- 20-04-2007, 13:43:26aşağıdaki kodları linkler.php olarak kaydedip ana dizine atın.sonra linkler sayfasının içeriğini hazırlayın html yada php farketmez ama kaydederken uzntısını .htm .html yada .php değilde linkler.tpl olarak kaydedip tema klasörüne atın bu kadar.sonrası header'ı düzenlemek basit zten
<?php /*************************************************************************** * linkler.php ***************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * ***************************************************************************/ 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 // $page_title = $lang['Linkler']; include($phpbb_root_path . 'includes/page_header.'.$phpEx); $template->set_filenames(array( 'body' => 'linkler.tpl') ); // // Generate the page // $template->pparse('body'); ?>
+rep yani