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

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


Members: 0


Guests: 110


more...

Donat-O-Meter

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

Did you know ?

you can change the 'Register now link' to open another page?

Random question

I want to have my registered users be added to an address book to use it as a Contacts page on an intranet. This list should include a phone number/fax number/email/IM handle/job title/office... is there a way to make this?