2017-10-11 10 views
0

내가 입력 :PHP do_pgsql 수없는 초기화 모듈 터미널에서

php -v 

과 나는이있어 :

PHP Warning: PHP Startup: pdo_pgsql: Unable to initialize module 
Module compiled with module API=20131226 
PHP compiled with module API=20121212 
These options need to match 
in Unknown on line 0 
PHP Warning: PHP Startup: pgsql: Unable to initialize module 
Module compiled with module API=20131226 
PHP compiled with module API=20121212 
These options need to match 
in Unknown on line 0 
PHP 5.5.38 (cli) (built: Aug 21 2016 21:48:49) 
Copyright (c) 1997-2015 The PHP Group 
Zend Engine v2.5.0, Copyright (c) 1998-2015 Zend Technologies 

내 질문은 : 는 이러한 경고 예 경우, 중요하고 있는가, 어떻게해야합니까 ?

답변

1

이러한 경고는 pdo_pgsql 확장이 현재 실행중인 것과 다른 (이 경우 최신) PHP API 버전에 대해 컴파일되었음을 나타냅니다. 이 확장 프로그램을 사용하지 않는 경우이 오류를 무시하고 확장 프로그램을 사용하지 않도록 설정할 수 있습니다. 그러나 필요한 경우 호환되는 버전을 구입하고 설치해야합니다.

+0

고마워요! 너는 내 하루를 만들어. 나는 postgresql을 전혀 사용하지 않는다 ... 그래서 현상 유지 – Gerry