0

我要疯了!我已经 SO'ing 和谷歌搜索了 2 个小时了。

简而言之,一切正常,然后我进行了一些班级重组,现在我得到了这个:

    Warning: require_once(Zend/Mail/Transport/Sendmail.php) [function.require-once]: failed to open stream: No such file or directory in /nfs/c09/h02/mnt/136160/domains/xyz.com/html/sandbox/Zend/Mail.php on line 1175

    Fatal error: require_once() [function.require]: Failed opening required 'Zend/Mail/Transport/Sendmail.php' (include_path='.:/usr/local/php-5.3.13/share/pear') in /nfs/c09/h02/mnt/136160/domains/xyz.com/html/sandbox/Zend/Mail.php on line 1175

我没有触及我的文件是如何组织的:

    sandbox/index.php
    sandbox/settings.php
    sandbox/lib/class1.php
    sandbox/lib/class2.php
    sandbox/lib/class3.php
    sandbox/Zend/...

我只更改了一些类名及其层次结构。

索引.php

<?php
    require_once 'lib/class1.php';
    $application = new class1();
    $application->run();
?>

类1.php

<?php

    require_once 'Zend/Loader.php';
    Zend_Loader::loadClass('Zend_Log');
    Zend_Loader::loadClass('Zend_Log_Formatter_Simple');
    Zend_Loader::loadClass('Zend_Log_Writer_Mail');
    Zend_Loader::loadClass('Zend_Log_Writer_Stream');
    Zend_Loader::loadClass('Zend_Mail');

    // class definition ...
?>

在我的班级重组过程中,这些都不require需要触及。Zend 的Mail.php中出现了特定问题(尽管我确信存在更普遍的问题):

/**
 * Sends this email using the given transport or a previously
 * set DefaultTransport or the internal mail function if no
 * default transport had been set.
 *
 * @param  Zend_Mail_Transport_Abstract $transport
 * @return Zend_Mail                    Provides fluent interface
 */
public function send($transport = null)
{
    if ($transport === null) {
        if (! self::$_defaultTransport instanceof Zend_Mail_Transport_Abstract) {
            require_once 'Zend/Mail/Transport/Sendmail.php';
            $transport = new Zend_Mail_Transport_Sendmail();
        } else {
            $transport = self::$_defaultTransport;
        }
    }

    ...
}

(请注意require仅在第一次尝试发送电子邮件时才调用它。)

  1. 新的“流程”或包含顺序是否可能导致此问题?(因为路径看起来不错。如果路径不正确,它会死在 Loader.php 中,不是吗?)

  2. 在导致更“致命”的问题之前,某种循环依赖会导致此问题吗?

  3. 类名可能与已经存在的东西冲突吗?以前我有一些相当神秘的类名,比如 MalaFwk_Application_Receiver。现在,名称更加通用,例如 CApplication、CComponent、CDatabase、CLogger 等。

我已经尝试了其他 SO 线程中建议的各种事情,但无济于事,但我愿意尝试任何人建议的任何事情。如果这不是一个特别有建设性的问题,我提前道歉,但我没有想法,并且有太多(微不足道但广泛)的更改可以恢复并重新应用这些更改。任何帮助将不胜感激。(我将在东部标准时间约 8 点 45 分回来。)

更新:

如果我将以下行添加到index.php,即在发生其他任何事情之前“手动”要求该文件,那么事情就会再次起作用。

    require_once 'Zend/Mail/Transport/Sendmail.php';

所以看起来,由于某种原因,当代码到达时send(),它找不到库。什么可能导致这种情况?

4

1 回答 1

3

请将此添加到您的索引中:

set_include_path(implode(PATH_SEPARATOR, array(          
    realpath('../library'), // Make sure this is the correct path to your library folder
    get_include_path(),
)));
于 2012-06-25T12:11:08.800 回答