1
           
            
                
     
    
    Hi all!
I got the ssl work fine for login in my site: it opens in a popup as described in other topics. But now I have a hard task: SSL on login (and after in edit user...).
My intention is protect the areas where user type the pswd.
I started by (backup the register.php) extracting the lines 
 include 'header.php';  
 from the register.php in order to the file not call any http://.
This step is over: I can open register php whithout header in a ssl mode: (please check it our) 
https://mensageiro.org/portal/register.phpand I can complete the filds, but when clicking FINISHING, it tells: it was not possible made your registration. :( And really, the email wasn´t sent and the user was not registered.
My intention is after this all, open this page in a popup as when logging in.
Please, it will be very useful for many people.
I know that if I extract 
 include 'header.php';  
, I have to put some include 'header.php'; code on it, but I don´t know what. I tried use header lines 
 defined("XOOPS_ROOT_PATH") or die( 'XOOPS root path not defined' );  
 include_once XOOPS_ROOT_PATH.'/class 
/xoopsblock.php';  //global  
$xoopsLogger;  if ( !isset( $xoopsLogger  
) ) {        $xoopsLogger =&  
$GLOBALS['xoopsLogger'];    }   
$xoopsLogger->stopTime( 'Module init' );  
$xoopsLogger->startTime( 'XOOPS output  
 
init' );  
 but when debbug PHP 
Fatal error: Call to undefined function 
themefooter() in /home/wimbgiuia/public_html/portal/footer.php on line 44
Thank you all for helping.