I have found a solution :
in files index.php, comment these lines(lines 106 & 107) :
Code:
$mainframe = new mosMainFrame( $database, $option, '.' );
$mainframe->initSession();
$mainframe->initSession();
After these lines add :
Code:
require_once( $mosConfig_absolute_path .'/includes/sefpatch.php' );
$mainframe = new mosSefPatch( $database, $option, '.' );
$mainframe->initSession();
$mainframe = new mosSefPatch( $database, $option, '.' );
$mainframe->initSession();
Now it will work






