SmartFAQ is developed by The SmartFactory (https://www.smartfactory.ca), a division of InBox Solutions (https://www.inboxsolutions.net)

How to make a customised html home page in Xoops
One way to do this is to modify your file 'index.php' as follows

/**
 * 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";
}


Put your own content between these lines

include "header.php";
(your own content here)
include "footer.php";


The comments are owned by the author. We aren't responsible for their content.


Login

Who's Online

251 user(s) are online (1 user(s) are browsing XOOPS FAQ)


Members: 0


Guests: 251


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Nov 30
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Did you know ?

Fantastico installer can install an older version of xoops?

Random question

Is there a way to set a cookie to a users machine that will remember his login information as well as his preferences for which ever theme he likes to view the site with?

I have over 1100 registered users at vmoa.net many of them find it a hassle to have to always type in their passwords and then switch to a different theme.... The default theme was choosen by the president of the organization... I am adding alternate themes as they are suggested... I am only the webmaster... and can only implement technical changes not content...

Later/wetsteve