2007年5月31日星期四

Apache+php+mysql组合在windows Xp下的安装与简单设置

大家好.今天我来为大家介绍一下Apache+php+mysql组合在windows Xp下的安装与简单设置.
 
首先我们需要下载的软件是 apache_2.0.52-win32-x86-no_ssl   mysql-4.1.7-win    php-4.3.9-installer
 
php-4.3.9-Win32   分别可以在他们官方网站www.apache.org  www.php.net  www.mysql.com
 
现在我们先来安装Apache. 我们把所有服务器软件安装到E盘.(纯属个人习惯.大家随便选择.方便管理就好)
 
现在Apache 服务器已经安装成功了..我们来测试一下.
 
在IE浏览器里输入192.168.0.1或者本机机名就可以访问到我们服务器默认主页了.
 
现在我们来安装PHP...执行php-4.3.9-installer进行安装.选择apache..继续安装..完成.
 
然后我们需要对Apache进行设置..让 Apache 解析 php 页面
 
用你喜欢的文本编辑器打开httpd.conf文件
 
httpd.conf文件的位置在G:\apache_2.0.54-win32-x86-no_ssl\Apache2\conf
 
<1>---------------------------------------------------------------------
首先让我们找到如下所示的 DSO 列表.
 
# Example:
# LoadModule foo_module modules/mod_foo.so
这还有许多,一直找到最后一行:
 
#LoadModule ssl_module modules/mod_ssl.so
上面一行是该列表的最后一行,按回车产生一个空的行,在这个空行内加入下面这行:
 
Code:
LoadModule php4_module E:/php/sapi/php4apache2.dll
 

<2>---------------------------------------------------------------------
在关闭conf文件之前,我们需要再加入两行。找到CGI-BIN目录,为了节省时间,
 
可以这样找:按CTRL+F,(译者注:如果你是在记事本而不是写字板里编辑这个文本,
 
那么,应该用快捷键F3)查找 <Directory "E:/Apache Group/Apache2/cgi-bin"> ,在第二个</Directory>
 
后面两次回车,以便加入下面两行:
 
Code:
AddType application/x-httpd-php .php .phtml .php3 .php4
AddType application/x-httpd-php-source .phps 
 
<3>---------------------------------------------------------------------
 
把DocumentRoot "D:/apache/******"改为DocumentRoot "E:/www"
 
(必须在E盘下创建www文件夹.以后在IE输入IP后..默认index.html网页就可以放在改目录下)
 

<3>---------------------------------------------------------------------
 
使Apache2 支持中文编码
 
把      AddDefaultCharset ISO-8859-1
 
改为    AddDefaultCharset gb2312
 
现在保存httpd.conf文件....
 
现在工作还没有完..我们来解压刚刚下载的 php-4.3.9-Win32 文件..
 
把里面的sapi目录复制到php的根目录下..
 
然后在php根目录下创建extension文件夹..把php_gd2.dll文件复制进去..
 
打开php.ini文件..(一般在 C:/windows目录下)
 
找到 extension_dir = "./" 行.修改为
 
extension_dir = "E:\\PHP\\extension"
 
然后把 ;extension=php_gd2.dll行的";"注释去掉.
 
关闭php.ini
 

在httpd.conf里
 
查找index.htm
 
DirectoryIndex index.html index.html.var
 
这里没设置index.php 所以如果只输入IP不输入具体文件名的话.只会显示index.html页面..如果没有
 
index.html 的话.  index.php不会被当做默认主页输出的
 
我们把它改为
 
DirectoryIndex index.html index.htm index.php index.php3
 
然后我们把php根目录下的php4ts.dll文件.复制到windows目录下的system32目录下
 
winxp是C:/windows/system32 如果是win2000的话.一般是 C:/winnt/system32
 
保存.重启apache
 
到现在为止..Apache2 和 PHP 已经基本安装完了..
 
现在我们打开E盘的www目录..创建index.php文件..内容为..
 
<?
 echo "hello World";
?>
 
在IE里输如  192.168.0.1 如果输出 Hello World 则表示我们已经安装成功了:)
 
 
 
<4>----------------------------安装Mysql----------------------------
 

接下来我们来安装Mysql..它的安装非常简单..
 
解压缩mysql-4.0.15-win.rar文件
 
执行安装程序...安装完成了...现在打开Mysql..在这里需要设置初使帐号密码..填写记住就可以..
 
一般用不到它..
 
E:\mysql\bin\winmysqladmin.exe
 
在这里打开..
 
 
 
好了..现在你的服务器已经支持Mysql了..
 
为了方便管理..我们来安装mysql-front_2[1].5_setup.exe这款Mysql服务器管理软件...
 
现在安装完成了..打开它..新建用户..现在Mysql的root用户名为root 密码为空..登陆成功后
 
可以对root密码进行设置..密码设置完毕..创建bbs数据库..(Discuz!论坛时会用到)
 
退出mysql-front
 
现在我们把Discuz!论坛安装在e:/www/bbs目录下..
 
运行192.168.0.1/bbs/install.php
 
对Discuz!进行初始设置..
 
数据库服务器 localhost 就是指本机
 
数据库用户名 root
 
数据库密码   就是刚刚在mysql-front里设置的那个
 
数据库名   bbs
 
email 
 
ok
 
设置管理员用户密码
 

OK...论坛安装完成..
 
现在您的服务器已经支持PHP+Mysql了..:)
 
在这里仅仅是对Apache+php+mysql讲了一些最基本的安装与设置..
 
本人能力有限..有错之处请多多包涵并指正..谢谢!
 
感谢shishirui兄从始至终对我的无私帮助..
 
bye bye!
 
  by  Xerck    QQ 816616    MSN  xerck@msn.com    mail  xerck@163.com
 
       2004年11月15号 凌晨2点

朋友的女朋友

操作系统 实验一进程调度实验

 

 

实验一,进程调度实验

 

实验项目名称:进程调度实验

实验项目性质:综合性实验

所属课程名称:《操作系统》

实验计划学时:2学时

 

一、实验目的

 

用高级语言编写和调试一个进程调度程序,以加深对进程的概念及进程调度算法的理解.

 

二、实验内容和要求

 

设计一个有 N个进程共行的进程调度程序。

 

进程调度算法:

  编写并调试一个模拟的进程调度程序,采用"最高优先数优先"调度算法对五个进程进行调度和采用"轮转法"调度算法对五个进程进行调度

  每个进程有一个进程控制块( PCB)表示。进程控制块可以包含如下信息:进程名、优先数、到达时间、需要运行时间、已用CPU时间、进程状态等等。

  进程的优先数及需要的运行时间可以事先人为地指定(也可以由随机数产生)。进程的到达时间为进程输入的时间。 进程的运行时间以时间片为单位进行计算。

  每个进程的状态可以是就绪 WWait)、运行RRun)、或完成FFinish)三种状态之一。

  就绪进程获得 CPU后都只能运行一个时间片。用已占用CPU时间加1来表示。

  如果运行一个时间片后,进程的已占用 CPU时间已达到所需要的运行时间,则撤消该进程,如果运行一个时间片后进程的已占用CPU时间还未达所需要的运行时间,也就是进程还需要继续运行,此时应将进程的优先数减1(即降低一级),然后把它插入就绪队列等待CPU。 每进行一次调度程序都打印一次运行进程、就绪队列、以及各个进程的 PCB,以便进行检查。

重复以上过程,直到所要进程都完成为止

 

 

 

 

 

 

 

 

三・进程调度之最高优先数优先调度算法的流程图如下 :

 

 

 

 

 

 

 

 

进程调度之简单轮转调度算法的流程图如下 :

五.进程调度部分源程序如下:

#include "stdio.h"

 

#include <stdlib.h>

 

#include <conio.h>

 

#define getpch(type) (type*)malloc(sizeof(type))

 

#define NULL 0

 

struct pcb { /* 定义进程控制块PCB */

 

char name[10];

 

char state;

 

int super;//优先级别

 

int ntime;//需运行时间

 

int rtime; //已经运行时间

 

struct pcb* link;

 

}*ready=NULL,*p;

 

typedef struct pcb PCB;

 

 

 

sort() /* 建立对进程进行fcfs算法排列函数*/

 

{

 

PCB *first, *second;

 

int insert=0;

 

if(ready==NULL) /*优先来者,插入队首*/

 

{

 

p->link=ready;

 

ready=p;

 

} 

 

else/*否则插入队尾*/

 

{

 

first=ready;

 

second=first->link;

 

while(second!=NULL)

 

{

 

first=first->link;

 

second=second->link;

 

}

 

if(insert==0) first->link=p;/* 插入到队尾*/

 

}

}

 

input() /* 建立进程控制块函数*/

 

{

 

int i,num;

 

/*clrscr(); 清屏*/

system("cls");

 

printf("\n 进程调度之简单轮转法.cpp \n\n 请输入"5"再按回车,即进程个数为 5?");

 

scanf("%d",&num);

 

for(i=0;i<num;i++)

 

{

 

printf("\n 进程号No.%d:\n",i);

 

p=getpch(PCB);

 

printf("\n 输入进程名:");

 

scanf("%s",p->name);

 

printf("\n 输入进程优先数:");

 

scanf("%d",&p->super);

 

printf("\n 输入进程运行时间:");

 

scanf("%d",&p->ntime);

 

printf("\n");

 

p->rtime=0;p->state='w';

 

p->link=NULL;

 

sort(); /* 调用sort函数*/

 

}

 

}

 

