差異處

這裏顯示兩個版本的差異處。

連向這個比對檢視

下次修改
前次修改
tech:svnsquid [2007/12/13 07:27] – 建立 jonathantech:svnsquid [2009/03/03 01:01] (目前版本) jonathan
行 1: 行 1:
 +====== 解決 SVN 經過 Squid 執行 commit 失敗的方法  ======
 +===== 錯誤訊息 =====
 +主要是在 Subversion(SVN) commit 時出現類似以下的錯誤訊息
 +<file>
 +Error: Commit failed (details follow):  
 +Error: MKACTIVITY of '/repos/xxprj/!svn/act/52-e3b8f0': 
 +Could not parse response status line. (http://mail.ichiayi.com)  
 +</file>
  
 +
 +===== 解決方案 =====
 +解決方法就是將這些 SVN 的 COMMAND (REPORT MERGE MKACTIVITY CHECKOUT) 加入 squid.conf 內的 extension_methods
 +<code |h /etc/squid/squid.conf>
 +:
 +#  TAG: extension_methods
 +:
 +extension_methods REPORT MERGE MKACTIVITY CHECKOUT
 +
 +#  TAG: request_entities
 +:
 +</code>
 +
 +===== 參考資料 =====
 +  * http://www.mikepot.com/1544.html
 +
 +{{tag>SVN Squid Subversion Proxy 密技}}