1. PHP 설치시 xmlwriter 이 부분을 disable 시키고 설치하면 사용을 못한다 그래서 php를 재 설치하지 않고 xmlwriter만 enable 시켜보자 우선 php 설치 디렉토리로 ext폴더에 xmlwriter 폴더로 이동
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
[root@xinet ~]# cd /root/php-5.4.45/ext/xmlwriter/ [root@xinet xmlwriter]# /usr/local/php/bin/phpize Configuring for: PHP Api Version: 20100412 Zend Module Api No: 20100525 Zend Extension Api No: 220100525 [root@xinet xmlwriter]# ./configure --with-php-config=/usr/local/php/bin/php-config [root@xinet xmlwriter]# make [root@xinet xmlwriter]# make instll Installing shared extensions: /usr/lib64/extensions/no-debug-non-zts-20100525/ |
2. php.ini 폴더에서 해당 파일을 인식시켜주자 / 정상적으로 확인할수 있다
1 2 3 4 5 |
[root@xinet xmlwriter]# vi /usr/local/apache/conf/php.ini extension_dir = "/usr/lib64/extensions/no-debug-non-zts-20100525/" extension = "zip.so" |