Advanced TipIn your cart.php page,
above the opening HTML tab you should have some lines of
PHP like this . . .
<?php
session_cache_limiter('none');
session_start(); ?>
When using PayPal Payments Pro it helps if you have
“output buffering” turned on. To do this, just make sure
you have the ob_start() directive which you can add like
this . . .
<?php
session_cache_limiter('none');
session_start();
ob_start(); ?>
This step is optional, but it does mean that when
using Express Checkout the transition between your site
and the PayPal server will be smoother.
For more information, rates and support, please visit
the
PayPal website. |