<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>系统运维 &#187; PHP</title>
	<atom:link href="http://www.osyunwei.com/archives/category/config/web/php/feed" rel="self" type="application/rss+xml" />
	<link>https://www.osyunwei.com</link>
	<description>国产化OS/AnolisOS/openEuler/RHEL/CentOS/Rocky Linux/Debian/Ubuntu Linux FreeBSD 服务器教程 &#124; Windows Server 2003/2008/2012/2016/2019/2022/2025服务器教程</description>
	<lastBuildDate>Tue, 14 Apr 2026 10:59:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Linux下编译安装php扩展imagick</title>
		<link>https://www.osyunwei.com/archives/15629.html</link>
		<comments>https://www.osyunwei.com/archives/15629.html#comments</comments>
		<pubDate>Wed, 23 Apr 2025 07:35:28 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=15629</guid>
		<description><![CDATA[环境说明： php安装目录：/usr/local/php73 1、下载安装ImageMagick #imagick扩展的依赖库 cd /usr/local/src wget https://github.com/ImageMagick/ImageMagick/archive/7.0.8-61.tar.gz tar -zxvf  7.0.8-61.tar.gz cd ImageMagick-7.0.8-61 ./configure --prefix=/usr/local/imagemagick make make install 2、下载安装imagick扩展 cd /usr/local/src wget http://pecl.php.net/get/imagick-3.4.4.tgz tar -zxvf  imagick-3.4.4.tgz cd imagick-3.4.4 /usr/local/php73/bin/phpize ./configure --with-php-config=/usr/local/php73/bin/php-config --with-imagick=/usr/local/imagemagick make make install 3、在php.ini里面加上扩展 vi /usr/local/php73/etc/php.ini extension="imagick.so" :wq! #保存退出 4、查看是否已经安装扩展 /usr/local/php73/bin/php -i &#124; grep Imagick 5、安装ghostscript扩展 cd /usr/local/src wget -c https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs923/ghostscript-9.23.tar.gz tar -zxvf ghostscript-9.23.tar.gz cd [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/15629.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/15629.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CentOS 8.x下编译php 7.4、php5.6、php5.3多版本报错处理</title>
		<link>https://www.osyunwei.com/archives/10467.html</link>
		<comments>https://www.osyunwei.com/archives/10467.html#comments</comments>
		<pubDate>Wed, 18 Mar 2020 11:09:07 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[centos，php]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=10467</guid>
		<description><![CDATA[一、编译安装php 7.4.x 参考CentOS 8.0.1905编译安装Nginx1.16.1+MySQL8.0.18+PHP7.3.10 1、安装编译工具及库文件（使用yum命令安装） yum install apr* autoconf automake bison bzip2 bzip2* cpp curl curl-devel fontconfig fontconfig-devel freetype-devel gcc gcc-c++ gd gd-devel gettext gettext-devel glibc kernel kernel-headers keyutils keyutils-libs-devel krb5-devel libcom_err-devel libpng libpng-devel libjpeg* libsepol-devel libselinux-devel libstdc++-devel libtool* libgomp libxml2 libxml2-devel libXpm* libxml* libXaw-devel libXmu-devel libtiff libtiff* make openssl openssl-devel patch pcre-devel perl php-common [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/10467.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/10467.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux下php安装cphalcon扩展</title>
		<link>https://www.osyunwei.com/archives/9848.html</link>
		<comments>https://www.osyunwei.com/archives/9848.html#comments</comments>
		<pubDate>Fri, 09 Dec 2016 09:45:37 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[cphalcon]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=9848</guid>
		<description><![CDATA[说明： 操作系统：CentOS php安装目录：/usr/local/php php.ini配置文件路径：/usr/local/php/etc/php.ini 1、安装cphalcon cd /usr/local/src git clone git://github.com/phalcon/cphalcon.git #需要安装安装git软件包yum install git cd /usr/local/src/cphalcon/build/php5/64bits #选择相应的php版本目录 /usr/local/php/bin/phpize ./configure --with-php-config=/usr/local/php/bin/php-config make make install 2、配置php支持cphalcon vi /usr/local/php/etc/php.ini #编辑配置文件，在最后一行添加以下内容 添加 extension=phalcon.so :wq! #保存退出 3、重启php-fpm service php-fpm restart 在phpinfo页面可以看到关于cphalcon的选项，说明安装成功。 至此，Linux下php安装cphalcon扩展教程完成。 &#160;&#160;&#160;&#160;&#160;» 本文链接：https://www.osyunwei.com/archives/9848.html» 订阅本站：https://www.osyunwei.com/feed» 转载请注明来源：系统运维 » Linux下php安装cphalcon扩展<p><a rel="bookmark" href="https://www.osyunwei.com/archives/9848.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/9848.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux下php安装swoole扩展</title>
		<link>https://www.osyunwei.com/archives/9841.html</link>
		<comments>https://www.osyunwei.com/archives/9841.html#comments</comments>
		<pubDate>Fri, 09 Dec 2016 09:10:57 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[swoole]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=9841</guid>
		<description><![CDATA[说明： 操作系统：CentOS php安装目录：/usr/local/php php.ini配置文件路径：/usr/local/php/etc/php.ini 1、安装swoole cd /usr/local/src wget https://github.com/swoole/swoole-src/archive/v1.9.1-stable.tar.gz tar zxvf v1.9.1-stable.tar.gz cd swoole-src-1.9.1-stable /usr/local/php/bin/phpize ./configure --with-php-config=/usr/local/php/bin/php-config make make install 2、配置php支持swoole vi /usr/local/php/etc/php.ini #编辑配置文件，在最后一行添加以下内容 添加 extension=swoole.so :wq! #保存退出 3、重启php-fpm service php-fpm restart 在phpinfo页面可以看到关于swoole的选项，说明安装成功。 至此，Linux下php安装swoole扩展教程完成。 &#160;&#160;&#160;&#160;&#160;» 本文链接：https://www.osyunwei.com/archives/9841.html» 订阅本站：https://www.osyunwei.com/feed» 转载请注明来源：系统运维 » Linux下php安装swoole扩展<p><a rel="bookmark" href="https://www.osyunwei.com/archives/9841.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/9841.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux下PHP安装curl扩展支持https</title>
		<link>https://www.osyunwei.com/archives/9254.html</link>
		<comments>https://www.osyunwei.com/archives/9254.html#comments</comments>
		<pubDate>Fri, 25 Sep 2015 03:08:50 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=9254</guid>
		<description><![CDATA[问题： 线上运行的lamp服务器，默认yum安装的curl模块只支持http，不支持https。 解决方法： 编译安装curl，重新编译php，使php的curl模块支持https。 具体步骤： 1、下载curl cd /usr/local/src  #进入安装包存放目录 wget http://curl.haxx.se/download/curl-7.44.0.tar.gz  #下载 2、安装curl cd /usr/local/src tar zxvf curl-7.44.0.tar.gz  #解压 cd curl-7.44.0  #进入包安装目录 ./configure --prefix=/usr/local/curl --with-gssapi --enable-tls-srp --with-libmetalink  #配置 make  #编译 make install  #安装 3、重新编译php 查找系统之前的php编译参数 /usr/local/php/bin/php -i &#124; grep configure    #查看php编译参数 如下： './configure' '--prefix=/usr/local/php' '--with-config-file-path=/usr/local/php/etc' '--with-apxs2=/usr/local/apache/bin/apxs' '--with-mysql=/usr/local/mysql' '--with-mysqli=/usr/local/mysql/bin/mysql_config' '--with-mysql-sock=/tmp/mysql.sock' '--with-pdo-mysql=/usr/local/mysql' '--with-gd' '--with-png-dir=/usr/local/libpng' '--with-jpeg-dir=/usr/local/jpeg' '--with-freetype-dir=/usr/local/freetype' [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/9254.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/9254.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux下PHP安装kafka扩展模块</title>
		<link>https://www.osyunwei.com/archives/9252.html</link>
		<comments>https://www.osyunwei.com/archives/9252.html#comments</comments>
		<pubDate>Fri, 25 Sep 2015 03:06:49 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[kafka]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=9252</guid>
		<description><![CDATA[具体步骤： 1、安装librdkafka cd /usr/local/src  #进入安装包存放目录 wget https://github.com/edenhill/librdkafka/archive/master.zip  #下载 mv master.zip librdkafka-master.zip  #修改包名 unzip librdkafka-master.zip  #解压 cd librdkafka-master  #进入安装文件夹 ./configure   #配置 make  #编译 make install  #安装 2、安装phpkafka cd /usr/local/src  #进入安装包存放目录 wget https://github.com/EVODelavega/phpkafka/archive/master.zip  #下载 mv master.zip phpkafka-master.zip  #修改包名 unzip phpkafka-master.zip   #解压 cd phpkafka-master   #进入安装文件夹 /usr/local/php/bin/phpize  #加载php扩展模块 ./configure --enable-kafka --with-php-config=/usr/local/php/bin/php-config   #配置 make  #编译 make install  #安装 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/9252.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/9252.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux下安装libiconv使php支持iconv函数</title>
		<link>https://www.osyunwei.com/archives/9195.html</link>
		<comments>https://www.osyunwei.com/archives/9195.html#comments</comments>
		<pubDate>Sun, 02 Aug 2015 09:37:40 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[iconv]]></category>
		<category><![CDATA[libiconv]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=9195</guid>
		<description><![CDATA[问题： 线上运行的lamp服务器，php不支持iconv函数。 解决方法： 安装libiconv，重新编译php，使php支持iconv函数，实现utf-8和gb2312编码的转换。 具体步骤： 1、下载libiconv cd /usr/local/src wget http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.14.tar.gz #下载 2、安装libiconv cd /usr/local/src tar zxvf libiconv-1.14.tar.gz #解压 cd libiconv-1.14 #进入安装目录 ./configure --prefix=/usr/local/libiconv #配置 make #编译 make install #安装 3、重新编译php 查找系统之前的php编译参数 cd /usr/local/php/bin  #进入php安装目录 ./php -i &#124;more #查看php编译参数 如下： '--with-pdo_sqlite=shared' '--enable-bcmath=shared' '--enable-ftp=shared' '--enable-mbstring=shared' '--with-iconv=shared' '--enable-sockets=shared' '--enable-zip' '--enable-soap=s hared' '--with-openssl' '--with-zlib' '--with-curl=shared' '--with-gd=shared' '--with-jpeg-dir' '--with-png-dir' '--with-freetype-dir' [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/9195.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/9195.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux下安装php加速软件Xcache</title>
		<link>https://www.osyunwei.com/archives/8918.html</link>
		<comments>https://www.osyunwei.com/archives/8918.html#comments</comments>
		<pubDate>Fri, 09 Jan 2015 03:08:51 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Xcache]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=8918</guid>
		<description><![CDATA[说明： php安装目录：/usr/local/php php.ini配置文件路径：/usr/local/php/etc/php.ini Nginx安装目录：/usr/local/nginx Nginx网站根目录：/usr/local/nginx/html 1、安装xcache cd /usr/local/src #进入软件包存放目录 wget http://xcache.lighttpd.net/pub/Releases/3.2.0/xcache-3.2.0.tar.gz #下载 tar zxvf xcache-3.2.0.tar.gz #解压 cd xcache-3.2.0 #进入安装目录 /usr/local/php/bin/phpize #用phpize生成configure配置文件 ./configure --enable-xcache--enable-xcache-coverager --enable-xcache-optimizer --with-php-config=/usr/local/php/bin/php-config #配置 make #编译 make install #安装 安装完成之后，出现下面的界面，记住以下路径，后面会用到。 /usr/local/php/lib/php/extensions/no-debug-non-zts-20090626/ #xcache模块路径 2、创建xcache缓存文件 touch /tmp/xcache #创建文件 chmod 777 /tmp/xcache #设置权限 3、创建xcache管理员密码为123456 echo -n "123456" &#124; md5sum #记住类似下面一行代码（md5加密之后的密码），后面会用到 e10adc3949ba59abbe56e057f20f883e 4、拷贝xcache后台管理程序到网站根目录 cp -r /usr/local/src/xcache-3.2.0/htdocs   [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/8918.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/8918.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux下php安装mcrypt扩展</title>
		<link>https://www.osyunwei.com/archives/7421.html</link>
		<comments>https://www.osyunwei.com/archives/7421.html#comments</comments>
		<pubDate>Wed, 26 Feb 2014 02:45:59 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mcrypt]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=7421</guid>
		<description><![CDATA[说明： 操作系统：CentOS 5.x 64位 已安装php版本：php-5.4.4 已安装php路径：/usr/local/php 实现目的： 在不影响网站访问的情况下，重新编译php，增加对mcrypt扩展的支持 具体操作： 一、下载软件包 1、下载php（版本要与系统安装的一致） http://museum.php.net/php5/php-5.4.4.tar.gz 2、下载libmcrypt（安装mcrypt需要此软件包） http://nchc.dl.sourceforge.net/project/mcrypt/Libmcrypt/2.5.8/libmcrypt-2.5.8.tar.gz 3、下载mhash（安装mcrypt需要此软件包） https://acelnmp.googlecode.com/files/mhash-0.9.9.9.tar.gz 4、下载mcrypt https://lcmp.googlecode.com/files/mcrypt-2.6.8.tar.gz 以上软件包下载之后，上传到/usr/local/src目录 二、安装软件包 1、安装libmcrypt cd /usr/local/src  #进入软件包存放目录 tar zxvf libmcrypt-2.5.8.tar.gz  #解压 cd libmcrypt-2.5.8  #进入安装目录 ./configure  #配置 make  #编译 make install  #安装 2、安装mhash cd /usr/local/src tar zxvf mhash-0.9.9.9.tar.gz cd mhash-0.9.9.9 ./configure make make install 3、安装mcrypt cd /usr/local/src tar zxvf [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/7421.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/7421.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux下php安装MagickWand</title>
		<link>https://www.osyunwei.com/archives/5340.html</link>
		<comments>https://www.osyunwei.com/archives/5340.html#comments</comments>
		<pubDate>Thu, 06 Sep 2012 04:50:50 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[MagickWand]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=5340</guid>
		<description><![CDATA[说明： php安装目录：/usr/local/php5 php.ini配置文件路径：/usr/local/php5/etc/php.ini Nginx安装目录：/usr/local/nginx Nginx网站根目录：/usr/local/nginx/html 1、安装编译工具 yum install wget  make gcc gcc-c++ gtk+-devel zlib-devel openssl openssl-devel pcre-devel kernel keyutils  patch perl 2、安装ImageMagick cd /usr/local/src  #进入软件包存放目录 wget http://www.imagemagick.org/download/ImageMagick.tar.gz  #下载ImageMagick tar zxvf ImageMagick.tar.gz  #解压 cd ImageMagick-6.7.9-3   #进入安装目录 ./configure --prefix=/usr/local/imagemagick  #配置 make #编译 make install  #安装 export PKG_CONFIG_PATH=/usr/local/imagemagick/lib/pkgconfig/  #设置环境变量 系统运维 www.osyunwei.com 温馨提醒：qihang01原创内容版权所有,转载请注明出处及原文链接 3、安装MagickWandForPHP cd /usr/local/src  #进入软件包存放目录 wget http://www.magickwand.org/download/php/legacy/MagickWandForPHP-1.0.8.tar.gz [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/5340.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/5340.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Linux下php安装imagick</title>
		<link>https://www.osyunwei.com/archives/5327.html</link>
		<comments>https://www.osyunwei.com/archives/5327.html#comments</comments>
		<pubDate>Thu, 06 Sep 2012 04:25:16 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[imagick]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=5327</guid>
		<description><![CDATA[说明： php安装目录：/usr/local/php5 php.ini配置文件路径：/usr/local/php5/etc/php.ini Nginx安装目录：/usr/local/nginx Nginx网站根目录：/usr/local/nginx/html 1、安装编译工具 yum install wget  make gcc gcc-c++ gtk+-devel zlib-devel openssl openssl-devel pcre-devel kernel keyutils  patch perl 2、安装ImageMagick 系统运维 www.osyunwei.com 温馨提醒：qihang01原创内容版权所有,转载请注明出处及原文链接 cd /usr/local/src  #进入软件包存放目录 wget http://www.imagemagick.org/download/ImageMagick.tar.gz  #下载ImageMagick tar zxvf ImageMagick.tar.gz  #解压 cd ImageMagick-6.7.9-3   #进入安装目录 ./configure --prefix=/usr/local/imagemagick  #配置 make #编译 make install  #安装 export PKG_CONFIG_PATH=/usr/local/imagemagick/lib/pkgconfig/  #设置环境变量 3、安装imagick cd /usr/local/src wget http://pecl.php.net/get/imagick-3.0.1.tgz  #下载imagick [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/5327.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/5327.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux下php安装suhosin</title>
		<link>https://www.osyunwei.com/archives/5313.html</link>
		<comments>https://www.osyunwei.com/archives/5313.html#comments</comments>
		<pubDate>Wed, 05 Sep 2012 09:26:45 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[suhosin]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=5313</guid>
		<description><![CDATA[说明： php安装目录：/usr/local/php5 php.ini配置文件路径：/usr/local/php5/etc/php.ini Nginx安装目录：/usr/local/nginx Nginx网站根目录：/usr/local/nginx/html 系统运维 www.osyunwei.com 温馨提醒：qihang01原创内容版权所有,转载请注明出处及原文链接 1、安装编译工具 yum install wget  make gcc gcc-c++ zlib-devel openssl openssl-devel pcre-devel kernel keyutils  patch perl 2、安装suhosin cd /usr/local/src  #进入软件包存放目录 wget http://download.suhosin.org/suhosin-0.9.33.tgz  #下载 tar zxvf suhosin-0.9.33.tgz  #解压 cd suhosin-0.9.33  #进入安装目录 /usr/local/php5/bin/phpize  #用phpize生成configure配置文件 ./configure  --with-php-config=/usr/local/php5/bin/php-config  #配置 make  #编译 make install  #安装 安装完成之后，出现下面的界面，记住以下路径，后面会用到。 /usr/local/php5/lib/php/extensions/no-debug-non-zts-20090626/  #suhosin模块路径 3、配置php支持suhosin vi /usr/local/php5/etc/php.ini  #编辑配置文件，在最后一行添加以下内容 extension="suhosin.so" [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/5313.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/5313.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Linux下php安装memcache</title>
		<link>https://www.osyunwei.com/archives/5302.html</link>
		<comments>https://www.osyunwei.com/archives/5302.html#comments</comments>
		<pubDate>Wed, 05 Sep 2012 09:07:07 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[memcache]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=5302</guid>
		<description><![CDATA[说明： php安装目录：/usr/local/php5 php.ini配置文件路径：/usr/local/php5/etc/php.ini Nginx安装目录：/usr/local/nginx Nginx网站根目录：/usr/local/nginx/html 1、安装编译工具 yum install wget  make gcc gcc-c++ zlib-devel openssl openssl-devel pcre-devel kernel keyutils  patch perl 2、安装memcache cd /usr/local/src  #进入软件包存放目录 wget http://pecl.php.net/get/memcache-2.2.6.tgz  #下载 tar zxvf memcache-2.2.6.tgz  #解压 cd memcache-2.2.6  #进入安装目录 /usr/local/php5/bin/phpize  #用phpize生成configure配置文件 ./configure  --with-php-config=/usr/local/php5/bin/php-config  #配置 系统运维 www.osyunwei.com 温馨提醒：qihang01原创内容版权所有,转载请注明出处及原文链接 make  #编译 make install #安装 安装完成之后，出现下面的界面，记住以下路径，后面会用到。 /usr/local/php5/lib/php/extensions/no-debug-non-zts-20090626/  #memcache模块路径 3、配置php支持memcache vi /usr/local/php5/etc/php.ini  #编辑配置文件，在最后一行添加以下内容 extension="memcache.so" [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/5302.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/5302.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>linux下安装eaccelerator加速php执行效率</title>
		<link>https://www.osyunwei.com/archives/5274.html</link>
		<comments>https://www.osyunwei.com/archives/5274.html#comments</comments>
		<pubDate>Mon, 03 Sep 2012 04:56:16 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[eaccelerator]]></category>
		<category><![CDATA[linux加速php]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=5274</guid>
		<description><![CDATA[说明： php安装目录：/usr/local/php5 php.ini配置文件路径：/usr/local/php5/etc/php.ini Nginx安装目录：/usr/local/nginx Nginx网站根目录：/usr/local/nginx/html 安装篇 1、安装编译工具 yum install -y wget  make gcc gcc-c++ zlib-devel openssl openssl-devel pcre-devel kernel keyutils  patch perl 2、安装eaccelerator cd /usr/local/src  #进入软件包存放目录 wget http://acelnmp.googlecode.com/files/eaccelerator-0.9.6.1.tar.bz2   #下载 tar xjf eaccelerator-0.9.6.1.tar.bz2  #解压 cd eaccelerator-0.9.6.1  #进入安装目录 /usr/local/php5/bin/phpize  #用phpize生成configure配置文件 ./configure -enable-eaccelerator=shared --with-php-config=/usr/local/php5/bin/php-config  #配置 make  #编译 make install  #安装 安装完成之后，出现下面的界面，记住以下路径，后面会用到 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 /usr/local/php5/lib/php/extensions/no-debug-non-zts-20090626/  #eaccelerator模块路径 mkdir /tmp/eaccelerator  [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/5274.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/5274.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>phpMyAdmin“缺少 mcrypt 扩展。请检查 PHP 配置。”解决办法</title>
		<link>https://www.osyunwei.com/archives/2053.html</link>
		<comments>https://www.osyunwei.com/archives/2053.html#comments</comments>
		<pubDate>Fri, 03 Feb 2012 03:11:28 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP 配置]]></category>
		<category><![CDATA[phpmyadmin]]></category>
		<category><![CDATA[缺少 mcrypt 扩展]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=2053</guid>
		<description><![CDATA[出现问题：在安装配置phpMyAdmin管理mysql数据库的时候，打开phpMyAdmin登录页面，出现下面的错误提示：                 缺少 mcrypt 扩展。请检查 PHP 配置        解决办法：安装php-mcrypt libmcrypt libmcrypt-devel这三个库文件        系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接       下面以CentOS 6.0系统为例来为说明：（备注：以下操作均在终端命令行下进行）       1、安装第三方yum源（默认yum源里面没有这几个库文件，不能使用yum安装）           wget http://www.atomicorp.com/installers/atomic    #下载           sh ./atomic   #安装       2、使用yum命令安装           yum  install  php-mcrypt  libmcrypt  libmcrypt-devel       3、重启系统           shutdown -r now       现在打开phpMyAdmin登录页面，没有了错误提示，问题解决。（如下如所示） &#160;&#160;&#160;&#160;&#160;» 本文链接：https://www.osyunwei.com/archives/2053.html» 订阅本站：https://www.osyunwei.com/feed» 转载请注明来源：系统运维 » phpMyAdmin“缺少 mcrypt 扩展。请检查 PHP 配置。”解决办法<p><a rel="bookmark" href="https://www.osyunwei.com/archives/2053.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/2053.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
