
建立新專案時,無法開啟相關主頁(「主頁」服務已啟用)。例如:在http://mytuleaphost/www/newproject,我收到訊息<<Sorry, page not found>>
所有其他服務(論壇、清單、文件)都正常運作。
tuleap 有什麼明顯的我可能遺漏的東西嗎?
答案1
我剛剛遇到了同樣的問題:)。
事實證明,安裝後,DNS 委派並未啟用(即http://專案名稱.tuleap.host將不起作用),同時 /www/project 名稱別名被停用。
前往 /etc/httpd/conf.d 目錄並在檔案 codendi_aliases.conf 中尋找「Codendi without the DNS delegates」並取消註解行:
AliasMatch ^/www/([^/]*)/(.*) /home/groups/$1/htdocs/$2
<Directory /home/groups>
...
</Directory>
然後重新啟動伺服器(“sudo service httpd restart”),它應該可以工作。