i have a clien twho asked me for some help, i alsways have access to my .htaccess to set the output_buffering to on I have narrowed the problem to the output_buffering it is this part of the code. It is the function that redirects the user when they are finsihed signing up
Where at in the function or what not can i make the out put work.
I have tried the ini_set nothing happends
Any ideas
function do_payment($payment_id, $member_id, $product_id,
$price, $begin_date, $expire_date, &$vars){
global $config;
if ($price > 0) {
return "You can not use this payment option with the selected subscription. Change your either to the free subscription or you pay for the service you have chosen.";
}
$vcode = md5($payment_id . $begin_date . $member_id);
header("Location: ".$config[root_url]."/index.php?page=thanks&paysys_id=free&payment_id=$payment_id&vcode=$vcode");
exit();
}