i cant get it to work are my setting correct.

the .htaccess file.

php_flag register_globals on

the login_post.php

ob_start();
session_start();

//Set vars... 
$baseurl="http://www.mysite.biz"; //set this to your site's homepage. this is needed for relocation (can't use relative urls). don't append with a forward slash. 

//Check settings... 
if (ini_get("output_buffering")!="on") generror("You must enable output buffering to allow redirection"); 
if ($baseurl=="" ) generror("You must enter the site's homepage (baseurl) in the script."); 

but dosent work still comes up saying

"You must enable output buffering to allow redirection"

cheers aron.

    That's got nothing to do with register globals. ini_get returns an integer for boolean values (on or off), meaning it returns 1 when it's turned on and 0 when it's turned off. So your condition should read:

    if(ini_get('output_buffering') != 1) 
      Write a Reply...