|
Lee Saferite - 22 August 2008 07:42 AM What is the fatal error, can you give any more context?
Thanks for the reply.
It works fine from the Cart page, but if you go through the checkout process and choose Google Checkout as a payment option, I get this:
Fatal error: Call to a member function setRedirectUrl() on a non-object in /home/powerh/public_html/app/code/core/Mage/GoogleCheckout/controllers/RedirectController.php on line 83
Which is this function:
public function redirectAction()
{
$api = $this->_getApi();
if ($api->getError()) {
$this->getResponse()->setRedirect(Mage::getUrl(’checkout/cart’));
return;
} else {
$url = $api->getRedirectUrl();
$this->loadLayout();
$this->getLayout()->getBlock(’googlecheckout_redirect’)->setRedirectUrl($url);
$this->renderLayout();
}
}
Using 1.1.3.
|