Backport(バックポート) #1415
#1183 の対応では cache/nobody のキャッシュ削除ができない
Start date:
2010-07-22
Due date:
% Done:
100%
Description
Overview (概要)¶
#1183 で cache/nobody のキャッシュ削除が出来ない問題の対処を行ないましたが、
symfony cc での削除ができません。
"cache/nobody" that it's permission is "700" can't be deleted by "./symfony cc".
Causes (原因)¶
- postfixによって作られた、cache/nobody のパーミッションが 700 であるためです。
- Windowsかどうかを判定する式が正しくありません
lib/config/opApplicationConfiguration.class.php L548
if ('\\' === DIRECTORY_SEPARATOR) // Windows
- パーミッションが0777でないかで判定した場合、apacheプロセスが作成する cache/apache が削除されてしまいます。
lib/config/opApplicationConfiguration.class.php L551
if ('0777' !== $permission)
なお、Linux上で動作させた場合は #1183 対処前と同様の挙動となるでしょう。
Way to fix (修正方法)¶
Related issues
Associated revisions
History
#1 Updated by Shogo Kawahara about 14 years ago
- Target version changed from OpenPNE 3.7.0 to OpenPNE 3.6beta4
#2 Updated by Rimpei Ogawa about 14 years ago
- Priority changed from Urgent(急いで) to High(高め)
- Target version changed from OpenPNE 3.6beta4 to OpenPNE 3.6beta5
#3 Updated by Kousuke Ebihara almost 14 years ago
- Status changed from Pending Fixing(修正待ち) to Accepted(着手)
- Assignee set to Kousuke Ebihara
バックポート引き受けます
#4 Updated by Shogo Kawahara almost 14 years ago
- Status changed from Accepted(着手) to Pending Review(レビュー待ち)
- % Done changed from 0 to 50
更新履歴 ec937fd96d9024a7d7d7929138d38c429e025266 で適用されました。
#5 Updated by Shogo Kawahara almost 14 years ago
更新履歴 4e67b91e5b65089d487aae5a83f9cac969d9d810 で適用されました。
#6 Updated by Rimpei Ogawa almost 14 years ago
- Status changed from Pending Review(レビュー待ち) to Pending Testing(テスト待ち)
- % Done changed from 50 to 70
#7 Updated by Hiroki Mogi almost 14 years ago
- Status changed from Pending Testing(テスト待ち) to Fixed(完了)
- % Done changed from 70 to 100
テストを実施しました。問題ありませんでした。