05.11.08
Posted in 实验室, Apache, FreeBSD/Unix服务器 at 18:52 由 仲远
标签:
Apache,
Freebsd/Unix服务器,
Spiders,
实验室,
搜索引擎,
网络爬虫,
蜘蛛
搜索引擎是人们再熟悉不过的工具,它将Internet上的信息索引起来,方便人们在海量数据中迅速查找有用的信息。而搜索引擎公司,国外以Google为代表,国内以百度为代表,成为互联网上举足轻重的公司,其访问量也远远超过传统门户网站,成为网民最离不开的网络服务。而遇到问题“Google一下”或者“百度一下”也成为人们日常生活中的习惯。
而对于网站建设者而言...查看全文
Permalink
05.10.08
Posted in 实验室, Apache, FreeBSD/Unix服务器 at 23:16 由 仲远
标签:
Apache,
Develop,
Freebsd/Unix服务器,
Module,
Request Processing,
实验室,
模块开发
最近持续在研究Apache的模块开发,为在Apache上的实验做准备。以下是介绍Apache Module中处理请求的过程,以及如何加入请求处理挂钩以及响应处理挂钩。尤其是几张图,很清晰地解释了Apache处理请求以及返回结果的框架。只是这篇文章主要从概念上介绍,没有实际可用的代码,仅帮助开发人员理解之用。
Request Processing in Apache
Processing HTTP requests is central to most web applic...查看全文
Permalink
05.09.08
Posted in 实验室, Apache, FreeBSD/Unix服务器 at 23:05 由 仲远
标签:
Apache,
Develop,
Freebsd/Unix服务器,
Module,
例子,
实验室,
模块开发
这是一篇介绍为Apache开发一个新的Module的Tutorial,非常简单易懂,英语六级以上的人看懂应该没有问题。如果你觉得看得麻烦,可以直接看其中的代码以及指令部分。
This tutorial guides the reader through the minimal tasks involved in writing a module for Apache 2. The module developed here has almost no functionality - it's only impact is the generation of a static message to logs/errorlog for each HTTP request.
查看全文
Permalink
05.08.08
Posted in PHP at 20:24 由 仲远
标签:
mysql,
PHP,
SQL,
查询优化
PHP+Mysql是一个最经常使用的黄金搭档,它们俩配合使用,能够发挥出最佳性能,当然,如果配合Apache使用,就更加Perfect了。不过,虽然使用PHP访问Mysql非常快,以至于在PHP下都不需要像java那样使用连接池,但是,如果使用不当的话,再加上数据库中的数据量达到几十万、上百万时,依然会导致Mysql查询速度低下,页面打开速度缓慢。因此,需要做好对mysql的查询优化。下面...查看全文
Permalink
05.07.08
Posted in 实验室, Apache, FreeBSD/Unix服务器 at 22:40 由 仲远
标签:
Apache,
Develop,
Freebsd/Unix服务器,
Module,
实验室,
模块开发
最近需要在Apache中做实验,需要改Apache的源代码,感觉很头大。以下是找到的一篇关于Apache Module开发(Apche Modules Develop)的文章,觉得有些用处,先保留下来,也供大家一起参考。
Writing Apache modules
Apache, like many other successful open source projects has a modular architecture. This means that to add or modify functionality you do not need to know the whole code base. Source code access for Apache means that you c...查看全文
Permalink
05.06.08
Posted in 热门话题 at 19:24 由 仲远
标签:
IE7.0,
Maxthon,
XP,
傲游,
热门话题
IE7.0现在基本上已经取代了IE6.0了,不过IE7.0在XP中使用有一个重大bug,那就是浏览器窗口开得过多之后,可能导致系统出现如下症状:双击点击程序后没有反应,打开“我的电脑”却发现菜单栏都没有了,无法点击右键,或者点击右键后发现右键选项个数不对或显示不正确,无法调出任务管理器或者任务管理器显示不正常。
刚开始我以为是开得窗口过多,导致内存不足...查看全文
Permalink
05.05.08
Posted in 随笔, 热门话题 at 13:42 由 仲远
标签:
无法关机,
热门话题,
电脑知识,
解决办法,
随笔
使用Windows系统的人常常都会遇到这样的问题:明明点击了“关闭计算机”->“关闭”,但是等了许久,操作系统没有一点反应,就好象什么事情都没有发生一样。于是再点击“关机”,还是没有反应。那么面对这样的情况,我们有什么解决办法吗?答案是显然的,你可以尝试一些小技巧,或许能够解决这个问题。毕竟,如果能够正常关机,对于电脑的损害时最小的,也不...查看全文
Permalink
05.04.08
Posted in 随笔, 热门话题 at 20:23 由 仲远
标签:
word图片保存,
热门话题,
随笔
时常,我们会把图片加入到word中,但是将word文件与其他人分享之后,却发现朋友们想从word中再把图片“扣出来”是一件非常困难的事情。在word中,本身是不提供保存word中的图片功能。不知微软的Office为何不支持这一点,或许是他的一个失误吧。
方法一:
面对这样的一个需求,网上已经有很多解决办法。其中一个比较好用的办法是打开word文件后,点击“文件”-&...查看全文
Permalink
05.03.08
Posted in PHP, Apache, FreeBSD/Unix服务器 at 13:15 由 仲远
标签:
Apache,
Freebsd/Unix服务器,
PHP,
源代码安装
在上一篇文章中,介绍了如何使用源码安装Apache2+Mysql5+PHP5,在安装完成后,还需要进行一些配置才能够使用。
In this lesson, we configure Apache and serve up a PHP page.
This document assumes:
FreeBSD is installed, and you followed the instructions from part 1 of this series
Apache 2.x and PHP 5.x are installed, and you followed the instructions from part 2 of this series.
This document also assumes that:
at least on...查看全文
Permalink
05.02.08
Posted in PHP, Apache, FreeBSD/Unix服务器 at 17:14 由 仲远
标签:
Apache,
Freebsd/Unix服务器,
PHP,
源代码安装
虽然Freebsd下提供Ports安装软件的方式,但是由于Unix下常常出现的版本依赖问题,有可能导致安装最新版的软件时出错。不过还好,Freebsd还支持另一种安装软件的方式,那就是源码安装。下面就介绍一种使用源码编译安装Apache2+Mysql5+PHP5以及PHP扩展的方式。
Download Source
Get the latest source for:
Mysql
Apache
PHP
For each application, download the *.tar.gz source file.
查看全文
Permalink
Pages (21):
[1] 2 3 4 » ... Last »