Home > Backend Development > PHP Tutorial > 配置远程服务器php环境-php

配置远程服务器php环境-php

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-13 11:45:19
Original
1257 people have browsed it

配置远程服务器php环境---php

1.下载php:http://cn2.php.net/get/php-5.5.8.tar.gz/from/a/mirror

2.安装

#./configure --disable-rpath --prefix=/usr/local/php5 --with-mysql=/usr/local/mysql --withz apxs2=/usr/local/apache/bin/apxs --with-mysql --disable-fileinfo#make#make install
Copy after login

?3.配置

?

?

#cd /usr/local/src/php-5.5.8#cp php.ini-development /usr/local/php5/lib/php.ini#vi /usr/local/apache/conf/httpd.conf 
Copy after login

? ?修改apache配置文件

?

? (1)ServerName??192.168.0.205:80

? (2)添加AddType application/x-httpd-php .php

? ?(3)查找 DirectoryIndex index.html 添加index.php中间加,号

?

#cd /usr/local/apache/bin/#./apachectl restart
Copy after login

?

4.遇到的问题及解决办法

? (1)make: *** No targets specified and no makefile found. Stop.

?

1、wget http://ftp.gnu.org/pub/gnu/ncurses/ncurses-5.6.tar.gz2.、tar zxvf ncurses-5.6.tar.gz3、 ./configure -prefix=/usr/local -with-shared -without-debug4、make5、make install
Copy after login

?

? (2)configure error xml2-config not found. please check your libxml2 installation

?

检查是否安装了libxm包# rpm -qa |grep  libxml2libxml2-2.6.26-2.1.12libxml2-python-2.6.26-2.1.12重新安装libxml2和libxml2-devel包, yum安装的时候发现新版本会提示更新,需要更新的可以更新,不要跳过就行了。# yum install libxml2# yum install libxml2-devel -y安装完之后查找xml2-config文件是否存在# find / -name "xml2-config"/usr/bin/xml2-config
Copy after login

??参见:http://blog.chinaunix.net/uid-26719405-id-3409842.html

? (3)configure: error: Cannot find MySQL header files under /usr/include/mysql.

?

#find / -name mysql.h  //查找是否存在#yum install MySQL-devel*注意:安装完成后,要在./configure 后多加一条--with-mysql路径
Copy after login

? ?参见:http://blog.csdn.net/sunnyzhangwenhan/article/details/8517463

?

(4)virtual memory exhausted: Cannot allocate memory

?

# dd if=/dev/zero of=/swap bs=1024 count=1MFormat the swap file:# mkswap /swapEnable the swap file:# swapon /swapEnable swap on boot:# echo "/swap swap swap sw 0 0" >> /etc/fstab
Copy after login

? ?(5)make: *** [ext/fileinfo/libmagic/apprentice.lo] Error 1

? ?这是由于内存小于1G所导致.在./configure加上选项:–disable-fileinfo

?

?

?

?

?

?

Related labels:
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template