Hi... i am the other "author" of the hack...
to install a site here are the steps.
1- Configure your http server virtual host... to see all the same folder using diferent URL
Example: (using xoops.org)
http://www.xoops.orgdev.xoops.org
devteam.xoops.org
modules.xoops.org
themes.xoops.org
2- Give 777 rights to the "sites" folder.
3- Enter your first site URL in the browser.
4- Follow the steps of the installer.
5- When the installer ask for the sitename... there will be a red cross or a green mark, if the cross is shown... under the text box... there is a link... wich will make all the necessary folders ...
6- follow all the other steps... like a common installation...
7- Use your first site... ;)
8- Make your second site... repeating the steps for the first site.
Write the URL of the second site in the Web Browser.. and etc... etc ... etc... :P
When you get ready configured the multi sites ... we will teach you how to share tables... and admin modules, themes, and groups... but today is very late... and i have a great headacke!!!
In other way ... we found a stupid first bug... now corrected... we dont commented something in the line 78 of "includes/checklogin.php" (is a RC ... the bugs are acepted :P )
change the "includes/checklogin.php" with the next code...
if (!defined('XOOPS_ROOT_PATH')) {
exit();
}
include_once XOOPS_ROOT_PATH.'/language/'.$xoopsConfig['language'].'/user.php';
$uname = !isset($_POST['uname']) ? '' : trim($_POST['uname']);
$pass = !isset($_POST['pass']) ? '' : trim($_POST['pass']);
if ($uname == '' || $pass == '') {
redirect_header(XOOPS_URL.'/user.php', 1, _US_INCORRECTLOGIN);
exit();
}
$member_handler =& xoops_gethandler('member');
$myts =& MyTextsanitizer::getInstance();
include_once XOOPS_ROOT_PATH.'/class/auth/authfactory.php';
include_once XOOPS_ROOT_PATH.'/language/'.$xoopsConfig['language'].'/auth.php';
$xoopsAuth =& XoopsAuthFactory::getAuthConnection($myts->addSlashes($uname));
$user = $xoopsAuth->authenticate($myts->addSlashes($uname), $myts->addSlashes($pass));
if (false != $user) {
if (0 == $user->getVar('level')) {
redirect_header(XOOPS_URL.'/index.php', 5, _US_NOACTTPADM);
exit();
}
if ($xoopsConfig['closesite'] == 1) {
$allowed = false;
foreach ($user->getGroups() as $group) {
if (in_array($group, $xoopsConfig['closesite_okgrp']) || XOOPS_GROUP_ADMIN == $group) {
$allowed = true;
break;
}
}
if (!$allowed) {
redirect_header(XOOPS_URL.'/index.php', 1, _NOPERM);
exit();
}
}
$user->setVar('last_login', time());
if (!$member_handler->insertUser($user)) {
}
// Regenrate a new session id and destroy old session
//
//session_regenerate_id(true);
//
$_SESSION = array();
$_SESSION['xoopsUserId'] = $user->getVar('uid');
$_SESSION['xoopsUserGroups'] = $user->getGroups();
if ($xoopsConfig['use_mysession'] && $xoopsConfig['session_name'] != '') {
setcookie($xoopsConfig['session_name'], session_id(), time()+(60 * $xoopsConfig['session_expire']), '/', '', 0);
}
$user_theme = $user->getVar('theme');
if (in_array($user_theme, $xoopsConfig['theme_set_allowed'])) {
$_SESSION['xoopsUserTheme'] = $user_theme;
}
if (!empty($_POST['xoops_redirect']) && !strpos($_POST['xoops_redirect'], 'register')) {
$_POST['xoops_redirect'] = trim( $_POST['xoops_redirect'] );
$parsed = parse_url(XOOPS_URL);
$url = isset($parsed['scheme']) ? $parsed['scheme'].'://' : 'http://';
if ( isset( $parsed['host'] ) ) {
$url .= $parsed['host'];
if ( isset( $parsed['port'] ) ) {
$url .= ':' . $parsed['port'];
}
} else {
$url .= $_SERVER['HTTP_HOST'];
}
if ( @$parsed['path'] ) {
if ( strncmp( $parsed['path'], $_POST['xoops_redirect'], strlen( $parsed['path'] ) ) ) {
$url .= $parsed['path'];
}
}
$url .= $_POST['xoops_redirect'];
} else {
$url = XOOPS_URL.'/index.php';
}
//
//to keep the same session for all sites, it is posible with the session table shared
if (defined( DOMAIN_TO_SHARE )){
if( isset($xoopsConfig['use_mysession']) ){
$xoops_cookie_path = defined('XOOPS_COOKIE_PATH') ? XOOPS_COOKIE_PATH : preg_replace( '?http://[^/]+(/.*)$?' , "$1" , XOOPS_URL ) ;
if( $xoops_cookie_path == XOOPS_URL )
$xoops_cookie_path = '/' ;
if (isset($_COOKIE['PHPSESSID'])) {
$expire = time() + ( defined('XOOPS_AUTOLOGIN_LIFETIME') ? XOOPS_AUTOLOGIN_LIFETIME : 18000 ) ; // 5 hours default
setcookie('shared_sess', $_COOKIE['PHPSESSID'], $expire, $xoops_cookie_path, DOMAIN_TO_SHARE, 0);
}
}
}
//
// RMV-NOTIFY
// Perform some maintenance of notification records
$notification_handler =& xoops_gethandler('notification');
$notification_handler->doLoginMaintenance($user->getVar('uid'));
redirect_header($url, 1, sprintf(_US_LOGGINGU, $user->getVar('uname')), false);
}elseif(empty($_POST['xoops_redirect'])){
redirect_header(XOOPS_URL.'/user.php', 5, $xoopsAuth->getHtmlErrors());
}else{
redirect_header(XOOPS_URL.'/user.php?xoops_redirect='.urlencode(trim($_POST['xoops_redirect'])), 5, $xoopsAuth->getHtmlErrors(), false);
}
exit();
?>
Gaby corregilo en SF.net please :P ... arrancamos con el pie izquierdo!