clean DNS cache:
ipconfig /flushdns
restart DNS cache service:
net stop dnscache
net start dnscache
軟體開發、伺服器和生活瑣事
clean DNS cache:
ipconfig /flushdns
restart DNS cache service:
net stop dnscache
net start dnscache
Error message:
Executing: cmd /c " "D:Program FilesImageMagickconvert.exe" "-size"
"200x200" "-geometry" "200x200"
"C:AppServwwwgallerymodulesimagemagickdatatest.gif"
"C:AppServwwwgalleryg2datatmpimgFA3.tmp" 2>
"C:AppServwwwgalleryg2datatmpg2dFA4.tmp" "
getParameter exec.expectedStatus for core plugin
file_exists(C:AppServwwwgalleryg2datatmpg2dFA4.tmp)
filesize(C:AppServwwwgalleryg2datatmpg2dFA4.tmp)
fopen(C:AppServwwwgalleryg2datatmpg2dFA4.tmp, r, 0)
feof(Resource id #98)
fgets(Resource id #98, 4096)
feof(Resource id #98)
fgets(Resource id #98, 4096)
feof(Resource id #98)
fclose(Resource id #98)
unlink(C:AppServwwwgalleryg2datatmpg2dFA4.tmp)
Regular Output:
Error Output:
convert.exe: no encode delegate for this image format
`C:AppServwwwgalleryg2datatmpimgFA3.tmp'.
原因是新版的 ImageMagick 無法辨識 *.tmp 的檔案格式,所以找不到正確的編碼器轉檔。只好等 g2-module-imagemagick 更新…….。
參考網頁:
http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=11778&p=38445
Code for disable PHP register_globals in PHPWind forum:
if(ini_get('register_globals')){
foreach($GLOBALS as $key=>$val){
if(!in_array($key,array('GLOBALS','_POST','_GET','_COOKIE','_SERVER','_FILES','wind_in'))){
${$key}='';
}
}
}
Code from PHPWind forum in global.php:
set_magic_quotes_runtime(0);
if(!get_magic_quotes_gpc()){
Add_S($_POST);
Add_S($_GET);
Add_S($_COOKIE);
}
Add_S($_FILES);
function Add_S(&$array){
foreach($array as $key=>$value){
if(!is_array($value)){
$array[$key]=addslashes($value);
}else{
Add_S($array[$key]);
}
}
}
Kaspeysky 金鑰授權做得越來越好了,要盜版也越來越難。而我在 VMware 底下安裝 Kaspersky 使用測試版 30 天授權,要重新取得授權也要使用 snapshot 對電腦做還原,挺麻煩的。
網路上看到一個修改登錄檔讓 Kaspersky 重新取得授權的方法。打開 regedit 後,刪除以下機碼:
HKEY_LOCAL_MACHINESOFTWAREKasperskyLabLicStorage
HKEY_LOCAL_MACHINESOFTWAREMicrosoftCryptographyRNG
HKEY_LOCAL_MACHINESOFTWAREMicrosoftSystemCertificatesSPCCertificates
重新啟動 Kaspersky 變會跳出授權視窗,要求你重新輸入授權碼或是產品金鑰,當然也可以重新取得測試版金鑰。不過個人除了懶以外還是懶,所以把動作寫成 reg 檔了,只要點二下就可以完成修改。
Kaspersky 清除授權:
http://john.royer.googlepages.com/kaspersky_key_delete.rar
參考資料:
[教學] Kaspersky key 不求人 (KIS 6/7) @ Uwants.com
http://www2.uwants.com/viewthread.php?tid=6512677&extra=page%3D1
新增、修改、刪除登錄值的批次語法 @ 網路上的小屋
http://blog.pixnet.net/texhello/post/15753662