Submitted by gouki on 2009, July 4, 11:15 PM
本来我以为是虚拟机,后来一看,原来是建多个目录。我是被人问过类似问题的。。这个到正好解决我当初被人问的问题
原文来自:http://xinsync.xju.edu.cn/index.php/archives/5134
更改第一个站点的根目录:在文件Apache2.2\conf\httpd.conf中查找 DocumentRoot 属性,将后面的路径改为你的主站点的路径,如:D:\www\web1
为第二个Apache服务建立配置文件:复制并重命名httpd.conf为web2.conf(举个例子而已,也可以叫my.conf等等), 修改web2.conf中的Listen 8080(原来为80)、ServerName localhost:8080(原来为80)、DocumentRoot “D:/www/web2″ (原来为web1)
添加第二个Apache服务:Apache安装目录的bin子目录下,使用如下命令将Apache安装为Windows NT服务:httpd.exe -k install -n “服务名” -f “d:\apache2.2\conf\web2.conf”
其他的命令:
将Apache安装为Windows NT服务:
httpd -k install
指定服务的名称,当你在同一机器上安装多个Apache服务时,你必须为它们指定不同的名字。
httpd -k install -n “服务名”
为不同名称的服务使用不同的配置文件,则安装时需要指定配置文件:
httpd -k install -n “服务名” -f “c:\files\my.conf” 如果你使用的是第一个命令,也就是除 -k install 外没有其它命令行参数,那么被安装的服务名称将是:Apache2 ,配置文件将使用conf\httpd.conf 。
移除一个Apache服务:
httpd -k uninstall
使用下述命令移除特定名称的Apache服务:
httpd -k uninstall -n “服务名”
通常,启动、重启、关闭Apache服务的方法是使用Apache Service Monitor工具,另外也可以使用控制台命令:NET START Apache2 和 NET STOP Apache2 或者通过Windows服务控制面板。在启动Apache服务之前,你应当使用下面的命令检查一下配置文件的正确性:
httpd -n “服务名” -t
你可以通过命令行开关来控制Apache服务。要启动一个已经安装的Apache服务,可以使用:
httpd -k start
要停止一个已经安装的Apache服务,可以使用:
httpd -k stop
或
httpd -k shutdown
要重启一个运行中的Apache服务,强制它重新读取配置文件,可以使用:
httpd -k restart
Tags: apache
PHP | 评论:0
| 阅读:22226
Submitted by gouki on 2009, July 4, 11:13 PM
最精确硬盘分区的算法如下(来自网络搜索):我是转自http://xinsync.xju.edu.cn/index.php/archives/5137
硬盘一般有255磁头,63扇区,故每柱面大小为:
512byte x 255 x 63=8225280bytes =7.84423828125 MB
如果要分40GB,那么要40×1024MB=40960MB
需要柱面数为40960÷7.84423828125=5221.66
取整数既为5222个柱面
应分M数为5222×7.84423828125=40962.6123046875MB
不管小数点后面几位都进1,也就是40963MB,windows就认为是40GB了。
这个方法NTFS和FAT32通用。
下面附10GB到200GB整10GB递增的精确计算结果:
10GB = 10245MB
20GB = 20482MB
30GB = 30726MB
40GB = 40963MB
50GB = 51208MB
60GB = 61444MB
70GB = 71681MB
80GB = 81926MB
90GB = 92162MB
100GB = 102407MB
110GB = 112644MB
120GB = 122888MB
130GB = 133125MB
140GB = 143362MB
150GB = 153606MB
160GB = 163843MB
170GB = 174088MB
180GB = 184324MB
190GB = 194561MB
此精确分区结果,在管理工具-磁盘管理界面,和Windows资源管理器里面显示的是整数,10G就是10.00GB,20G就是20.00GB,40G就是40.00GB。
Tags: 硬盘, 分区
Software | 评论:0
| 阅读:16279
Submitted by gouki on 2009, July 3, 9:40 AM
PHP更改文件编码应该算是比较简单的事情,在使用uchome项目(UTF-8)的时候,发现程序的编码好奇怪,有ANSI的,和UTF-8的。
很妖的是,我在ubuntu下面打开这些ansi的文件时,由于文件中含 有中文,结果全显示乱码,编码还显示为latin1。然后拷到另外一个目录,编码显示就正常了,为CP936。
由于编辑器没有批量转换功能,固此,只能使用PHP自带的功能了。。。(关键我也不会其他语言)
由于转换的时候会需要判断一下编码,如果编码本身是UTF-8的,再使用mb_convert_encoding($data,'utf-8','gbk'),反而会导致乱码。。
所以。。。就有了以下程序
慎重申明:Dir类的rmdir有BUG,请勿使用。。。。写的时候,我没有考虑太多,如果设定了某个目录,最终是会把这个目录也会删除的,而与我事先想的。把该目录下的内容清空有误差。(当然也可以在删除后重建,但毕竟不是原来的权限了。)
代码如下:
PHP代码
- <?php
-
- $dirName = "./uchome";
-
- $files = Dirs::read( $dirName , true);
-
- foreach( $files as $fileName )
- {
- if( is_file( $fileName ) && in_array(Files::extension( $fileName ) , array('php','html','htm'))){
- $fileData = Files::read( $fileName );
- $fileType = mb_detect_encoding($fileData , array('UTF-8','GBK','LATIN1','BIG5')) ;
- if( $fileType == 'CP936'){
- $fileData = mb_convert_encoding($fileData ,'utf-8' , 'gbk');
- if( Files::save( $fileName , $fileData )){
- echo "{$fileName} convert successed";
- echo "<br />";
- }
- }
- }
- }
-
-
-
-
- class Dirs
- {
- static function read ( $dirname , $recursive = false)
- {
- static $allInfo;
- $dirname .= subStr( $dirname, -1 ) == "/" ? "" : "/";
- $dirInfo = glob( $dirname . "*" );
- if ( $recursive == false ){
- return $dirInfo;
- }else{
- foreach ( $dirInfo as $info ){
- if ( is_dir( $info ) ){
- if ( !is_readable( $info ) ){
- chmod( $info, 0777 );
- }
-
- $allInfo[] = $info;
- self::read( $info , true);
- }else{
-
- $allInfo[] = $info;
- }
- }
- }
- return $allInfo;
- }
-
- static function rmdir ( $dirname )
- {
- if ( is_dir( $dirname ) && !is_writeable( $dirname ) ){
- if ( !chmod( $dirname , 0666 ) ){
- return false;
- }
- }else if ( !is_dir( $dirname ) ){
- return false;
- }
- $dirname .= subStr( $dirname, -1 ) == "/" ? "" : "/";
- $dirInfo = glob( $dirname . "*" );
- foreach ( $dirInfo as $info ){
- if ( is_dir( $info ) ){
- self::rmdir( $info );
- }else{
- unlink( $info );
- }
- }
- @rmdir( $dirname );
- }
-
- function mkdir($dir, $mode = 0777)
- {
- if (!is_dir($dir)){
- $ret = @mkdir($dir, $mode, true);
- if (!$ret){
- exit('function:mkdirs failed');
- }
- }
- return true;
- }
- }
-
- class Files
- {
- static function read ( $filename )
- {
- if ( !is_readable( $filename ) ){
- chmod( $filename, 0644 );
- }
- return file_get_contents( $filename );
- }
-
- static function create ( $filename , $mod = 0666 )
- {
- if ( @touch( $filename ) == false){
- $fp = fopen( $filename, "a+" );
- if ( $fp ){
- fclose( $fp );
- }
- }
- chmod( $filename, 0666 );
- }
-
- static function save ( $filename , $data , $append = false)
- {
- if ( !file_exists( $filename ) ){
- self::create($filename);
- $append = false;
- }
- if ( $append == false ){
- return file_put_contents( $filename , $data );
- }else{
- if ( !is_writeable( $filename ) ){
- chmod( $filename, 0666 );
- }
- return file_put_contents( $filename , $data , FILE_APPEND );
- }
- }
-
- static function delete ( $filename )
- {
- if ( !is_array( $filename ) ){
- $filenames = array($filename);
- }
- foreach ( $filenames as $filename ){
- if ( is_file( $filename ) ){
- if( !unlink( $filename ) ){
- chmod( $filename , 0666 );
- unlink( $filename );
- }
- }
- }
- }
-
- static function extension( $filename ){
- return strtolower(pathinfo( $filename , PATHINFO_EXTENSION ));
- }
- }
Tags: php, mbstring
PHP | 评论:1
| 阅读:27362
Submitted by gouki on 2009, July 2, 9:53 PM
不记得从多久开始,我就在一直使用firefox了。
虽然从为一名WEB开发人员,不得不使用众多浏览器,但FF已经是我的默认浏览器。一般情况下,如果不是为了看网页效果或者使用网银,我是不会打开ie的。
其他的浏览器也纯粹是为了测试而使用。opera更多的是被我用来打开WAP网站,chrome则就是用来体验一下速度。(顺便说一下,chrome for ubuntu,居然不能输中文?好奇怪呀。。。。)
今天看到推送3.5,升级了一下,结果,打不开FF了。。
进程里也没有。。。
目前尚不清楚是因为插件的关系还是什么其他的关系。因为我有很多插件需要使用,暂时不做测试了。。。。
Tags: firefox
Software | 评论:0
| 阅读:16988
Submitted by gouki on 2009, July 2, 12:14 PM
难道以后可以这样用了?
PHP代码
- <?php
-
- $usingGC = gc_enabled();
- if( $usingGC == false){
- gc_enable();
- $usingGC = gc_enabled();
- }
- if( $ucingGC == true){
- gc_collect_cycles();
- }
不知道效果有多明显?
Tags: gabarge
PHP | 评论:0
| 阅读:16443