1
           
            
                
     
    
    Hello,
I change the module.sanitizer.php [as recommended in 'comments'] and the follow warnings appears
Quote:
Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /home/xxxxxxx/public_html/vx/class/module.textsanitizer.php:576) in file /include/common.php line 248
 
Warning: Cannot modify header information - headers already sent by (output started at /home/xxxxxxx/public_html/vx/class/module.textsanitizer.php:576) in file /include/common.php line 257
cheers
Barrocanote:
commom - line 247/248
 session_set_save_handler(array(&$sess_handler, 'open'), array(&$sess_handler, 'close'), array(&$sess_handler, 'read'), array(&$sess_handler, 'write'), array(&$sess_handler, 'destroy'), array(&$sess_handler, 'gc')); 
    session_start();  
line 257
 { 
            if ($xoopsConfig['use_mysession'] && $xoopsConfig['session_name'] != '') { 
                setcookie($xoopsConfig['session_name'], session_id(), time()+(60*$xoopsConfig['session_expire']), '/',  '', 0); 
            }