hasen's tech life

Twitter: @hasen

Entries from 2018-09-01 to 1 month

ERROR 3144 (22032) at line 206: Cannot create a JSON... というエラーが出たので対応した

# ERROR 3144 (22032) at line 206: Cannot create a JSON value from a string with CHARACTER SET 'binary' $ vi hoge.sql — /*!40101 SET NAMES binary */; ++ /*!40101 SET NAMES utf8mb4 */;

Unable to autoload constant XxxController... と出力されたので対応した.

# Unable to autoload constant XxxController... と出力されたので対応した. # タイポ.... Unable to autoload constant XxxController, expected /PATH/TO/app/controllers/yyy_controller.rb to define it $ vi app/controllers/yyy_controller.rb -- Xx…