httpd.conf已删除 - 现在我无法加载PDO驱动程序

时间:2018-02-10 07:40:01

标签: php pdo apache2.4

我意外删除了我的httpd.conf。

我正在尝试根据默认文件再次使用httpd.conf。

我绝对没有更改php.ini或任何环境变量等,但现在我的php似乎无法使用PDO(任何新的PDO()都会导致PDOException)。

另外,当我运行phpinfo()时,我得到了这些:

PDO support    enabled
PDO drivers    no value

我尝试过这种可能的解决方案:PDO drivers no value in Windows但它对我的情况不起作用。

还有其他解决方案吗?我可以从httpd.conf中遗漏哪些可能导致这种情况的原因?

我的新httpd.conf:

LoadModule php7_module "c:/php/php7apache2_4.dll"
AddType application/x-httpd-php .php

ServerRoot "c:/Apache24"

LoadModule access_compat_module modules/mod_access_compat.so
LoadModule authz_core_module modules/mod_authz_core.so
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule dir_module modules/mod_dir.so
LoadModule mime_module modules/mod_mime.so

#required modules for SSL (HTTPS):
LoadModule setenvif_module modules/mod_setenvif.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule ssl_module modules/mod_ssl.so
LoadModule socache_shmcb_module modules/mod_socache_shmcb.so
Include conf/extra/httpd-ssl.conf

<Directory />
    AllowOverride none
    Require all denied
</Directory>

DocumentRoot "c:/Apache24/htdocs/public"
<Directory "c:/Apache24/htdocs/public">
    Options Indexes FollowSymLinks
    AllowOverride None
    Require all granted
</Directory>

<IfModule dir_module>
    DirectoryIndex index.php
</IfModule>

<Files ".ht*">
    Require all denied
</Files>

ErrorLog "logs/error.log"
LogLevel notice

<IfModule log_config_module>
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common
    <IfModule logio_module>
      LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
    </IfModule>
    CustomLog "logs/access.log" common
</IfModule>

<IfModule alias_module>
    ScriptAlias /cgi-bin/ "c:/Apache24/cgi-bin/"
</IfModule>

<Directory "c:/Apache24/cgi-bin">
    AllowOverride None
    Options None
    Require all granted
</Directory>

<IfModule headers_module>
    RequestHeader unset Proxy early
</IfModule>

<IfModule mime_module>
    TypesConfig conf/mime.types
    AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz
</IfModule>

<IfModule proxy_html_module>
Include conf/extra/proxy-html.conf
</IfModule>

<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>

0 个答案:

没有答案