inoERP
inoERP copied to clipboard
gettext.inc on line 501
gettext.inc on line 501
Error on Install (Live)
Change that function declaration inside if condition.(If not declared then declare it)
Ex In my case error is "Fatal error: Cannot redeclare __()"
After following change everything working fine for me.
if(!function_exists("__"))
{
function __($msgid) {
return ___($msgid);
}
}