ICode9

精准搜索请尝试: 精确搜索
首页 > 系统相关> 文章详细

CentOS 6.8 下 phpvod 搭建记录( php52 的编译安装)

2021-11-02 20:59:31  阅读:242  来源: 互联网

标签:php52 configure CentOS -- devel usr error php 6.8


CentOS 6.8 下 phpvod 搭建记录( php52 的编译安装)

最新版可看博客原文,c 站摆烂更新不及时

由于该项目的维护团队已不再维护该项目,因此这只是一个考古项目,目前众多的 Video CMS 有的是更好的选择。

mysql httpd

yum install -y mysql
mysql -V
# mysql  Ver 14.14 Distrib 5.1.73, for redhat-linux-gnu (x86_64) using readline 5.1
# 启动 mysql
/etc/init.d/mysqld start
## 剩下步骤参考 https://blog.csdn.net/weixin_43031092/article/details/107125167
## https://blog.csdn.net/weixin_43031092/article/details/105456843
# 设置数据库 root 密码
mysql_secure_installation

# 登陆数据库
mysql -u root -p
# 创建新账户
grant all on *.* to username@localhost IDENTIFIED by 'password';

yum install -y httpd
httpd -v
# Server version: Apache/2.2.15 (Unix)
# Server built:   Jun 19 2018 15:45:13
# 启动 apache 网站服务
service httpd start

php 5.2

直接安装会是比较新的第七版,而老程序要求的模块必须在 5.2 之下,因此需要自行编译安装

  • ubuntu 18.04 -> php 7.4
  • centos 8.2 -> php 7.2
  • centos 6.8/6.5 -> php 5.3
# 安装依赖包
yum -y install gcc automake autoconf libtool gcc-c++ gd zlib zlib-devel openssl openssl-devel libxml2 libxml2-devel libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libmcrypt libmcrypt-devel curl-devel httpd-devel bzip2-devel aspell-devel expat-devel libxslt-devel php-pdo php-pdo_mysql

# 下载源代码,版本发布清单 https://www.php.net/releases/
wget http://museum.php.net/php5/php-5.2.17.tar.gz
# 解压源代码
tar -zxvf php-5.2.17.tar.gz && cd php-5.2.17
# 配置参数
./configure --prefix=/usr/local/php52 --with-apxs2=/usr/sbin/apxs --with-config-file-path=/usr/local/lib/php52/  --disable-posix   --enable-bcmath   --enable-calendar   --enable-exif   --enable-fastcgi   --enable-ftp   --enable-gd-native-ttf   --enable-libxml   --enable-magic-quotes   --enable-mbstring   --enable-pdo   --enable-soap   --enable-sockets   --enable-wddx   --enable-zip  --with-bz2   --with-curl   --with-curlwrappers   --with-freetype-dir   --with-gd   --with-gettext   --with-jpeg-dir  --with-kerberos   --with-libexpat-dir   --with-libxml-dir  --with-libxml-dir   --with-mcrypt   --with-mhash   --with-mime-magic   --with-mysql  --with-mysqli   --with-openssl --with-openssl-dir --with-pcre-regex  --with-pdo-mysql   --with-pdo-sqlite   --with-pic   --with-png-dir   --with-pspell   --with-sqlite   --with-ttf   --with-xmlrpc   --with-xpm-dir=/usr/lib64/x11  --with-xsl --with-zlib   --with-zlib-dir

# 编译并安装
make -j `nproc` && make install

# 版本检查,正常的话会显示类似下面的结果
/usr/local/php52/bin/php -v
## PHP 5.2.17 (cli) (built: Oct 22 2021 21:06:41) 
## Copyright (c) 1997-2010 The PHP Group
## Zend Engine v2.2.0, Copyright (c) 1998-2010 Zend Technologies

# 加入 PATH
nano ~/.bashrc
## 把下面的内容添加到文件末尾
export PATH=/usr/local/php52/bin:$PATH

安装成功的话会显示一些比较重要的路径,如下所示