int space()

 

{

 

int l=0; PCB* pr=ready;

 

while(pr!=NULL)

 

{

 

l++;

 

pr=pr->link;

 

}

 

return(l);

 

}

 

disp(PCB * pr) /*建立进程显示函数,用于显示当前进程*/

 

{

 

printf("\n qname \t state \t super \t ndtime \t runtime \n");

 

printf("|%s\t",pr->name);

 

printf("|%c\t",pr->state);

 

printf("|%d\t",pr->super);

 

printf("|%d\t",pr->ntime);

 

printf("|%d\t",pr->rtime);

 

printf("\n");

 

}

check() /* 建立进程查看函数 */

 

{

 

PCB* pr;

 

printf("\n **** 当前正在运行的进程是:%s",p->name); /*显示当前运行进程*/

 

disp(p);

 

pr=ready;

 

printf("\n ****当前就绪队列状态为:\n"); /*显示就绪队列状态*/

 

while(pr!=NULL)

 

{

 

disp(pr);

 

pr=pr->link;

 

}

 

}

 

destroy() /*建立进程撤消函数(进程运行结束,撤消进程)*/

 

{

 

printf("\n 进程 [%s] 已完成.\n",p->name);

 

free(p);

 

}

 

running() /* 建立进程就绪函数(进程运行时间到,置就绪状态*/

 

{

 

(p->rtime)++;

 

if(p->rtime==p->ntime)

 

destroy(); /* 调用destroy函数*/

 

else

 

{

 

(p->super)--;

 

p->state='w';

 

sort(); /*调用sort函数*/

 

}

 

}

 

main() /*主函数*/

 

{

 

int len,h=0;

 

char ch;

 

input();

 

len=space();

 

while((len!=0)&&(ready!=NULL))

 

{

 

ch=getchar();

 

h++;//标志执行的步骤

 

printf("\n The execute number:%d \n",h);

 

p=ready;

 

ready=p->link;

 

p->link=NULL;

 

p->state='R';

 

check();//显示运行及等待队列的状况

 

running();

 

printf("\n 按任一键继续......");

 

ch=getchar();

 

}

 

printf("\n\n 进程已经完成.\n");

 

ch=getchar();

 

}

 

六.运行结果的分析

 

  五个作业所有就绪进程按 FCFS排成一个队列,总是把处理机分配给队首的进程,各进程占用CPU的时间片相同。如果运行进程用完它的时间片后还为完成,就把它送回到就绪队列的末尾,把处理机重新分配给队首的进程。直至所有的进程运行完毕。

  其实除了调度的算法之外,大多部分都是与其他的调度模拟程序一样,只是按要求先初始化五个进程而已!

 

 

2007年5月30日星期三

如何查看qq好友相册 qq相册密码破解


很多人想看看好友的相册,但是好友加了密,所以今天我就教大家怎么去破解
此教程没什么技术含量,看看方法就行了,只输入一段代码就行了
http://photo.qq.com/cgi-bin/portal/cgi_portal_list_album?uin=好友QQ号

优化了一个关键字,让我IP持续在4万!--高招!

优化了一个关键字,让我IP持续在4万!


转载请注明出自落伍im286.com,本贴地址:http://www.im286.com/viewthread.php?tid=1996835

 1、网站名 快乐男生论坛 [url]http://www.boy98.cn[/url]   
2、网站介绍 2007快乐男声论坛,百度上搜索快乐男生在第一,搜索快乐男声在第6
  3、ALEXA排名以及日IP alexa一月平均3万多,日IP25000-45000

快乐男声开办前,我就在站长站问,做快乐男声类站点,有没有前途?大家都说不太好。而很快,却看到了大大小小,形形色色几十个以快乐男声为主题的站,现在又相继出现了几十个快乐男声选手的论坛。
可以说,娱乐,给我们做站的人更多的机会
但需要我们有独到的眼光
[b]比如当初,我选来优化的词是"快乐男生",而不是和其他站长一样选择了"快乐男声"
这是我能在第一的原因[/b]
先上去的,就很可能持续在前列了!

这只是我的一些看法
希望对大家有所启发
不知道我能不能落伍?
呵呵,因为在其他版不能发帖,比较郁闷
给个机会加分吧,嘿嘿~~

技术员的困惑,30以前学技术,30以后学运营

看了《搞程序就别做个人站长》 这个文章 ,感触很多,个人建议:其实楼主现在还比较年轻,三十五岁之前是你一生中的黄金时段,把握好了则前途无限光明,若一直犹豫下去那还真不如回家卖红薯.也许你的同学中有人结婚了,有人买房了,或者有人在拥有了以上两者后准备买车了,这时你很急躁,心想:老子一路走来也不比别人差啊.问问自己几个问题:我是否愿意一辈子做开发,如果不做开发了还有什么能让我有成就感,目前我的技术是不是真的到了一定层次了并且公司已经离不开我了,我的兴趣到底在哪?
人生的过程好比砍树木做房子,要做大房子就必须砍更多的木头,但是为了做大房子是不是应该把整片森林都看光呢?不必,因为一辈子也砍不完;能不能走捷径,只砍树枝,因为树干很粗很难砍,树枝就好砍多了,这样能使你很快获得房子但也能使你很快失去房子;那就只有去砍树干了,东一斧西一斧?一辈子也别想有房子;所以正确的态度是这样的:砍倒了一棵再砍下一棵,虽然一辈子砍不完一片森林,但砍倒一棵树却用不了一辈子!房子是目的,树木是为了达到目的应该掌握的资源:技术,人脉等等.其实你的心中已经有了答案:在技术上希望获得别人尊重,但又不想一辈子做开发,也就是说你想在技术达到一定程度后转市场!恭喜你,你选择的是一条成为"斗战神佛"的道路,孙悟空不光在技术上牛逼,在人脉上也是混得风生水起,搞不定的时候当然可以求人帮忙.客户喜欢跟什么人做生意?我认为这个人应该有的品质:能给出独到的建议,真诚,稳重,能为客户解决多方面的问题,这样客户才能放心下订单给你.
建议楼主:三十岁之前集中全力搞好技术,砍倒几棵最核心的树,别人想砍而又砍不动的,砍倒这几棵后你就有了足够的资本放手一搏,因为拿下后其它的树在你眼里便不值一提了,当年老毛为什么要林彪放弃长春沈阳而去攻打锦州?因为锦州拿下后长春沈阳唾手可得,进而在全国战略上赢得先机,不管怎么样三十岁之后转市场,可以从售后或技术支持做起,多跟客户打交道,把客户当亲人!集中全力解决客户的问题,这个阶段属于中原攻势,当年老毛挥出三把尖刀插向敌人心脏.发动一切可以发动的力量,多出去跑!经过这个阶段后你要技术有技术要人脉有人脉要本钱有本钱,成为"斗战神佛"了,可以考虑自己干了,看准一个行业做下去。
其实你可以向智能产品方向努力,比如智能玩具,让一人从婴儿开始就接触你的产品一直长大成人那该是多么振奋人心的事,因为你生产的是人才而不是一般的产品. 楼主现在可攻可守,战略上属于相持阶段,机动余地还是很大的.以上只是个人建议,具体如何执行还是楼主自己定夺.

个人站长大事记

无论从三大门户,还是媒体站长,普通站长的故事,站长创业的故事,域名抢注的故事,网站赚钱的故事,都是频繁的登上头条首篇。草根越来越受主流媒体的关注,越来越受it精英的留意。
sohu blog,诚邀个人网站站长加入,163 与个人站长聚会合作,sina 随时切入个人站长的领域,个人站长,一时之间成为香饽饽。
各大网站纷纷重视与个人网站的合作,sogou,mop ,qihoo ,bolaa,大部分的门户,流量还是不少依靠个人网站来支撑,看21cn为什么渐渐失去光芒,因为他的联盟停止了。
目前更多门户网站在兼并整合个人网站资源,纷纷加入抢购个人网站中。据说已经有门户悄悄在admin5里物色优秀个人网站。
今天看到donews老大刘韧老师的blog,也似乎特别在意草根的站长。最近刘老师,还有不少it写手,都纷纷著书草根站长。摘选一下

站长站在草根与神话之间

