前提・実現したいこと
就活に使用しているポートフォリオでデプロイしてから約4ヶ月が経ちますが、ゲストログインおよびログアウトボタンを押すとThe page you were looking for doesn't exist.と表示されました。最近になってこのような現象が起こりそれまでは通常通りできておりました。
何が原因かご教授いただけますと幸いです。
発生している問題・エラーメッセージ
該当のソースコード
_header.html.erb <!DOCTYPE html> <html> <head> <title>App</title> <%= csrf_meta_tags %> <%= csp_meta_tag %> <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %> <%= javascript_pack_tag 'application', 'data-turbolinks-track': 'reload' %> </head> <div class="container"> <header class="blog-header py-3"> <div class="row flex-nowrap justify-content-between align-items-center"> <div class="col-4 text-center"> <%= link_to image_tag("fresh.png",width:"120px",height:"65px"), root_path%> </div> <% if user_signed_in? %> <div class="col-4 d-flex justify-content-end align-items-center"> <a class="btn btn-sm btn-outline-secondary" <%= link_to 'ログアウト', destroy_user_session_path, method: :delete %></a> <% else %> <div class="col-4 d-flex justify-content-end align-items-center"> <a class="btn btn-sm btn-outline-secondary" href="/users/sign_up">新規登録</a> <a class="btn btn-sm btn-outline-secondary" href="/users/sign_in">ログイン</a> <a class="btn btn-sm btn-outline-secondary" <%= link_to 'ゲストログイン', users_guest_sign_in_path, method: :post %></a> <% end %> </div> </div> </header> <div class="nav-scroller py-1 mb-2"> <nav class="nav d-flex justify-content-between"> <% if controller_name != 'ways' %> <%=link_to '試験方法',ways_path,class:"p-2 link-secondary"%> <% else %> <%=link_to '試験方法',ways_path,class:"p-2 link-secondary",style:"color: blue;"%> <% end %> <% if controller_name != 'words' %> <%=link_to '用語',words_path,class:"p-2 link-secondary"%> <% else %> <%=link_to '用語',words_path,class:"p-2 link-secondary",style:"color: blue;"%> <% end %> <% if controller_name != 'questions' %> <%=link_to 'クイズ問題',questions_path,class:"p-2 link-secondary"%> <% else %> <%=link_to 'クイズ問題',questions_path,class:"p-2 link-secondary",style:"color: blue;"%> <% end %> <% if controller_name != 'answers' %> <%=link_to 'Q&A',answers_path,class:"p-2 link-secondary"%> <% else %> <%=link_to 'Q&A',answers_path,class:"p-2 link-secondary",style:"color: blue;"%> <% end %> <div class="text-muted"> <% if user_signed_in? %> <% if current_user.image.attached? %> <%=link_to image_tag(current_user.image,width:"30px",height:"30px",style:"border-radius: 50%"),"/users/#{current_user.id}" %> <% end %> <% if controller_name != 'users' %> <%=link_to "#{current_user.nickname}さん", "/users/#{current_user.id}", class:"p-2 link-secondary"%> <% else %> <%=link_to "#{current_user.nickname}さん", "/users/#{current_user.id}", class:"p-2 link-secondary",style:"color: blue;"%> <% end %> <% else %> <%= link_to 'FRESHとは',concretes_path,class:"p-2 link-secondary" ,style:"color: blue; font-size: 20px;"%> <% end %> </div> </nav> </div> </div>
routes.rb Rails.application.routes.draw do devise_for :users, controllers: { registrations: "users/registrations", } devise_scope :user do post 'users/guest_sign_in', to: 'users/sessions#new_guest' end root to: "concretes#index" resource :concretes, only: [:show] resources :users, only: [:show,:edit] resources :ways do collection do get 'search' end resources :likes, only: [:create, :destroy] resources :waycomments, only: [:create, :destroy] end resources :questions do collection do get 'search' end resources :choices, only: [:index,:create] end resources :answers do collection do get 'search' end resources :responses, only: [:create] end resources :words do collection do get 'search' end end end
試したこと
「tail -f production.log」を打ったところActiveRecord::RecordNotFound (Couldn't find User with 'id'=guest_sign_in):と表示されているがローカル環境では問題なく作動しています。
補足情報(FW/ツールのバージョンなど)
●バックエンド
・ruby 2.6.5
・Rails 6.1.0
・MySQL 5.6.50
●フロントエンド
・HTML / CSS
●開発環境
・VScode
・RuboCop
●バージョン管理
・git、github
●インフラ
・AWS(S3,EC2,ROUTE53,IAM)
・Nginx/Unicorn
●テスト
・Rspec
・FactoryBot
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。