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

Similar Messages

  • Warning: Cannot modify header information..../includes/common/KT_functions.inc.php on line 465

    Hi,
    I've moved a website from a server to another, and have got this little issue,
    I've a form witch gets submit and the user redirects to a "thank you" page, on the submittion I've added mail send so I get an email when the form is submitted, the mail part works fine, I get the emails. but after clicking the submit button this error comes up instead of redirecting to the thank you page.
    Warning:  Cannot modify header information - headers already sent by (output started at ..../index.php:79) in /...../includes/common/KT_functions.inc.php on line 465
    This is the KT_functions.inc.php part,
    function KT_redir($url) {
        $protocol = "http://";
        $server_name = $_SERVER["HTTP_HOST"];
        if ($server_name != '') {
            $protocol = "http://";
            if (isset($_SERVER['HTTPS']) && ($_SERVER['HTTPS'] == "on")) {
                $protocol = "https://";
            if (preg_match("#^/#", $url)) {
                $url = $protocol.$server_name.$url;
            } else if (!preg_match("#^[a-z]+://#", $url)) {
                $script = KT_getPHP_SELF();
                if (isset($_SERVER['PATH_INFO']) && $_SERVER['PATH_INFO'] != '' && $_SERVER['PATH_INFO'] != $_SERVER['PHP_SELF']) {
                    $script = substr($script, 0, strlen($script) - strlen($_SERVER['PATH_INFO']));
                $url = $protocol.$server_name.(preg_replace("#/[^/]*$#", "/", $script)).$url;
                    session_write_close();
            $url = str_replace(" ","%20",$url);
            if (KT_is_ajax_request()) {
                header("Kt_location: ".$url);
                echo "Redirecting to: " . $url;
            else {
                header("Location: ".$url);
        exit;
    I'm not a coder and appreciate any help.
    Thanks in advance.

    addField("fornamn", true, "text", "", "", "", "Vänligen skriv ditt namn"); $formValidation->addField("efternamn", true, "text", "", "", "", "Vänligen skriv efternamn"); $formValidation->addField("gatu", true, "text", "", "", "", "Vänligen skriv gatuadress"); $formValidation->addField("postnummer", true, "text", "", "", "", "Vänligen ange postnummer"); $formValidation->addField("ort", true, "text", "", "", "", "Vänligen skriv ort"); $formValidation->addField("telefon", true, "numeric", "int", "5", "", "Vänligen skriv ett giltilgt telefon nummer"); $formValidation->addField("epost", true, "text", "email", "", "", "Vänligen skriv en e-post adress. dit skickar vi status på din service"); $tNGs->prepareValidation($formValidation); // End trigger //start Trigger_SendEmail trigger //remove this line if you want to edit the code by hand function Trigger_SendEmail(&$tNG) {   $emailObj = new tNG_Email($tNG);   $emailObj->setFrom("[email protected]");   $emailObj->setTo("{epost}");   $emailObj->setCC("");   $emailObj->setBCC("[email protected]");   $emailObj->setSubject("Upplåsning: {modell} Nr: {id}");   //WriteContent method   $emailObj->setContent("Hej {fornamn},
    \n");   $emailObj->setEncoding("UTF-8");   $emailObj->setFormat("HTML/Text");   $emailObj->setImportance("Normal");   return $emailObj->Execute(); } //end Trigger_SendEmail trigger if (!function_exists("GetSQLValueString")) { function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") {   $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; } } $colname_phone = "-1"; if (isset($_GET['mobil_id'])) {   $colname_phone = $_GET['mobil_id']; } mysql_select_db($database_wd, $wd); $query_phone = sprintf("SELECT * FROM mobiler WHERE id = %s", GetSQLValueString($colname_phone, "int")); $phone = mysql_query($query_phone, $wd) or die(mysql_error()); $row_phone = mysql_fetch_assoc($phone); $totalRows_phone = mysql_num_rows($phone); // Make an insert transaction instance $ins_bestall = new tNG_insert($conn_wd); $tNGs->addTransaction($ins_bestall); // Register triggers $ins_bestall->registerTrigger("STARTER", "Trigger_Default_Starter", 1, "POST", "KT_Insert1"); $ins_bestall->registerTrigger("BEFORE", "Trigger_Default_FormValidation", 10, $formValidation); $ins_bestall->registerTrigger("END", "Trigger_Default_Redirect", 99, "http://domain.com/---------.html"); $ins_bestall->registerTrigger("AFTER", "Trigger_SendEmail", 98); // Add columns $ins_bestall->setTable("bestall"); $ins_bestall->addColumn("fornamn", "STRING_TYPE", "POST", "fornamn"); $ins_bestall->addColumn("deb", "STRING_TYPE", "POST", "deb", "{phone.deb}"); $ins_bestall->addColumn("efternamn", "STRING_TYPE", "POST", "efternamn"); $ins_bestall->addColumn("gatu", "STRING_TYPE", "POST", "gatu"); $ins_bestall->addColumn("postnummer", "STRING_TYPE", "POST", "postnummer"); $ins_bestall->addColumn("ort", "STRING_TYPE", "POST", "ort"); $ins_bestall->addColumn("telefon", "NUMERIC_TYPE", "POST", "telefon"); $ins_bestall->addColumn("epost", "STRING_TYPE", "POST", "epost"); $ins_bestall->addColumn("modell", "STRING_TYPE", "POST", "modell"); $ins_bestall->addColumn("imei", "STRING_TYPE", "POST", "imei"); $ins_bestall->setPrimaryKey("id", "NUMERIC_TYPE"); // Execute all the registered transactions $tNGs->executeTransactions(); // Get the transaction recordset $rsbestall = $tNGs->getRecordset("bestall"); $row_rsbestall = mysql_fetch_assoc($rsbestall); $totalRows_rsbestall = mysql_num_rows($rsbestall); ?>  displayValidationRules();?> getErrorMsg(); ?>
    Modell:
    Pris:
    ------: Kr      -----      ----- ----
    Postförskott (Vi bjuder på postförskotts avgiften)       
    Förnamn:
              displayFieldHint("fornamn");?> displayFieldError("bestall", "fornamn"); ?>
    Efternamn:
              displayFieldHint("efternamn");?> displayFieldError("bestall", "efternamn"); ?>
    Gatuadress:
              displayFieldHint("gatu");?> displayFieldError("bestall", "gatu"); ?>
    Postnummer:
              displayFieldHint("postnummer");?> displayFieldError("bestall", "postnummer"); ?>
    Ort:
              displayFieldHint("ort");?> displayFieldError("bestall", "ort"); ?>
    Telefon:
              displayFieldError("bestall", "telefon"); ?>
    E-Post:
               displayFieldError("bestall", "epost"); ?>
              displayFieldHint("modell");?> displayFieldError("bestall", "modell"); ?>
    IMEI:
                    displayFieldHint("imei");?> displayFieldError("bestall", "imei"); ?>         -----.
    Debranding:
                Ja                        Nej
              ------           ";         }        else{           echo "Denna telefon kan ej debrandas!    Nej";         }?>         
    Here is the complete code for the form page, I've replaced some textes with "-------------"

  • 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

  • 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/

  • '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.

  • 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/

  • 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.

  • How do I compensate for only one ADDT ' tNG_config.inc.php file with many Registration pages to build?

    My dynamic site has a lot of different languages funneled into one website, using various cookies, url params, php includes, etc. all to obtain similar info in different languages. Thank you David Powers.
    It is working really well and now I’ve come to the Registration section. Okay, so registration isn’t all that hard; I could do most of it with the standard Dreamweaver set of tools. Alas, I really like much of what ADDT has to offer with welcome email messages and activation and such.
    Here’s the setup: Obviously, with many different language people, I have many different databases for them. I did that becuase we’re expecting a big audience and I really don’t want to have all those different language names in the same table. Furthermore, these tables, whereby the students will login, will also contain a lot of information about their work so again, don’t want to have one massive table. I’ve divvied them up into tables by language and I’m using those tables to keep track of them and their work.
    I want to use ADDT’s User Registration Wizard and I have looked at all the neat stuff in the Control Panel/Login Settings.
    Here’s my situation: I notice that when I’m done with the configuring of one of the registration pages, I’m asked if I want to upload the tNG_config.inc.php page and that it has changed since the last upload. I saved a copy of the _config.inc.php and did a new registration form with the same info and when done, I compared the two _config.inc.php files. As one would guess, there is a small difference in the Connection string to the databases  $tNG_login_config["connexction"] = "connString_Ital_db".
    My problem is that I have 13 of these registration pages to do but ADDT only has the one tNG_config.inc.php. That’ll work great for the one with which it is associated, but the others will obviously break. I’ve looked through the code in the Registration pages, to find the ADDT link to the tNG_config.inc.php file hoping to rename it Italian, Spanish, etc, but the name of the file does not appear in the Registration page.  I realize that ADDT Control panel is designed for use on one site, and can then be used on others, with the changes etc. But my site seems a little unique since so many sites are actually in one.
    Has anyone whipped this problem before? I just don’t understand why there is no link in the head code of the Registration page to let me change it and to create more config files with different names. Thanks for you help!
    [Moved by moderator to appropriate forum]

    Hi Brian,
    I just tried to check all of ADDT´s "includes" files for any internal references (read: "require" or "require_once" statements) to the file "tNG_config.inc.php". So far I can only see this file referenced in the file "tNG.inc.php" (within the "$KT_tNG_uploadFileList1" array).
    So what could this mean ? Maybe you´ll have to make copies of the the original "tNG.inc.php" as well and save them as, say, "tNG.inc_ital.php" file plus make sure that these copies internally point to a different "tNG_config_ital.inc.php" file -- because it´s always the first mentioned file which gets referenced from e.g. an ADDT login page (see the "Load the tNG classes" - part)
    I want to use ADDT’s User Registration Wizard and I have looked at all the neat stuff in the Control Panel/Login Settings
    The Control Panel will always update the main "tNG_config.inc.php" file, so any further modifications will have to become manually applied to the custom files you´re creating.
    Cheers,
    Günter

  • 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.

  • File not found:  includes/common/lib/file_upload/KT_FileUpload.asp Please upload the includes/ folder to the testing server.

    The cooperative I am a part of have a homepage made with Dreamweaver several years ago. Suddenly some of the pages stopped working with this error message:
    File not found: 
    includes/common/lib/file_upload/KT_FileUpload.asp
    Please upload the includes/ folder to the testing server.
    I checked, and the file is actually missing from the web server. Do i need to purchase Dreamweaver to download this file, and is this a path worth pursuing?
    Dreamweaver version: I don't know which or how to check this, could check if given the proper instructions.

    The page that you have shown uses one of the InterAkt extensions for Dreamweaver. Unfortunately, InterAkt was bought out by Adobe who in turn did nothing with it. The latest version was about 5 years ago and was called ADDT.
    Maybe someone here can help you Friends of Interakt: Home Page

  • 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)

Maybe you are looking for

  • How do i transfer files from 1 profile to another

    How do i transfer files from 1 user profile to another

  • Bug report for SS10U1 fortran compiler

    I am getting an internal error when compiling a larger fortran source file: f90: Internal Error, code=fw-assert-einln-835, last src=mbd.f:14 If I first split the file and then compile the separate routines, the compiler survives: fsplit mbd.f f95 -c

  • Zero pad a number in BPEL Expression

    Is it possible to zero pad a number in a BPEL expression?  I have a number that needs to be 6 digits wide(080000) and sometimes comes in with only 5(80000).  I was hoping there was a function to do this but I couldn't find one.  Thanks, Tom Henrickse

  • Error in Looking up Remote JNDI Object

    My platform: WebLogic Server 6.0 SP2 My question: Apart from adding a user named "user1" in "remote_server", what else should I need to configure in order to allow my local WebLogic server to lookup an JNDI object in remote WebLogic server? Please he

  • How EXISTScan be used in this scenario

    Hi All, I want to use EXISTS in this query insted of IN. Select <Column Name> from <User>.<Table Name>@<Database link Name> where <Column1 Name> in (1,2,3,4,5,6,7,18,20) and <Column2 Name> in (1,2,3,4,5,6) and <Column3 Name> <>'0000000000000000' and