error while loading shared libraries: libcrypto.so.10: cannot open shared object file: No such file or directory
或者 or
ossfs: /lib64/libcrypto.so.10: version `libcrypto.so.10' not found (required by ossfs)
解决办法,安装老的 ssl 10 或者对应的数字
yum install compat-openssl10
ok
deepxl 1月 20th, 2021
Posted In: PHP开发笔记
pathinfo的问题:nginx的配置文件nginx.conf中的 include enable-php.conf
修改为 include enable-php-pathinfo.conf
php.ini 问题: 把php配置文件php.ini中的 cgi.fix_pathinfo=0
修改为 cgi.fix_pathinfo=1
nginx rewrite 问题 : 改为 rewrite ^(.*)$ /index.php?s=$1 last;
deepxl 12月 3rd, 2017
Posted In: PHP开发笔记
vi /usr/local/nginx/conf/fastcgi.conf
fastcgi_param PHP_ADMIN_VALUE "open_basedir=$document_root/:/tmp/:/proc/:/var/www/";
deepxl 10月 11th, 2017
Posted In: PHP开发笔记
deepxl 9月 13th, 2017
Posted In: PHP开发笔记