44
look go to preferences then general settings and enable the debug mode, if you recieve an error on modules/profile/social.php in the line 181
do the following:
replace these lines in socila.php:
$xoopsTpl->assign('eprofile_version','eProfile '.XoopsLocal::number_format(($xoopsModule->getVar('version') / 100)));
by the following
$xoopsTpl->assign('eprofile_version','eProfile '.sprintf("%0.2f",$xoopsModule->getVar('version') / 100));
the road of success is always under construction