Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HEADER_X_FORWARDED_ALLのエラーを修正 #6128

Merged

Conversation

ji-eunsoo
Copy link
Contributor

@ji-eunsoo ji-eunsoo commented Apr 1, 2024

概要(Overview・Refs Issue)

apacheで動作させた際に、以下のエラーにより500となる。

[Thu Mar 21 14:43:11.951636 2024] [php:error] [pid 626] [client 121.86.176.17:0] PHP Fatal error:  Uncaught Error: Undefined constant Symfony\\Component\\HttpFoundation\\Request::HEADER_X_FORWARDED_ALL in /var/ec-cube/ec-cube/index.php:50\nStack trace:\n#0 {main}\n  thrown in /var/ec-cube/ec-cube/index.php on line 50

closed #6120

方針(Policy)

「Request::HEADER_X_FORWARDED_ALL」定数が削除されたため、以下のように修正

Request::HEADER_X_FORWARDED_ALL
↓
Request::HEADER_X_FORWARDED_FOR | Request::HEADER_X_FORWARDED_HOST | Request::HEADER_X_FORWARDED_PORT | Request::HEADER_X_FORWARDED_PROTO

実装に関する補足(Appendix)

以下と同様の修正を行う
e09e438#diff-ba1e3abdb8d79cbbcdaf1f75543c20e707d9032557c9027bcfc33e2622549dc2

テスト(Test)

  • apache環境にec-cubeをセットアップ
  • composer install、ec-cubeのインストールを完了後、トップページへアクセス
  • トップページが表示されることを確認

相談(Discussion)

マイナーバージョン互換性保持のための制限事項チェックリスト

  • 既存機能の仕様変更はありません
  • フックポイントの呼び出しタイミングの変更はありません
  • フックポイントのパラメータの削除・データ型の変更はありません
  • twigファイルに渡しているパラメータの削除・データ型の変更はありません
  • Serviceクラスの公開関数の、引数の削除・データ型の変更はありません
  • 入出力ファイル(CSVなど)のフォーマット変更はありません

レビュワー確認項目

  • 動作確認
  • コードレビュー
  • E2E/Unit テスト確認(テストの追加・変更が必要かどうか)
  • 互換性が保持されているか
  • セキュリティ上の問題がないか
    • 権限を超えた操作が可能にならないか
    • 不要なファイルアップロードがないか
    • 外部へ公開されるファイルや機能の追加ではないか
    • テンプレートでのエスケープ漏れがないか

@codecov-commenter
Copy link

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 82.76%. Comparing base (01337a0) to head (249a9a3).

❗ Your organization needs to install the Codecov GitHub app to enable full functionality.

Additional details and impacted files
@@            Coverage Diff            @@
##                4.3    #6128   +/-   ##
=========================================
  Coverage     82.75%   82.76%           
  Complexity     6516     6516           
=========================================
  Files           480      480           
  Lines         26048    26048           
=========================================
+ Hits          21556    21558    +2     
+ Misses         4492     4490    -2     
Flag Coverage Δ
E2E 70.02% <ø> (+<0.01%) ⬆️
Unit 79.56% <ø> (-0.04%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@dotani1111 dotani1111 merged commit 3f62b87 into EC-CUBE:4.3 Apr 4, 2024
94 checks passed
@ji-eunsoo ji-eunsoo deleted the feature/fix_header_x_forwarded_all branch May 15, 2024 00:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Undefined constant Symfony\\Component\\HttpFoundation\\Request::HEADER_X_FORWARDED_ALL
4 participants