这篇文章主要为大家展示了“ PHP-5.4.45怎么用”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“ php-5.4.45怎么用”这篇文章吧。为了不影响实验效果
这篇文章主要为大家展示了“ PHP-5.4.45怎么用”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“ php-5.4.45怎么用”这篇文章吧。
为了不影响实验效果,提前可以把selinux 和iptables 关闭
[root@localhost ~]# chkconfig iptables off
[root@localhost ~]# chkconfig ip6tables off
[root@localhost ~]# /etc/init.d/iptables stop
[root@localhost ~]# /etc/init.d/ip6tables stop
[root@localhost ~]# sed -i "s/LINUX=.*/LINUX=disabled/g" /etc/selinux/config
更改完selinux后要想生效需要重启一下服务器,reboot或者shutdown -r now
第一步 安装yum扩展源
# yum install -y epel-release
备注:6.7前版本不支持,需要下一步
# wget -P /etc/yum.repos.d/ Http://mirrors.aliyun.com/repo/epel-6.repo
第二步 安装依赖包
# yum install make apr* autoconf automake GCc gcc-c++ zlib-devel openssl openssl-devel pcre-devel gd kernel keyutils patch perl kernel-headers compat* mpfr cpp glibc libGomp libstdc++-devel ppl cloog-ppl keyutils-libs-devel libcom_err-devel libsepol-devel libselinux-devel krb5-devel libXpm* freetype libjpeg* libpng* php-common php-gd ncurses* libtool* libxml2 libxml2-devel patch libmcrypt-devel php-mcrypt libmcrypt mcrypt freetype-devel freetype bzip2-devel bzip2-libs libxml2 libxml2-devel libxml2-python
把这些包全部安装上就不会报错了,
第三步 安装php
1,下载
# cd /usr/local/src/
# wget http://cn2.php.net/distributions/php-5.4.45.tar.bz2
2,解压
# tar -jxvf php-5.4.45.tar.bz2
3,安装
# cd php-5.4.45
# ./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache2/bin/apxs --with-config-file-path=/usr/local/php/etc --with-Mysql=/usr/local/mysql --with-libxml-dir --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-iconv-dir --with-zlib-dir --with-bz2 --with-openssl --with-mcrypt --enable-soap --enable-gd-native-ttf --enable-mbstring --enable-Sockets --enable-exif --disable-ipv6
如果出现报错:sorry,i cannot run apxs.possible reasons follow:
解决方法:
# find / -name perl
/usr/bin/perl
#vim /usr/local/apache2/bin/apxs
把第一行改成 #!/usr/bin/perl -w
#make && make install && echo $?
# cp /usr/local/src/php-5.4.45/php.ini-production /usr/local/php/etc/php.ini
拷贝配置文件
# apachectl -M
php5_module (shared)
检测php安装是否成功,用apache -M 查看apache动态模块是否加载php5
网页测试
Apache主配置文件为:/usr/local/apache2/conf/httpd.conf
# vim /usr/local/apache2/conf/httpd.conf
# If the AddEncoding directives above are commented-out, then you
# probably should define those extensions to indicate media types:
#
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
AddType application/x-httpd-php .php (定义apache解析PHP)
#
#
<IfModule dir_module>
DirectoryIndex index.html index.php
</IfModule>
#
[root@lanmp php-5.4.45]# cd /usr/local/apache2/htdocs/
[root@lanmp htdocs]# vi info.php
[root@lanmp htdocs]# cat info.php
<?php
phpinfo();
?>
在ie中输入 http://ip/info.php
以上是“ php-5.4.45怎么用”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注编程网PHP编程频道!
--结束END--
本文标题: php-5.4.45怎么用
本文链接: https://lsjlt.com/news/83617.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0