Installing PHP CLI binary:        /usr/local/php52/bin/
Installing PHP CLI man page:      /usr/local/php52/man/man1/
Installing build environment:     /usr/local/php52/lib/php/build/
Installing header files:          /usr/local/php52/include/php/
Installing helper programs:       /usr/local/php52/bin/
  program: phpize
  program: php-config
Installing man pages:             /usr/local/php52/man/man1/
  page: phpize.1
  page: php-config.1
Installing PEAR environment:      /usr/local/php52/lib/php/

错误解决

  1. 配置报错 apxs
Sorry, I cannot run apxs.  Possible reasons follow:

1. Perl is not installed
2. apxs was not found. Try to pass the path using --with-apxs2=/path/to/apxs
3. Apache was not built using --enable-so (the apxs usage page is displayed)

The output of /usr/sbin/apxs follows:
./configure: line 6461: /usr/sbin/apxs: No such file or directory
configure: error: Aborting

参考PHP编译报错​Sorry, I cannot run apxs. Possible reasons follow.科技小能手 2017-11-12

yum install -y httpd-devel

  1. 配置报错 BZip2
checking for BZip2 in default path... not found
configure: error: Please reinstall the BZip2 distribution

参考编译安装 PHP 7.2 报错:checking for BZip2 in default path… not found configure: error: Please reinstall. PrinciplesMan 2021-07-16 10:01:35 120 ,bzip 已经安装,缺少的是 dev 版本的

yum install bzip2-devel -y

  1. 编译报错 configure: error: libjpeg.(a|so) not found.

参考这个

cp -frp /usr/lib64/libjpeg.* /usr/lib

  1. 编译报错 configure: error: libpng.(a|so) not found.

cp -frp /usr/lib64/libpng* /usr/lib/

  1. 配置报错 BZip2

尝试安装 libXpm-devel 后测试无效;参数指定 --with-xpm-dir=/usr/lib 测试无效;参考这个

ln -s /usr/lib64/libXpm.so* /usr/lib/
并且编译时指定, --with-xpm-dir=/usr/lib64/x11

# 上面的方案其实蛮奇怪的,因为这个路径并不存在,但是它确实解决了这个问题
[root@VM-0-4-centos php-5.2.17]# cd /usr/lib64/x11
-bash: cd: /usr/lib64/x11: No such file or directory
[root@VM-0-4-centos php-5.2.17]# cd /usr/lib64/X11
[root@VM-0-4-centos X11]# 

# 查看相文件
cd /usr/lib
find ./ libXpm*
# libXpm.so.4
# libXpm.so.4.11.0

cd /usr/lib64
find ./ libXpm*
# libXpm.so
# libXpm.so.4
# libXpm.so.4.11.0
  1. checking for U8T_DECOMPOSE…
    configure: error: utf8_mime2text() has new signature, but U8T_CANONICAL is missing. This should not happen. Check config.log for additional information.

参考configure: error: utf8_mime2text() has new signature, but U8T_CANONICAL is missing. 2013

yum install -y libc-client-devel

于是报出了新的错误 configure: error: Cannot find imap library (libc-client.a). Please check your c-client installation.,干脆直接删除配置参数中的--with-imap --with-imap-ssl

  1. configure: error: Please reinstall libmhash - I cannot find mhash.h

参考configure: error: Please reinstall libmhash – I cannot find mhash.h. 2013

sudo yum install -y libmhash-devel

  1. configure: error: Cannot find MySQL header files under yes.
checking whether to include mime_magic support... yes
checking for MING support... no
checking for mSQL support... no
checking for MSSQL support via FreeTDS... no
checking for MySQL support... yes
checking for specified location of the MySQL UNIX socket... no
checking for MySQL UNIX socket location... no
configure: error: Cannot find MySQL header files under yes.
Note that the MySQL client library is not bundled anymore!

编译php时提示“Cannot find MySQL header files”的解决方法. vast2006. 2011-03-21

yum install -y mysql-devel

  1. 报错 configure: error: Cannot find libmysqlclient under /usr.
    Note that the MySQL client library is not bundled anymore!

参考 编译安装php服务报错问题:configure: error: Cannot find libmysqlclient under /usr. 19/08/17,在 /usr/lib 没有 libmysqlclient,在 /usr/lib64 用 find ./ *mysql* 找到了不少

