Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Warning: Cannot modify header information headers already sent by...
Warning: Cannot modify header information headers already sent by... Is there some way to avoid this when combinging HTML and PHP. Perhaps a hack or code to work around.
0
Comments
If you want to add a banner to the top of your Vanilla pages, consider writing an extension: appearance_changes
<?php ob_start(); ?>
at the top of your the page. PHP will add any output to a buffer and print it at the end so that you can set your http headers in the middle of it.