摘要:
具体解决办法如下:在“我的电脑” 上单击右键,选择“硬件--设备管理器”,在设备管理器中选择“计算机”展开,选择“ACPI Multiprocessor PC” ,在该项上点击右键,选择“更新驱动程序”,选择“从列表或置顶位置安装”,下一步,选择“不要搜索,我要自己选择安装的驱动程序”,下一步,选择“Standard PC”,接着下一步,完成安装。 阅读全文
摘要:
wget http://xcache.lighttpd.net/pub/Releases/1.3.0/xcache-1.3.0.tar.gzsudo tar -xzvf xcache-1.3.0.tar.gzcd xcache-1.3.0sudo /usr/local/php-5.3.3/bin/phpize sudo ./configure --with-php-config=/usr/loca... 阅读全文
摘要:
wget http://nginx.org/download/nginx-0.8.47.tar.gzsudo tar zxvf nginx-0.8.47.tar.gzcd nginx-0.8.47sudo ./configure --prefix=/usr/local/nginx-0.8.47sudo makesudo make install在编译的过程中可能会出现以下提示:./configure: error: the HTTP rewrite module requires the PCRE library.You can either disable the module by usi 阅读全文
摘要:
#author:zhxia给php打上php-fpm 补丁sudo tar jxvf php-5.2.14.tar.bz2sudo patch -d php-5.2.14 -p1 < php-5.2.14-fpm-0.5.14.diff 编译phpcd php-5.2.14/sudo ./configure --prefix=/usr/local/php-5.2.14 --with-mcry... 阅读全文
摘要:
[代码]注:bind('input',fun) 用于ff下keyupbind('keyup',fun) 用于ie 阅读全文
摘要:
SSH分客户端openssh-client和openssh-server 如果你只是想登陆别的机器的SSH只需要安装openssh-client(ubuntu有默认安装,如果没有则sudo apt-get install openssh-client),如果要使本机开放SSH服务就需要安装openssh-server sudo apt-get install openssh-server 然后确认... 阅读全文
摘要:
首先添加用户(当然也可是使用root用户)格式:grant 权限 on 数据库名.表名 用户@登录主机 identified by "用户密码"; grant select,update,insert,delete on *.* to zhxia@'%' identified by '123456';或者所有权限GRANT ALL PRIVILEGES ON *.* TO zhxia@'%' ID... 阅读全文
摘要:
//编译安装php 5.3.3#author:zhxia 由于php5.3.X已经自带了php-fpm所以不需要打补丁# sudo ./configure --prefix=/usr/local/php-5.3.3 --with-mcrypt --with-gettext --with-mysql --with-gd --with-jpeg-dir --with-png-dir --with-cu... 阅读全文