thanks....but now that I know somebody is reading this...I have another question
I know this is the wrong area for this question but hopefully you can help me.
I have some custom scripting integrated into my admin panel but many times I see this at the top
Quote:
Warning: Cannot add header information - headers already sent by (output started at /xxxx/xxxxxxx/xxxxxxxxx/xxxxx/admin/fixacc.php:6) in /xxxx/xxxxxxx/xxxxxxxxx/xxxxx/admin/functions.php on line 1651
|
what is causing this?
here is an example of a script I call from the admin cp and I get that error as well sometimes (it mentiones main.php rather than fixacc though)
PHP Code:
<html>
<head>
<title>The Other Admin</title>
<link rel="stylesheet" href="../cp.css">
</head>
<body>
<p><font size='1'>From here, you can control all aspects of your donations and files.
Please select what you need from the links below.</font><p>
<?php
error_reporting(7);
require("./global.php");
doformheader("dunno","stilldunno");
maketableheader("Other Admin Stuff");
?>
<tr class="firstalt">
<td><a href="donman.php?action=doit">Donation Management</a></td>
</tr>
<tr class="secondalt">
<td><a href="fileman.php?action=doit">Files Management</a></td>
</tr>
<tr class="firstalt">
<td><a href="donman.php?action=chalkey">Manage Challenge Codes</a></td>
</table>
</td></tr></table>
</body>
</html>