PHP not loading php_pgsql.dll on Windows

后端 未结 17 1847
面向向阳花
面向向阳花 2020-12-02 08:46

PHP 5.2.8 is refusing to load php_pgsql.dll, with the following error:

Warning: PHP Startup: Unable to load dynamic library \'D:\\PHP\\ext\\

17条回答
  •  感情败类
    2020-12-02 09:39

    You have to add the following lines to you httpd.conf file:

    PHPIniDir "c:/PHP/"
    Loadfile "C:\php\php5ts.dll"
    
    Loadfile "C:\php\libpq.dll"
    
    LoadModule php5_module "c:/PHP/php5apache2_2.dll"
    

    Source: http://www.php.net/manual/en/pgsql.setup.php

提交回复
热议问题