嘿,我试图安装typo3 cms 7.6.19,但我一直在收到此错误...
include_path = C:xampphtdocsmrsvendor/pear/pear_exception C:xampphtdocsmrsvendor/pear/http_request2 C:xamppphppear
Normally the current path '.' is included in the include_path of PHP. Although TYPO3 does not rely on this, it is an unusual setting that may introduce problems for some extensions.
您需要在php.ini中修复include_path
。
在该文件中,您会找到一条类似于:
的行 include_path = C:xampp7phpPEAR
。
修复更改下面的行
来自
include_path=C:xampp7phpPEAR
到
include_path=".;C:xampp7phpPEAR"