1. 中国最早的站长应该是华军、高春辉他们那一代。他们用免费个人主页作下载站点。
2. 互联网第一个泡沫破裂后,大网站没钱为个人站长支付免费的空间和带宽了。90%以上的个人站点都关闭了。只有华军等少数坚持了下来。坚持就是胜利。
3. 第二代站长是在SP短信联盟的滋养之下快速发展起来的,那时流量就是钱。因为变现通道畅通,个人站长开始买带宽、买服务器。
4. 随着搜索引擎的快速成长,没有更多资源的个人站长,就搜索引擎看成了自己的资源,研究它,利用它,作弊它。搜狗刚刚推出的时候,一个站长想我演示了他作弊搜狗的成绩。几乎是想怎么弄它,就怎样弄它。
5. 淘宝和易趣争夺C2C市场,也为个人站长们带去了可观的收入。
6. 百度收购hao123更是将个人站长传奇推向了高潮。
7. 2005年4月,中国移动整治SP之后,个人站长开始走下坡路。易趣卖给Tom,淘宝也用不着进行大规模的联盟推广了。更是雪上加霜。
8. Google Adsense来得真正是时候,但价格很低。而且,很容易被取消资格。
9. 就像商业网站靠风险投资驱动一样,个人站长要靠获利驱动。先阶段利空,所以,站长们开始不看访问量,开始看上证指数。
10. 下一个办站高潮要等电子商务的大面积发展,要等在淘宝上开店的店长开始要开自己的专卖的店的时候。下一代站长要靠电子商务的利润滋养。
――――――――――――――
写的很精粹,修改了刘老师的几个通假字,简明扼要的道出了个人网站的现状和未来。

更多人的关注草根。既是好事,也不是好事,在现在这个危机的关头,个人网站的蛋糕,还能不能做的更大,而更多人的参与,是一起做大蛋糕,还是一起来分现成的蛋糕?
网络大环境不好,很多门户等it网站,都下岗失业,还有更多大学生朋友的加入,个人网站越做越多,传统的下载,导航,音乐,娱乐,模式很快就分崩离析,现在各种模式,结合行业,地域,领域,专业类型的雨后春笋。目前从事个人网站的都是阅历浅,资源少,起点低,经验少的20出头。能否经得起这股浪潮的冲击,另外一年前的网站联盟模式的收入,也在这股大潮中改变,联盟的萎缩。部分稳定的收入锐减。都给目前的草根站长造成了非常大的生存压力。目前亚洲交友联盟已经连续4天打不开,还有很多大联盟已经拖欠了数月的钱一直迟迟未发。
除此之外,病毒和插件的肆略,欺骗点击,和黑客的无人管辖。草根站长民不聊生,在没有资源基础上还要经受版权,BBS社区许可,等众多问题。草根之路日显崎岖。

2007年5月28日星期一

把懂的东西卖给不懂的人,才能赚钱

有道理!
 
    最近一直想搞一个行业网站接触各色各样的站长比较多!虽然弄网站很多年但是接触到站长并不多,搞行业网站必然要接触程序,发现网上有很多卖程序的站长(姑且这
么叫)网上很多人站长为了赚300-500程序钱到处宣传自己网站。也有很多站长为了赚广告费想尽办法,甚至不惜使用恶意代码,病毒等等方法!
    网络上也有很多站长高手被网络埋没了,今天我帮你写一段程序,明天我帮你做一段采集,后天我帮你修补一个漏洞,赚个三百五百。我总觉的这样没意思,和我现实生
活中很多连百度和GOOGLE都不太明白的老板想去推广网站却找不到人来对比差距太大了!听说这么一个故事某地一个公司里来了一个大学生他把局域网的文件建一个共享文件
夹让公司同事数据能够相互共享老板过年给了他一个红包。不知道站长听了这个故事是不是觉的这个老板真傻,真愚昧。但是在中国就是这样钱往往都是掌握在少数人手里!
你不得不承认社会现实就是这样,很多站长还是个穷人!
    什么BLOG,WEB2.0那些都是网络人自己炒作自己的概念骗VC用的,至少我这么认为,至于明星BLOG也不过利用了民众对明星认可的然后借用这个来炒作!(跑题了)
    其实站长应该重新认清自己,定位自己。把自己懂的那些东西卖给不懂的人。你的技术你的想法你的思想也就值钱了!
    不要老把眼睛 盯着那些在网络上你的同行,或者懂网络的人,天天泡在网络上的人!想办法把那些不上网的人包装到你的概念上你就可能赚钱,你帮一个同行加工一个
企业网站最简单那种一般不过几百元,但是如果你卖给一个企业老板不懂网络可以是几千~
    我曾经帮一个老板做一个网页里加一段JS代码防止别人另存图片他高兴的要死,平时非常趾高气扬,那个时候用敬佩的眼光看着你!
    乱七八糟说了这么多,就一句话:看看你身边的人有没有什么机会能把他也忽悠到你网站上你就成功了~你也可能就能赚到钱了!而且是很轻松那种~

暴强:教你如何收拾发短信的骗子们

