私のウェブサイトをホストした後、私はいくつかの構成の問題を抱えていました。
警告:require_once(Zend / application.php)[function.require-once]:ストリームを開くことができませんでした:/にそのようなファイルまたはディレクトリはありません/ www /*** 22行目の.com/public / index.php
ZendFramewotkライブラリをに配置しましたwww/library
www/application/
www/library/ <--- Zend Framework
www/public/
しかし、ライブラリを追加した後、別の問題が発生します。
HTTPエラー500(内部サーバーエラー):サーバーが要求を実行しようとしたときに、予期しない状態が発生しました。
のスクリプトpublic/index.php
<?php
// Define path to application directory
defined('APPLICATION_PATH')
|| define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/../application'));
// Define application environment
defined('APPLICATION_ENV')
|| define('APPLICATION_ENV', (getenv('APPLICATION_ENV') ? getenv('APPLICATION_ENV') : 'production'));
defined('TMP_PATH')
|| define('TMP_PATH', realpath(APPLICATION_PATH . '/../tmp/'));
// Ensure library/ is on include_path
set_include_path(implode(PATH_SEPARATOR, array(
realpath(APPLICATION_PATH . '/../library'),
APPLICATION_PATH . '/models',
APPLICATION_PATH . '/models/generated',
get_include_path(),
)));
/** Zend_Application */
require_once 'Zend/Application.php';
// Create application, bootstrap, and run
$application = new Zend_Application(
APPLICATION_ENV,
APPLICATION_PATH . '/configs/application.ini'
);
$application->bootstrap()
->run();
$application->bootstrap()->run();
カムバックは何もしません