0

netbeans で Zend フレームワークをセットアップしようとしています。アプリケーションを実行すると、次のエラーが表示されます。

Warning: require_once(Zend/Application.php) [function.require-once]: failed to open stream: No such file or directory in C:\Documents and Settings\maryb\Desktop\ZEND\ZendFrameworkQuickstart-20100208\public\index.php

そして次のエラー:

Fatal error: require_once() [function.require]: Failed opening required 'Zend/Application.php' (include_path='C:\Documents and Settings\maryb\Desktop\ZEND\ZendFrameworkQuickstart-20100208\library;.;C:\xampp\php\PEAR') in C:\Documents and Settings\maryb\Desktop\ZEND\ZendFrameworkQuickstart-20100208\public\index.php on line 17

どうすれば修正できますか?

4

1 に答える 1

1

必要なパスにZendLibraryを追加する必要があると思います。projectfolder/public/index.phpファイル内の次のコードを見てください。

// Ensure library/ is on include_path
set_include_path(implode(PATH_SEPARATOR, array(
    realpath(APPLICATION_PATH . '/../library'),
    get_include_path(),
)));
于 2012-05-20T14:07:48.487 に答える