多重和音的由来
当宇宙能发出声音的时候,世界就同时出现了。如果问那个声音是什么的话,可以告诉你,那时——“Wong”——所有震动的和音。
如果多个世界共存呢,那就是它了。
快速链接
分类
Archive for 05月, 2008
-
json and jtemplates 来实现前台变化(原创)
Posted on 2008年05月15日 | 没有评论http://www.fleaphp.cn/bbs/viewthread.php?tid=3247&extra=page%3D1 使用fleaphp来实现json和jtemplates快速实现前台显示与非刷新动态页面。 -
lighttpd 下 discuz的rewrite写法(原创)
Posted on 2008年05月12日 | 没有评论url.rewrite = ( "^/archiver/((fid|tid)-[\w\-]+\.html)$" => "archiver/index.php?$1", "^/forum-([0-9]+)-([0-9]+)\.html$" => "forumdisplay.php?fid=$1&page=$2", "^/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$" => "viewthread.php?tid=$1&extra=page\%3D$3&page=$2", "^/space-(username|uid)-(.+)\.html$" => "space.php?$1=$2", "^/tag-(.+)\.html$" => "tag.php?name=$1" ) -
关于CMS思考(摘录)
Posted on 2008年05月9日 | 没有评论http://cms.phpmagazine.net http://cms.phpmagazine.net/2006/11/the_cms_pattern_thoughts_on_cm_1.html This CMS have four main parts : Core, modules, plugins and templates. We go back to the examples that I’ve given in the first part of this article : Blog = CMS {Core + Modules [categories + articles (plugins comment + anti-spam +... -
install avast4workstation on my linux server
Posted on 2008年05月6日 | 没有评论1. download avast4workstation 2. tar zxvf avast4workstation 3. run… 安装确实非常简单,且没有任何出错和提示,仅仅在第一次运行时,根据当前用户需要输入授权号(仅申请即可)。 但我安装的原因是得杀某个病毒(卡巴斯基报毒),实际上就是一个恶意的script。但实际情况看,avast4workstation并未能监测到这个毒,故未能杀出。 而我的解决方法如我的blog下面的关于find and xargs perl 方式直接将那段代码替换删除罢了。个人认为此举仅治标不治本,所以linux下权限问题和代码检查以及日志分析监测方面工作今后得认真注意。 -
Install mysql on redhat (转)
Posted on 2008年05月6日 | 没有评论Install and Configure MySQL on Linux 用 MySQL 有年头了,写篇简单的文档来记录下自己的常用安装和配置过程。本文旨在介绍如何在 Linux 系统上安装 MySQL 数据库服务器,以及基本配置。本文仅仅提供一份快速指南,请访问 MySQL 官方网站获取详细安装、配置指南。 OS: Red Hat Enterprise Linux AS 3.0 MySQL: 5.0.22 源码 tarball 放置在 /home/huangys , 安装目的地是/opt/mysql 1. 准备 创建一个用户来运行 MySQL 守护进程。 # groupadd mysqlg # useradd –g mysqlg –M –s /sbin/nologin...