在W7上運行,php5.3.5。
我已經下載並安裝了Zend框架文件。現在,我試圖運行PHP的安裝cheker recommended here但它返回一個eror:zend安裝
Ran PHP Installation Checker on 2012-08-27T13:06:37+00:00
PHP Extension Errors Tested
No errors found
Zend Framework Installation Tested
Errors
0 Exception thrown trying to access Zend/Loader.php
using 'use_include_path' = true.
Make sure you include Zend Framework in your
include_path which currently contains:
.;C:\php\pear
SSL Capabilities Errors Not tested
YouTube API Connectivity Not tested
Errors
這裏有類似的問題,挖掘this question和this other
已經嘗試過this solution和其他類似的人,但錯誤繼續出現。
編輯01:
使用this和this我想包括路徑,但不工作。當我撥打get_include_path()
時,它會再次返回.;C:\php\pear
。
這裏是添加的路徑的PHP:
<?php
$path = '.C:\php\zend';
set_include_path(get_include_path() . PATH_SEPARATOR . $path);
?>
編輯02:
實測值php.ini
,編輯和添加:根據this link on the Google developers pageinclude_path = ".;c:\php\pear;.;c:\php\lib\Zend"
。錯誤仍然出現,但現在將.;c:\php\lib\Zend
添加到路徑中。
'確保你的include_path包含了Zend Framework,問題是? – KingCrunch
編輯我的問題澄清... – Yaroslav