1
Hello everybody,
I am using XOOPS 2.0.7 and I am trying to do a personnal page per user.
I tried to do one page :
- a personnal page per user with private information
- nobody else can see the page
- only the admin can modified this page.
With the help of XOOPS France, I have already do this :
php
include("mainfile.php");
include("include/functions.php");
include(XOOPS_ROOT_PATH."/header.php");
$xoopsOption['show_rblock'] = 1;
$lien=$xoopsUser->getVar('uid');
include("pageshtml/$lien.html");
include(XOOPS_ROOT_PATH."/footer.php");
?>
I put this file in the XOOPS root path and my html page in the pageshtml folder. Html pages are named like this user id.html (for the webmaster 1.html).
My problem is I have white page when I can my php page.
I have mistake somewhere but I don't know what.
Can you help me ?