摘要: 1.下载相关源文件 wget http://mirror.bjtu.edu.cn/apache/httpd/httpd-2.4.18.tar.gzwget http://mirrors.hust.edu.cn/apache//apr/apr-1.5.2.tar.gz wget http://mirr 阅读全文
posted @ 2016-03-22 09:24 茫海 阅读(148) 评论(0) 推荐(0)
摘要: 1.php作为一种弱类型语言,不需要显式的指明变量的类型,但是php变量也是有类型的,php变量包含以下8种变量(三大类) a.标量类型:boolean,integer,float(double),string b.复合类型:array,object c.特殊类型:resource,null 2.p 阅读全文
posted @ 2016-03-21 21:30 茫海 阅读(343) 评论(0) 推荐(0)
摘要: 文章来源:http://www.cndns.com/help/help_con.aspx?hid=394 Linux磁盘挂载是比较常见的管理操作之一。我司橙云预装的linux系统有2块盘,一块为系统盘,另外一块磁盘是数据盘,默认没有挂载,需要 手动挂载到系统中。具体操作是:需要对磁盘进行格式化,格式 阅读全文
posted @ 2016-03-21 16:41 茫海 阅读(443) 评论(0) 推荐(0)
摘要: CA证书下载地址:http://curl.haxx.se/docs/caextract.html 修改php.ini文件 openssl.cafile= D:/wamp/php/verify/cacert.pem 阅读全文
posted @ 2016-02-29 14:23 茫海 阅读(643) 评论(0) 推荐(0)
摘要: 1.安装必须的软件 yum install httpd httpd-devel subversion mod_dav_svn mod_auth_mysql 2.创建代码库 mkdir -p /root/svn/repositories svnadmin create /root/svn/reposi 阅读全文
posted @ 2016-02-19 10:23 茫海 阅读(129) 评论(0) 推荐(0)
摘要: location / { root html; index index.html index.htm index.php; if (!-e $request_filename) { rewrite ^(.*)$ /index.php last; break; } } 阅读全文
posted @ 2016-02-18 16:05 茫海 阅读(887) 评论(0) 推荐(0)
摘要: 1.下载 wget http://nginx.org/download/nginx-1.7.8.tar.gz 2.解压 tar -zxvf nginx-1.7.8.tar.gz 3.切换目录 cd nginx-1.7.8 4.安装 ./configure --prefix=/usr/local/ng 阅读全文
posted @ 2016-02-18 10:43 茫海 阅读(149) 评论(0) 推荐(0)