最新版可看博客原文,c 站摆烂更新不及时
由于该项目的维护团队已不再维护该项目,因此这只是一个考古项目,目前众多的 Video CMS 有的是更好的选择。
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
直接安装会是比较新的第七版,而老程序要求的模块必须在 5.2 之下,因此需要自行编译安装
# 安装依赖包 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/
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
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
参考这个
cp -frp /usr/lib64/libjpeg.* /usr/lib
cp -frp /usr/lib64/libpng* /usr/lib/
尝试安装 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
参考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
参考configure: error: Please reinstall libmhash – I cannot find mhash.h. 2013
sudo yum install -y libmhash-devel
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
参考 编译安装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
Cannot find pspell – Fix PHP Configuration Error
yum install -y aspell-devel
yum install -y expat-devel
ln -s /usr/lib64/libexpat.so /usr/lib/libexpat.so
yum install -y libxslt-devel
// 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
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
因为上传到服务器的源代码压缩格式是 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)
$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
chmod 777 /var/www/html -R