我的 SVN 是透過 Apache 存取,所以只更換目錄名稱和 svn 設定檔即可。
1. mv /snv/old_name /svn/new_name
2. Edit svn-authz-file. Replace old_name with new_name.
就這樣而已。
2014年1月29日 星期三
2014年1月27日 星期一
Windows 7 BOOTMGR is missing
狀況:
硬碟故障,用 Symantec System Recovery 2013 回復備份檔到新的硬碟,開機時出現 BOOTMGR is missing。
解法:
1. 用 Windows 7 光碟開機,選擇 "修復您的電腦"
2. 選擇 "命令提示字元"
3. diskpart
4. list disk
5. select disk x (選擇 Windows 7 安裝的硬碟)
6. list partition
7. select partition y (選擇 100MB 左右的那個)
8. active
9. exit
10. rename c:\boot\BCD bcd.old
11. Bootrec /RebuildBcd
Reference:
http://stanford-study.blogspot.tw/2014/01/windows-2008r2-100mb-bootmgr-is-missing.html
硬碟故障,用 Symantec System Recovery 2013 回復備份檔到新的硬碟,開機時出現 BOOTMGR is missing。
解法:
1. 用 Windows 7 光碟開機,選擇 "修復您的電腦"
2. 選擇 "命令提示字元"
3. diskpart
4. list disk
5. select disk x (選擇 Windows 7 安裝的硬碟)
6. list partition
7. select partition y (選擇 100MB 左右的那個)
8. active
9. exit
10. rename c:\boot\BCD bcd.old
11. Bootrec /RebuildBcd
Reference:
http://stanford-study.blogspot.tw/2014/01/windows-2008r2-100mb-bootmgr-is-missing.html
2014年1月22日 星期三
2014年1月21日 星期二
IE 區域網路 自動偵測設定
IE 可以自動偵測 DNS 的 proxy 設定,做法請參考 WPAD 的原理及实现。
在 DNS server 新增 wpad.domain.local,已經設定完成卻無法使用。
可能是 Microsoft 因為 WPAD 安全性問題把它擋住了。
解法請參考 Disable WPAD protection on Windows 2008/2003。
在 DNS server 新增 wpad.domain.local,已經設定完成卻無法使用。
可能是 Microsoft 因為 WPAD 安全性問題把它擋住了。
解法請參考 Disable WPAD protection on Windows 2008/2003。
2014年1月20日 星期一
2014年1月18日 星期六
2014/1/17 清醒夢
夢到一個清醒夢,在夢裡我突然發現我是在夢中。
我想說那我應該想做什麼就可以做什麼吧,試試看能不能飛。
助跑一下還真的能飛!但是飛不高,像是大雄穿了小叮噹的未來世界玩具超人裝那樣。
很有趣的夢 ^__^
我想說那我應該想做什麼就可以做什麼吧,試試看能不能飛。
助跑一下還真的能飛!但是飛不高,像是大雄穿了小叮噹的未來世界玩具超人裝那樣。
很有趣的夢 ^__^
2014年1月16日 星期四
2014年1月15日 星期三
Lenovo IdeaPad S205 install Windows 7 Professional
Lenovo S205 硬碟故障,重裝為 Windows 7 Professional,裝好後發現無線網路不能用!
查到一篇和我的狀況相同。
查到網路上的解法,必須重裝 .....
https://forums.lenovo.com/t5/IdeaPad-S-series-Netbooks/S205-Wireless-Problem-Please-Help/td-p/851559
步驟:
1) Enter BIOS and set SATA Controller Mode to "AHCI".
2) Reboot and use F12 to select your external CD/DVD drive as the boot device.
3) When it says "Press any key to boot from CD/DVD..." DO NOT PRESS ANY KEY - WAIT.
4) It will then either boot straight from the DVD or it will once again say "Press any key to boot from CD/DVD...", but in a slightly different font. This is when you need to press a key.
5) Click through the Windows 7 install process until you get to the point of selecting the drive you want to install onto.
6) Delete all of the partitions listed there until it says just "Unpartitioned Space".
7) Click on New, and then OK on the prompt. Setup should create TWO partitions now - one that is 100MB and one that is the rest of the capacity of the drive. If it creates 3 partitions then you have done something wrong, as it is installing using UEFI BIOS not Legacy BIOS.
8) Once Windows has installed, install the WLAN Driver and then Lenovo Energy Management (although the default Windows drivers worked straight away for me).
重裝後無線網路還不行,更新無線網路驅動程式後就可以了。
2014年1月14日 星期二
Install Wiki on Windows using IIS
Reference:
http://zclinsblog.blogspot.tw/2009/05/wiki-boltwire.html
http://jdev.tw/blog/1204/boltwire-install-setup-1
http://www.boltwire.com/index.php?p=docs.admin.install
1. download BoltWire Wiki
2. 解壓縮到 C:\Inetpub\wwwroot\boltwire4.04,裡面會有 boltwire 的目錄
3. 在 C:\Inetpub\wwwroot\boltwire4.04 建立新目錄 mywiki
4. 在 C:\Inetpub\wwwroot\boltwire4.04\mywiki 新增檔案 index.php,內容為
<?php
$BOLTadmin='admin';
$cryptkey='secret';
include_once('../boltwire/scripts/engine.php');
5. install PHP and config IIS
6. 調整 C:\Inetpub\wwwroot\boltwire4.04\mywiki 目錄權限,允許 Internet Guest Account 可以讀寫
7. 設定 IIS Home Directory 為 C:\Inetpub\wwwroot\boltwire4.04
8. 連到 http://localhost/mywiki,用左上的 register 註冊 admin
9. 調整 wiki 內容請參考 http://jdev.tw/blog/1204/boltwire-install-setup-1
要管控可讀寫 Wiki 的成員,可以用 IIS 的 Integrated Windows Authentication,並設定目錄權限即可。
http://zclinsblog.blogspot.tw/2009/05/wiki-boltwire.html
http://jdev.tw/blog/1204/boltwire-install-setup-1
http://www.boltwire.com/index.php?p=docs.admin.install
1. download BoltWire Wiki
2. 解壓縮到 C:\Inetpub\wwwroot\boltwire4.04,裡面會有 boltwire 的目錄
3. 在 C:\Inetpub\wwwroot\boltwire4.04 建立新目錄 mywiki
4. 在 C:\Inetpub\wwwroot\boltwire4.04\mywiki 新增檔案 index.php,內容為
<?php
$BOLTadmin='admin';
$cryptkey='secret';
include_once('../boltwire/scripts/engine.php');
5. install PHP and config IIS
6. 調整 C:\Inetpub\wwwroot\boltwire4.04\mywiki 目錄權限,允許 Internet Guest Account 可以讀寫
7. 設定 IIS Home Directory 為 C:\Inetpub\wwwroot\boltwire4.04
8. 連到 http://localhost/mywiki,用左上的 register 註冊 admin
9. 調整 wiki 內容請參考 http://jdev.tw/blog/1204/boltwire-install-setup-1
要管控可讀寫 Wiki 的成員,可以用 IIS 的 Integrated Windows Authentication,並設定目錄權限即可。
2014年1月13日 星期一
VBA 播放 WAV 聲音檔
Reference:
http://www.office68.com/excel/2919.html
用 Alt + F11 叫出程式碼視窗,加入這一段。
Private Declare Function sndPlaySound32 _
Lib "winmm.dll" _
Alias "sndPlaySoundA" ( _
ByVal lpszSoundName As String, _
ByVal uFlags As Long) As Long
http://www.office68.com/excel/2919.html
用 Alt + F11 叫出程式碼視窗,加入這一段。
Private Declare Function sndPlaySound32 _
Lib "winmm.dll" _
Alias "sndPlaySoundA" ( _
ByVal lpszSoundName As String, _
ByVal uFlags As Long) As Long
用 sndPlaySound32 "C:\tmp\CASHREG.wav", 0& 可以播放聲音檔。
2014年1月11日 星期六
Acer TravelMate P645-MG install Windows 7 and Windows 8
Acer TravelMate P645-MG 預設安裝的是 Windows 8。需要安裝 Windows 7 並做成雙系統。
需要修改 BIOS 才能夠再安裝 Windows 7。
Boot Mode 改為 Legacy。
因為Acer TravelMate P645-MG 沒有光碟機,而且只有USB 3.0 (藍色),外接 USB DVD 開始安裝時會說找不到安裝媒體。所以必須先到Acer網站下載USB 3.0 driver並解壓縮,放在另一支隨身碟上,這樣才能正常安裝。
需要修改 BIOS 才能夠再安裝 Windows 7。
Boot Mode 改為 Legacy。
因為Acer TravelMate P645-MG 沒有光碟機,而且只有USB 3.0 (藍色),外接 USB DVD 開始安裝時會說找不到安裝媒體。所以必須先到Acer網站下載USB 3.0 driver並解壓縮,放在另一支隨身碟上,這樣才能正常安裝。
2014年1月3日 星期五
Microsoft SQL 2008 "Saving changes is not permitted" solution
Reference:
http://weblogs.asp.net/coltk/archive/2009/12/26/saving-changes-is-not-permitted-in-sql-2008-management-studio.aspx
http://weblogs.asp.net/coltk/archive/2009/12/26/saving-changes-is-not-permitted-in-sql-2008-management-studio.aspx
I used to write ALTER statement (e.g. ALTER Table.. .ALTER Column...) so I don't really know what is the error message mean. Today, I search it during my Xmas holiday and know that there's a option in Tools | Options | Designer | Prevent saving change that require table re-creation.
2014年1月2日 星期四
VBA Excel file SaveAS overwrite then close
Reference:
http://www.actuarialoutpost.com/actuarial_discussion_forum/archive/index.php/t-229928.html
Set myxlapp = CreateObject("excel.application")
myxlapp.Workbooks.Add Template:=CurrentProject.Path & "\template.xltx"
myxlapp.Visible = True
With myxlapp.Sheets(1)
.Cells(2, 3).Value = "明細"
End With
myxlapp.DisplayAlerts = False
myxlapp.ActiveWorkbook.saveas "c:\tmp\xx.xlsx"
myxlapp.ActiveWorkbook.Close (True)
http://www.actuarialoutpost.com/actuarial_discussion_forum/archive/index.php/t-229928.html
Set myxlapp = CreateObject("excel.application")
myxlapp.Workbooks.Add Template:=CurrentProject.Path & "\template.xltx"
myxlapp.Visible = True
With myxlapp.Sheets(1)
.Cells(2, 3).Value = "明細"
End With
myxlapp.DisplayAlerts = False
myxlapp.ActiveWorkbook.saveas "c:\tmp\xx.xlsx"
myxlapp.ActiveWorkbook.Close (True)
訂閱:
文章 (Atom)