2016-11-14 78 views
0

我想在Windows上安裝帶有XAMPP的phpPgAdmin。在完成所有步驟後,XAMPP上的Apache模塊將無法啓動。我得到這個錯誤日誌XAMPP Apache在我添加phpPgAdmin別名後無法啓動

[Mon Nov 14 16:36:16.661538 2016] [ssl:warn] [pid 10612:tid 504] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name 
[Mon Nov 14 16:36:16.824335 2016] [core:warn] [pid 10612:tid 504] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run? 
[Mon Nov 14 16:36:16.924133 2016] [ssl:warn] [pid 10612:tid 504] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name 
[Mon Nov 14 16:36:17.724645 2016] [mpm_winnt:notice] [pid 10612:tid 504] AH00455: Apache/2.4.23 (Win32) OpenSSL/1.0.2h PHP/7.0.9 configured -- resuming normal operations 
[Mon Nov 14 16:36:17.724645 2016] [mpm_winnt:notice] [pid 10612:tid 504] AH00456: Apache Lounge VC14 Server built: Jul 1 2016 11:09:37 
[Mon Nov 14 16:36:17.724645 2016] [core:notice] [pid 10612:tid 504] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache' 
[Mon Nov 14 16:36:17.724645 2016] [mpm_winnt:notice] [pid 10612:tid 504] AH00418: Parent: Created child process 7288 
[Mon Nov 14 16:36:18.611254 2016] [ssl:warn] [pid 7288:tid 584] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name 
[Mon Nov 14 16:36:18.796715 2016] [ssl:warn] [pid 7288:tid 584] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name 
[Mon Nov 14 16:36:18.850157 2016] [mpm_winnt:notice] [pid 7288:tid 584] AH00354: Child: Starting 150 worker threads. 
[Mon Nov 14 16:36:22.814454 2016] [mpm_winnt:crit] [pid 7288:tid 584] AH02538: Child: Parent process exited abruptly. Child process is ending 

我試圖刪除的httpd-xamp.conf的phpPgAdmin的別名,一切又恢復了,但我的phpPgAdmin的是不行的(明顯)。 我註釋掉在php.ini中

extension=php_pdo_sqlite.dll 
extension=php_pgsql.dll 

的php_pgsql.dll和php_pdo_pgsql.dll擴展這是我上的config.inc.php配置從phpPgAdmin的文件夾

$conf['servers'][0]['host'] = 'localhost'; 
$conf['servers'][0]['pg_dump_path'] = 'C:\xampp\pgsql\9.3\bin\pg_dump.exe'; 
$conf['servers'][0]['pg_dumpall_path'] = 'C:\xampp\pgsql\9.3\bin\pg_dumpall.exe'; 
$conf['extra_login_security'] = false; 

這是我的別名配置上httpd-xampp.conf

Alias /phppgadmin 「C:/xampp/phpPgAdmin/」 
<Directory 「C:/xampp/phpPgAdmin」> 
    AllowOverride AuthConfig 
    Order allow,deny 
    Allow from all 
</Directory> 

我是XAMPP和PHP的新手,所以我不知道是什麼問題。任何人都可以幫忙

回答

1

我不知道我的回答是否爲時不晚,但你只需要在你的路「」改變大括號定期那些"",這樣

"C:/xampp/phppgadmin/" 
+0

我沒看出來..好的,趕上! – bibi

+0

哇,這是我的錯,通過複製所有配置而不是鍵入它... –