Headers already sent

I have setup a require once file like this
<br />
<br />require_once("../Mobile_end/Dispatch_variables.php");
<br />
<br />to get this file with variables in it
<br />
<br /><?php<br /># FileName="Dispatch_variables.php"<br /># Type="php"<br /># HTTP="true"<br />$sms_list = array('0412489444', '0412083494', '0421085172', '0432024396','[email protected]');<br />?>
<br />
<br />On execution I get this error message
<br />
<br />Warning: Cannot modify header information - headers already sent by (output started at /home/webexped/public_html/Mobile_end/Dispatch_variables.php:2) in /home/webexped/public_html/includes/common/KT_functions.inc.php on line 464
<br />
<br />Whic seems to indicate that there is something wrong with my directory structure in the require_once statement.
<br />
<br />But I don't know what. Any suggestions? The file is there and it is being read.

Hy Steve,
<br />
<br />Check if there is a line or character before "<?php" or after "?>" in your "Mobile_end/Dispatch_variables.php". Probably this is causing the error.
<br />
<br />Cheers
<br />
<br />Marcell

Similar Messages

  • Headers already sent (includes/common/KT_functions.inc.php on line 464)

    Hello,
    I use a dynamic list wizard with ADDT for a backoffice. On my computer,with phpmyadmin, everything is ok and seems to be functional. But as soon as I upload my folders I got this error message :
    Warning: Cannot modify header information - headers already sent by (output started at /Library/WebServer/Documents/backoffice/Connections/connec.php:1) in /Library/WebServer/Documents/backoffice/includes/common/KT_functions.inc.php on line 464
    I checked my pages and didn't notice "white spaces" before or after php markup. I always got this problem.
    Anynone could help me ?
    Thanks

    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=12&catid=189&threadid =1332533

  • 'Headers Already Sent' causing problems

    Im trying to use cookies to create a login but I keep getting
    this warning:
    Warning: Cannot modify header information - headers already
    sent by (output started at
    /home/content/n/w/a/nwatkin03/html/includes/mysql_connect.php:9) in
    /home/content/n/w/a/nwatkin03/html/login.php on line 26, 27, 35

    Never mind, I had blank lines before the php tag in my
    'mysql_connect' file. All good now.

  • PHP - headers Already Sent Error

    I Can't seem to get this page to redirect correctly after
    deleting a record. Whatever I do a always get the headers already
    sent error. I have looked but I can't find the reason. Can anyone
    hep (code attached)
    Cheers
    Dave

    davecheet wrote:
    > I Can't seem to get this page to redirect correctly
    after deleting a record.
    > Whatever I do a always get the headers already sent
    error. I have looked but I
    > can't find the reason. Can anyone hep (code attached)
    >
    > <head>
    > <?php require_once('../Connections/con_op.php');
    ?>
    The fact that your PHP code is inside the head of the
    document is
    causing the problem. *No* output must be sent to the browser
    before a
    call to the PHP header() function.
    Dreamweaver will not automatically place that code inside the
    head. It's
    something you must have done yourself. If you understand PHP
    code, you
    need to cut and paste it above the DOCTYPE. If you don't
    understand PHP
    code, you would be better off trying to create the page from
    the start
    again.
    David Powers
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "Foundation PHP 5 for Flash" (friends of ED)
    http://foundationphp.com/

  • Header already sent

    Hello,
    Please excuse me. I know this has been discussed before. I am trying to make a simple user registration form. When the submit botton is pressed I always seem to get
    "Warning: Cannot modify header information - headers already sent in C:\xampp\htdocs\cdlist\Untitled-1.php on line 45"
    The main code is:
    <?php virtual('/cdlist/Connections/cdlist.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
      $insertSQL = sprintf("INSERT INTO users (username) VALUES (%s)",
                           GetSQLValueString($_POST['name'], "text"));
      mysql_select_db($database_cdlist, $cdlist);
      $Result1 = mysql_query($insertSQL, $cdlist) or die(mysql_error());
      $insertGoTo = "yes.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s",$insertGoTo));
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <form id="form1" name="form1" method="POST" action="<?php echo $editFormAction; ?>">
      <table width="500" border="1">
        <tr>
          <td>cd name
            <label>
              <input type="text" name="name" id="name" />
              <input type="submit" name="button" id="button" value="Submit" />
          </label></td>
        </tr>
        <tr>
          <td>cd type 
            <label>
              <input type="text" name="type" id="type" />
              <input type="reset" name="button2" id="button2" value="Reset" />
          </label></td>
        </tr>
      </table>
      <input type="hidden" name="MM_insert" value="form1" />
    </form>
    </body>
    </html>
    The associated file for the main page cdlist.php is :
    <?php
    # FileName="Connection_php_mysql.htm"
    # Type="MYSQL"
    # HTTP="true"
    $hostname_cdlist = "localhost";
    $database_cdlist = "one_stop";
    $username_cdlist = "root";
    $password_cdlist = "enterprise";
    $cdlist = mysql_pconnect($hostname_cdlist, $username_cdlist, $password_cdlist) or trigger_error(mysql_error(),E_USER_ERROR);
    ?>
    The page that should come up is given by
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    yes it was inserted
    </body>
    </html>
    I really have tried to find the solution and I really don't understand why this doesn't work. Please, any help would be really appreciated.
    Thanks

    <?php include($_SERVER['DOCUMENT_ROOT'].'/cdlist/Connections/cdlist.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
      $insertSQL = sprintf("INSERT INTO users (username) VALUES (%s)",
                           GetSQLValueString($_POST['name'], "text"));
      mysql_select_db($database_cdlist, $cdlist);
      $Result1 = mysql_query($insertSQL, $cdlist) or die(mysql_error());
      $insertGoTo = "yes.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s",$insertGoTo));
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <form id="form1" name="form1" method="POST" action="<?php echo $editFormAction; ?>">
      <table width="500" border="1">
        <tr>
          <td>cd name
            <label>
              <input type="text" name="name" id="name" />
              <input type="submit" name="button" id="button" value="Submit" />
          </label></td>
        </tr>
        <tr>
          <td>cd type 
            <label>
              <input type="text" name="type" id="type" />
              <input type="reset" name="button2" id="button2" value="Reset" />
          </label></td>
        </tr>
      </table>
      <input type="hidden" name="MM_insert" value="form1" />
    </form>
    </body>
    </html>
    Thanks for the reply David. Here is Untitled-1.php. As you can can see I have edited the first line to the suggested include code.

  • All new php code now sends the header already sent warning

    I have had none of these 'headers already sent....' problems
    creating php forms in the past with dreamweaver cs3 (on leopard).
    Now, every single php form generated using dreamweaver returns this
    warning - without fail. I copied the EXACT code from a working
    login form into a new page.....the new page, using the same include
    file is now returning the warning: I am pasting the code that
    works, and below that, the code that does not work. Even Developer
    Toolkit, on the rare occasion it doesn't cause DW to crash, seems
    to be inserting code that does not work properly - same goes for
    the insert > data objects.
    I've attached the code from both pages - page that works at
    the top, page that doesn't work at the bottom:

    debrankin55 wrote:
    > I have had none of these 'headers already sent....'
    problems creating php forms
    > in the past with dreamweaver cs3 (on leopard). Now,
    every single php form
    > generated using dreamweaver returns this warning -
    without fail.
    Select Modify > Page Properties, and check Title/Encoding.
    Make sure
    that Include Unicode Signature (BOM) is deselected.
    If that doesn't do the trick, select View > Code View
    Options > Hidden
    Characters. Make sure there aren't any rogue characters
    outside the PHP
    tags, both in the affected page and any include file.
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • I just bought a iTunes card and its not accepting it.  It already sent it to the support team and they said they were going to get back to my within 24 hours and i am trying to buy a program in the app store for work.  How can I expedite this process?

    I just bought a iTunes card and its not accepting it.  It already sent it to the support team and they said they were going to get back to my within 24 hours and i am trying to buy a program in the app store for work.  How can I expedite this process?

    Has it been 24 hours?
    I take it this was a gift card.  iTunes Store:  Invalid, Inactive, or Illegible codes http://support.apple.com/kb/TS1292 - gift cards
    I don't know if this provides an alternative means: https://expresslane.apple.com ; select 'iTunes' in the first column; 'iTunes Store' in the second column
    If you are really desperate you could buy the app yourself, then request reimbursement.

  • I lost my iphone, and know where it is through icloud, how do i get my phone back? i already sent lost phone, and where to call and he or she does not want to call. what I do I lost it yesturday?

    I lost iphone yeturday, and know where it is using icloud, how do  I get it back?  I already sent a lost phone to my phone an I said to call me at a number i can be reached at.  He or she dose not want to call. What am I to do?

    Hard to know, but reporting it to the police is usually a required step from your insurance carrier if you plan on filing a claim.  Here's Apple's support article on what to do: http://support.apple.com/kb/HT5668.

  • How can i see the images that i've already sent in bbm with the description that i did??

    Hello!, i can't see the description of the images that i've already sent by bbm. Is any way to see that???. Any app for that??. Please i need help!

    If you mean your iCloud backup, you can't see the individual files contained in the backup.  You can only access the data in the backup by restoring it to your device.
    You can see categories of data stored in your iCloud account by going to Settings>iCloud>Storage & Backup>Manage Storage.  You can see the actual data by looking in the apps on your device that are syncing data with iCloud (contacts, calendars, notes, etc.).  You can also see some of this data by going to icloud.com from your comptuer.

  • I didn't receive any news about the replacement program for the Ipod 1st generation. I have already sent the serial number online, but didn't have any progress. What should I do? Thank you

    I didn't receive any news about the replacement program for the Ipod 1st generation. I have already sent the serial number online, but didn't have any progress. What should I do? Thank you

    After you set up your service use your repair ID to track your replacement here:
    https://selfsolve.apple.com/repairstatus/main.do
    Remember: You will receive a replacement unit approximately 6 weeks after Apple gets your current iPod nano
    Hope this helps.
    -Julian

  • Already sent items keeps coming back as sent items in Mail

    already sent items keeps coming back as sent items in Mail

    These are probably not sent from your account. The spammer has just ''borrowed ''your email address and is using it as the return address of the junk they are sending. If they were coming from your account they would be in the Sent folder.
    They have your address. There is not much you can do about it now. They will get bored with you and move on soon.
    Google '''email backscatter''' to learn more about what is going on.
    FYI: People posting email addresses in an open forum like you did in your example is exactly how spammers get their victims. That is not a very good idea if you want to protect your personal info.
    I suggest that you edit your post and remove your example. It is of no help and does more harm than good.

  • Can I send already sent text messages to my computer to print them?

    Can I send already sent text messages to my computer to print them?

    The only way I know of to save a Text message for printing is to copy it to your memo's and then print it out through the desktop software. Unfortunately there is no way to save a text message on the desktop otherwise and there is no way to print directly from the text message software. You can store them in the "saved" folder if you want as well, but that won't copy them to the desktop or allow them to print.
    Post relates to: Centro (AT&T)

  • Will Deletion of project & event impact movie already sent to .Mac Gallery?

    Will Deletion of project & event impact movie already sent to .Mac Gallery? - I want to free up drive space on my MBP (120 just doesn't cut it!), and deleting my multiple projects and events will help immensely. FYI, I have saved all the media DV clips on my external for future use. So I already broadcast / sent medium sized movies to .Mac Gallery, and I assume that since the media files (assuming quicktime .mov) are already on the web gallery (in my iDisk?) that I can delete the iMovie assets without any impact. Is this true? What is a good workflow, given what I have described above?

    WORKFLOW
    1) import clips into iMovie 08
    2) create movie and share the quicktime to my hard drive (for viewing, posting, whatever) ... and broadcast to .Mac Gallery
    3) move video assets (DV files) to external hard drive for future use, posterity, whatever
    4) delete projects and events in iMovie
    5) Run import into Foottrack for a compressed version of the clips on my Laptop
    Sounds good to me. Not that familiar with FootTrack as I use iTunes for management of the "portable" files (i.e., single file compressed for iPod, iPhone, TV, and/or web use).

  • Hi im having trouble with downloading an album off my computer. i have forgotten the security questions, but have already sent them to my email. could someone help me in how to get the answers?

    Hi im having trouble with downloading an album off my computer. i have forgotten the security questions, but have already sent them to my email. could someone help me in how to get the answers?

    Hello Carpets,
    Thanks for the question. You can reset your security questions with your rescue email address, as outlined with this article:
    Apple ID: All about Apple ID security questions
    http://support.apple.com/kb/HT5665
    If you do not see the option for resetting your questions with a rescue email address, see this excerpt:
    Note: The option to send an email to reset your security questions and answers will not be available if a rescue email address is not provided. You will need to contact iTunes Store support in order to do so.
    Rescue email address and how to reset Apple ID security questions
    http://support.apple.com/kb/HT5312
    Additional Information:
    Apple ID: Contacting Apple for help with Apple ID account security
    http://support.apple.com/kb/HT5699
    Thanks,
    Matt M.

  • Hi I have this problem that when I send a mail to someone mails that I have already sent out end up on this email sometimes two or even twenty different mails end up going to the person I'm send ding a mail too please help

    Hi I have this problem that when I send a mail to someone mails that I have already sent out end up on this email sometimes two or even twenty different mails end up going to the person I'm send ding a mail too please help

    I have been doing some test now and have found out that my mails are being merged according to subject eg, so if I use cleaning goods as a subject and send out a new mail all mails with this subject are sent to the one person

