在zend.domain.com
创建子域后,我已在domain.com
上传了我的项目。所以最初我的代码是domain.com/zend
。
当我尝试运行项目时,它给了我这些错误:
警告:include_once(Zend / View.php)[function.include-once]:无法打开流:/home/domain/public_html/zend/library/Zend/Loader.php中没有这样的文件或目录146
警告:include_once()[function.include]:无法打开包含的'Zend / View.php'(include_path ='/ home / domain / public_html / zend / application /../ library:/ home / domain /第146行/home/brainbud/public_html/zend/library/Zend/Loader.php中的public_html / zend / library:。:/ usr / lib / php:/ usr / local / lib / php')
致命错误:第69行的/home/brainbud/public_html/zend/library/Zend/Application/Resource/View.php中找不到“Zend_View”类
这是我的.htaccess
:
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^\.htaccess$ - [F]
RewriteRule ^(blog|forum)($|/) - [L]
RewriteCond %{REQUEST_URI} =""
RewriteRule ^.*$ /public/index.php [NC,L]
RewriteCond %{REQUEST_URI} !^/public/.*$
RewriteRule ^(.*)$ /public/$1
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^.*$ - [NC,L]
RewriteRule ^public/.*$ /public/index.php [NC,L]
答案 0 :(得分:1)
这与您的.htaccess文件无关。你在上传它们时错过了一些库部件,或者你的包含路径中的库/ Zend不正确。
ls /home/domain/public_html/zend/library
告诉你什么?)一般:
// Define path to application directory
defined('APPLICATION_PATH')
|| define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/../application'));
// Ensure library/ is on include_path
set_include_path(implode(PATH_SEPARATOR, array(
realpath(APPLICATION_PATH . '/../library'),
get_include_path(),
)));