I'm somewhat shame faced to ask this but ...
I seem to have put an old installation of Xoops into Maintenance mode and it's so long ago, I can't for the life of me remember how I did it, or how to login when Xoops is in maintenance mode -- if such a thing is possible.
Would I have had to do it manually or is there a maintenance mode setting in Xoops? I can't find any mention of it in the documentation for Xoops.
I currently have in the main xoops directory two index files:
- index.html
- index2.php
the index.html file just has the text "We're sorry, the site is currently down for maintenance. Please come back soon." And nothing else.
I cannot for the life of me remember whether I made that index.html page manually or wether it's something Xoops does if you can put it in maintenance mode.
On index2.php it has:
// $Id: index.php 2 2005-11-02 18:23:29Z skalpa $
// ------------------------------------------------------------------------ //
// XOOPS - PHP Content Management System //
// Copyright (c) 2000 XOOPS.org //
// <
https://xoops.org/> //
// ------------------------------------------------------------------------ //
// 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. //
// //
// You may not change or alter any portion of this comment or credits //
// of supporting developers from this source code or any supporting //
// source code which is considered copyrighted (c) material of the //
// original comment or credit authors. //
// //
// This program is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
// GNU General Public License for more details. //
// //
// You should have received a copy of the GNU General Public License //
// along with this program; if not, write to the Free Software //
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA //
// ------------------------------------------------------------------------ //
/**
* Catch new users and redirect them to the start page, if any
* @copyright © 2000 xoops.org
**/
/**
* redirects to installation, if xoops is not installed yet
**/
include "mainfile.php";
//check if start page is defined
if ( isset($xoopsConfig['startpage']) && $xoopsConfig['startpage'] != "" && $xoopsConfig['startpage'] != "--" ) {
header('Location: '.XOOPS_URL.'/modules/'.$xoopsConfig['startpage'].'/');
exit();
} else {
$xoopsOption['show_cblock'] =1;
include "header.php";
include "footer.php";
}
?>
When I go to
http://www.mysite.org/xoops/modules/system/admin.phpI get a page with the theme elements but no content. The tabs for the modules are there but when you click on them, the message comes up "Selected module does not exist!"
And there's no way to login.
The Xoops directory folder is protected by amember, but I don't see anywhere in aMember to set it to maintenance mode, so I'm assuming it's something I did manually or via Xoops control panel.
Any ideas -- and don't be too smug ;)
Cheers,
Tracy