If you are experiencing this warning (or a similar one) when you use AnonShout:

Warning: Cannot modify header information - headers already sent by (output started at <yourwebsite>\shout.php:2) in <yourwebsite>\shout.php on line 96

An easy way to fix it is to go to line 96 in “anonshout.php”.
The line should read:

header(”Location: ” . $_SERVER['PHP_SELF']);

Underneath the line, add:

die();

So line 96 and line 97 should now read:

header(”Location: ” . $_SERVER['PHP_SELF']);
die();

And that should stop the warning from coming up :)

I’ve also updated the AnonShout file in the scripts section with the above fix.