http://github.com/cs278/phpbb3/blob/hoo ... ontrol.php
discussion topic
http://www.phpbb.com/community/viewtopi ... 5&start=45
But having some issue with login. I'm not able to login from index page... Phpbb moderator suggest that I should ask this from the ppl who created this SEO mod. Please help me know what shud I do?
I did the following changes in Include/functions.php
from this
- Code: Select all
$u_login_logout = append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=logout', true, $user->session_id);
to this
- Code: Select all
$u_login_logout = append_sid("ucp.$phpEx", 'mode=logout', true, $user->session_id);
from this
- Code: Select all
$u_login_logout = append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=login');
to this
- Code: Select all
$u_login_logout = append_sid("ucp.$phpEx", 'mode=login');
from this
- Code: Select all
'S_LOGIN_ACTION' => ((!defined('ADMIN_START')) ? append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=login') : append_sid("index.$phpEx", false, true, $user->session_id)),
to this
- Code: Select all
'S_LOGIN_ACTION' => ((!defined('ADMIN_START')) ? append_sid("ucp.$phpEx", 'mode=login') : append_sid("index.$phpEx", false, true, $user->session_id)),
and it start working but is it a security risk to change it like that... is there any alternate to to this task?

English |
French

