2009年12月16日

仅限今天Godaddy注册.com域名 仅0.99美元

仅限今天(2009-12-16)Godaddy域名.com 仅0.99美元,加上$0.18 ICANN费,只需1.17美元。

优惠码:BUYCOM99

和以往一样只支持信用卡和支票购买。

buycom99 (更多...)

  • » 阅读全文...
  • 2009年12月11日

    There are no public key available for the following key IDs:解决方法

    Thenynoc的VPS由于停止洛杉矶机房VPS服务并转移已有洛杉矶VPS至纽约机房,而且不能退款,所以分配下新的IP直接重装为Debian~瞎折腾着玩。

    thenynoc:/var/lib/apt/lists# apt-get update
    Get:1 http://security.debian.org stable/updates Release.gpg [835B]
    ……省略N多没用的……
    Hit http://security.debian.org stable/updates/main Packages
    Fetched 41.6kB in 0s (56.5kB/s)
    Reading package lists... Done
    W: There is no public key available for the following key IDs:
    9AA38DCD55BE302B
    W: There is no public key available for the following key IDs:
    9AA38DCD55BE302B
    W: GPG error: http://security.debian.org stable/updates Release: The following signatures

    couldn't be verified because the public key is not available: NO_PUBKEY 9AA38DCD55BE302B
    W: You may want to run apt-get update to correct these problems (更多...)

  • » 阅读全文...
  • 2009年12月9日

    LNMP一键安装包0.3中wordpress Rewrite(伪静态规则)正确写法

    由于失误,lnmp一键安装包中的wordpress.conf这个文件是wordress的URL Rewrite,本身存在一些问题,如archive中,日期归档是打不开的。

    正确写法如下:

    location / {
    if (-f $request_filename/index.html){
                    rewrite (.*) $1/index.html break;
            }
    if (-f $request_filename/index.php){
                    rewrite (.*) $1/index.php;
            }
    if (!-f $request_filename){
                    rewrite (.*) /index.php;
            }
    }

    感谢各位LNMP使用者对lnmp的支持。

  • » 阅读全文...