<?xml version="1.0" encoding="UTF-8"?>
  <feed xmlns="http://www.w3.org/2005/Atom">
  <title type="html"><![CDATA[番茄炒蛋'S BLOG]]></title>
  <subtitle type="html"><![CDATA[留着一份兴趣，过着一种生活！]]></subtitle>
  <id>http://www.tomatoegg.com/</id>
  <link rel="alternate" type="text/html" href="http://www.tomatoegg.com/" /> 
  <link rel="self" type="application/atom+xml" href="http://www.tomatoegg.com/atom.asp" /> 
  <generator uri="http://www.pjhome.net/" version="2.8">PJBlog3</generator> 
  <updated>2010-04-13T17:05:10+08:00</updated>

  <entry>
	  <title type="html"><![CDATA[maxthon 收藏导入irefox]]></title>
	  <author>
		 <name>番茄炒蛋</name>
		 <uri>http://www.tomatoegg.com/</uri>
		 <email>yeskeep@gmail.com</email>
	  </author>
	  <category term="" scheme="http://www.tomatoegg.com/default.asp?cateID=6" label="电脑网络" /> 
	  <updated>2010-04-13T17:05:10+08:00</updated>
	  <published>2010-04-13T17:05:10+08:00</published>
		  <summary type="html"><![CDATA[安装了firefox之后发现他的收藏服务好像很慢啊？不知道是什么原因，我用的是3.01版本。在管理标签的时候还只能导入ie的，于是从maxthon导出收藏到ie，又从firefox导入ie收藏，结果竟然只有几个链接被导入，大部分都不存在，无奈。<br/><br/>找了半天在firefox里有个标签管理的，里面倒是可以导入htm格式的东西，于是又从maxtion到处htm格式的收藏，再导入，乱码！！！<br/><br/>上网查找才知道，原来firefox导入htm格式的收藏只能识别&nbsp;&nbsp;utf-8&nbsp;&nbsp;编码格式的，而遨游导出的收藏是&nbsp;&nbsp;GB2312&nbsp;&nbsp;编码的，于是用记事本打开后重新另存为&nbsp;&nbsp;utf-8&nbsp;&nbsp;格式后重新导入，终于出现中文了。<br/><br/>firefox标签里面删除文件夹还真是慢啊，删除几个文件夹的时候竟然卡死。]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.tomatoegg.com/article/1569.htm" /> 
	  <id>http://www.tomatoegg.com/default.asp?id=1569</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[你可以把Firefox设置为默认浏览器。让qq空间在firefox中打开]]></title>
	  <author>
		 <name>番茄炒蛋</name>
		 <uri>http://www.tomatoegg.com/</uri>
		 <email>yeskeep@gmail.com</email>
	  </author>
	  <category term="" scheme="http://www.tomatoegg.com/default.asp?cateID=6" label="电脑网络" /> 
	  <updated>2010-04-10T12:30:01+08:00</updated>
	  <published>2010-04-10T12:30:01+08:00</published>
		  <summary type="html"><![CDATA[一种方法是选择工具-选项-高级-常规，点 立即检查，把Firefox设置为默认浏览器。<br/><br/>如果方法一无效的话，打开控制面板-添加/删除程序，点下面的“设定程序访问和默认值”，选择“非Microsoft程序”，确保浏览器为“Mozilla Firefox”。见图。如果不是的话就到“自定义”里面去设置。这样设置之后就连打开MSN的邮箱也会使用Firefox的。]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.tomatoegg.com/article/1568.htm" /> 
	  <id>http://www.tomatoegg.com/default.asp?id=1568</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[js实现页面跳转的几种方式 ]]></title>
	  <author>
		 <name>番茄炒蛋</name>
		 <uri>http://www.tomatoegg.com/</uri>
		 <email>yeskeep@gmail.com</email>
	  </author>
	  <category term="" scheme="http://www.tomatoegg.com/default.asp?cateID=7" label="网页网站" /> 
	  <updated>2010-03-23T01:28:14+08:00</updated>
	  <published>2010-03-23T01:28:14+08:00</published>
		  <summary type="html"><![CDATA[第一种：<br/>&nbsp;&nbsp;&nbsp;&nbsp;&lt;script language=&#34;javascript&#34; type=&#34;text/javascript&#34;&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; window.location.href=&#34;login.jsp?backurl=&#34;+window.location.href; <br/>&nbsp;&nbsp;&nbsp;&nbsp;&lt;/script&gt;<br/><br/>第二种：<br/>&nbsp;&nbsp;&nbsp;&nbsp;&lt;script language=&#34;javascript&#34;&gt;<br/>&#160;&#160;&#160;&#160;alert(&#34;返回&#34;);<br/>&#160;&#160;&#160;&#160;window.history.back(-1);<br/>&nbsp;&nbsp; &lt;/script&gt;<br/><br/>第三种：<br/>&nbsp;&nbsp; &lt;script language=&#34;javascript&#34;&gt;<br/>&#160;&#160;&#160;&#160;window.navigate(&#34;top.jsp&#34;);<br/>&nbsp;&nbsp;&lt;/script&gt;<br/><br/>第四种：<br/>&nbsp;&nbsp; &lt;script language=&#34;JavaScript&#34;&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;self.location=&#39;top.htm&#39;;<br/>&nbsp;&nbsp; &lt;/script&gt;<br/><br/>第五种：<br/>&nbsp;&nbsp; &lt;script language=&#34;javascript&#34;&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;alert(&#34;非法访问！&#34;);<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;top.location=&#39;xx.jsp&#39;;<br/>&nbsp;&nbsp; &lt;/script&gt;]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.tomatoegg.com/article/1567.htm" /> 
	  <id>http://www.tomatoegg.com/default.asp?id=1567</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[dedecms5.X管理员帐号密码重置工具]]></title>
	  <author>
		 <name>番茄炒蛋</name>
		 <uri>http://www.tomatoegg.com/</uri>
		 <email>yeskeep@gmail.com</email>
	  </author>
	  <category term="" scheme="http://www.tomatoegg.com/default.asp?cateID=7" label="网页网站" /> 
	  <updated>2009-11-07T14:32:41+08:00</updated>
	  <published>2009-11-07T14:32:41+08:00</published>
		  <summary type="html"><![CDATA[<img src="http://www.tomatoegg.com/images/download.gif" alt="下载文件" style="margin:0px 2px -4px 0px"/> <a href="http://www.tomatoegg.com/attachments/month_0911/j2009117142850.rar" target="_blank">点击下载此文件</a><br/><br/>初始密码是：dedecms<br/><br/>使用方法：上传到根目录，然后在IE输入址：<a href="http://www." target="_blank" rel="external">http://www.</a>你的域名.com/admin_reset.php<br/>为安全起见使用完后一定要删除。<br/>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.tomatoegg.com/article/1566.htm" /> 
	  <id>http://www.tomatoegg.com/default.asp?id=1566</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[admin MD5加密后代码是]]></title>
	  <author>
		 <name>番茄炒蛋</name>
		 <uri>http://www.tomatoegg.com/</uri>
		 <email>yeskeep@gmail.com</email>
	  </author>
	  <category term="" scheme="http://www.tomatoegg.com/default.asp?cateID=7" label="网页网站" /> 
	  <updated>2009-11-07T14:27:19+08:00</updated>
	  <published>2009-11-07T14:27:19+08:00</published>
		  <summary type="html"><![CDATA[7a57a5a743894a0e]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.tomatoegg.com/article/1565.htm" /> 
	  <id>http://www.tomatoegg.com/default.asp?id=1565</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[Discuz7.0出现The requested URL /uc_server/index.php…]]></title>
	  <author>
		 <name>番茄炒蛋</name>
		 <uri>http://www.tomatoegg.com/</uri>
		 <email>yeskeep@gmail.com</email>
	  </author>
	  <category term="" scheme="http://www.tomatoegg.com/default.asp?cateID=41" label="其它笔记" /> 
	  <updated>2009-10-28T14:59:19+08:00</updated>
	  <published>2009-10-28T14:59:19+08:00</published>
		  <summary type="html"><![CDATA[次换空间时导入数据后就会出现更新数据库显示<br/><br/>The requested URL /uc_server/index.php was not found on this server.<br/><br/>Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.<br/><br/>并且论坛注册，登录都不会自动跳转刷新下才能进入后台。<br/><br/>解决方法：打开论坛根目录config.inc.php文件，最下面有这样<br/><br/><div class="UBBPanel codePanel"><div class="UBBTitle"><img src="http://www.tomatoegg.com/images/code.gif" style="margin:0px 2px -3px 0px" alt="程序代码"/> 程序代码</div><div class="UBBContent">define(’UC_CHARSET’, ‘gbk’);<br/>define(’UC_IP’, ‘127.0.0.1′);<br/>define(’UC_APPID’, ‘1′);<br/>define(’UC_PPP’, ‘20′);</div></div><br/><br/>代码，吧define(’UC_APPID’, ‘1′);里面的1改为2就可以了。我在网上发现许多反应这个问题了，我也是找了半天才找到的。我曾经让别人帮我整整一次要几十，没想到这么简单就行了。还是多学点东西好啊。<br/>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.tomatoegg.com/article/1564.htm" /> 
	  <id>http://www.tomatoegg.com/default.asp?id=1564</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[访问IIS服务器提示输入密码问题解决办法]]></title>
	  <author>
		 <name>番茄炒蛋</name>
		 <uri>http://www.tomatoegg.com/</uri>
		 <email>yeskeep@gmail.com</email>
	  </author>
	  <category term="" scheme="http://www.tomatoegg.com/default.asp?cateID=7" label="网页网站" /> 
	  <updated>2009-10-12T19:07:17+08:00</updated>
	  <published>2009-10-12T19:07:17+08:00</published>
		  <summary type="html"><![CDATA[访问的网页文件本身加了密。比如“默认Web站点”原主目录“X:\Inetpub\wwwroot”下的首页文件“iisstart.asp”访问时就需要密码。 <br/><br/>没有设置允许匿名访问。在“Internet信息服务器”中，查看在该站点的属性配置项下的“目录安全性”中是否设置好下面的允许“匿名访问”这一项，并且其下“编辑”中“匿名用户账号”中“用户名”一项应为“IUSR_computer”（其中“computer”为计算机名）的格式；另外，还需要已勾选中“允许IIS控制密码”一项。 <br/><br/>目标目录被限制了访问权限。此项仅当该目录位于NTFS格式分区中时才可能出现。方法：在其上单击右键，选“属性”，再进入“安全”窗口，看列表中是不是默认的允许“Everyone”组完全控制的状态。<br/>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.tomatoegg.com/article/1563.htm" /> 
	  <id>http://www.tomatoegg.com/default.asp?id=1563</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[失眠了,写些无聊的文字. ]]></title>
	  <author>
		 <name>番茄炒蛋</name>
		 <uri>http://www.tomatoegg.com/</uri>
		 <email>yeskeep@gmail.com</email>
	  </author>
	  <category term="" scheme="http://www.tomatoegg.com/default.asp?cateID=112" label="心情日记" /> 
	  <updated>2009-09-12T03:51:49+08:00</updated>
	  <published>2009-09-12T03:51:49+08:00</published>
		  <summary type="html"><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;09年就快过去了，梳理周围的人和事，仿佛梦一场，感情叫人太伤神，要是我没感情该多好。看到某些同龄人的孩子的时候，才发现自己已不再是少年了。<br/><br/>每日都重复着同样的事情。很多时候我总会问自已，选择互联网是错还是对呢？和以前的朋友越来越疏远了，身体越来越瘦，唯一没改变的就是一颗执着的心，或者是已经习惯了这种一个人的孤单吧。在QQ上，鼠标的点击，键盘的敲打，朋友看到的只是自已的喜皮笑脸，但有谁能知道背后的无奈呢？难道这就是生活？<br/><br/>每当心闷的时候总想着抽根烟，昨晚从布吉回来的时候，好想买包烟。想想自已戒烟已有两年，最后还是忍住了，但仿佛自已在折磨着自已，过得好累。<br/><br/>自已似乎越来越感性了，很多事情都不会追问为什么，有人问我为什么喜欢方力申的歌，为什么喜欢吃番茄炒蛋。。。这个世界上很多事情本来就没有为什么，喜欢就是喜欢。<br/><br/>有人说啤酒之所以好喝，就是因为它难喝。而我就是因为难喝，所以不喝。对爱情也一样，自已喜欢的就去争取，如果活在别人的思想里，会很痛苦。<br/><br/>夜深了，静得深沉，风吹着脸，秋天的夜，还是感觉闷热，也许是心事太多，无从发泄吧，路到了尽头还有路，但是真的到了尽头呢？真的很茫然。<br/><br/>其实自已一直很想坐下来好好的写点什么，静静的把心中所想写下来，让心事凝成点点滴滴的文字，似乎这样能让烦躁的心情得到一丝缓解。<br/><br/>不知道为什么不想和身边的朋友述说，或者是没有那种诉说的欲望吧。<br/><br/>深沉的夜，零乱的文字，失眠的人。<br/><br/>2009.09.12&nbsp;&nbsp;&nbsp;&nbsp;零辰3点47分 作<br/>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.tomatoegg.com/article/1562.htm" /> 
	  <id>http://www.tomatoegg.com/default.asp?id=1562</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[Discuz7.0谷歌广告不能显示的临时解决办法]]></title>
	  <author>
		 <name>番茄炒蛋</name>
		 <uri>http://www.tomatoegg.com/</uri>
		 <email>yeskeep@gmail.com</email>
	  </author>
	  <category term="" scheme="http://www.tomatoegg.com/default.asp?cateID=41" label="其它笔记" /> 
	  <updated>2009-08-22T18:49:23+08:00</updated>
	  <published>2009-08-22T18:49:23+08:00</published>
		  <summary type="html"><![CDATA[在目录找到\include\js\common.js 文件，删除以下代码，更新缓存即可<br/><br/><div class="UBBPanel codePanel"><div class="UBBTitle"><img src="http://www.tomatoegg.com/images/code.gif" style="margin:0px 2px -3px 0px" alt="程序代码"/> 程序代码</div><div class="UBBContent">Array.prototype.push = function(value) {<br/><br/>this[this.length] = value;<br/><br/>return this.length;<br/><br/>}</div></div><br/><br/>演示地址：<a href="http://bbs.hz0668.com/" target="_blank" rel="external">http://bbs.hz0668.com/</a><br/><br/><span style="color:Green">以上方法已经得到 Discuz官方的推荐</span>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.tomatoegg.com/article/1561.htm" /> 
	  <id>http://www.tomatoegg.com/default.asp?id=1561</id>
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[广告联盟一些简称]]></title>
	  <author>
		 <name>番茄炒蛋</name>
		 <uri>http://www.tomatoegg.com/</uri>
		 <email>yeskeep@gmail.com</email>
	  </author>
	  <category term="" scheme="http://www.tomatoegg.com/default.asp?cateID=41" label="其它笔记" /> 
	  <updated>2009-08-07T00:13:46+08:00</updated>
	  <published>2009-08-07T00:13:46+08:00</published>
		  <summary type="html"><![CDATA[<span style="color:Red">CPC(英文cost per click的缩写)，</span>即为按照点击广告即付佣金的计费方式；<span style="color:Red">CPL(英文cost per lead的缩写)，</span>即为点击广告引导用户到达指定页面成功支付佣金的计费方式；<span style="color:Red">CPA(英文cost per action的缩写)</span>，即为引导用户到达后注册、下载等行动成功支付佣金的计费方式<span style="color:Red">CPS(英文cost per sale的缩写)，</span>即为按照销售成功支付佣金的计费方式。<br/><br/>以上都是有时间概念，都是以cookies来保留时间计算的。本站联盟系统支持CPL,CPA,CPS,由于CPC问题特别多，用的人少，没有特别的定制，一般不支持。<br/><br/><span style="color:Green">关于网络广告定价模式的一组常用术语：</span><br/><br/><span style="color:Red">&nbsp;&nbsp;CPA (Cost-per-Action) ：</span>每次行动的费用，即根据每个访问者对网络广告所采取的行动收费的定价模式。对于用户行动有特别的定义，包括形成一次交易、获得一个注册用户、或者对网络广告的一次点击等。<br/><br/><span style="color:Red">&nbsp;&nbsp;CPC (Cost-per-click)：</span> 每次点击的费用。根据广告被点击的次数收费。如关键词广告一般采用这种定价模式。<br/><br/><span style="color:Red">&nbsp;&nbsp;CPM（Cost per Thousand Impressions）：</span>每千次印象费用。广告条每显示1000次（印象）的费用。CPM是最常用的网络广告定价模式之一。<br/><br/><span style="color:Red">&nbsp;&nbsp;CPO (Cost-per-Order) ：</span>也称为Cost-per-Transaction，即根据每个订单/每次交易来收费的方式。 <br/><br/><span style="color:Red">&nbsp;&nbsp;PPC（Pay-per-Click）：</span>是根据点击广告或者电子邮件信息的用户数量来付费的一种网络广告定价模式。<br/><br/><span style="color:Red">&nbsp;&nbsp;PPL（Pay-per-Lead）：</span>根据每次通过网络广告产生的引导付费的定价模式。例如，广告客户为访问者点击广告完成了在线表单而向广告服务商付费。这种模式常用于网络会员制营销模式中为联盟网站制定的佣金模式。<br/><br/><span style="color:Red">&nbsp;&nbsp;PPS（Pay-per-Sale）：</span>根据网络广告所产生的直接销售数量而付费的一种定价模式 。<br/><br/><span style="color:Red">&nbsp;&nbsp;CPTM (Cost per Targeted Thousand Impressions) ：</span>经过定位的用户（如根据人口统计信息定位）的千次印象费用。CPTM与CPM的区别在于，CPM是所有用户的印象数，而CPTM只是经过定位的用户的印象数。<br/><br/>营销效果是指，<span style="color:Red">销售额(CPS, Cost for Per Sale)、</span><span style="color:Red">引导数(CPL, Cost for Per Lead)、</span><span style="color:Red">点击数（CPC, Cost for Per Click）</span>等。按照以上营销的实际效果付费统称为按<span style="color:Red">营销效果付费（CPA, Cost for Action）。 </span>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.tomatoegg.com/article/1560.htm" /> 
	  <id>http://www.tomatoegg.com/default.asp?id=1560</id>
  </entry>	
		
</feed>
