0
我在Win7上使用Drupal 6.14。一切似乎工作,除了應寫入站點/默認/文件試圖寫入/的文件。該網站已從正在編寫文件的linux安裝中移除。我已經設置了web.config w/drupal的重寫規則。不知道我應該檢查什麼或者其他什麼地方。謝謝你的幫助。爲什麼Drupal寫入根目錄而不是網站/默認/文件?
<rule name="Drupal Clean URLs" stopProcessing="true">
<match url="^(.*)$" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.php?q={R:1}" appendQueryString="true" />
</rule>
謝謝!這是/ admin/settings/file-system頁面上的臨時目錄設置。更改爲C:\ windows \ temp。 – Candland 2010-06-01 14:50:36
我已經找到了c:\ windows \ temp並不是一個很好的地方,因爲權限問題。在網站中使用目錄似乎最好,如:[siteroot] \ sites \ default \ files \ temp – Candland 2010-06-10 17:28:58