gettext.inc on line 501
jimyengr opened this issue · 1 comments
jimyengr commented
gettext.inc on line 501
Error on Install (Live)
sandeepbisht commented
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);
}
}