使用上传图像时总是会出现此错误 - 使用Zend Framework

时间:2009-01-16 13:01:48

标签: zend-framework

Warning: include_once(Zend/Http/Client.php) [function.include-once]: failed to open stream: No such file or directory in /home/hotbuzz/public_html/include/Zend/Loader.php on line 83

Warning: include_once() [function.include]: Failed opening 'Zend/Http/Client.php' for inclusion (include_path='/home/hotbuzz/public_html/include;.:/usr/lib/php:/usr/local/lib/php') in /home/hotbuzz/public_html/include/Zend/Loader.php on line 83

    Warning: require_once(Zend/Exception.php) [function.require-once]: failed to open stream: No such file or directory in /home/hotbuzz/public_html/include/Zend/Loader.php on line 87

    Fatal error: require_once() [function.require]: Failed opening required 'Zend/Exception.php' (include_path='/home/hotbuzz/public_html/include;.:/usr/lib/php:/usr/local/lib/php') in /home/hotbuzz/public_html/include/Zend/Loader.php on line 87

当我在脚本中使用图片上传时总是会出现此错误..我使用的是Zend Framework ..我不知道该怎么办?

我的Zend路径:public_html / include / zend phpinfo:hotbuzz.in/phpinfo.php

我没有在.htaccess

中配置Zend的路径

3 个答案:

答案 0 :(得分:2)

试试这个

set_include_path(dirname(realpath(__FILE__)).PATH_SEPARATOR.get_include_path()); 

答案 1 :(得分:1)

您的包含路径是指向库文件还是仅指向Zend项目的根目录。 include路径需要指向包含目录结构的目录

  • 的Zend
    • Acl
    • Auth
    • 等...

可能是您下载的文件的库目录。

答案 2 :(得分:0)

你的包含路径有些奇怪;。:

我想你可能在linux服务器上使用了windows的语法。

你应该使用PATH_SEPARATOR,确保你在每台服务器上都有正确的。