inoerp / inoERP

inoERP is an OneApp [ Go back-end & Flutter front-end ] based enterprise management system
http://docs.inoerp.com/
Mozilla Public License 2.0
767 stars 675 forks source link

gettext.inc on line 501 #78

Open jimyengr opened 7 years ago

jimyengr commented 7 years ago

gettext.inc on line 501

Error on Install (Live)

sandeepbisht commented 6 years ago

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);
        }
    }