100个技巧或工具建立你自己的家用 LAMP 服务器
2008-08-26 21:14LAMP (Linux, Apache, MySQL and PHP) servers are very popular for their ease of use and flexibility. They’re also easy to initiate, because the components are easy to aquire and there’s a lot of documentation available to help with getting started. Read on to find some of the best resources available... [阅读全文]
Windows 下配置Apache2, PHP5, MYSQL5 和 Zend
2008-04-30 16:06Windows XP下全新安装Apache2,PHP5,MYSQL5,Zend的简单过程 一、下载地址: Apache2.0.50 :http://httpd.apache.org/download.cgi PHP5.0.2 :http://cn2.php.net/get/php-5.0.2-Win32.zip/from/a/mirror MYSQL5.0.2:http://dev.mysql.com/downloads/mysql/5.0.html Zend2.5.2 :http://www.zend.com/store/free_download.php?pid=13] 软件的安装偶就不说... [阅读全文]
玩转相册代码 Gallery - SEO修改导航链接
2008-01-31 13:26Gallery 简介 Gallery 是一个开源的相册图库代码,基于 PHP 和 MySQL. Gallery 功能非常强大,属于模块化结构,可定制性非常强。Gallery 社区非常活跃,用户制作的插件和模板众多。 Gallery 官方网站:http://gallery.menalto.com Gallery 中文版演示: http://gallery.zzvo.com/ SEO修改导航链接 本篇主要出于搜索引擎优化考虑,修改代码去掉页面上方的导航栏链接中的 g2_highlightID= 后缀。 Gallery 的导航链接(BreadCrumb)显示格式如下: 相册 » 旅游景点 » ... [阅读全文]
php 网页提速优化
2007-12-02 18:59php 网页提速优化: 1) 在 PHP 页面的顶部加上: <?php ob_start( 'ob_gzhandler' ); ?> 2) 把 CSS 文件名改为 xxx.css.php, 然后在文件顶部加上: <?php ob_start ("ob_gzhandler"); header("Content-type: text/css; charset: UTF-8"); header("Cache-Control: must-revalidate"); $offset = 60 * 60 ; $ExpStr = "Expires: " . gmdate("D, d M... [阅读全文]
Digbuzz 服务器 PHP 编译笔记
2007-11-02 19:47www.digbuzz.com 我挖网 php 编译笔记: './configure' '--with-apxs=/usr/local/apache/bin/apxs' '--prefix=/usr/local' '--with-xml' '--enable-bcmath' '--enable-calendar' '--enable-ftp' '--with-gd' '--with-jpeg-dir=/usr/local' '--with-png-dir=/usr' '--with-xpm-dir=/usr/X11R6' '--with-gettext' '--with-iconv' '... [阅读全文]
phpMyAdmin 导入大型数据库文件大小限制配置
2007-09-22 02:261. 修改 php.ini 文件中下列3项的值: upload_max_filesize, memory_limit, post_max_size 2. 在 phpMyAdmin 的配置文件中修改或加入这个设置: $cfg['EexecTimeLimit'] = 0; ... [阅读全文]
Unix/Linux 下PHP的编译安装
2006-08-06 22:33本节将指导如何在 Unix 系统下安装和配置 PHP。在开始安装之前,请务必研究自己使用的系统和 web 服务器的相关章节。 在安装前需要考虑的事项一节提到,在本节主要以 web 为中心介绍 PHP 的设置。不过本节也会覆盖一些 PHP 命令行用法的设置方法。 在 Unix 平台下安装 PHP 有几种方法:使用配置和编译过程,或是使用各种预编译的包。本文主要针对配置和编译 PHP 的过程。很多 Unix 类系统都有包安装系统,可以用它来设置一个有着标准配置的 PHP。但是若需要与标准配置不同的功能(例如一个安全服务器,或者不同的数据库驱动扩展模块),可能需要编译... [阅读全文]
最新评论