1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > php个人空间源码 PHP安装 - 牛牛牛大棚的个人空间 - OSCHINA - 中文开源技术交流社区...

php个人空间源码 PHP安装 - 牛牛牛大棚的个人空间 - OSCHINA - 中文开源技术交流社区...

时间:2023-12-02 23:26:55

相关推荐

php个人空间源码 PHP安装 - 牛牛牛大棚的个人空间 - OSCHINA - 中文开源技术交流社区...

1、下载php源码包

/downloads.php

2 、安装php

tar -xvf php-5.5.13.tar.bz2

cd php-5.5.13

./configure --prefix=/usr/local/php --with-config-file-path=/etc --enable-inline-optimization --disable-debug --disable-rpath --enable-shared --enable-opcache --enable-fpm --with-fpm-user=www --with-fpm-group=www --with-mysql=mysqlnd --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --with-gettext --enable-mbstring --with-iconv --with-mcrypt --with-mhash --with-openssl --enable-bcmath --enable-soap --with-libxml-dir --enable-pcntl --enable-shmop --enable-sysvmsg --enable-sysvsem --enable-sysvshm --enable-sockets --with-curl --with-zlib --enable-zip --with-bz2 --with-readline --without-sqlite3 --without-pdo-sqlite --with-pear

make

make install

(1)出现错误: congigure error: xml2-config not found.

解决办法: sudo yum install libxml2-devel

(2)出现错误: congigure error: Cannot find OpenSSL's

解决办法: yum install openssl openssl-devel

ln -s /usr/lib64/libssl.so /usr/lib/

(3)出现错误: configure: error: Please reinstall the BZip2 distribution

解决办法: yum install bzip2 bzip2-devel

(4)出现错误: configure: error: Please reinstall the libcurl distribution -easy.h should be in /include/curl/

解决办法: yum -y install curl-devel

configure: error: mcrypt.h not found. Please reinstall libmcrypt.

sudo yum install libmcrypt libmcrypt-devel mcrypt mhash

configure: error: Please reinstall readline - I cannot find readline.h

sudo yum install readline-devel

3、添加 PHP 命令到环境变量

vim /etc/profile

在末尾加入

PATH=$PATH:/usr/local/php/bin

export PATH

要使改动立即生效执行

. /etc/profile 或 source /etc/profile

查看环境变量

echo $PATH

4、查看php版本

php -v

PHP 5.5.13 (cli) (built: Jun 20 11:11:26)

Copyright (c) 1997- The PHP Group

Zend Engine v2.5.0, Copyright (c) 1998- Zend Technologies

5、配置php-fpm

cd /usr/local/php/etc

cp php-fpm.conf.default php-fpm.conf

6、启动php-fpm

sudo /usr/local/php/sbin/php-fpm

修改nginx的配置文件(/etc/nginx/conf.d/default.conf)

location / {

root web根目录;

index index.html index.htm index.php;

}

location ~ \.php$ {

root html;

fastcgi_pass 127.0.0.1:9000;

fastcgi_index index.php;

fastcgi_param SCRIPT_FILENAME web根目录$fastcgi_script_name;

include fastcgi_params;

}

7、重启nginx

/etc/init.d/nginx restart

在web根目录下创建index.php

在浏览器中输入http://ip/index.php查看成功即可。

(1)出现错误: can not get uid for www

解决方法:

修改php-fpm.conf中user为nginx group为nginx

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。