Error :
Cannot access empty property in Test.php on line 90
Reason :
You put a dollar sign in the wrong place on a member variable.
$this->$test = 8; // $test is wrong
Possible solution :
Put your dollar sign in correct place.
$this->test = 8; // test is right
>...
Tuesday, 14 May 2013
Saturday, 11 May 2013
Error Messages in Rails - {{attribute}} {{message}}
Posted by
rajesh kakawat
,
at
01:01
Error : Error Messages in Rails - {{attribute}} {{message}}
Reason :
You'll get this error when running Rails 2.3.8 and older.
Possible solution :
Check for correct version of i18n.
First check installed i18n version and then open your Gemfile to see correct version of i18n.
Uninstall incompatible i18n version and install correct version of i18n found in Gemfile...
Subscribe to:
Posts (Atom)