我想貝寶在我的網站整合但之後,我按PayPal按鈕會出現這樣的錯誤:用PHP頭衝突需要
Warning: Cannot modify header information - headers already sent by (output started at X:\home\test\www\view\main.php:29) in X:\home\test\www\view\frontend\paypalfunctions.php on line 377
負責錯誤的main.php的部分是這樣的:
<div class="container">
<?php require 'view/frontend/'.$tpl.'.php';?>
</div>
這行代碼對我整個網站的工作至關重要。它相沖突與PayPal的paypalfunctions.php這個特殊的功能:
function RedirectToPayPal ($token)
{
global $PAYPAL_URL;
// Redirect to paypal.com here
$payPalURL = $PAYPAL_URL . $token;
header("Location: ".$payPalURL);
exit;
}
我仔細看了this question關於這個問題,並嘗試了一些東西,但沒有找到一個解決方案。有什麼我需要改變它的代碼工作?