I have inserted phplib in my site.
To create pages with autentication I have inserted the phplib code:
include("/web/htdocs/<<mysite>>/home/php/prepend.php3");
where instead of mysite I wrote the real name of my site
then:
page_open(array("sess" => "Example_Session", "auth" => "Example_Auth", "perm" => "Example_Perm", "user" => "Example_User"));
page_close();
if(!isset($s)) { $s=0; };
if(!isset($u)) { $u=0; };
$sess->register("s");
$user->register("u");
But after this code the site blocks without showing the rest of the page...
What I can to show all my page?
Thanks