一直很郁闷,总没有收到过骗子的短信,以至于总觉得受歧视

  今天,终于收到了一条骗子短信,还是时下最流行的冒充银行骗取卡号的骗局,全文如下:工商银行通知:贵用户牡丹卡正于沃尔玛购物商场刷卡消费4850元。此笔金额将从您的帐上扣除。如有疑问请拨:51518332卡务部。信息发自139427***72

  看着这条短信,我如获至宝,激动啊终于被我等到了。于是,整理心情,稳定情绪,开始拨电话5151***2。

  电话通了,我故意不说话,等对方先开口。果然,电话那头传来一口**腔,象模象样地自称工商银行卡务部为我服务(最近这种骗局来自**的居多,心中窃喜)

  我:"你们没有经过普通话培训就上岗的吗?"

  显然对方没有料到我会来这么一手,一时没有反映过来

  我再问:"你这好歹也是工商银行的服务电话呀,这么没有经过普通话培训就上岗

  对方语无伦次了:"我们老板说不用……"

  我打断:"你们老板?你们不是工商银行吗?这么还有老板?"

  对方乱了阵脚:"不是,我们公司……"

  我继续打断:"公司?怎么又变公司了?"

  对方:"……"

  我继续:"你一开口就露馅了,一口方言,哪里象客服电话?我最讨厌你们这种短信诈,骗了,一点技术含量都没有……"

  对方彻底崩溃,迫不及待的挂断了我的电话,搞得我很不尽兴。

  拿起电话再打,居然占线

  过瘾啊!有空又比较无聊的TX可以打打那个电话,有什么比耍骗子更有趣吗

  这个TX不够强,我上海旁边的同事才叫强,前几天收到了骗子的诈骗短信,是通知你使用农行卡消费3890元,让你和农行发卡中心联系,留了个上海的电话:021-51***574

  嘿嘿,第一次收到,终于可以亲身体验,我那同事立马两眼发光,摩拳擦掌电话打过去

  女:"你好,农行发卡中心"。(感觉有气无力的)

  我"你好,我收到一条短信,说...."

  女:"请你到黄埔区东华路108号来一趟"

  我:"黄浦区有东华路嘛?"(我同事估计是真不知道)

  女:"有阿"

  我:"我必须去一趟嘛?"

  女:"为了你账户安全....."

  我:"可是我没有农行的卡呀"

  女:挂电话

  意犹未尽,我同事又告诉了他的朋友

  这是他们的对话

  女:"你好,农行发卡中心"。(可能像偶们一样无聊的人太多了,难怪有气无力的)....

  女:"请你到黄埔区东华路108号来一趟"

  朋友:"我现在就在东华路,108号是个住宅区啊"

  女:"...我告诉你吧,东华路根本没有108号"挂电话

  我同事觉得好玩,又打了第三遍,这次压低了声音,低沉了很多

  女:"你好,农行发卡中心"

  朋友2:"收到你们的短信...但是没有消费啊"

  女:"我帮你查一下,先生贵姓"

  朋友2:"我姓曹"

  女:"叫什么?"

  朋友2:"叫'尼玛'"

  女:"哪个ni?"

  朋友2:"'呢'去掉'口'"

  女:挂电话

  我也无聊了,于是在同事的鼓动下也打电话过去了,骗子开始学聪明了

  女:"你好,农行发卡中心"。(好像一本正经的样子)

  我"你好,我收到一条短信,说...我刷卡消费了3000多啊?"

  女:"请问你是有农行的卡的用户嘛"(也不说是信用卡,直接就说是农行卡)

  我:"是"

  女:那请报上你的姓名。(说这话的时候女的清清喉咙,感觉好像鱼儿上钩了)

  我:开始胡扯:一定要名字吗?(因为原先没有想到要名字,没有想好我的另外一个名字,也不想告诉我的真名)我真的刷了那么多钱吗?我好像没有刷过哎!

  女:一定要的,告诉我你的名字

  我:我在网上设定过我的最多消费金额是1500,怎么能刷3000多,是不是真的? `

  女:那你去你附近的营业点去查询好吗?(估计看出来破绽了,开始准备挂电话了)

  我:哦,那我还是去我们楼下的。。。。。。

  没等我说完就挂了

  后来我同事给他一个朋友发了个,她打电话过去说

  女:"你好,农行发卡中心"。

  朋友"你好,我是工商局的,我们接到举报!!女:什么?你是谁?

  朋友重复了一遍

  那边就挂电话了

  然后我觉得很爽,于是又打了一次

  你好,农行发卡中心

  然后我告诉她,我是农行的,接到举报

  可惜她挂电话的速度飞快

  我同事最变态了,他打了最后一个电话

  前面省略.........

  由于我们警方努力终于查出你们的具体窝点

  你已经被包围了

  等到下午5点多叫外卖准备晚上加班的时候,我顺手又打了一下,那个电话已经提示说

  关机了,看来是固定电话转接到移动电话上的才对

  哎,我们真无聊

  教你怎么骗骗子

  昨天打开电子邮箱,突然发现一封信上标题写得:"中奖通知",打开一看,上面写着:"热烈庆祝香港宏盛集团五十年庆典,特举办全国邮址抽奖活动,您幸运抽中二等奖,可得奖金8.8万元,请速来电领取.联系人:林先生 01333***2166."偶从来都不相信天上掉馅饼得事情于是在百度上搜索了一下香港宏盛集团这个企业,果不出我所料,不少人在网上讨论和漫骂这个骗局.因为中二等奖得人有一万多个,于是乎,偶又冒了点坏水想整这帮骗子一下~!

  晚上吃完饭,偶召集齐偶的flatmate,部署计划,7点整,国内时间下午两点,我用大唐卡拨了过去,先是说明自己中奖的事情,那边是个老女人接的,说是香港宏盛集团深圳办事处(其实我们用IP查询器查过这个手机号,是**州的)恭喜我中奖,叫我先汇2%的手续费过去,然后去香港一个地址领奖.这时,偶女朋友上场(我把电话开的免提),说到:"报告局长,已经锁定,信号是从**州发出来的."旁边的兄弟立马狂敲击键盘,做追踪状声音,不使整点声响,好像公安局指挥中心一样~!"偶忍住笑下命令道:"马上实施抓捕,刑警2大队队配合经侦支队行动,快~!"只听电话那头喊了一声:"经理,不好了......"就挂掉了。

2007年5月27日星期日

对联广告带关闭js代码

function initEcAd() {
document.all.AdLayer1.style.posTop = -200;
document.all.AdLayer1.style.visibility = 'visible'
document.all.AdLayer2.style.posTop = -200;
document.all.AdLayer2.style.visibility = 'visible'
MoveLeftLayer('AdLayer1');
MoveRightLayer('AdLayer2');
}
function MoveLeftLayer(layerName) {
var x = 5;
var y = 100;// 左侧广告距离页首高度
var diff = (document.body.scrollTop + y - document.all.AdLayer1.style.posTop)*.40;
var y = document.body.scrollTop + y - diff;
eval("document.all." + layerName + ".style.posTop = parseInt(y)");
eval("document.all." + layerName + ".style.posLeft = x");
setTimeout("MoveLeftLayer('AdLayer1');", 2);
}
function MoveRightLayer(layerName) {
var x = 5;
var y = 100;// 右侧广告距离页首高度
var diff = (document.body.scrollTop + y - document.all.AdLayer2.style.posTop)*.40;
var y = document.body.scrollTop + y - diff;
eval("document.all." + layerName + ".style.posTop = y");
eval("document.all." + layerName + ".style.posRight = x");
setTimeout("MoveRightLayer('AdLayer2');", 20);
}
 
document.write("<div id=AdLayer1 style='position: absolute;visibility:hidden;z-index:1'><a href='http://leeok.blogspot.net/vip3.htm' target='_blank'><img src=http://leeok.blogspot.net/templets/myimg/left.gif border='0'></a></div>"
+"<div id=AdLayer2 style='position: absolute;visibility:hidden;z-index:1'><a href='http://leeok.blogspot.net/bangshangyouming/20061214/450.html ' target='_blank'><img src=http://leeok.blogspot.net/templets/myimg/right.gif border='0'></a></div>");
initEcAd()
 
// JavaScript Document

百度搜索高价关键字



值得关注的一些百度搜索高价关键字,垃圾站做站方向的严重参考方向!

近期高价关键字按价格排序:


1 干洗连锁店 40.51
2 平台 35.89
3 招商加盟 33
4 干洗店 32.74
5 干洗设备 29.91
6 连锁 26
7 干洗 25.32
8 手机铃声 20.02
9 口吃 20
10 结巴 20
11 加盟干洗 19.15
12 私人侦探 18
13 轴承 16
14 成人用品 15
15 膜结构 13.91
16 网站建设 13
17 货架 12.15
18 婚庆 12
19 调查 12
20 移民 11.34
21 激光 11.3
22 丝网 11
23 寻人 11
24 门禁 10.02
25 回收 10.02
26 室内装潢 10
27 留学 10
28 建站 10
29 sp 10
30 加盟 10
31 驾校 9.99
32 数据恢复 9.91
33 哎呀呀 9.88
34 虚拟主机 9.46
35 起重机 9.43
36 网站制作 9
37 追债 9
38 网页设计 8.99
39 标签 8.91
40 主机托管 8.71

英文google高价 关键词

 

仅供参考,这是一份过去的价格表。
[mesothelioma lawyers] $48.61
[peritoneal mesothelioma] $48.38
[mesothelioma attorneys] $45.04
lexington law firm $33.91
[mesothelioma] $33.83
eloan $33.27
lexington law $31.43
[mesothelioma symptoms] $31.41
eloan com $28.47
alicante car hire $27.24
[mesothelioma info] $25.79
equity line of credit $23.46
alicante airport car hire $22.65
trans union llc $21.15
consolidate loans $21.03
home equity loans $20.98
domain name search $20.74
cheap term life insurance $20.10
mega life and health $19.71
trans union $19.43
ross simon jewelry $19.36
asbestos cancer $19.34
[asbestos mesothelioma] $19.06
home equity line of credit $18.65
lendingtree $18.50
car hire malaga $17.31
prostate cancer treatment $17.20
[malignant pleural mesothelioma] $16.30
domain name lookup $16.30
car hire in malaga $15.39
dedicated hosting $15.34
northwestern mutual life $15.11
anti spam software $15.03
at t phone $14.95
credit repair $14.76
chase credit $14.12
credit counseling $13.98
purchase domain name $13.92
car hire florida $13.74
computer rental uk $13.71
cheap domain names $13.38
selectquote $13.26
online degree $13.22
medical billing software $13.09
rental car in costa rica $13.06
internet domain registration $12.95
affiliate marketing $12.90
auto cheap insurance $12.90
register internet name $12.86
projector rental $12.83
Mesothelioma $12.79
cheap domain $12.72
help desk software $12.65
education degree online $12.56
registering domain name $12.44
domain search $12.19
ecommerce hosting $12.13
ocean finance $12.12
registering domain $12.02
register domain names $11.97
budget rental $11.94
car hire spain $11.81
debt problems $11.69
baines and ernst $11.69
consumer credit counseling $11.68
budget car hire $11.67
register web page $11.66
[asbestos] $11.55
criminal justice degree online $11.48
car hire in spain $11.43
capital one credit card $11.42
voip canada $11.40
support hose $11.31
best hosting $11.26
domain name $11.22
student credit cards $11.21
domain registration $11.19
purchase domain $11.19
adult friend finder $11.16
register domain name $11.14
line of credit $11.12
cheap hosting $11.11
capital one credit $11.07
prostate cancer $11.07
payperclick $11.05
low cost domain registration $11.05
computer rental $11.00
car hire malaga airport $10.90
domain name registry $10.79
domain name registration $10.77
airlines credit card $10.74
degree education on line $10.71
cheapest domain registration $10.61
voip phone service $10.52
car hire malaga spain $10.49
accept credit cards $10.46
debt solutions $10.43
consolidate $10.39
visa gift card $10.33
domain name check $10.32
lexapro and alcohol $10.28
domain names $10.20
merchant account $10.17
domain lookup $10.08
free legal advise $10.05
domain who is $10.02
online accounting degree $9.92
online texas hold em $9.83
buy a domain $9.81
free legal advice $9.77
voip test $9.69
cheap web hosting $9.57
available domain name $9.57
cheap domain name registration $9.49
register domain $9.48
free online legal advice $9.47
ross simon $9.46
my fico score $9.43
student credit card $9.41
online paralegal degree $9.41
accept credit $9.29
asbestos lung cancer $9.28
cyprus car hire $9.25
email marketing software $9.24
credit counseling service $9.18
support stocking $9.14
cheap domain registration $9.11
trw credit $9.08
adwords $8.97
life experience degree $8.95
hosting reviews $8.94
drug and alcohol rehab $8.94
att voip $8.94
search engine marketing company $8.91
buy domain name $8.90
online texas holdem $8.88
call center software $8.87
debt consolidation $8.86
cheap asp hosting $8.86
domain hosting $8.85
linux hosting $8.83
buy domain $8.82
affiliate programs $8.77
credit card processing $8.72
website domain names $8.71
cheap health insurance $8.62
online nursing degree $8.59
web hosting $8.59
one credit card $8.59
money exchange rates $8.58
credit counselors $8.52
debt $8.48
alcohol rehab $8.44
online holdem $8.44
lennox china $8.39
debt management $8.38
"web position gold" $8.37
domain name transfer $8.35
best web hosts $8.32
web site register $8.29
domain registry $8.26
voip testing $8.22
jesus is my homeboy $8.21
microsoft certification $8.20
voip phone system $8.19
consolidating $8.18
per click $8.18
lung cancer treatment $8.17
web host rating $8.16
domain registrars $8.16
cheap domain hosting $8.15
register web address $8.15
credit card applications $8.14
survey software $8.12
register a web site $8.12
cheap insurance $8.07
blue cross and blue shield $8.07
mba degree online $8.06
online psychology degree $8.01
domain name hosting $8.01
her first lesbian sex $8.01
att cellular phone $7.94
make extra money $7.91
make money fast and easy $7.85
lenox china $7.84
low interest credit $7.83
lingo voip $7.81
hosting $7.75
domain name registrar $7.75
cheap domain name $7.72
crm software $7.71
uk hosting $7.71
student credit $7.70
sponsored links $7.70
credit card services $7.66
consumer credit $7.64
master degree on line $7.64
web servers $7.61
addwords $7.60
cheap domain registrations $7.58
hard drive recovery $7.57
att wireless ringtone $7.54
register a website $7.51
nursing pda software $7.51
reseller hosting $7.50
friend finder $7.50
eharmony $7.50
low interest $7.47
make money quick $7.44
credit application $7.43
fast loans $7.42
vonage voip $7.38
secured $7.37
visa cards $7.36
scheduling software $7.35
car hire usa $7.29
[lung cancer] $7.29
broadband phone $7.27
gas prices compare $7.26
alcohol treatment center $7.23
online master degree $7.20
at t cellular phone $7.20
adult friend $7.19
payday loans $7.17
online credit report $7.15
on line degree $7.14
ways to make money fast $7.13
domain registration uk $7.13
mlm software $7.12
online movie rental $7.12
web domain $7.10
yahoo domain $7.08
fico score $7.07
blue cross blue shield $7.06
cheap website hosting $7.03
adult finder $7.02
loans $6.99
christian book store $6.98
car hire malaga airport spain $6.97
turbo tax $6.96
credit card application $6.96
hosting service $6.96
review web host $6.93
web name registration $6.91
low cost hosting $6.89
register a url $6.87
hosting services $6.87
voip service $6.87
satellite phone rental $6.87
satellite phone $6.84
hosting providers $6.81
free credit check $6.76
credit card offers $6.75
homeowner's $6.75
voip equipment $6.75
dollar rental $6.74
hard money lenders $6.70
insurances $6.70
christian book distributor $6.67
website hosting $6.63
domain $6.62
integon $6.62
student loan $6.62
criminal justice degree $6.62
asp hosting $6.61
citifinancial $6.60
"sponsored links" $6.58
interest credit cards $6.58
uk web hosting $6.57
money at home $6.57
domain name uk $6.56
low interest credit cards $6.55
register website $6.55
cccs $6.55
best web host $6.55
bradstreet $6.54
domain name canada $6.51
movie rental $6.51
one credit $6.50
poor credit $6.47
credit report com $6.40
e commerce hosting $6.39
credit card rates $6.39
pay per click $6.38
credit cards $6.34
cash loans $6.33
making money on the internet $6.32
pda medical software $6.31
degree at home $6.25
bachelor degree on line $6.25
email marketing $6.25
bmg music $6.24
credit card $6.22
cingular cellular phone $6.22
make money from home $6.21
high speed satellite internet $6.21
internet domain name $6.17
visa credit card $6.16
alcohol abuse treatment $6.16
citibank credit $6.14
make money at home $6.12
interest credit $6.10
associate degree online $6.09
buy contacts $6.09
video conferencing $6.08
casinos online $6.08
microsoft training $6.07
carinsurance $6.07
register url $6.04
christian book $6.03
netquote $6.01
money making ideas $6.00
medical software $5.98
dept help $5.98
domain registrar $5.97
discount domain $5.96
cheap car hire $5.94
credit loans $5.92
adultfriendfinder $5.90
online law degree $5.89
payroll software $5.88
business credit $5.87
mysql hosting $5.86
domain registration hosting $5.85
home voip $5.83
best credit card $5.82
residential voip $5.80
online credit $5.79
oceania cruises $5.79
network monitoring software $5.73
car hire majorca $5.72
web domain name $5.71
money lenders $5.71
adult friend finder com $5.70
web domain names $5.69
online computer science degree $5.64
internet domain $5.63
legal credit repair $5.62
accounting degree $5.62
online business degree $5.59
insurace $5.58
make money fast $5.57
best credit cards $5.56
cash advance $5.56
domeinnaam $5.54
University Degrees Online $5.54
Point of sale software $5.53
unicare $5.53
co uk domains $5.53
internet phone $5.53
lifemates $5.52
voip training $5.52
dell computer $5.50
legal advice $5.50
education degree $5.49
people with bad credit $5.48
pos software $5.47
visa credit $5.46
quick book $5.46
how to make money $5.46
business voip $5.45
hard money $5.45
voip services $5.44
web address registration $5.43
money loans $5.43
gateway computer $5.42
computer phone system $5.41
milf hunter $5.40
cheap internet service $5.39
travel insurance $5.39
web hostings $5.37
flight insurance $5.36
computer leasing $5.36
make money on the internet $5.35
car loans $5.34
personal domain name $5.31
online teaching degree $5.29
ecommerce software $5.28
legal malpractice $5.26
best credit $5.24
no limit texas hold em $5.23
construction estimating software $5.23
blue cross blue shield of $5.23
multiple domain web hosting $5.22
bad credit $5.21
china visa $5.21
money market accounts $5.21
pacificare $5.20
online credit card $5.20
discover credit card $5.20
game rental video $5.19
budget car rental $5.18
money fast $5.18
auto loans $5.17
lending $5.16
caribbean cruise $5.16
web page host $5.15
domain parking $5.15
voip system $5.15
wireless security camera $5.15
car hire $5.14
online approval $5.14
lung cancer picture $5.13
cheap ticket .com $5.11
litigation support $5.09
alcohol rehabilitation $5.09
car hire ireland $5.08
email domain hosting $5.07
google news $5.06
drug and alcohol treatment $5.06
herpes simplex virus $5.05
simon g jewelry $5.04
hair clinic $5.02
who is lookup $5.02
voip service provider $5.02
lenders $5.02
homeowners $5.02
adword $5.02
dvd rental $4.98
domain transfer $4.98
unsurance $4.97
homeowner $4.97
web hosts $4.96
adsense $4.95
unlimited web hosting $4.95
merchant accounts $4.95
web host $4.95
discover credit $4.95
web hosters $4.94
t mobile cellular phone $4.93
tax software $4.93
colon cancer $4.91
bachelor degree online $4.90
online college degree $4.90
accounting software $4.89
cheap car $4.89
play free online poker $4.88
voip pbx $4.88
american express credit $4.88
juke box hire $4.88
international voip $4.88
money from home $4.88
pay for click $4.88
car hire tenerife $4.87
car hire italy $4.87
baby gift basket $4.85
money market rates $4.84
it support $4.84
voip phone $4.82
free credit reports $4.81
phone system $4.80
credit report $4.80
shopping cart software $4.79
medigap $4.79
rodeway $4.79
cingular cell phone $4.78
webroot software $4.78
free domain name registration $4.77
internet domain name registration $4.77
money rates $4.76
dinar $4.76
domain name for sale $4.75
budget truck rental $4.73
money on the internet $4.72
healthnet $4.72
college credit $4.69
ematch $4.68
money market account $4.67
credit reports $4.66
how to get a web site $4.66
amazon cruise $4.65
simon g $4.64
pay per click search engines $4.64
domain sale $4.63
access cheap internet $4.63
best webhosting $4.63
fico $4.62
domainnames $4.61
datingagency $4.60
distance degree $4.58
dell technical support $4.56
unlimited hosting $4.56
plastic surgery $4.56
no money down $4.56
preapproved $4.56
american satellite $4.55
marketing software $4.54
adworks $4.54
pre approved $4.53
bad debt $4.51
herpes virus $4.50
cheap internet $4.49
voip provider $4.48
instant credit $4.48
celebrity cruise line $4.48
antarctic cruise $4.47
credit services $4.47
johannesburg car hire $4.47
pda medical $4.47
car hire south africa $4.46
make a web site $4.46
fen-phen $4.46
bluecross $4.46
academic software $4.44
satellite internet service $4.43
verizon voip $4.42
earn money online $4.42
for credit $4.42
charge cards $4.41
creditcards $4.40
multiple domain hosting $4.40
consumerinfo $4.39
bankruptcy $4.38
yellow page advertising $4.38
markel $4.38
att cell phone $4.37
credit scores $4.36
cheap domain web hosting $4.36
cancer treatment $4.35
orlando vacation rental $4.35
menorca car hire $4.34
voip company $4.32
cingular phone $4.31
interior design degree $4.31
affiliate $4.31
special education degree $4.28
radisson cruise $4.27
top hosts $4.27
voip $4.25
direct satellite $4.23
credit checks $4.21
ipod skin $4.21
ways to make money $4.20
fico scores $4.20
project management software $4.20
holiday car hire $4.19
site host $4.19
compare voip $4.18
quick money $4.17
us cellular phone service $4.17
graphic design degree $4.17
car hire cape town $4.15
credit history $4.15
hospital bed $4.14
car hire dublin $4.14
car rental south africa $4.13
psychology degree $4.11
cheap ink cartridge $4.09
personal domain $4.09
yahoo domain name $4.09
freecreditreport $4.09
credit reporting agency $4.09
voip call $4.09
online degree program $4.09
website hosting services $4.08
charter flight $4.06
aspen vacation rental $4.05
alternative cancer treatment $4.05
broadband satellite $4.04
software support $4.04
microsoft office software $4.03
engineering degree online $4.03
gift card $4.03
nursing degree $4.02
alcohol treatment $4.02
western union money transfer $4.01
webhosting $4.00
computer support $4.00
micr font $4.00
free credit $3.99
hosting php mysql $3.98
legal name change $3.98
texas hold em $3.97
car hire uk $3.97
express credit $3.97
making money $3.97
hiscox $3.95
voip softswitch $3.95
credit check $3.94
webhost $3.94
phone service $3.93
western union money $3.93
unsecured credit $3.92
avis car hire $3.92
security software $3.92
money exchange $3.92
no credit check $3.92
health administration degree $3.92
personal credit $3.91
free domain hosting $3.90
workmans $3.90
service credit $3.90
voip rate $3.90
personals $3.90
credit $3.89
uk voip $3.89
website host $3.88
matchfinder $3.87
credit score $3.87
trade show exhibit rental $3.86
hosting provider $3.85
secured credit cards $3.85
money exchange rate $3.85
free credit report $3.83
earn money $3.83
rapid satellite $3.81
virus $3.80
rental car in new zealand $3.80
cruise holidays $3.79
mortgage marketing $3.78
voip reseller $3.78
bermuda cruise $3.76
maintenance software $3.76
ip address lookup $3.76
credit reporting agencies $3.75
union money $3.75
online graduate degree $3.75
sirius satellite radio stock $3.74
hp computer $3.74
nextel cellular phone $3.74
marketing consultant $3.73
fair isaacs $3.73
portugal car hire $3.73
cialis $3.73
degree in accounting $3.73
degree program $3.72
fastmoney $3.71
car hire new zealand $3.71
plastic surgery clinic $3.71
projection television $3.71
mini ipod skin $3.70
real estate software $3.70
web position gold $3.70
cellular phone rental $3.69
video rental $3.68
international phone card $3.68
durban car hire $3.67
camera cellular phone $3.67
holiday gift basket $3.67
lake tahoe vacation rental $3.65
computer backup $3.65
free web domain $3.64
doctorate degree $3.63
direct email marketing $3.63
hard money lender $3.62
computer consultant $3.61
build web site $3.60
antarctica cruise $3.60
satellite voip $3.59
money market $3.59
credit card payment $3.58
email software $3.57
email to sms $3.55
car hire scotland $3.54
beacon score $3.54
jew $3.53
software testing $3.53
go phone $3.52
search engine registration $3.51
lake tahoe rental $3.51
web page making $3.50
international cell phone $3.49
distance learning degree $3.49
free copy of credit report $3.48
cheap auto insurance quote $3.48
cheap car rental $3.47
web site domain $3.46
online dvd rental $3.46
compare car prices $3.45
web space provider $3.45
secured credit card $3.44
cellular phone deal $3.44
credit reporting $3.44
euro money $3.44
legal software $3.43
orlando vacation home rental $3.43
dairyland $3.43
nile cruises $3.43
pre paid legal $3.41
photo editor software $3.40
broadband satellite internet $3.40
cheap check $3.39
crystal cruise $3.39
prepaid cellular phone service $3.39
alamo car hire $3.39
alamo car rental $3.38
alaska travel $3.38
my credit $3.38
erp software $3.38
recumbent exercise bike $3.38
making money online $3.37
voip wholesale $3.37
car hire port elizabeth $3.37
marketing list $3.36
dell ipod $3.36
software development $3.36
car hire heathrow $3.36
karas adult playground $3.36
money now $3.36
associate degree $3.36
equifax credit $3.35
mobile cellular phone $3.35
renters $3.35
microsoft crm $3.35
bulk email marketing $3.34
princess cruises $3.34
free domain registration $3.34
domain host $3.34
one way car rental $3.33
california car rental $3.33
comic book subscription $3.32
renter's $3.31
play poker online $3.31
cheap long distance $3.31
voip billing software $3.29
cellular phone new york $3.29
champagne gift $3.28
teaching degree $3.28
lymph node cancer $3.28
money loan $3.27
extra money $3.27
american credit $3.27
gatwick car hire $3.27
online university degree $3.26
music club $3.26
las vegas car rental $3.26
algarve car hire $3.25
credit agency $3.24
london limousine hire $3.24
entertainment book $3.24
wine gift $3.23
equifax com $3.23
equifax $3.23
dateing $3.23
cheap prescription drugs $3.23
yahoo chat com $3.23
online college degree program $3.23
new cellular phone $3.22
cheap viagra $3.22
dell support $3.22
support our troops magnet $3.22
tahoe vacation rental $3.22
camper van hire $3.22
alltel cellular phone $3.21
pigeon forge cabin rental $3.21
master degree $3.21
europe cruise $3.20
london casino $3.20
palm pilot pda $3.19
nom de domain $3.19
apr's $3.19
car hire france $3.19
good credit $3.19
car hire london $3.18
moving truck rental $3.17
borrow money $3.17
insurers $3.17
detox from alcohol $3.16
satellite service $3.15
annuity $3.15
intranet software $3.15
texas hold em poker online $3.14
bank credit card $3.13
local phone service $3.13
att ringtone $3.13
car rental $3.12
hertz rental $3.12
telephony voip $3.11
money market funds $3.11
legal music download $3.11
mastercard $3.11
florida rental $3.10
phone equipment $3.10
mediterranean cruise $3.10
bachelor degree $3.10
buy a degree $3.09
mba degree $3.09
fruit gift $3.09
abortion clinic $3.08
hard money loan $3.08
fax software $3.08
windstar cruises $3.08
arizona child support $3.08
gateway support $3.07
flowers $3.07
prepaid cell phone $3.07
search engine submissions $3.07
car rental company $3.07
car hire australia $3.06
amex $3.06
colorectal cancer $3.06
hawaiian cruise $3.06
comfort $3.05
pda watch $3.05
apply online $3.04
spam $3.04
voice over ip voip $3.04
trw $3.04
international cellular phone $3.04
car hire manchester $3.04
las vegas cheap hotel $3.03
hawaii cruise $3.03
long distance phone $3.02
free online dating $3.02
jesus t shirt $3.02
poker.com $3.02
secured credit $3.02
quicken $3.01
legal music downloads $3.00
voip billing $3.00
copy of birth certificate $3.00
wireless voip $2.99
affiliates $2.98
budget $2.97
send money to india $2.97
job $2.97
database software $2.96
personalized gift $2.96
cruise line $2.96
meet people online $2.96
wine gift basket $2.96
van rental $2.95
italian villa rental $2.95
voip software $2.95
pre paid cellular phone $2.95
distance learning degree program $2.94
free credit card $2.94
satellite dsl $2.94
gatlinburg cabin rental $2.93
cancer insurance $2.93
alcohol detoxification $2.93
free web hosting $2.93
money market fund $2.93
search engine submission $2.93
host review $2.92
yellow diamonds $2.91
degree $2.91
visa master card $2.90
long distance phone service $2.90
liquidators $2.89
easy money $2.89
annuities $2.89
compare cellular phone $2.89
bose ipod speaker $2.89
myfico $2.88
luxury car rental $2.88
copy of tax return $2.87
cr�dit $2.87
luxury cruise $2.87
latinas $2.87
microsoft upgrade $2.87
nom domain $2.86
anti anxiety drugs $2.86
credit bureau $2.86
baby gift $2.86
computer repair $2.85
live support $2.85
money lender $2.85
apr $2.85
tv satellite dish $2.84
alaska cruise $2.84
contractor's $2.84
hire $2.84
voip adapter $2.83
gift basket $2.83
t mobile phone $2.82
free web hosting domain name $2.81
satellite tv receiver $2.81
alcohol detox $2.81
flat screen television $2.81
legal question $2.81
free pop up blocker $2.80
prepaid legal services $2.80
charge offs $2.80
rectal cancer $2.80
mbna credit $2.80
cheap software $2.79
voip ip telephony $2.79
honeymoon cruises $2.79
cheap cruise $2.79
sprint cellular phone $2.78
cell phone deal $2.78
rachat $2.78
online casino $2.77
blackberry pda $2.77
mbna credit card $2.76
prepaid legal $2.76
adventure travel $2.76
debts $2.76
voip technology $2.76
free web page $2.75
hypoth�caire $2.75
digital photo software $2.75
ie domain $2.75
credit rating $2.75
thrifty car rental $2.74
sell domain name $2.73
mad tv.com $2.73
free domain name $2.73
delta airline flight $2.73
eminis $2.73
credit ratings $2.73
adult add $2.72
master degree program $2.72
pengar $2.71
money for college $2.71
voip server $2.71
family cruises $2.71
costa rica travel $2.71
satellite tv dish network $2.71
prepaid phone card $2.71
dating $2.70
england car rental $2.70
european cruise $2.70
adult personals $2.70
flight suit $2.69
discount software $2.69
hobby zone $2.69
support our troops ribbon $2.69
used computer hardware $2.69
phone company $2.68
unitrin $2.68
cellular phone family plan $2.68
voip hardware $2.67
matchmakers $2.67
free email $2.67
website builder $2.66
panama canal cruise $2.66
datind $2.66
computer training $2.66
discount car rental $2.66
ergistration $2.66
photo software $2.65
compare prices internet $2.64
malta car hire $2.64
money rate $2.64
verizon cellular phone $2.64
registering $2.64
cheap laptop $2.63
event marketing $2.63
engineering degree $2.63
voip solution $2.63
costa cruises $2.63
t mobile cell phone $2.62
truck rental $2.62
java software $2.61
book marketing $2.61
domain auction $2.61
cheap airfare $2.61
wedding cruises $2.61
credit information $2.60
credit monitor $2.59
china replacement $2.59
x box game system $2.59
university degrees $2.58
panama cruise $2.58
cruise deal $2.58
match $2.58
rental $2.58
long island rental $2.57
brisbane car hire $2.57
hospital medical equipment $2.57
adult web site $2.57
video conference $2.57
email hosts $2.56
egold $2.56
hospital scrubs $2.56
free dating $2.56
hertz car hire $2.55
cheap hotel in new york $2.55
trucks $2.55
cheap flower $2.55
insurance marketing $2.55
financing $2.54
food gift $2.54
discount cruises $2.54
direct mail marketing $2.54
cheap inkjet cartridge $2.54
yosemite vacation rental $2.54
legal research $2.53
asterisk voip $2.53
e gold $2.53
equipment rental $2.53
adult dvd rental $2.53
college degree $2.52
van hire $2.52
business degree $2.52
computer equipment $2.52
used cellular phone $2.51
united rental $2.51
voip information $2.51
satellite internet $2.51
san diego vacation rental $2.51
bus rental $2.50
all inclusive cruises $2.49
cellular phone store $2.49
it degree $2.49

2007年5月26日星期六

国外空间虚拟主机基础

一. 国外主机有什么好处优点?
购买国外主机的最主要原因就是便宜经济,比如一个20G容量的空间,在国内每年可能需要5000RMB(相当于700美元),但在美国一年也就是45美元(360RMB),价格差距12倍左右。便宜的原因主要是国外主机工业尤其是美国主机工业已达到规模经济的时期形成大规模产业化,竞争激烈的良性循环市场,运行成本已经很低,而国内的则多是个人或者小公司单独运作,成本高风险大稳定性没有保证,对于初级用户不太适合。

二. 购买国外主机如何付款,多长时间能开通?
购买国外主机需要有一定的英文基础,因为操作界面,和支付与技术支持都是使用英文,Cpanel是用户最喜爱的主流操作面板,虽然有繁体中文版,但英文版没多少单词,稍微有一点英文基础和Web管理经验就可以操作。国外主机的付款都以美元支付,一般都接受VISA和MASTER国际信用卡、Paypal(Ebay旗下的国际最大的在线支付系统)2CO等支付系统,所以一张国际信用卡是必不可少的,国内银行发放的信用卡外币卡,凡是带有Visa,MasterCard标志字样的都可以,当然Paypal(贝宝还不支持外部流通)也可以,不过paypal你也先需要有国际信用卡往自己的Paypal 里边转些美金或者欧元,然后再支付。有了国际信用卡一般从主机的选择、付款到开通快的几分钟,最慢也不超过24小时,非常便捷方便。

三. 购买国外虚拟主机需要考虑的要素?
1. IP地址能否访问到?

首先,如果你的网站用户将来面向的是国内,或者你位于国内的话,必须要考虑的问题就是这家主机上的IP地址在国内是否可以顺利访问到,这一点是由于众所周知的防火墙原因。如果你买的访问不到,还要退款和搬家就比较麻烦,比如PowWeb这家在国外是很不错的主机商,但IP在国内访问不到,国内用户就很少购买了。解决这个问题的另一个有效途径就是给你的空间购买独立的IP地址,这样就不会受到其他做黄色成人反动网站站长的影响了。下面将要介绍的十家都是经过测试或使用过在国内可以顺利快速访问的美国虚拟主机。

2. 主机的硬件设施情况

虚拟主机商的机房 数据中心(data center) 整体对外专线的带宽也是一个重要衡量指标,带宽越大网站联线的速度也就越快,一般中国大陆用户连接美国主机的速度主要取决于机房的位置,位于美国西海岸的主机对于中国大陆访问者和管理员会有比较好的速度,因为电信和网通的合作伙伴AT&T和贝尔的线路从西岸入口国际互联网。

3. 主机上架设的网站有多少?

一个主机上面架设的网站数量越多,资源占用越大,访问速度就会变得缓慢。在虚拟主机阶段一般主机商会对网站总数有一个控制或者限制CPU使用时间,大流量的网站通常会被升级或转移到高级的服务器上,因此,选择一家有信誉的虚拟主机商了是非常必要的。


四. 国外主机在国内的访问速度会不会慢?
中国以及其他的国家对美国的带宽还是相对比较充足的,忽略了防火墙限速和过滤的因素外,访问速度的差异已经无可察觉。可以试验一下,你访问苹果、微软、google等网站 是否觉得速度慢呢?甚至包括您正在浏览我们 国外虚拟主机评测网(我们的主机商是 Bluehost )的时候,您是否有发现与国内的网站速度有很大差别呢?

海外空间选购小tips

我公司专门做海外域名、主机、服务器租用托管的,也许会有很多经验&体会。

1、国内的很多网站是asp写的,而且很多是下载的免费asp程序修改的,包括网站建设公司给做的程序,这类的程序设计非常不规范,在英文的OS环境下会有很多问题,需要在服务器上做很多调试。老外提供的服务器不一定好用。

2、国内的网站程序需要很多组建支持,如什么动易啊、jmail、fso啊,很多,老外的服务器不会有大陆的组建的,毕竟不熟悉大陆市场。

3、老外的服务器由于很多主机共享1个IP,开了很多空间,而不加内容限制和审核,导致一个网站出问题,全部的网站会被我们伟大的党给封掉,在我们伟大的祖国是无法打开浏览的了。

我使用国外空间Dreamhost主机的一点体会


算起来,使用国外虚拟主机也有一段时间了。

当初为什么要选国外的虚拟主机呢,主要是出于以下几个方面考虑的:

一、省钱。

我有几个网站要放置,询问了国内几家空间提供商都不能在同一空间上放置几个域名。国内太便宜的我又不太放心,我向来相信一分钱一分货的道理。而国外的不同,一般来说都可以绑定几个域名的,虽然贵了些,但分下来到每个域名上的钱也不算太多,加上我答应送朋友几个的。便考虑买国外的了。

二、访问速度

之前公司的网站,我在论坛上发过贴,请国外的朋友测试,普通反应速度太慢,当然这也和网页结构设置内容相关,但国个的一般空间打开速度慢是不争的事实。
当然也找了几个比较可以的,比如上海电信的,在MSN让客人测试,速度也还不错。但问题是如第一条,不同放多个域名,只得放弃。
刚好很早的时候,几个博友们就用了Dreamhost 的空间,我也找客人测试了,无论是日本、美国、欧洲还是埃及,普通速度在1-5秒之内。这个速度就不错了。

三、不用备案,有利于SEO
备案等于"被按",这是不争的事实,多一事不如少一事。向来搜索引擎对于国外空间上的内容都比较重视一些。不说别的,像国内中言语站点PR最高的亦不过7而已。

为什么选Dreamhost的呢?

最主要的看重一点,可以绑定无限域名,无限邮箱,空间容量(20G)与流量(1TB)不错。许多博友都用这个,加上从5月底DH取消了CPU时间限制,便坚定了我选择DH。


使用的一些心得


实话说,DH还是很不错的,就是刚开始使用时有点麻烦,因为它的控制面板是全英文的,而且不像国内的空间一样,你只要一个FTP用户名与密码就可以了。DH不同,它给予用户最大的权限,体会DIY的乐趣。所有功能都是自己设置的。对于大虾们来说,这没什么问题,但对于像我一样初次使用国外空间的人来说,还是有些的,特别是我对空间的管理并不熟悉。

首先是它的控制面板里的那些大大小小的选项,有些属于专业词语,不明其意。我后来是找到了"天罗论坛"看里面中文的说明方慢慢熟过来的。

但明白意思了并不代表你就会用了。前面说了,它是属于DIY型的,全部自己设定,从域名解析、邮箱设置、数据库管理、还有用户等。一开始,我分不太清 WebUser 与 Sconp 之间的区别。到现在,传说中DH最有名的Shell功能我还是一个不用会,除了它的那个可以上传打包文件再解压功能外。

光是那个域名解析就有些头痛了。为什么呢,因为我一般都是用它提供的邮箱,其实得把域名的 ns 用DH的才行,可我一开始并不知道。所以,在设定邮箱的时候,我等了几天,还不见邮箱生效,最后还是上论坛找到答案的。

关于邮箱还想讲一点,DH支持最新的一个ICMP功能,比传统的pop和Smtp强大方便些,但我一直用Foxmail收发邮件,这个功能一直没用上。说起Foxmail的设置,也是花了一定时间的,我按要求设了,但就是不能发邮件。最后只有问客服才解了问题,原来它得用485的端口。

对于动态语言或数据库,DH是使用PHP+MySQL双加合的方式进行的。一直以来我都不知道要如何使用MySQL,因为我的网站是静态语言做的,用不上这个。后来当我决定搭建一个blog之时,方才发现MySQL的用处,之前自己的设定又不合理了,只得再重新来过 :-)

如果决定购买国外空间的话,英文还真得有一点点儿。什么时候会用到呢,和客服沟通的时候你得讲英文吧。感觉自己英文不够好,有时有点言不达意的感觉,一个问题得复复几次才可以。不过也是自己多学习吧。

其实什么东西慢慢用着也就习惯了,就像那英文的后台一样。还有呢,用这个DH空间,也学会了不少,比方说有了问题,你得自己去它官方的站点去看,全是英文呢。现在现回过头去看,觉得当初那段时间也是值得的。下午的时候,帮朋友域名解析、划分空间、绑定空间、设定邮箱、并搭建了一个WordPress 的Blog,只用了不到一小时(主要时间在手动安装blog上)比起以前进步多了。

使用的效果

可能大家其实最关心的是这个问题,用了效果如何呢?

我的网站 http://www.metal-domes.com为例, 内容约是6月20日左右上传的,期间有一次Down了,后来得知是DH的configuraion 出了问题,其他期间运行良好,没有反应打不开的现象。我也使用了一个网站检测软件,时刻关注自己网站,都是比较正常的。国外打开速度不错。大家可以测试下你本地的链接速度。

邮箱也挺不错,期间也有一次无法使用Foxmail收发,但可以用 webmail方式,也不知道是什么问题。它可以手动设定关键词过滤垃圾邮箱。
值得一提的是DH的快速安装Blog,面前有两个主流博客 WP与BL。如果你就是用来写博客,那真是首选了。我选用的是 WP的,欢迎大家前往我的Blog拍砖。http://blog.metal-domes.com

不过,由于空间在国外,上传速度不是很快,约20K/S左右。如果一个大容量的网站估计需要一些时间上传哟。但稳定性很好,不会突然掉掉。

最后一个问题,国外的空间会不会出现在国内无法访问的问题呢?

应当是有可能存在的,说不定哪天就被GFW给干掉了。但我不是很担心,国内找不开不要紧,只要国外能打开就可以了,反正我不做内单:-) 当然,你选择合租伙伴的时候要注意,如果他/她净放哪些东东,那就保不准那天不但国内打不开,国外也不行呢。虽然国外几乎没有什么要求,但还是不要太出格的为好。

好了,先就写这么多。关于DH的使用,大家可以一起来交流。另外,如有想合租DH空间的,欢迎发信息给我。具体详见http://bigmelon.blog.hexun.com/4295614_d.html
目前有这几个网站是放在我这空间上的
http://www.metal-dome.biz/
http://www.lt-ceramic.com/
http://www.sexy-lingerie.cn/
http://www.kingma-vehicle.com/
http://www.fast-hardware.com
http://www.pfr-furniture.com/

希望大家能够选到一款适合你自己的空间!

国外域名,空间购买经验及省钱技巧

"国外域名,空间购买经验及省钱技巧"评论版

网络上已有不少这样的文章,在这里我只想说点实际的经验。

先说一下我的情况,我在IPower和GoDaddy各注册了一个域名,然后又在bluehost上买了个空间。我想在三大服务商都有交易,这样的经验也算是有代表性吧。
评:这三大是不错的选择

先说域名,其实域名的费用和空间比起来,没有多少钱,最便宜的是IPower,真是白菜价格,2.95美元一年,不过也只有第一年这样,两年就要 11美金了,呵呵,不过买了它域名的控制并不是很方便,改变Name Server就不那么好操作了,它的这方面控制面板有点像国内的主机头,设置较复杂,不过还好,你可以请他们的客服帮忙设置你要的Name Server,如果你不想用他们的空间的话。

可能有些人还需要点基本知识,以下是些概念:
Name server就是负责解析你域名的服务器,一般要用空间商提供的Name Server才能把你的域名指向你买的空间。如果你在某个地方注册了个域名的话,一般默认的Name server就是在你的域名注册商那儿,你无需设置和改变他,如果你想在把网站放到其它空间商,就要改变Name Server,在Godaddy这方面是可以自己完成的,而且很快。在IPower,你最好还是让他们的客服帮你设置,反正我就是这样做的,因为他们的那 个主机头有点复杂,好像是不可以自己随便设置的。

如果你想在你的空间商那儿续费域名,那就要把域名transfer过去,假定你已经把name server改成你的新空间商的了,还需要unlock你的域名,接着在你新的空间商的控制面板上设置transfer。不同的SP提供的服务和价格是不 同的,对于bluehost,你已经注册的域名在有效期内是transfer是免费的,续费时则每年是统一价格10米。其实这点钱对买了空间的人来说算不了什么了。你也可以每年在原注册地点续费,反正只要 Name server是对的,网站的访问就没问题。

现在说说Godaddy的情况,Godaddy要是独立买个域名的话,定单最后是9.2美金,要是你在那儿买空间的话,域名就也是白菜价了 1.95美金,不过Godaddy的空间只支持一个域名,我询问过他们的客服,他们说linux版的Deluxe plan也支持多个域名,不过我没看到这方面的详细说明。另外,要是只买域名,会送一个5G的免费空间,一切功能一样,只是页面上方会有广告。
评:Godaddy还有优惠券,可以搜索"Godaddy Coupon"就能找到最新的优惠券,订单最后的金额会小于9.2美金。如果除域名外,还购买Godday的其他产品比如空间,邮箱等的话,域名是1.99美元。

下面再说说bluehost, bluehost的特点是你可以在买之前就看到控制面板的演示,所有的设置是透明的。bluehost实行统一价,一次购买两年的话每个月只需6.95美 元并送个域名,有15G的空间,最主要的特点是它支持一个空间放多个域名,也就是add-on domain的功能。买了空间就送一个域名,如果你想多加一个域名的话,可以控制面板里购买,每年10美元,当然也可以在其它地方如IPower购买,如果你不嫌两个订单麻烦的话。

下面说说省钱之道,如果你只有一个域名,只要一个空间的话,那么Godaddy是你不二的选择,没什么好说的,国内访问最快的就是它。如果你是有多个域名,想共用一个主机空间的话,bluehost就是很好的选择,虽然Ipower也支持多域名了,但我没试过,而且一分钱一分货, IPower给我的感觉就是便宜,设置不方便。bluehost没什么隐藏费用,所有功能在主页的demo上就可以全部看到,所以很方便。
评:Godaddy的确是不错的选择,但是其不足之处是毕竟是做域名注册发展起来的,虚拟主机的业务并不擅长。比如他的虚拟主机的控制面板不太好用,预装的软件很少,相关的客户支持能力不强。Bluehost就很好了,真是英雄所见略同。

下面总结一下如何省钱,主要是针对那些想多个网站共用一个空间的朋友:
域名呢,如果你真的很介意六、七美元的差价的话,就在IPower注册好了,注册那么5个,也就15美元一年,空间就用bluehost,它的add-on 主机在业界也算是做得最响的一个,6.95美元每个月,送一个域名。这样你就有六个域名了。买了空间后给IPower的客服发封Email告诉他们你想把 Name Server换成bluehost的,bluehost的控制面板会告诉你如何设置。这样你就可以用bluehost主机空间做六个网站。如果你用 paypal支付的话,六个网站两年的全部费用也就200美元左右,相当于每个网站每年就16美元左右,也就是每个网站的费用每年不到130块人民币,而 空间15G分给六个域名,每个站点也有2.5G,远大于国内的空间商水准。

对于多域名主机还可以选择Dreamhost,据说支持无限多个域名,这个没用过,不好评论,其实对一般人而言,支持6个域名的空间也就够了,除非你想用国外主机当个空间提供商。

十大国外虚拟主机大比拼



这十大虚拟主机排名是从美国成百上千的虚拟主机商里面所测试和总结出来的,他们都是运作多年的很有规模的顶尖公司或者上市公司。 我们评测充分考虑到公司信誉,基础设备,虚拟主机的可靠性,价格,用户反馈,客户支持等综合因素。下表只列出了一些主要的直观的易比较的项目。不含以下信息:

1. 难以量化比较的信息,如客户服务的效率与质量等。
2. 不是决定性的信息,如对MySql的支持,所有的服务商都能满足常见的需求(比如有的是无限个,有的是50或100),差别并不大。再如Email的数量往往也足够满足一般的需求。

相关信息请到国外虚拟主机排名网站或虚拟主机商的网站查询。请根据您的需求来选择合适的服务商,我们保证这十大虚拟主机商必有一款适合您。

建议:如果您的英语很好的话,可以访问WebHosting Talk。这应该是目前最棒最全面的虚拟主机论坛,只要您查询您感兴趣的服务商的名字,就会看到很多相关的评论,对您最终的决策很有参考价值。


排名  提供商                价格        空间             带宽              得分         
1        BlueHost              $6.95      10000 MB      250 GB            94%
2        IX Web Hosting   $3.95       10000 MB     100 GB            91%
3        StartLogic            $4.95       5000 MB       100 GB            89%  
4        Lunarpages         $6.95        5000 MB      400 GB             89%  
5        Micfo Hosting       $4.98       5000 MB      250 GB             87%
6        HostGator            $6.95       3500 MB        50 GB             85%
7        midPhase             $7.95       12000 MB       无限              85%  
8        iPowerWeb          $7.95       10000 MB      250 GB            84%
9        PowWeb              $5.18*      12000 MB     300 GB            83%
10      Globat                  $7.95       10000MB       300GB            80%