0

是我得到的,每次我使用这个,

$certpath = APP."Plugin".DS."PaypalIpn".DS."Controller".DS."Certificates".DS;

在我的代码中,它破坏了我的 CSS。好吧,不一定是废墟,但我的页面好像没有使用任何 CSS 来对齐或其他东西。

我需要那个 DS,因为我必须调用该目录中的文件

$encryption['cert_file'] = $certpath.$encryption['cert_file'];

我试过这个:

$encryption['key_file'] = $certpath.DS.$encryption['key_file'];
$encryption['cert_file'] = $certpath.DS.$encryption['cert_file'];
$encryption['paypal_cert_file'] = $certpath.DS.$encryption['paypal_cert_file'];

仍然没有运气。前两行以这种方式工作,但第三行则不然。

我尝试使用这些关键字进行谷歌搜索:

directory separator in cakephp ruins my css
uses of directory separator in cakephp
calling files using directory separator in cakephp

但这些都没有帮助我。

DS 只是一个目录分隔符吧?什么可能是错的?

.......... 编辑部分

好吧,这是另一个问题,我从上一个问题中找到了罪魁祸首,但请解释一下它与我的问题有何关系。这是我的 PaypalHelper.php

<?php

$importConfig = array(
                'type' => 'File',
                'name' => 'PaypalIpn.ppcrypto',
                //'file' => CONFIGS .'paypal_ipn_config.php'
                'file' => APP."Plugin".DS."paypal_ipn".DS."libs".DS."ppcrypto.php"
            );
//... other codes
//..other functions

function button($title, $options = array(), $buttonOptions = array()) {
//..other codes

$certpath = APP."Plugin".DS."PaypalIpn".DS."Controller".DS."Certificates".DS;

//..other codes

}
?>

看到这段代码了吗?

$importConfig = array(
                'type' => 'File',
                'name' => 'PaypalIpn.ppcrypto',
                //'file' => CONFIGS .'paypal_ipn_config.php'
                'file' => APP."Plugin".DS."paypal_ipn".DS."libs".DS."ppcrypto.php"
            );

和这个?

$certpath = APP."Plugin".DS."PaypalIpn".DS."Controller".DS."Certificates".DS;
$encryption['paypal_cert_file'] = $certpath.$encryption['paypal_cert_file'];

$importConfig..这是错误的,因为它应该是

$importConfig = array(
                'type' => 'File',
                'name' => 'PaypalIpn.ppcrypto',
                //'file' => CONFIGS .'paypal_ipn_config.php'
                'file' => APP."Plugin".DS."PaypalIpn".DS."libs".DS."ppcrypto.php"
            );

..但是当我试图纠正它时, $encryption['paypal_cert_file'] 工作正常。它不会破坏/(禁用??)我的CSS

我首先将其作为答案,但我相信我的脑海中仍然存在问题..

4

1 回答 1

1

我几乎可以肯定无论是错误还是错误,要么是致命错误,要么是某种其他错误输出弄乱了您的 HTML 输出。

有时即使启用了调试,错误也不会在屏幕上显示,您必须检查 HTML 源代码,特别是如果错误发生在<head>HTML 部分、Javascript 内部或关闭>标记之前。我建议当您修复错误时,它解决了您的问题。

我会仔细检查您是否启用了调试。请参阅cake 文档中的CakePHP 核心配置

如果您已经解决了问题,但仍想知道是什么原因造成的,如果可能,请撤消您的更改并检查我上面提到的内容。除此之外,我在您的代码中没有立即看到任何可能导致问题的明显内容。

于 2012-05-30T07:01:35.537 回答