Heim > Fragen und Antworten > Hauptteil
Ich habe eine Frage.
Während der Änderung der PHP-Version auf PHP 7.1 wurde beim Starten von Apache der folgende Fehler gemeldet:
System: Win7 64-Bit; PHP-Version: PHP7.1.3 Thread Safe 32 vc14;
Apache-Version:
Hinweis: Durch alleiniges Ausführen des PHP-Befehls unter cmd kann phpinfo normal ausgegeben werden, und durch alleiniges Öffnen von Apache kann auch festgestellt werden, dass es funktioniert! , aber nachdem die folgende Anweisung zu httpd.conf hinzugefügt und dann Apache gestartet wurde, wird die obige Fehlermeldung gemeldet
PHPIniDir „D:/webSoft/php713“
LoadModule php7_module „D:/webSoft/php713/php7apache2_4.dll“
Ich habe zuerst online gesucht, weil die vc14-Bibliothek fehlte. Dann habe ich es versucht, aber es hat immer noch nicht funktioniert
高洛峰2017-05-16 13:15:58
httpd -t 测试apache配置有没有错命令。
windons下整合apache与php需要添加这三个配置项,apache才能使用PHP服务去解析PHP文件
LoadModule php7_module "E:/wamp/php-7.0.0-x64/php7apache2_4.dll"
AddType application/x-httpd-php .php .html .htm
PHPIniDir "E:/wamp/php-7.0.0-x64"
滿天的星座2017-05-16 13:15:58
我用phpstudy,http.conf文件加载模块是用LoadModule authz_core_module modules/mod_authz_core.so类似这样的而不是.dll,而且不用写绝对路径,只要把扩展文件放在相应的目录下即可
PHP中文网2017-05-16 13:15:58
首你要保证 Apache 和 PHP 都是 64 位的,要么都是 32 位
用 php-cgi
无论线程安全,还是非线程安全都可以
httpd.conf
Include "D:\ProgramFiles\Apache24\conf\extra/httpd-php.conf"
httpd-php.conf
LoadModule fcgid_module modules/mod_fcgid.so
<IfModule fcgid_module>
Include "D:\ProgramFiles\Apache24\conf/extra/httpd-fcgid.conf"
FcgidInitialEnv PHPRC "D:/ProgramFiles/php-7.1.3-x64/"
AddHandler fcgid-script .php
FcgidWrapper "D:/ProgramFiles/php-7.1.3-x64/php-cgi.exe" .php
</IfModule>
httpd-fcgid.conf
FcgidIOTimeout 384
FcgidConnectTimeout 360
FcgidOutputBufferSize 128
FcgidMaxRequestsPerProcess 1000
FcgidMinProcessesPerClass 0
FcgidMaxProcesses 16
FcgidMaxRequestLen 268435456
ProcessLifeTime 360
FcgidInitialEnv PHP_FCGI_MAX_REQUESTS 1000
附 mod_fcgid 下载
https://www.apachelounge.com/...