操作
Bug(バグ) #966
完了"CAPTCHA" display in the member config and etc. in the environment of mobile. (CAPTCHAがモバイル環境で表示されている)
開始日:
2010-04-19
期日:
進捗率:
100%
予定工数:
3.6 で発生するか:
3.8 で発生するか:
説明
Overview (現象)¶
"CAPTCHA" display in the member config and etc. in the environment of mobile.
(CAPTCHAがモバイル環境で表示されている)
Environment (環境)¶
- OpenPNE3.4.x
- OpenPNE3.5.x-dev
Causes (原因)¶
- web/index.php loads configuration for PC first, execute pc_frontendConfiguration::configure() and it enables CAPTCHA (web/index.php は 先にPCの設定をロードするために pc_frontendConfiguration::configure() が実行され、CAPTCHAが有効になる。)
sfConfig::set('op_is_use_captcha', true);
- after doing it, opExecutionFilter::handleAction() loads from configuration database (その後、opExecutionFilter::handleAction() で、上記の設定が存在していた場合 データベースの設定がロードされる。)
Way to fix (修正内容)¶
Changed to load opMobileUserAgent and decide application directly (web/index.php 内で直接 opMobileUserAgent を読みこみ、使用するべきアプリケーションを決定するように修正。)
Kousuke Ebihara さんが14年以上前に更新
- ステータス を New(新規) から Accepted(着手) に変更
- 担当者 を Kousuke Ebihara にセット
Kousuke Ebihara さんが14年以上前に更新
- ステータス を Accepted(着手) から Pending Review(レビュー待ち) に変更
- 進捗率 を 0 から 50 に変更
更新履歴 bbe6d2d620757161b92acb3a5f6137f9ef0aa020 で適用されました。
Shogo Kawahara さんが14年以上前に更新
- ステータス を Pending Review(レビュー待ち) から Rejected(差し戻し) に変更
index.php にて
set_include_path(get_include_path().PATH_SEPARATOR.dirname(__FILE__).'/../lib/vendor/PEAR/');
のようにPEARを include_path に設定していますが、この場合PEARに実行環境が備わっていた場合 実行環境に備わっている PEAR.php を読み出した後に、opProjectConfiguration::setIncludePath() で OpenPNE に同梱された PEAR ライブラリを優先して読み込むようにするため、再び PEAR.php をロードし、エラーが発生します。
index.php での set_include_path を設定するときの、パスの順序を変更するべきだと思います。
Kousuke Ebihara さんが14年以上前に更新
- ステータス を Rejected(差し戻し) から Pending Review(レビュー待ち) に変更
更新履歴 019fd58ba783af4f1ab4163764fa1cb8ccfa635d で適用されました。
Kousuke Ebihara さんが14年以上前に更新
- ステータス を Pending Review(レビュー待ち) から Pending Testing(テスト待ち) に変更
操作