#!/bin/bash
#ByStranded2015-08-20
CMA_V=cmake-2.8.6
APA_V=httpd-2.2.15
MYS_V=mysql-5.5.22
LIB_V=libmcrypt-2.5.8
MHA_V=mhash-0.9.9.9
MCR_V=mcrypt-2.6.8
PHP_V=php-5.3.28
apache(){
#判断是否有RPM方式安装的httpd、httpd-manual软件包,如果有则卸载
if[$(rpm-qa..
分类:
其他好文 时间:
2015-08-25 17:03:02
阅读次数:
313
如果你在网上找了好多资料还是依旧无法安装mcrypt推荐你来试试本方法!sudo aptitude install libmcrypt-dev 或者sudo apt-get install php5-mcrypt模块安装完毕后,将mcrypt模块加载sudo php5enmod mcrypt检查:/...
分类:
Web程序 时间:
2015-08-25 15:53:34
阅读次数:
135
安装php1.yum-yinstallphpphp-fpm(1)、确认你的linux没有安装mcrypt库,如果已安装,跳过安装步骤#yumlistinstalled|grepmcryptlibmcrypt.x86_642.5.8-9.el6@epellibmcrypt-devel.x86_642.5.8-9.el6@epelmcrypt.x86_642.6.8-10.el6@epel以上显示已经安装过,若没有,则按以下..
分类:
Web程序 时间:
2015-08-20 06:53:10
阅读次数:
167
key, 0, mcrypt_enc_get_key_size($td)); mcrypt_generic_init($td, $key, $iv); $value = @pack("H*", $string); $ret = trim(mdecrypt_g...
分类:
Web程序 时间:
2015-08-18 18:26:07
阅读次数:
125
centos5/6epelyum源安装在centos6.x上编译安装php时,如果指定编译参数--wity-mcrypt会需要安装libmcrypt-devel这个包才可以。但是当使用yuminstalllibmcrypt-devel的时候,会提示无这个包。这是因为centos6.x默认的yum源不在包含这个资源。需要第三方资源。首先现在如下rpm包..
分类:
其他好文 时间:
2015-08-16 23:26:49
阅读次数:
164
银联开发必须要开启mcrypt和bcmath两个PHP扩展库的支持 如果没有就没有办法进行开发,先确认数据库是否开启扩展关于银联支付接口 最主要的是银行提供的秘钥和私钥,netpayclient.php加密文件 MerPrK.key私钥 PgPubk.key秘钥 是银联也商户签约后提供 非常重要.....
分类:
其他好文 时间:
2015-08-13 13:43:26
阅读次数:
1112
移除旧的软件包:yum remove httpd* php* 安装:yum install php php-fpmyum install php-gd php-mysql php-mbstring php-xml php-mcrypt 验证配置文件:/etc/init.d/nginx confi.....
分类:
Web程序 时间:
2015-08-06 20:00:15
阅读次数:
208
一个命令全搞定 sudo?port?install?php55?php55-fpm?php55-curl?php55-exif?php55-gd?php55-gettext?php55-iconv?php55-mbstring?php55-mcrypt?php55-mysql?php55-memcache?php55-odbc?php55-opc...
分类:
数据库 时间:
2015-08-06 15:18:06
阅读次数:
478
方法:
1) wget
http://mirrors.sohu.com/php/php-5.6.9.tar.gz
2) 进入解压后的php源码目录,执行./configure --enable-fpm --enable-mbstring --with-apxs2=/usr/local/apache2/bin/apxs --with-mcrypt --with-pdo_mysql --wi...
分类:
Web程序 时间:
2015-08-05 12:52:13
阅读次数:
263
key = $key; $this->iv = mcrypt_create_iv(mcrypt_get_iv_size($this->cipher,$this->modes),MCRYPT_RAND); } /** * 加密 */ public function encrypt($input)...
分类:
Web程序 时间:
2015-07-30 21:03:00
阅读次数:
149