2010-8-1收到的
fbfhome20
$75 以上节省20%,有效日期至 8/14/2010
2010-8-3收到的
FB3HP20 优惠20% $75以上
SAVE 20% OFF* your order of $75 or more
有效期8/16/2010
gdbb4750 节省15% $50以上
SAVE 15% OFF YOUR ORDER OF $50 OR MORE
NC3D13 节省20% $60以上
SAVE 20% on your order of $60 or more!*Use source code NC3D13
有效期 8/16/2010
2010-8-6收到的
gda812p 节省15% $90以上
有效期仅3天,截至2010-8-8
2010-8-10收到的
gda821q 节省20% $60以上
有效期至 2010-8-22
2010-8-13收到的
gda824p 节省20% $40以上
有效期仅3天,截至到2010-8-15
2010-8-17收到的
gda827p $70以上节省$15
SAVE $15* on your purchase of $70 or more!
有效期至 2010-8-29
2010-8-20收到的
gda832p $75以上节省15%
有效期至 2010-8-22 不是很实惠哦
2010-8-24收到的
gda835p .com域名节省30%
有效期截至2010-9-12
2010-8-27受到的
gda841p $80以上节省20%
有效期至2010-8-29
2010-8-31收到的
gda842p 节省20% $75以上
有效期2010-9-12
GoDaddy虚拟主机.net 2.0是是中等安全信任等级(medium trust), 如果你的程序有dll要求full 信任级别,执行就会报错
一种方法是从新编译dll程序的源代码,更改AssemblyInfo.cs 文件,加入下列代码
using System.Security;
using System.Security.Permissions;
[assembly: AllowPartiallyTrustedCallers]
然后生产dll
或者把虚拟主机的iis换到.net 1.1试试
到这里查看asp和asp.net1.1支持的组件
刚收到的优惠码 gda751q
Place source code gda751q in your cart when you order to save!
60$以上省20% 有效期2010-8-8
如果网站上面有一些上传的文档或文件不像被搜索引擎看到,禁止收录,那么可以通过robots.txt来实现。
搜索引擎通过一种程序robot(又称spider),自动访问互联网上的网页并获取网页信息。
您可以在您的网站中创建一个纯文本文件robots.txt,在这个文件中声明该网站中不想被robot访问的部分,这样,该网站的部分或全部内容就可以不被搜索引擎收录了,或者指定搜索引擎只收录指定的内容。
robots.txt文件应该放在该网站根的目录。当robots访问一个网站(比如http://www.yyxin.com)时,首先会检查该网站中是否存在http://www.yyxin.com/robots.txt这个文件,如果机器人找到这个文件,它就会根据这个文件的内容,来确定它访问权限的范围。
在该文件中可以使用#进行注解,该文件中的记录通常以一行或多行User-agent开始,后面加上若干Disallow行,详细情况如下:
User-agent:
该项的值用于描述搜索引擎robot的名字,在"robots.txt"文件中,如果有多条User-agent记录说明有多个robot会受到该协议的限制,对该文件来说,至少要有一条User-agent记录。如果该项的值设为*,则该协议对任何机器人均有效,在"robots.txt"文件中,"User-agent:*"这样的记录只能有一条。
Disallow :
该项的值用于描述不希望被访问到的一个URL,这个URL可以是一条完整的路径,也可以是部分的,任何以Disallow 开头的URL均不会被robot访问到。例如"Disallow: /help"对/help.html 和/help/index.html都不允许搜索引擎访问,而"Disallow: /help/"则允许robot访问/help.html,而不能访问/help/index.html。
任何一条Disallow记录为空,说明该网站的所有部分都允许被访问,在"/robots.txt"文件中,至少要有一条Disallow记录。如果"/robots.txt"是一个空文件,则对于所有的搜索引擎robot,该网站都是开放的。
例1. 禁止所有搜索引擎访问网站的任何部分
User-agent: *
Disallow: /
例2. 允许所有的robot访问
(或者也可以建一个空文件 "/robots.txt" file)
User-agent: *
Disallow:
例3. 禁止某个搜索引擎的访问
User-agent: BadBot
Disallow: /
例4. 允许某个搜索引擎的访问
User-agent: baiduspider
Disallow:
User-agent: *
Disallow: /
例如 DISCUZ的robots.txt 是这样的
#
# robots.txt for Discuz! Board
# Version 7.0.0
#
User-agent: *
Disallow: /admin/
Disallow: /api/
Disallow: /attachments/
Disallow: /images/
Disallow: /install/
Disallow: /forumdata/
Disallow: /include/
Disallow: /ipdata/
Disallow: /modcp/
后面还有其他文件,省略了
新写了一个asp.net的测试程序,用到第三方dll文件,放到了godaddy的windows主机上,出现以下异常
Security Exception
Description: The application attempted to perform an operation not allowed by the security policy. To grant this application the required permission please contact your system administrator or change the application's trust level in the configuration file.
Exception Details: System.Security.SecurityException: That assembly does not allow partially trusted callers.
这是因为很多主机服务商把信任级别设为了Medium,而应用三方dll却需要full信任级别。如果不能让服务商更改信任级别,可以尝试通过以下方法解决。
如果你的dll有源码,打开源代码
更改AssemblyInfo.cs 文件,加入下列代码
using System.Security;
using System.Security.Permissions;
[assembly: AllowPartiallyTrustedCallers]
从新生产dll文件。
例如 itextsharp.dll 可以到http://sourceforge.net/projects/itextsharp/files/ 上下载源代码进行生产dll。
在自己电脑上调试好好的网站传到godaddy的windows主机上出现了如上错误
情况不同,问题也不尽相同,可以试试一下三种方法
1:
将发生错误的页面上加上debug="true"的指令
简单的说就是在 web.config中配置为
<compilation debug="true" batch="false">
2:
将 C:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files 下的相关网站全不删掉。
重新生成网站
3.
出现以上这样的问题,是由于你发布的应用程序,没有放在建立虚拟目录的根目录,比如你建立的虚拟目录为 folderRoot 而你把你要发布的应用程序放在 forderRoot 下的 forder 文件夹中就会出现以上问题,有两种办法可以解决此问题:
a. 将发布的应用程序直接放在虚拟目录。如果是服务器,直接放在根目录,不要放在二级目录下。
b. 将要发布的应用程序中的 bin 文件夹剪切出来,放置到上一级目录就可以解决此问题。
把godaddy的linux主机换成了Windows主机,运行WordPress后台,设置保存的时候报500出错,代码如下:
500 - Internal server error.
There is a problem with the resource you are looking for, and it cannot be displayed.
首先检查文件夹的权限,看是否有足够的读写权限。读写权限都有的话那就应该是配置问题。
经测试发现传很多网站程序时均报下500错误,后面上网查才明白,原来Godaddy的主机如果程序出错的话就直接报以下错误,即使你是刚上传的WordPress程序,因为WordPress默认是没有配置的,肯定会报错提示你输入配置信息,而这刚好与Godaddy的主机相冲突,所以就会报如下错误,解决方法很简单,如果你用的Windows IIS6或者IIS7主机,把以下代码复制下来,命名为web.config上传至网站根目录即可。
我按如下方法上传到网站根目录后打开网站就进入了WordPress博客程序配置界面,配置完成后成功运行WordPress。
Windows IIS6的用户使用下面的代码
<configuration>
<system.web>
<customErrors mode="Off"/>
<compilation debug="true"/>
</system.web>
</configuration>
Windows IIS7的用户使用下面的代码
<configuration>
<system.webServer>
<httpErrors errorMode="Detailed" />
<asp scriptErrorSentToBrowser="true"/>
</system.webServer>
<system.web>
<customErrors mode="Off"/>
<compilation debug="true"/>
</system.web>
</configuration>
以上代码保存为web.config上传至wordpress网站根目录即可。
把godaddy的主机由linux转成linux之后,发现discuz原来的静态化不能用了,首页可以打开,但查看帖子的时候不能显示,帖子有静态化联接,就像这样
http://www.zzxing.com/bbs/thread-761-1-1.html
在网上找了一下,找到如下方法:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Imported Rule 17">
<match url="^archiver/((fid|tid)-[\w\-]+\.html)$" ignoreCase="false" />
<action type="Rewrite" url="archiver/index.php?{R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 18">
<match url="^forum-([0-9]+)-([0-9]+)\.html$" ignoreCase="false" />
<action type="Rewrite" url="forumdisplay.php?fid={R:1}&page={R:2}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 19">
<match url="^thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$" ignoreCase="false" />
<action type="Rewrite" url="viewthread.php?tid={R:1}&extra=page\%3D{R:3}&page={R:2}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 20">
<match url="^space-(username|uid)-(.+)\.html$" ignoreCase="false" />
<action type="Rewrite" url="space.php?{R:1}={R:2}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 21">
<match url="^tag-(.+)\.html$" ignoreCase="false" />
<action type="Rewrite" url="tag.php?name={R:1}" appendQueryString="false" />
</rule>
</rules>
</rewrite>
<httpErrors errorMode="Detailed" />
<asp scriptErrorSentToBrowser="true" />
</system.webServer>
<system.web>
<customErrors mode="Off" />
<globalization requestEncoding="utf-8" responseEncoding="utf-8" fileEncoding="utf-8" />
</system.web>
</configuration>
把上面的的内容保存成web.config 并传到bbs目录下。就可以 了。
godaddy七月最新0.99美元优惠码
优惠码:beatheat99
本以为域名涨价后godaddy不会再出0.99美元的优惠码。不过昨天godaddy又推出了这个0.99美元的优惠码昨天这个godaddy0.99美元优惠码刚推出不久就不能使用了,没想到今天又能使用了
注册或转移玉米功能都可以使用
同样只支持信用卡支付.
过期时间前1000名或2010年7月31
SPECIAL OFFER! Beat the Summer Heat - $0.99 .COM Domains!
Register or transfer any available .COM domain for just $0.99!*
Applies to the first year only of new or transfer registrations. This offer may not be used for renewals, bulk registrations, premium domains or Sunrise/Landrush domain registrations. Limited to one domain per customer, expiring after 1,000 redemptions or on July 31, 2010 (whichever comes first). Discount will be reflected in your shopping cart; cannot be used in conjunction with any other offer or promotion. Customers may not use gift cards, AliPay® or PayPal® to redeem this offer.
* Plus ICANN fee of 18 cents per domain year for .COM registrations.
Godaddy的域名涨价了,这里收集了一些最近有效的域名注册、续费、转移优惠码,方便使用。其中有些优惠码有效期是6月30日前,有些应该7月份以后也有效,到时试试才知道。
注:7月涨价以后,很多续费优惠码不能用了,现增加可以续费的优惠码:
QUEEN3 – 30% off .com domain names
续费价格 $7.48 加税金最终价格为
$7.66
gda731c 注册续费.COM, .NET or .ORG 优惠30%,支付宝和paypal可用,有效期2010年8月8号
1、适合Godaddy域名注册、转移的优惠码:
价格由低到高排列:
65折($7-49)注册国际域名的优惠链接:Domain Sale! $7.49 .com at GoDaddy。(无需输入优惠码)
优惠码 — 优惠价格
gofivgcn2 – $5.99 .COMs (- $8.99 .NETs)
这个2010-7-20我试过了,转移的确可用,但不能用支付宝和paypal
cjc689FAT – $6.89 .COMs (- $8.99 .NETs)
goaztk03a – $6.99 .COMs (- $8.99 .NETs)
goaz2001ai – $6.99 .COMs (- $8.99 .NETs)
yhkw105a – $6.99 .COMs (- $8.99 .NETs)
tvspecial – $7.29 .COMs (- $8.99 .NETs)
DNF5 – $7.39 .COMs (- $8.99 .NETs)
DNF2 – $7.39 .COMs (- $8.99 .NETs)
OYH10 – $7.49 .COMs (- $8.99 .NETs)
cjc749fat – $7.49 .COMs (- $8.99 .NETs)
2、Godaddy域名续费优惠码,价格由低到高排列:
优惠码 -优惠价格
tvspecial ($7.29 for renewal)
DNF5 ($7.39 for renewal)
DNF2 ($7.39 for renewal)
OYH10 ($7.49 for renewal)
cjc749fat -($7.49 for renewal)
3、其他优惠码
优惠码 – 优惠比例
Wallet11 takes 10% off any order. Webmail, hosting, transfers and any non .com domains.
Wallet22 takes 20% or off any order over $50
Wallet30 takes 30% off all .com renewals and all new .com registrations (- $8.99 .NETs)
YUP3 takes 30% off all .com renewals and all new .com registrations (- $8.99 .NETs)
10% off your GoDaddy purchase
WEASEL7
20% off if you buy more than $50
WEASEL8
30% off .COM domains
WEASEL9
25% off if you spend $95 or more
WEASEL25
20% off web hosting
WEASEL20H
$18.99 standard SSL certificates
WEASELSSL
以上价格不含税金。支持支付宝、paypal、信用卡付款。