rails Rails 7でflashメッセージが表示されない Rails 7でflashやflash.nowが表示されなくなったので、その原因と解決方法。 発生した問題 Rails 7でflashやflash.nowが表示されない。 pathによっては表示される場合もある。 ... 2023.09.02 rails
rails Rails newで`const_defined?’: wrong constant name (NameError)が出る。 rails newしたらエラーが出た。 rails new ./ を rails new ./app_dir_name/ にしたら解決した。 原因はよくわかってないけどアプリケーション名の指定方法が悪かったっぽい。 2023.04.04 rails
error RailsでHTTP Origin header didn’t match request.base_url errorの解決 概要 Railsを本番環境にデプロイしたら、以下のエラーが発生。 HTTP Origin header didn’t match request.base_url 原因 リバースプロキシに使用していたNgi... 2023.02.12 errorUncategorized
computer nslookupでIPアドレスを調べる 結論 % nslookup google.com 1.1.1.1 Server: 1.1.1.1 Address: 1.1.1.1#53 Non-authoritative answer: Name: google.com Ad... 2022.10.06 computer
error RSA Encryption not supported – caching_sha2_password plugin was built with GnuTLS support 概要 musqlでRSA Encryption not supported - caching_sha2_password plugin was built with GnuTLS supportのエラーが出た。 Access... 2022.03.20 error
rails RSA Encryption not supported – caching_sha2_password plugin was built with GnuTLS support の解決 やりたいこと docker-composeでrailsのアプリを作る。DBにmysqlを使用する。 エラー RSA Encryption not supported - caching_sha2_password plu... 2022.03.07 rails
rails Railsでchart.jsを使おうとするとUglifier::Error: 概要 Railsでchart.jsを使おうとして、 bundle exec rails assets:precompile を実行すると Uglifier::Error: が発生する。 production環境だと... 2022.01.24 rails
rails ActiveRecord::StatementInvalid: PG::UndefinedTable: ERROR: relation “player” does not exist 概要 Railsで rails test を実行したら以下のエラーが出た。 ActiveRecord::StatementInvalid: PG::UndefinedTable: ERROR: relation "playe... 2022.01.08 rails
computer iOS framework addition failed due to a CocoaPods installation failure. This will will likely result in an non-functional Xcode project. 概要 UnityでGoogle AdModを使用して広告を出そうとしたらビルド時にエラー発生。 解決策 パソコンにcocoapodsをインストールするターミナルを起動し、xcodeのディレクトリに移動して $pod re... 2021.10.01 computer
python pyenvでPythonをインストールしたのに Command ‘python’ not found 問題 pyenvでPythonをインストールしたが、$python -V で、 Command 'python' not found と表示される。 原因・解決 source ~/.bash_profile で環境... 2021.03.10 python