ln -s /usr/lib64/mysql/libmysqlclient.so /usr/lib/libmysqlclient.so

  1. configure: error: Cannot find pspell

Cannot find pspell – Fix PHP Configuration Error

yum install -y aspell-devel

  1. configure: error: not found. Please reinstall the expat distribution

yum install -y expat-devel
ln -s /usr/lib64/libexpat.so /usr/lib/libexpat.so

  1. configure: error: xslt-config not found. Please reinstall the libxslt >= 1.1.0 distribution

yum install -y libxslt-devel

  1. apache httpd 没有正确解析 php 文件,只是单纯的返回 php 源代码,参考linux apache不解析php怎么办. 2020-08-10
// info.php
<?php phpinfo(); ?>
# 查找 httpd 的配置文件
find / -name "httpd.conf"
## /etc/httpd/conf/httpd.conf

# 编辑配置文件
nano /etc/httpd/conf/httpd.conf
## 粘贴进下面的内容
AddType application/x-httpd-php .php

## 找到 DirectoryIndex index.html index.html.var,在其后面追加 index.php ,如下所示
DirectoryIndex index.html index.html.var index.php

Zend Optimizer 3.3.9

Please note that Zend Optimizer is only available for the accounts using PHP version 5.2 or below.

wget http://downloads.zend.com/optimizer/3.3.9/ZendOptimizer-3.3.9-linux-glibc23-x86_64.tar.gz
tar -xzvf ZendOptimizer-3.3.9-linux-glibc23-x86_64.tar.gz
cp ZendOptimizer-3.3.9-linux-glibc23-x86_64/data/5_2_x_comp/ZendOptimizer.so /usr/local/php52/lib/ZendOptimizer.so

nano /usr/local/lib/php52/php.ini
# 粘贴进下面的内容,第三行的路径取决与上面复制的结果
Zend Optimizer options 
zend_optimizer.optimization_level=1023
zend_extension=/usr/local/php52/lib/ZendOptimizer.so

phpvod

unrar

因为上传到服务器的源代码压缩格式是 rar,tar 不支持这个格式的压缩文件,这里编译安装一个 rar 来解决这个问题,当然也可以重新打包格式传到服务器。

# 下载源码,参考 https://www.jianshu.com/p/5a5f17e4a911
wget http://www.rarlab.com/rar/rarlinux-x64-5.3.0.tar.gz --no-check-certificate
# 解压
tar -zxvf rarlinux-x64-5.3.0.tar.gz
cd rar
# 安装 rar
make

安装

# 解压源代码
unrar x phpvod2_utf-8.rar
# 复制源代码到默认的网站根目录下
cp -r ./phpvod/* /var/www/html/
# 目录权限修改
chmod 777 /var/www/html -R

没有正确配置 zend 的话在首页(index.php)会显示没有安装 Zend Optimizer,正确配置之后首页是空白的,进入安装页面(install.php)

问题解决

  1. 安装页面中 install.htm 显示有一个错误 - 您的PHP环境没有开启短标记,安装无法继续。,并且许可协议的文字显示为 $land_licence;而在 install.php 中没有这个错误出现并且许可协议完全显示为协议文字。

参考php: “short_open_tag = On” not working. 2012 ,需要注意的是,如果 install.php 没有这个错误的话,可以忽略,因为这里通过 install.php 进行安装,而不是 install.htm。是否开启了短标记可以从 phpinfo 页面中进行查询。

# 编辑自定义的配置文件
nano /usr/local/lib/php52/php.ini
# 找到对应内容并在后边添加内容
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml

AddType text/html .shtml .html .htm
AddOutputFilter INCLUDES .shtml .html .htm
  1. 网站根目录 …777属性检测不通过

chmod 777 /var/www/html -R

效果预览

phpvod首页截图

phpvod管理页面截图
phpvod后台管理的自定义播放器格式页面

标签:php52,configure,CentOS,--,devel,usr,error,php,6.8
来源: https://blog.csdn.net/weixin_43031092/article/details/121108745

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有