April 2006

收到Bluehost的免费升级通知

Dear Bluehost Customer!

We are writing you today to tell about some good news regarding your bluehost account. Starting May 1st Bluehost will be offering 15 Gigs of disk space, and 400 Gigs of data transfer. As always when these upgrades occur you aren’t charged a thing. To get your account upgraded simply email support@bluehost.com with your primary domain asking to have your account upgraded and they will take care of it for you. Exciting things are happening at Bluehost, and soon we will have announcements of further options added to your Bluehost control panel! Thanks for sticking with us. We appreciate everyone that makes up our Bluehost community. If you would like to join in the Bluehost community, you can participate by going to our Bluehost Forums located at: http://www.bluehostforum.com You can also read Bluehost’s CEO Blog located at: http://www.mattheaton.com

Thanks,

Matt Heaton / President Bluehost.com

15G空间和400G的流量对于大家好像实用性不大,我们更需要的是Addon Domains的增加,不过信中讲将会陆续告知升级后的特性,期待ing

Technology

Comments (0)

Permalink

DreamHost不再支持MOD_PHP

最近比较忙,都没有怎么留意DreamHost了,今天收到QiRan的消息说:DreamHost只支持Run PHP as CGI。看来DreamHost这样的策略已经很难吸引很多的人加入了,甚至我已经萌发明年不再续费的念头。

Technology

Comments (5)

Permalink

无聊而又漫长的夜晚

水玲珑,传闻广州最豪华的健康中心,现在已经早上六点了,我还是无法入睡,虽然这里的一张高级躺椅都可能贵过我家那张破床,但我还是怀念那阵有我熟悉味道的枕头,呵呵,人都是这么犯贱?在看了一夜的电视后,终于又打开我熟悉的页面,记录下这无聊的时间轴,仅此而已。

 

Technology

Comments (2)

Permalink

IXWebHosting的产品对比图

呵呵,3个域名6个IP的ixwebhosting当时真的是让我心动。

ixcompare-businesplus.png

Technology

Comments (0)

Permalink

DreamHost上mod_php下安装discuz和phpwind

昨天帮网友JackChen测试在Dreamhost上安装discuz,发现即使在mod下也能正常安装和运行,今天又尝试安装了phpwind,似乎到目前为止也未发现有何不妥的地方,只是在mod下,用户上传和创建的文件是属于dhapache所有,有些文件不能直接删除(discuz有这样的情况,phpwind不会,应该可以通过修改程序来解决),必须通过论坛或自己写程序去删除就是了。两个论坛的demo可以在http://uiiu.org 上看到,如果有网友想我帮忙安装一些东西以便测试dreamhost空间,发信给我,如果有空的情况下,我会尽量帮忙。

Technology

Comments (1)

Permalink

终于收到期待已久的gmail hosted邀请

等了两个月终于等到gmail hosted的邀请了,不知道是我当时申请时填少还是怎么着,才50个免费的邮箱,呵呵,不过gmail的邮箱已经用惯了,即使得到邀请也不知道要做什么,留着吧,总该有用的,哈哈。

Technology

Comments (2)

Permalink

在BlueHost上手动安装PHP5

BlueHost的空间支持PHP4或PHP5的,也就是说你同时只能使用一种php版本,而不像dreamhost可以自由的转换.由于dreamhost上的wiki提供了比较详尽的php5安装说明,我尝试直接拷贝安装代码安装PHP5,但由于系统的差异性,安装无法通过(bluehost是jail机制,很多文件夹是访问不到的).后来经过一番摸索,终于成功在原有的php4空间上安装了PHP5,过程如下:

$ wget wget http://us2.php.net/distributions/php-5.1.2.tar.gz

$ tar zxvf php-5.1.2.tar.gz

$ cd php-5.1.2

$ ./configure \
–prefix=$HOME/www/xxx.com/PHP5 \ (注意:一定要装在网站目录下)
–enable-force-cgi-redirect \
–enable-gd-native-ttf \
–enable-ftp \
–enable-sockets \
–enable-wddx \
–enable-sqlite-utf8 \
–enable-calendar \
–enable-mbstring \
–enable-mbregex \
–enable-soap \
–with-xml \
–with-gettext \
–with-curl \
–with-pear \
–with-pdo-mysql \
–with-pdo-pgsql \
–with-zlib

$ make

$ make install

$ cd $HOME/www/xxx.com/PHP5/bin

$ cp php php.cgi (注意:这一步和dreamhost不一样,而且要同一个目录,而且也不能用软链接)

$ cd $HOME/www/xxx.com/ (或者是你想要实现php5的目录)

$ nano .htaccess

输入以下内容
AddHandler php5 .php
Action php5 /PHP5/bin/php.cgi
保存退出

现在基本上已经可以用了,写个phpinfo()的文件测试一下.如果你还需要或不需要某些模块,要重新配置并编译php5(第二次编译已经很快了),然后再执行 cp php php.cgi就可以了

目前由于时间关系,对于gd和mysql的支持没有测试完,由于jial的问题,直接配置是不可能的,所以可能要下载mysql和gd一起编译才行.如果已经有网友测试过了,请通报一声.

 

Technology

Comments (6)

Permalink