I am installing a PHP auction program on my website and have run into a few snags.

Everything seems to operate properly but a few area still remain to be annoyances.

Logging in works but seems to cause the following message:

Warning: Cannot modify header information - headers already sent by (output started at /home/bidnshop/public_html/phpauction/phpAdsNew/config.inc.php:271) in /home/bidnshop/public_html/phpauction/login.php on line 18

Logging in is not the issue. If I log in, get the error message, and back up a page then I am logged in and can list items and do all other things I would normally do.

I am at a loss. I have tried numberous approaches but with no avail.

Can someone please give me an idea of what I am doing wrong here? The website address is http://www.bidnshop.com/phpauction/

Feel free to register and try out the site if you feel like you can figure this out and want to help. Any help will be greatly appreciated.

ProZ

    Could you post your code?
    I think I know what it might be, you need to put any session script before any html output:

    <?php
    session_start();
    ...
    ?>
    <html>
    <head>
    ...
    

    Ste

      Write a Reply...