好玩的Plugin!


WordSpew(Theme好漂亮,只是在ie上的效果~.~!!)——这个Plugin不单只好玩,技术含量还不低!使用了AJAX技术,Gmail用的就是这个技术!
ShoutBox大家看得多了,使用这个技术的,还是第一次见,快来试试吧!效果看我的SideBar→
安装过程,我就不写了,hsuyo blog里有,我就抄过来了(我懒啊!!)

安裝更是超簡單..

step 0.
至 Ajax Shoutbox 下載 plugin

step 1.
解開壓縮檔,將 install-live.php 放置 blog 根目錄,從瀏覽器開啟 (http://你的blog/install-live.php),按 install 完成。

step 2.
將 wordspew 資料夾放入 /wp-content/plugins/ ,再於控制後台開啟外掛。

step 3.
將以下 code 加入 sidebar.php 即打完收工。

<?php jal_get_shoutbox(); ?>

功能很陽春,不過中文顯示應該沒問題了,而且最新的留言還有自以為炫的漸進式浮現喔 XD

我多说一句的是,安装完后认真看一下install-live.php是否被删除了,如果没有,切记,要把它删掉啊!!
[PS]官方使这样说的,Firefox、ie等等浏览器下都是正常的,就是Opera下不能用!我测试了,是真的!

You need at least two entries in your shoutbox! Just type in two messages now and reload, then you should be fine.

刚才在后台删掉了自带的两个留言就出现这个了,所以大家要删的时候记得先“喊”两嗓子!!

趣图一张!




catzomg

Originally uploaded by Bingu.

在别处看见的一张小猫表情!
:mrgreen: 挺有趣的!

免费asp空间

Websamba可以说是我最早玩的一个免费空间,它提供:
# 30 Mb Disk Space (30Mb的空间)
# FTP Access Account(FTP上传)
# Unlimited Bandwidth(无限的流量)
# No Set Up Charges!(无需任何费用)
# www.websamba.com/yourname/(免费二级域名,不能绑定域名,只能用它的域名!)
# Standard ASP Scripts(ASP)
# No Monthly Fees!
# Free ODBC System DSN Setup(因为一般的免费asp程序都是与 Microsoft Access数据库作搭配,所以要这个。)
再次注意这个空间,也是最近。偶然中发现它的速度变好了,而且这个空间提供的时间也是很长了,还是很值得拥有的,所以推荐给初学者申请!
Read More »

打算弄个wap站点

借了本关于wml和xml的书。打算自己弄个wap 竹叶。先在网上看一下有关的教程,发现蓝色理想论坛里的wap区很多有用的资料哦!

【WAP中文字符传递 PHP解决方案】
现在给出PHP中的完美解决方案,无论是采用普通ASCII码,还是UTF-8格式存储,提交的中文字符奇偶,都没有问题。

采用普通文件格式ASCII码存储,保存为testgb.php

&lt;?php
header(&quot;Content-Type: text/vnd.wap.wml;charset=GB2312&quot;);
echo '&lt;?xml version=&quot;1.0&quot; encoding=&quot;GB2312&quot;?&gt;';
echo '&lt;!DOCTYPE wml PUBLIC &quot;-//WAPFORUM//DTD WML 1.1//EN&quot; &quot;http://www.wapforum.org/DTD/wml_1.1.xml&quot;&gt;';
?&gt;
&lt;wml&gt;
&lt;card id=&quot;main&quot; title=&quot;PHP Web&quot;&gt;
&lt;p&gt;
GET提交,结果:
&lt;?php echo iconv(&quot;utf-8&quot;, &quot;gb2312&quot;,$_GET[&quot;name&quot;]);?&gt;&lt;br/&gt;
POST提交,结果:
&lt;?php echo iconv(&quot;utf-8&quot;, &quot;gb2312&quot;,urldecode($_POST[&quot;name&quot;])); ?&gt;&lt;br/&gt;
&lt;input name=&quot;name&quot; emptyok=&quot;false&quot; tabindex=&quot;2&quot; format=&quot;*m&quot;/&gt;
&lt;a href=&quot;testgb.php?name=$(name:e)&quot;&gt;提交aaa&lt;/a&gt;&lt;br/&gt;
&lt;anchor&gt;提交anchor
&lt;go href=&quot;testgb.php&quot; method=&quot;post&quot;&gt;
&lt;postfield name=&quot;name&quot; value=&quot;$(name:e)&quot; /&gt;
&lt;/go&gt;
&lt;/anchor&gt;&lt;br/&gt;
&lt;/p&gt;
&lt;/card&gt;
&lt;/wml&gt;

采用UTF-8格式存储,保存为test_utf.php

&lt;?php
header(&quot;Content-Type: text/vnd.wap.wml;charset=UTF-8&quot;);
echo '&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;';
echo '&lt;!DOCTYPE wml PUBLIC &quot;-//WAPFORUM//DTD WML 1.1//EN&quot; &quot;http://www.wapforum.org/DTD/wml_1.1.xml&quot;&gt;';
?&gt;
&lt;wml&gt;
&lt;card id=&quot;main&quot; title=&quot;PHP Web&quot;&gt;
&lt;p&gt;
GET提交,结果:
&lt;?php echo $_GET[&quot;name&quot;]; ?&gt;&lt;br/&gt;
POST提交,结果:
&lt;?php echo urldecode($_POST[&quot;name&quot;]); ?&gt;&lt;br/&gt;
&lt;input name=&quot;name&quot; emptyok=&quot;false&quot; tabindex=&quot;2&quot; format=&quot;*m&quot;/&gt;
&lt;a href=&quot;test_utf.php?name=$(name:e)&quot;&gt;提交aaa&lt;/a&gt;&lt;br/&gt;
&lt;anchor&gt;提交anchor
&lt;go href=&quot;test_utf.php&quot; method=&quot;post&quot;&gt;
&lt;postfield name=&quot;name&quot; value=&quot;$(name:e)&quot; /&gt;
&lt;/go&gt;
&lt;/anchor&gt;&lt;br/&gt;
&lt;/p&gt;
&lt;/card&gt;
&lt;/wml&gt;

蓝色理想

大吃一惊

刚才在后台看访问统计,无意中点了Post,出乎意料的是竟然出现个404,惊!点点其他的页面,同样是404,急!赶紧看看FTP,是不是被黑客黑了(我这种小站??),530密码出错!!马上去edong看看,login,查看虚拟主机状态,关闭??看看备案资料,出错!原来是备案的编号填写出错了,打开邮箱,找到备案的邮件,把编号复制,填上,看看状态——启动,搞定!!虚惊一场!

继续网络闲逛,看见自己的blog。咦?PR值竟然是0!!
怎么回事?这PR也太神奇了吧,说来就来,说走就走!点开prchecker.info确认一下是不是这的变成0了。一看就发现新闻了:

28 May, 2005 – Update: Google.com have stoped their pagerank service today, and ALL the sites have ZERO rank now. We do not know if this is a temporary problem, but we hope it is, and we hope they will resolve this issue in several days, we’ll post an update when it is available.

Learn more e.g. here: http://www.webproworld.com/viewtopic.php?t=46300

原来Google停止了Pagerank服务(不知道是不是暂时的)!所有的网站的PR都变成0了!难道真的像Google说的那样,PR只是一个玩具!但愿不是~~
[update 2005-05-31]今天打开firefox一看,发现PR又有了

WP hats and Shirts




WP hats

Originally uploaded by photomatt.

wordpress shirt

WordPress 出品的帽子和T-Shirt,样子很简洁。汗的是,那个标志有点大众的味道!
上海大众Logo

和讯图片——仿Flickr模式的图片分享站

和讯图片,又一个仿照Flickr模式的图片分享站。

每个月您能拥有的空间在20M-100M不等。

和讯图片中,每一幅图片都可以设置为公开的或者私人的。
公开的图片所有的人都可以浏览、收藏、下载、引用。
私人的图片是不同的,只有自己可浏览的图片,顾名思义,图片仅有用户自己可以浏览、引用;好友可见的 图片是只有用户在和讯站内的好友可以浏览、收藏、下载、引用该幅图片

当你上传完图片后,和讯图片的管理员将会对您的图片进行审核,以保证没有违反相关规定的图片。同时管理员会根据图片的具体情况,选择一部分较好的图片显示在公共区域.如果你希望自己的图片能显示在公共区域,被更多人浏览,就尽量上传原创的作品哦。[…]

是不是很有Flickr的味道呢?不仅如此,界面方面也是到处能找到Flickr的影子。
但和讯毕竟不是Flickr!图片原图不能外链,只能往外链的是500X500的中图,不过这样也比别的仿Flickr的站点好了,起码可以外链个中图。
看看我在CSCU找到的好图↓↓

What’s wrong!

WordPress1.5.1版本问题可真不少,前段时间是trackbacks的问题,更新到1.5.1.1。现在有出现了安全问题(安全最重要!)!看看是怎么回事!

It has come to our attention that under certain circumstances there is a security vulnerability in WordPress that may be triggered if you’re running the default template. We were able to respond very quickly (under 40 minutes) and update the download to 1.5.1.2. You can upgrade by overwriting your old 1.5 files or if you would like to apply the fix manually it is relatively simple:

1、Open the wp-includes/template-functions-category.php file in a text editor like Wordpad.
2、Go to around line 103 where it says get_the_category_by_ID.
3、Create a new line after that and paste in $cat_ID = (int) $cat_ID;

One note, even if the vulnerability was present in your blog, you would still be safe if your host ran mod_security on their servers. It is an Apache module which can provide very high-level protection against everything like the vulnerability above to comment spam. We will be updating the hosting page shortly to reflect which hosts there support mod_security or not.

当你使用的theme是默认theme的时候,将会引发这个安全漏洞(其他模板不会??为了更安全还是补上的好!),但如果你的服务器运行于mod_security下,这个问题也就不是问题了!(我在使用的服务器没有这个哦~查看方法:下载一个PHP探针,打开后,看“服务器解译引擎”或phpinfo中的”SERVER_SOFTWARE”)

补丁方法:
1、去wordpress下载1.5.1.2版本,覆盖原文件即可;
2、如果你想自己动手,很简单。打开wp-includes/template-functions-category.php(可以在后台的Manage→Files中打开,方便!),查找到get_the_category_by_ID(在103行,是个函数名),在这行的下面加上$cat_ID = (int) $cat_ID;
既是把
function get_the_category_by_ID($cat_ID) {
$category = &get_category($cat_ID);
return $category->cat_name;
}
改为
function get_the_category_by_ID($cat_ID) {
$cat_ID = (int) $cat_ID; //添加这行
$category = &get_category($cat_ID);
return $category->cat_name;
}