在亚马逊EC2上托管Web站点

基于剑桥大学的Xen虚拟化技术,亚马逊的弹性计算云(Elastic Computer Cloud——EC2)是一个允许用户按需创建、启动、停止基于Linux的服务器实例的计算服务。每个虚拟机实例是一个虚拟的私有服务器,它在启动时通过DHCP获取一个IP地址。虚拟机镜像——亚马逊称之为Amazon Machine Images(AMIs),可以像VMware的虚拟设备那样被存档和传输,因此开发者可以安装一个所需软件的初始实例并快速将其部署到许多虚拟服务器上。

继续阅读“在亚马逊EC2上托管Web站点”

Amazon EC2 – What You May Not Have Known

from:http://blog.codesta.com/codesta_weblog/2008/02/amazon-ec2—wh.html

by:Oliver Chan

Amazon’s Elastic Compute Cloud (EC2) has the goal of providing flexible computing capacity in the form of a service. This service provides the user with the ability to quickly scale to the demands of an application by booting or shutting down servers in a matter of minutes. Since all these machines run in a virtual environment, you only need to pay for the resources you use. More detailed information can be found on Amazon’s EC2 home page – http://aws.amazon.com/ec2/  Much of the documentation provided by Amazon was straightforward and easy to follow so for a full walk-through see http://docs.amazonwebservices.com/AWSEC2/2007-08-29/GettingStartedGuide/.  We will assume that the reader is familiar the basics of EC2.

继续阅读“Amazon EC2 – What You May Not Have Known”

浏览器标签选择

1. <!–[if !IE]><!–> 除IE外都可识别 <!–<![endif]–>
2. <!–[if IE]> 所有的IE可识别 <![endif]–>
3. <!–[if IE 5.0]> 只有IE5.0可以识别 <![endif]–>
4. <!–[if IE 5]> 仅IE5.0与IE5.5可以识别 <![endif]–>
5. <!–[if gt IE 5.0]> IE5.0以及IE5.0以上版本都可以识别 <![endif]–>
6. <!–[if IE 6]> 仅IE6可识别 <![endif]–>
7. <!–[if lt IE 6]> IE6以及IE6以下版本可识别 <![endif]–>
8. <!–[if gte IE 6]> IE6以及IE6以上版本可识别 <![endif]–>
9. <!–[if IE 7]> 仅IE7可识别 <![endif]–>
10. <!–[if lt IE 7]> IE7以及IE7以下版本可识别 <![endif]–>
11. <!–[if gte IE 7]> IE7以及IE7以上版本可识别 <![endif]–>

继续阅读“浏览器标签选择”

htaccess使用手册

Linux(Apache)主机相对Windows(IIS)主机优点多多,其中重要一点是定制功能强。
基于linux的主机,我们可以通过 .htaccess 文件完成许多配置工作,如自定义错误页,是否显示目录列表,阻止/允许特定的IP地址,Redirection 重定向,设置主文档等。
Apache服务器的.htaccess是一个非常强大的分布式配置文件,学会使用.htaccess,对虚拟主机用户来说,可以实现众多的功能。这里有 一篇很容易让人理解的.htaccess介绍,作为入门文章非常的适合。文章最初来自freewebmasterhelp.com,QiRan作了简单的 中文翻译,我将加以完善。
* Part 1 – Introduction介绍
* Part 2 – .htaccess Commande命令
* Part 3 – Password protection密码保护

继续阅读“htaccess使用手册”

Facebook性能大提升的秘密:HipHop

转自CSDN。

clip_image002Facebook神秘的PHP项目HipHop for PHP终于揭开面纱。这个项目由一个PHP到C++的转换程序,一个重新实现的PHP运行库,和许多常用PHP扩展的重写版本构成,目的是旨在加速和优化PHP。

Facebook官方博客(无法直接访问)上项目负责人赵海平(北大1987届遗传与分子生物专业,普林斯顿计算机科学博士)的话说,HipHop项目对Facebook影响巨大。它目前已经支撑了Facebook 90%的Web流量。由于HipHop,Facebook Web服务器上的CPU使用平均减少了50%,从而大大减少了服务器的需求。为了让这一改进也惠及社区,他们决定将之开源,希望能够进一步帮助提高更多大型复杂PHP网站的可伸缩性。

继续阅读“Facebook性能大提升的秘密:HipHop”

IE中JS错误(KB927917)的解决办法

博客用了半静态化后,使用了月光的js版postviews,但是ie会提示KB927917的错误,计数器有时候也不会正常工作。查了一些资料,终于解决了。

页面错误提示:Unable to modify the parent container element before the child element is closed (KB927917)

错误描述:“用户代理: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media CenterPC 6.0; InfoPath.2),时间戳: Tue, 12 May 2009 13:49:16 UTC消息: HTML Parsing Error: Unable to modify the parent container element before the child element is closed (KB927917)行: 0字符: 0代码: 0。”

继续阅读“IE中JS错误(KB927917)的解决办法”