HE BAJADO EL PHPBB PERO NOSE COMO FUNCIONA. DONDE PUEDO VER MANUALES DE COMO FUNCIONA?
UN SALUDO
como funciona?¿...
Pues son Script de php que crean un sistema de foros...
pero para usarlos no es necesario que entiendas "como funcionan".
Simplemente debes saber como instalarlos:
++Instalando Foros PhpBB by BadByte-k++Como colocarl integrar un foro PhpBB a tu web:
++Turorial (en ingles)++++Integrando foros PhpBB3 a un Web++O resumido:
Codigo para integración (esto va en todas las paginas donde quieres integrar el foro):
<?php
define('IN_PHPBB', true);
$phpbb_root_path = 'foro/';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);
?>
La variable $phpbb_root_path es la ruta donde instalaste tu foro
Y para hacer el tablero de login utilizas esto:
<?php
//
// Generate logged in/logged out status
//
$u_login_logout = $phpbb_root_path . 'login.'.$phpEx.'?logout=true&sid=' . $userdata['session_id'];
$l_login_logout = $lang['Logout'] . ' [ <b>' . $userdata['username'] . ' </b>]';
$U_PROFILE = append_sid($phpbb_root_path . 'profile.'.$phpEx.'?mode=editprofile');
$L_PROFILE = 'Editar Perfil';
$U_SEND_PASSWORD = append_sid($phpbb_root_path . 'profile.php?mode=sendpassword');
$L_SEND_PASSWORD = $lang['Forgotten_password'];
if ( $userdata['session_logged_in'] )
{
echo'
<table align="center" border="0" cellpadding="0" cellspacing="0" width="249">
<tr>
<td valign="top" class="alt5" ><a href="'.$u_login_logout.'" class="mainmenu">'.$l_login_logout.'</a> |
<a href="'.$U_PROFILE.'" class="mainmenu">'.$L_PROFILE.'</a> |
</td>
</tr>
</table>';
}
else
{
echo' <table border="0" cellpadding="0" cellspacing="0" width="249" >
<form method="post" action="'.$u_login_logout.'">
<tr> <td width="127" height="28"> Username:
<input class="txtstyle" type="text" name="username" size="9" /></td>
<td width="122" height="28"> Password:
<input class="txtstyle" type="password" name="password" size="8" /></td>
</tr> <tr> <td width="249" colspan="2" align="center" height="25">Auto Login <input class="txtstyle" type="checkbox" CHECKED name="autologin" value="ON" />
<input type="submit" class="butstyle" name="login" value="Entrar" />
<input type="hidden" name="redirect" value="..'. $_SERVER['REQUEST_URI'] .'"/> </td> </tr> </form> </table> ';
}
?>
Salu2...