Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6717121
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T08:48:54+00:00 2026-05-26T08:48:54+00:00

Possible Duplicate: PHP error: Cannot modify header information – headers already sent Hi I

  • 0

Possible Duplicate:
PHP error: Cannot modify header information – headers already sent

Hi I am getting this error even thou I am using exactly the same file for other projects and it’s working fine. This project is set after implementation by FB new API and all the changes after the end of September does this fact could be an issue?

MY FILE:

<?php echo '<?xml version="1.0" encoding="UTF-8"?>'."\n"; ?>
<users xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<?php
header("Cache-Control: no-cache, must-revalidate");
header("Expires: Thu, 1 Jan 1970 00:00:00 GMT");
include_once 'config.php';
$con = mysql_connect($db_ip,$db_user,$db_pass);
.
.
.
.
while ($row = mysql_fetch_assoc($result)) {
?>
    <id>
    <image>http://mywebsite/root/xxx-game-fb/proxy.php?url=<?php echo urlencode("http://graph.facebook.com/".$row['fbid']."/picture?type=square"); ?></image>
    <place><?php echo $position; ?></place>
    <name><?php echo $row['name']; ?></name>
    <score><?php echo $row['score']; ?></score>
</id>
<?php
$position++;
}
?>
</users>

I use this as an input to flash AS3 game. It creates a table with users and sets them in order. Flash throws an error as well in the function that pulls this xml file.
Does any one knows what could be a problem here?
Please help.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T08:48:55+00:00Added an answer on May 26, 2026 at 8:48 am

    Didn’t read the docs about header and no information can be output before a call to that method, huh?

    Remember that header() must be called before any actual output is sent, either by normal HTML tags, blank lines in a file, or from PHP

    Either use header first, or use some form of output buffering if it can’t be avoided.


    Your first 5 lines of your file should become:

    <?php
      header("Cache-Control: no-cache, must-revalidate");
      header("Expires: Thu, 1 Jan 1970 00:00:00 GMT");
      echo '<?xml version="1.0" encoding="UTF-8"?>'."\n";
    ?>
    <users xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    

    Note that header() is now called before anything is echo’d/output.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: PHP error: Cannot modify header information – headers already sent I've built
Possible Duplicate: PHP error: Cannot modify header information – headers already sent I have
Possible Duplicate: php headers already sent error I have attached my code which am
Possible Duplicates: PHP headers already sent PHP session_start() error? What does this error mean?
Possible Duplicate: PHP headers already sent So I just joined Hostgator.com, and was wondering,
Possible Duplicate: PHP ToString() equivalent I get this error: Catchable fatal error: Object of
Possible Duplicate: Reference - What does this error mean in PHP? I am having
Possible Duplicate: PHP detecting request type (GET, POST, PUT or DELETE) This should be
Possible Duplicate: php multi-dimensional array remove duplicate I have an array like this: $a
Possible Duplicate: PHP Error: mysql_fetch_array() expects parameter 1 to be resource, boolean given Hello

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.