Sharepoint 2007 如何找出占用儲存空間大的清單或文件庫?
要如何找出 Sharepoint 2007 占用磁碟空間的兇手呢?
簡要的說:
1.管理中心->應用程式管理->網站集合配額與鎖定:設定配額
2.網站設定->網站集合管理->儲存空間配置來查詢
http://guru-web.blogspot.tw/2009/04/storage-space-allocation-reports.html
About SharePoint , WSS , .Net , SQL , Oracle ...
要如何找出 Sharepoint 2007 占用磁碟空間的兇手呢?
簡要的說:
1.管理中心->應用程式管理->網站集合配額與鎖定:設定配額
2.網站設定->網站集合管理->儲存空間配置來查詢
http://guru-web.blogspot.tw/2009/04/storage-space-allocation-reports.html
標籤: SharePoint
Redmine 裝在 WEBrick 1.9.3 上面,某些電腦有可能出現速度很慢的問題,這是因為 WEBrick 有進行 DNS 反查的動作,若有電腦開啟防火牆,不允許反查的話,就有可能會發現 Retry。
可以解決茶包的方法, Windows 是在 ruby 安裝目錄裡面,例如:C:\Ruby\v1.9.3\lib\ruby\1.9.1\webrick
=============
Having the same issue here (even a year later). Under linux you have to do the following:
Look for the file /usr/lib/ruby/1.9.1/webrick/config.rb and edit it.
Replace the line
:DoNotReverseLookup => nil,
with
:DoNotReverseLookup => true,
Restart webrick and it'll work like a charm :)