|
|
08 Mar 2007 09:07:38 am |
WM6 new name- WM6的新名称 |
|
|
WM6 now using new name. This is quite confusing with the old one, so a quick table here, look like SP(smartphone) means stardard, PPC phone means professional, PPC only mean classic. From SDK of view, Standard mean SP, professional means PPC.
WM 5 SP ->Windows Mobile 6 Standard->Windows Mobile 6 Standard SDK
WM 5 PPC Phone->Windows Mobile 6 Professional->Windows Mobile 6 Professional SDK
WM5 PPC ->Windows Mobile 6 Classic->Windows Mobile 6 Professional SDK
When install the standard SDK and Professional SDK, the harddisk is performing hard and seems most of time are using copying the ROM files, every ROM file have 90M.
---------------------------
WM6用新名称了,总是很别扭,就是说现在SP对应与stardard(这倒好记,S对S),PPC带电话功能的算professional(也算是P对P吧),纯PPC就是Classic,从SDK的角度来记,S就是smartphone对应与standard(S) SDK, P就是PPC对应与Professional SDK.
在安装professional SDK时简直在折磨硬盘,装完了一看,好象也没装啥,就装了无数ROM,每个有90M大. |
|
| |
Category : Windows Mobile
| By : Eric Shan | Comments [0] | Trackbacks [0] |
|
|
|
08 Mar 2007 08:34:36 am |
Using CNAME bound WEB host-用CNAME绑定WEB空间 |
|
|
I got a new WEB host. But I do not want to:
1. Transfer domain registration to that host
2. DNS forward to the new host DNS server
So I must do something on my current DNS records in order to point WEB host to my new host. I was doing like this, add or modify CNAME records,
Name Type Value
www CNAME MyID.newserver.com.
Pay attention to the point at the end of records.
This means when user prompt 'www.myOldDomain.com will point to MyID.newserver.com, and of course on your new server you need build a domain mapping, map your myOldDomain name to a sub folder. When done, have a test that start an console by cmd and nslookup, check whether 'www.myOldDomain.com have point to new IP address.
-----------------------------------------
我买了个新空间,但又不想:
1.把域名转到新服务商
2.不想做DNS forward到新服务商的DNS域服务器
结果只要改或加CNAME记录就可以了,如旧域名为www.myOldDomain.com,新服务商(newserver.com)上买的ID为MyID.那么这条记录为:
www CNAME MyID.newserver.com.
不要忘了最后那个".",当然还要在新服务商的域解析里加记录,把www.myOldDomain.com对应到某个目录.这样就可以了. 测试时在cmd, nslookup后,查一下新的www.myOldDomain.com是否已指向新IP. |
|
| |
Category : WEB programming
| By : Eric Shan | Comments [0] | Trackbacks [0] |
|
|
|
08 Mar 2007 07:35:52 am |
PHP Warning: Cannot modify header information- headers... |
|
|
I got an error of:
"Warning: Cannot modify header information - headers already sent by (output started at ..."
My script was running fine before I move to another server, the error happens. My script is like:
<?php
if($SomeCondition)
{
header("location:http://www.yahoo.com");
return;
}
?>
After remove 'return', my scripts have not any error, the correct script should be:
<?php
if($SomeCondition)
{
header("location:http://www.yahoo.com");
}
?>
This is quite usual to a C programmer, but not works on some php server. Some other said after header there should be no more other scripts, because it has already redirected.
----------------------------------------------------------------------------------------------------------------------------------------------------
我的一个php script突然在换了主机后出错
"Warning: Cannot modify header information - headers already sent by (output started at ..."
我的script:
<?php
if($SomeCondition)
{
header("location:http://www.yahoo.com");
return;
}
?>
在换主机前好好的,后来把return去掉了就好了,看来各主机商之间的php还是有差别,即使版本相同. |
|
| |
Category : WEB programming
| By : Eric Shan | Comments [0] | Trackbacks [0] |
|
|
|
08 Mar 2007 06:46:51 am |
Chinese display in RSS reader strange-在RSS阅读器里中文显示混乱 |
|
|
My blog is a php myBloggie program, when RSS2 subscriber like Google reader, this display of Chinese turn to be like
& # 25105 ; & # 26159; & # 20013; & # 22269;
If you are using IE7, you can see this problem on my RSS2 xml http://blog.tntsoft.com/rss/rss2.php at the lowest item.
To solve it, I did two things:
1.Change my php blog program language character set to "UTF-8" (charset="utf-8")
2.In the RSS2 XML file, setup language encoding to UTF-8 (<?xml version="1.0" encoding="UTF-8"?> )
Now it is OK in display both Chinese and English in one same document.
--------------------------------------------------------------------------
在RSS reader中显示我的blog很奇怪,都变成了
& # 25105 ; & # 26159; & # 20013; & # 22269;
你可以从 http://blog.tntsoft.com/rss/rss2.php 的最下方的一条中看到此现象,解决的方法是做两件事情:
1.把产生blog的主页php主程序设语言为UTF-8,(charset="utf-8")
2.把产生RSS2 XML文件的程序里设定encoding为UTF-8(<?xml version="1.0" encoding="UTF-8"?>
这样就可以了. |
|
| |
Category : WEB programming
| By : Eric Shan | Comments [0] | Trackbacks [0] |
|
|
|
08 Mar 2007 06:09:16 am |
This is a test of chinese characters-中文测试 |
|
|
Inside Message.
中文,这是中文英文测试
this is a test of English Chinese Mixture. |
|
| |
Category : About
| By : Eric Shan | Comments [0] | Trackbacks [0] |
|
|
|
06 Mar 2007 04:33:34 am |
My first step--热烈祝贺我的blog开张 |
|
|
Hi All,
My name is Eric Shan, my Chinese name is Yihua Shan. I'm living in Shanghai China.
All articals post here are in English and Chinese both.
大家好,我是Eric Shan,我是中国人.我住在中国上海.
在这里所有的文章都会以中英文两种语言同时书写. |
|
| |
Category : About
| By : Eric Shan | Comments [0] | Trackbacks [0] |
|
|
|
Prev 1 2 3 ...5 6 7 |
|