有几个关于这个的问题,但我已经用尽了所有的修复,这仍然不起作用。
我正在使用 Windows 7 操作系统(愚蠢,我知道)。
基本上我下载了 PHP 5.2.5 并安装了 VC6(VC9 存在一些问题,并且无法使用 Apache 2.2)。我编辑了 php.ini 文件以添加以下内容:
extension_dir = "C:/php/ext/"
extension = php5apache2_2.dll
extension = php5ts.dll
然后我将 php5apache2_2.dll 和 php5ts.dll 文件添加到 C:/php/ext/ 目录中。这些没有随 PHP 下载一起提供……我不得不在网上随机找到它们。这可能是个问题吗?
第一个扩展是 Apache 2.2 的 PHP 模块。下一个是我在几篇博客文章中发现的,有时不存在,需要添加以便 PHP 与 Apache 一起使用。
在 Apache 2.2 httpd.conf 文件中,我添加了:
LoadModule php5_module "C:/php/ext/php5apache2_2.dll"
AddType application/x-httpd-php .php
AddType application/x-httpd-php .phtml
PHPIniDir "C:/php/"
这些都在适当的地方,等等。我还将 DirectoryIndex 设置为包含 index.php
是的,一切都在正确的路径/正确的文件夹中。
当我重新启动 Apache 时,它永远不会重新启动,除非我注释掉 PHPIniDir 行。我得到的错误日志是:
Invalid command 'PHPIniDir', perhaps misspelled or defined by a module not included in the server configuration
我开始对那里所有所谓的“修复”感到有点迷失,并且害怕进入我的头脑并搞砸我的电脑(一些建议涉及在 system32 文件夹中粘贴东西等)。
有人可以帮忙吗??