Forum Moderators: coopster
thanks.
If your script does ob_start() or ob_start('something') pretty close to the beginning, there's a good chance it's using a buffer hack.
You'll want to locate a part of the script where the buffer conents are fetched, and then replaced. If your script begins with ob_start(), you'll be looking for 'ob_get_contents()' - if the script begins with ob_start('something'), you'll be looking for a function definition of 'something' :
function something($somevar){
codelines;
etc;
}
The second part (and often the first part as well) is often found in the script's 'style', 'theme', or 'template'.
If you can remove these (if you remove the ob_start and set error reporting to E_ALL, error messages might help you find the second part), then you can see what the 'original' links are.