make: *** [ext/openssl/openssl.lo] Error 1 설치경로/ext/openssl/openssl.c파일 기존껀 백업 후 아래 파일로 교체
환경 : centos7+apache2.4.6(RPM)+php4.4.9(src) 위 환경에서 아파치 구동시 아래와 같이 오류가 발생하여 확인해본 결과 libphp4.so: undefined symbol: unixd_config libphp4.so: undefined symbol: ap_get_server_version apache버전업으로 인한 해당 심볼 명칭이 변경되어 발생한 오류입니다. 조치방법은 아래와 같습니다. php4소스파일에서 아래 경로의 파일을 수정해야합니다. /sapi/apache2handler/php_functions.c 붉게 표시된 부분을 기존 unixd_config -> ap_unixd_config로 수정 373라인 AP_DECLARE_DATA extern unixd_config_rec..
사용조건 : 아파치 Available in version 2.3 and later 1. 컴파일 설치 각각의 경로에 버전별 php를 설치합니다. php4버전은 fpm을 지원하지 않기때문에 옵션을 빼야합니다~~~ libphp 모듈을 사용할 경우 하나의 php 버전에서만 –with-apxs2 옵션을 주시기 바라며, 나머지 버전은 php-fpm으로 처리하시기 바랍니다. # ./configure --prefix=/usr/local/php5x \ --with-config-file-path=/usr/local/php5x/etc \ --enable-fpm \ --enable-sigchild \ --with-libxml-dir \ --with-openssl \ --with-zlib \ --with-mysqli \ --w..
# wget http://php.net/distributions/php-7.3.0.tar.gz # ./configure --prefix=/usr/local/php73 \ --with-apxs2 \ --with-config-file-path=/usr/local/php73/etc \ --enable-fpm \ --enable-sigchild \ --with-libxml-dir \ --with-openssl \ --with-zlib \ --with-mysqli \ --with-zlib-dir \ --with-bz2 \ --enable-calendar \ --with-curl \ --enable-dba \ --with-gdbm \ --enable-exif \ --enable-ftp \ --with-gd \ --..
PHP Warning: mysql_connect(): mysqlnd cannot connect to MySQL 4.1+ using the old insecure authentication. Please use an administration tool to reset your password with the command SET PASSWORD = PASSWORD('your_existing_password'). This will store a new, and more secure, hash value in mysql.user. 위와 같이 오류가 발생할 경우는 php버전과 mysql버전에서 사용하는 password 암호화 방식이 다르기때문에 발생된 에러입니다. 해결방법은 아래와 같습니다. mysql> sel..