10
What XOOPS version are you using?
I had a look at your index.php file and it looks like this (I'll might be wrong):
DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1252">
<META content="MSHTML 6.00.2900.2802" name=GENERATOR>HEAD>
<BODY>BODY>HTML>
The file extension is .php but I don't see any php-code in index.php.
I'm not an expert, but mine looks like this (Xoops 2.2.3):
// $Id: index.php,v 1.8.22.1 2005/04/03 09:59:42 mithyt2 Exp $
// ------------------------------------------------------------------------ //
// XOOPS - PHP Content Management System //
// Copyright (c) 2000 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
**/
require "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;
require "header.php";
require "footer.php";
}
?>
Can it be that a index.php has been uploaded to the wrong place, root instead of folder?
If I go to
http://www.zonelasertag.com/modules/news/ everthing seems to be alright, except the home-button gives a blank page.