Maybe you are looking for

  • Wsdl import - no messages in Message tab

    Hi All, I'm trying to import a wsdl into external definition, there's no error, but no messages appear in the message tab. I search the prev post for some possible solutions, but so far  haven't found anything that worked yet - including importing th

  • How Do I Hide Mouse Pointer While Typing In Firefox

    Only in firefox, and only recently am I having problems typing anything through firefox, as the slightest touch of my laptops touch pad causes the mouse pointer to jump along with my typing cursor. This is causing major issues as I conduct all y busi

  • CCMS Alerts for MDM 7.1 distribution folder solman 7.01

    Hi All, I want to configure the alerts for the number of files present in distribution folder of MDM. In our landscape the no. of files in distribution folder are in lakhs Is it possible system will trigger an alert when it grows to 50K? Please help

  • Exported Image Doesn't Match Export Presets After Use of Straightening Tool

    Unlike my experience with previous versions, in Aperture 2.1, after applying the "Straightening Tool", I cannot get an exported image to match the dimensions set for "Export Preset." The results are a reduction in size. It appears that the output is

  • Hard time......

    Hi, Can anyone help me about iMac Computer? because I tried download from Skype, OOVOO, Facetime, other.. seem not working and also I have apple ID email, won't let me set up my mail? tell me how work.. HELPP MEEEEEE... CAN U explain me This is hope