Disappearing Code

I frankly dont know if this is an HTML or PHP or MySQL issue, but I have created a template, then created a child page, the content in the editable region is called from a MySQL DB using PHP, however all code below the php script does not make it to the browser.
This is the effected page  http://www.johnfinleyphotographer.com/elk.php
Notice is ends on </div>
However the code for the page is
<!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"><!-- InstanceBegin template="/Templates/newfin.dwt.php" codeOutsideHTMLIsLocked="false" -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- InstanceBeginEditable name="doctitle" -->
<title>Untitled Document</title>
<!-- InstanceEndEditable -->
<style type="text/css">
</style>
<link href="p7pmm/p7PMMv02.css" rel="stylesheet" type="text/css" media="all" />
<script type="text/javascript" src="p7pmm/p7PMMscripts.js"></script>
<link href="newfin.css" rel="stylesheet" type="text/css" />
<!-- InstanceBeginEditable name="head" -->
<!-- InstanceEndEditable -->
</head>
<body>
<div id="sigline"><h1>John Finley Photographer</h1></div>
<div id="toptube"></div>
<div id="main">
<div id="menu">
<?php include('includes/newfinmenu.inc.php'); ?>
</div>
<!-- InstanceBeginEditable name="EditRegion3" -->
<div id="onecol">  <?php
$all = '';//!="" means is not empty
$bear = ('where bear !="" ');
$birds_of_prey= ('where birds_of_prey !="" ');
$bobcat= ('where bobcat !="" ');
$canadian_lynx = ('where canadian_lynx !="" ');
$cap_asc =('ORDER BY caption asc');
$cats = ('where cats !="" ');
$coyote= ('where coyote !="" ');
$flowers = ('where flowers !="" ');
$fox = ('where fox !="" ');
$insects = ('where insects !="" ');
$deer= ('where deer !="" ');
$elk = ('where elk !="" ');
$small_mammals = ('where small_mammals !="" ');
$large_mammals = ('where large_mammals !="" ');
$moose = ('where moose !="" ');
$mountian_lion = ('where mountain_lion !="" ');
$owls= ('where owls !="" ');
$tigers = ('where tigers !="" ');
$whales = ('where whales !="" ');
$wildlife = ('where wildlife !="" ');
$wolves = ('where wolves !="" ');
include('connection code');//sanitized for board
$query = "SELECT IM.image_id, IM.caption, IM.where_taken, IM.description, IM.file_name,
                  IM.image_file, IM.submitted, KW.fox, KW.wolves, KW.wildlife,
                 KW.deer, KW.small_mammals, KW.large_mammals, KW.cats, KW.flowers, KW.insects, KW.bear, KW.moose, KW.tigers, KW.whales, KW.bobcat, KW.buffalo, KW.canadian_lynx, KW.birds_of_prey, KW.owls, KW.mountain_lion, KW.elk
           FROM images IM JOIN keywords KW  ON IM.image_id = KW.image_id $elk limit 3
$data = mysqli_query($batchconnection, $query) or die(mysqli_error($batchconnection));
  while ($row = mysqli_fetch_array($data))    {
echo '<div >';
echo '<table>';
echo '<tr><td class="resultheading"><h2>' .$row['caption'].'</h2></td></tr>';
echo '<tr><td class="resultheading"><h3>'. ' This picture was taken in '.  $row['where_taken'].'</h3></td></tr>';
echo '</table>';
echo '<table><tr><td class="resultbody">'. $row['description'] . '</td>';
echo '<td class="resultbody"><img src="./images/'.$row['image_file'].'" width="250px" /></td></tr>';
echo '</table>';
echo '<hr />';
echo '</div>';
$id=$_GET['image_file'];
if(!isset($id) || empty($id))    {
die ("");
}else{
$query = mysqli_query("SELECT FROM images WHERE image_file='".$id. "'");
$row = mysqli_fetch_array ($query);
$content = $row['image_file'];
header('Content-type: image/jpg');
header('Content-type: image/png');
header('Content-type: image/gif');
header('Content-type: image/jpeg');
  mysqli_close($batchconnection);
?></div>
<!-- InstanceEndEditable --></div>
<div id="bottom"></div>
<div id="footer"><?php include('includes/footer.inc.php'); ?></div>
</body>
<!-- InstanceEnd --></html>
And example of what it should look like
http://www.johnfinleyphotographer.com/newfin.php
Anyone have a clue as to what is cause the code to dissappear?
Thanks
Gary

I'm not sure why I am unable to communicate what the issue is, but let me try again.
The code that I have written, the code that is in my DW file in NOT the same code that you are able to view in your browser.  The code is being truncated, cut off and not able to be viewed.
The code in my DW, the code I am uploading to the servier is :
<!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"><!-- InstanceBegin template="/Templates/newfin.dwt.php" codeOutsideHTMLIsLocked="false" -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- InstanceBeginEditable name="doctitle" -->
<title>Untitled Document</title>
<!-- InstanceEndEditable -->
<style type="text/css">
</style>
<link href="p7pmm/p7PMMv02.css" rel="stylesheet" type="text/css" media="all" />
<script type="text/javascript" src="p7pmm/p7PMMscripts.js"></script>
<link href="newfin.css" rel="stylesheet" type="text/css" />
<!-- InstanceBeginEditable name="head" -->
<!-- InstanceEndEditable -->
</head>
<body>
<div id="sigline"><h1>John Finley Photographer</h1></div>
<div id="toptube"></div>
<div id="main">
<div id="menu">
<?php include('includes/newfinmenu.inc.php'); ?>
</div>
<!-- InstanceBeginEditable name="EditRegion3" -->
<div id="onecol">  <?php
$all = '';//!="" means is not empty
$bear = ('where bear !="" ');
$birds_of_prey= ('where birds_of_prey !="" ');
$bobcat= ('where bobcat !="" ');
$canadian_lynx = ('where canadian_lynx !="" ');
$cap_asc =('ORDER BY caption asc');
$cats = ('where cats !="" ');
$coyote= ('where coyote !="" ');
$flowers = ('where flowers !="" ');
$fox = ('where fox !="" ');
$insects = ('where insects !="" ');
$deer= ('where deer !="" ');
$elk = ('where elk !="" ');
$small_mammals = ('where small_mammals !="" ');
$large_mammals = ('where large_mammals !="" ');
$moose = ('where moose !="" ');
$mountian_lion = ('where mountain_lion !="" ');
$owls= ('where owls !="" ');
$tigers = ('where tigers !="" ');
$whales = ('where whales !="" ');
$wildlife = ('where wildlife !="" ');
$wolves = ('where wolves !="" ');
include(connect);
$query = "SELECT IM.image_id, IM.caption, IM.where_taken, IM.description, IM.file_name,
                  IM.image_file, IM.submitted, KW.fox, KW.wolves, KW.wildlife,
                 KW.deer, KW.small_mammals, KW.large_mammals, KW.cats, KW.flowers, KW.insects, KW.bear, KW.moose, KW.tigers, KW.whales, KW.bobcat, KW.buffalo, KW.canadian_lynx, KW.birds_of_prey, KW.owls, KW.mountain_lion, KW.elk
           FROM images IM JOIN keywords KW  ON IM.image_id = KW.image_id $elk limit 3
$data = mysqli_query($batchconnection, $query) or die(mysqli_error($batchconnection));
  while ($row = mysqli_fetch_array($data))    {
echo '<div >';
echo '<table>';
echo '<tr><td class="resultheading"><h2>' .$row['caption'].'</h2></td></tr>';
echo '<tr><td class="resultheading"><h3>'. ' This picture was taken in '.  $row['where_taken'].'</h3></td></tr>';
echo '</table>';
echo '<table><tr><td class="resultbody">'. $row['description'] . '</td>';
echo '<td class="resultbody"><img src="./images/'.$row['image_file'].'" width="250px" /></td></tr>';
echo '</table>';
echo '<hr />';
echo '</div>';
$id=$_GET['image_file'];
if(!isset($id) || empty($id))    {
die ("");
}else{
$query = mysqli_query("SELECT FROM images WHERE image_file='".$id. "'");
$row = mysqli_fetch_array ($query);
$content = $row['image_file'];
header('Content-type: image/jpg');
header('Content-type: image/png');
header('Content-type: image/gif');
header('Content-type: image/jpeg');
  mysqli_close($batchconnection);
?></div>
<!-- InstanceEndEditable --></div>
<div id="bottom"></div>
<div id="footer"><?php include('includes/footer.inc.php'); ?></div>
</body>
<!-- InstanceEnd --></html>
Notice it has closing </body> ande </html> tags.
This is the code you are able to view and the validator is able to view:
<!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"><!-- InstanceBegin template="/Templates/newfin.dwt.php" codeOutsideHTMLIsLocked="false" -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- InstanceBeginEditable name="doctitle" -->
<title>Untitled Document</title>
<!-- InstanceEndEditable -->
<style type="text/css">
</style>
<link href="p7pmm/p7PMMv02.css" rel="stylesheet" type="text/css" media="all" />
<script type="text/javascript" src="p7pmm/p7PMMscripts.js"></script>
<link href="newfin.css" rel="stylesheet" type="text/css" />
<!-- InstanceBeginEditable name="head" -->
<!-- InstanceEndEditable -->
</head>
<body>
<div id="sigline"><h1>John Finley Photographer</h1></div>
<div id="toptube"></div>
<div id="main">
<div id="menu">
  <div id="p7PMM_1" class="p7PMMv02">
    <ul class="p7PMM">
      <li><a href="#">Home</a></li>
      <li><a href="about-john.php">About John</a></li>
      <li><a href="#">Pictures</a>
          <div>
            <ul>
              <li><a href="elk.php">Elk</a></li>
              <li><a href="#">Mountain Lion</a></li>
              <li><a href="#">Wolves</a></li>
            </ul>
          </div>
      </li>
      <li><a href="#">Shop</a>
          <div>
            <ul>
              <li><a href="#">Calenders</a></li>
              <li><a href="#">Framed Pictures</a></li>
              <li><a href="#">Digital Picture Frames</a></li>
              <li><a href="#">Signed Originals</a></li>
            </ul>
          </div>
      </li>
      <li><a href="#">John on Photography</a>
      <div>
            <ul>
              <li><a href="the-camera.php">The Camera</a></li>
              <li><a href="wildlife-photography.php">Wildlife Photography</a></li>
              <li><a href="effects.php">Effects</a></li>
            </ul>
          </div>
      </li>
      <li><a href="#">Contact</a></li>
    </ul>
    <!--[if lte IE 7]>
<style>.p7PMMv02, .p7PMMv02 a, .p7PMMv02 ul {height:1%;}.p7PMMv02 li{float:left;clear:both;width:100%;}</style>
<![endif]-->
    <!--[if IE 5.500]>
<style>.p7PMMv02 {position: relative; z-index: 9999999;}</style>
<![endif]-->
    <!--[if IE 5]>
<style>.p7PMMv02 a, .p7PMMv02 ul {height: 1%; overflow: visible !important;}</style>
<![endif]-->
    <script type="text/javascript">
<!--
P7_PMMop('p7PMM_1',0,2,-5,-5,0,0,0,1,0,3,1,1,0);
//-->
    </script>
</div>
</div>
<!-- InstanceBeginEditable name="EditRegion3" -->
<div id="onecol">  <div ><table><tr><td class="resultheading"><h2>Baby Elk In Fall</h2></td></tr><tr><td class="resultheading"><h3> This picture was taken in Canadian Rockies</h3></td></tr></table><table><tr><td class="resultbody">In the Fall the Elk herds including young come to the lower meadows for winter.  The young are often unafraid and are curious about humans, especially the funny looking ones.</td><td class="resultbody"><img src="./images/Baby Elk in Fall.jpg" width="250px" /></td></tr></table><hr /></div><div ><table><tr><td class="resultheading"><h2>Bellowing Bull Elk</h2></td></tr><tr><td class="resultheading"><h3> This picture was taken in Canadian Rockies</h3></td></tr></table><table><tr><td class="resultbody">The bellowing bull Elk sing a lonely, yet beautiful song, haunting, yet colorful.  Often several sing together and the song carries through the mountains for miles.</td><td class="resultbody"><img src="./images/Bellowing Bull Elk.jpg" width="250px" /></td></tr></table><hr /></div><div ><table><tr><td class="resultheading"><h2>Bellowing Elk</h2></td></tr><tr><td class="resultheading"><h3> This picture was taken in Canadian Rockies</h3></td></tr></table><table><tr><td class="resultbody">In Fall, the Elk travel to the lower meadows for protection from the harsh mountain winters.  Here they find open meadows for food and forest for safety.  The will also find the lonely photographer waiting to meet them.</td><td class="resultbody"><img src="./images/Bellowing Elk in Meadow.jpg" width="250px" /></td></tr></table><hr /></div>
Notice is does not have the closing </body> ande </html> tags.
In short, the code I am uploading is not the code that the browser is displaying, the question is why.
Gary

Similar Messages

  • [Bug] Disappearing Code

    Since upgrading to Flash CC my colleagues and I have noticed several isntances of code disappearing. We would write code in the FLA on the timeline, save, export, and see the movie working only to be scolded by QA an hour later saying we didn't do any work! We then return to the FLA to find missing blocks of code. Perhaps there is some issue with FLA saving in Flash CC x64? Or perhaps the new code editor (which still lags, I was hoping the new Flash could finally pull of a text editor without lag with reliable code completion) just randomly loses things?

    Yes, we are upgrading old CS6 projects. However all of the projects I've done in CC so far have been AS3. In some cases, we are even sharing projects between folks that still use CS6 and have noticed that movieclips containing groups of more movie clips do not port back too well but otherwise haven't had many problems.
    Both times my code disappeared though I was the only one who had touched the FLA all day and only used CC and it happened at some point in the middle of development. What I found most intriguing is that it hasn't yet removed code that caused an error. It is usually like we write a for loop like so:
    for(...) {
         // some code
    and occaisionally // some code will disappear but both the for loop and any code before and after will remain intact. My guess is that is related to saving or marking a file as saved. Perhaps I hit ctrl+s and the close the project and it lets me because the asterisk has disappeared but it was not yet complete. I had another save related bug in CS6 where for a couple months I would need to save twice in order to get the asterisk to go away every time and then one week it just started having to only save once again after no update. This happens on Windows 7 x64 by the way. I haven't had the chance to install Flash CC at home on my Windows 8.1 PC yet.

  • Forte and disappearing code

    Hi,
    I have encountered an issue when working with Forte and cvs. If a developer creates a new component, say a JFrame, and add some other components to it and there after check in the result in the cvs (.java, .form and .nbatrs), everything seems to work just fine. Then another developer check out the code and open it in Forte then Forte some times remove components from the file and tell the developer that the file has changed (via an *). (Where not using Fortes own cvs tools). It only happens with files that have an form file.
    Beside this, the same issue randomly arise when editing files.
    Would be glad if somebody could help me.
    Mats

    I have noticed the same thing. In my case it's the JMenuBar on a JFrame that gets trashed. The menu is still there, all that changes is
    (1) value="menuBar" changes to value="(No menu)" in the <SyntheticProperty name="menuBar" ...> entity in the .form file (menuBar is the name of the menu bar)
    (2) the setJMenuBar(menuBar); statement in the .java file goes away
    and
    (3) the menu bar no longer appears in the form.
    It seems to be pretty reproducible.

  • Histogram on IE with two buttoms

    Hi, i am learning java programing and i can't make working buttons.
    I have program which painting graphic, and i need open it in internet explorer. i did this, but i can't make two buttons near graphic.
    One button should show graphic, and other turn off graphic.
    So when one button is pressed graphic will appear, and when some one press other disappear.
    code looks like this:
    package hi;
    import java.awt.*;
    import javax.swing.*;
    public class Main extends Metodai
    @Override public void paint (Graphics g){............}
    How to do that, please help !
    Edited by: Kilohercas on May 16, 2010 3:49 AM

    Welcome to the Sun forums.
    Kilohercas wrote:
    Hi, i am learning java programing.. My advice is don't start with applets. Or, again and louder this time.. don't start with applets. Coding GUIs in Java is not a beginner task. Applets make it a lot harder.
    Many books and tutorials encourage applet development for beginners. If you are looking at instructions that are encouraging you to develop applets, I strongly suggest you ignore that information and do simpler things first.
    But since I am here, I have some other advice..
    package hi;
    import java.awt.*;
    import javax.swing.*;
    public class Main extends Metodai
    @Override public void paint (Graphics g){............}
    }..Further advice.
    - When posting code, code snippets, XML/HTML or input/output, please use the code tags. The code tags protect the indentation(1) and formating of the sample. To use the code tags, select the sample and click the CODE button.
    - For better help, post an SSCCE.
    - Do not mistake this forums for a help desk. If you were expecting somebody to take your code skeleton and turn it into a working applet, get used to the fact that will not happen. We might help, but we will not code the applet for you.
    1) And while on the subject of indenting code, please use one of the two standard standard forms of indenting code blocks, as reading unindented code is very difficult for most people. The 2 standard forms would be:
    a)
    package hi;
    import java.awt.*;
    import javax.swing.*;
    public class Main extends Metodai
         @Override
         public void paint (Graphics g)
    }b)
    package hi;
    import java.awt.*;
    import javax.swing.*;
    public class Main extends Metodai {
         @Override
         public void paint (Graphics g) {
    }

  • Itunes.exe disappears in Win7, Exception code: 0xc0000005, Faulting module name: es.dl

    On a Windows 7 Pro SP1 Toshiba Satellite A505 64bit laptop, when I run Itunes, no windows ever appears. If I watch Task Manager, "itunes.exe *32" appears briefly then disappears.
    I ended ipodservice.exe, no diff. Started Itunes in Itunes safemode, no diff (in Windows normal mode OR windows safe mode).  I tried creating another user - same issue. I tried disabling the antivirus. I scanned for viruses.  I uninstalled ALL the apple software and removed ALL the apple related folders (incl bonjour, apple blah, quicktimes, itunes, etc), as per
    http://support.apple.com/kb/HT1923
    The problem persisted. After the most recent removal / reinstall,I went to event viewer > applications and found the following items. I didn't find anything online relating to es.dll and itunes.
    Log Name:      Application
    Source:        MsiInstaller
    Date:          7/31/2014 6:07:11 PM
    Event ID:      1039
    Task Category: None
    Level:         Warning
    Keywords:      Classic
    User:          Owner-PC\Owner
    Computer:      Owner-PC
    Description:
    Product: iTunes. The application tried to modify a protected Windows registry key \CLSID\{44EC053A-400F-11D0-9DCD-00A0C90391D3}\ProgID.
    Log Name:      Application
    Source:        Application Error
    Date:          7/31/2014 6:09:29 PM
    Event ID:      1000
    Task Category: (100)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      Owner-PC
    Description:
    Faulting application name: iTunes.exe, version: 11.3.0.54, time stamp: 0x53bc1265
    Faulting module name: es.dll, version: 2001.12.8530.16385, time stamp: 0x4a5bda4e
    Exception code: 0xc0000005
    Fault offset: 0x00006ef9
    Faulting process id: 0x1aac
    Faulting application start time: 0x01cfad253d3a5a2a
    Faulting application path: C:\Program Files (x86)\iTunes\iTunes.exe
    Faulting module path: C:\windows\system32\es.dll
    Log Name:      Application
    Source:        Windows Error Reporting
    Date:          7/31/2014 6:09:33 PM
    Event ID:      1001
    Task Category: None
    Level:         Information
    Keywords:      Classic
    User:          N/A
    Computer:      Owner-PC
    Description:
    Fault bucket 378197881, type 17
    Event Name: APPCRASH
    Response: Not available
    Cab Id: 0
    Problem signature:
    P1: iTunes.exe
    P2: 11.3.0.54
    P3: 53bc1265
    P4: es.dll
    P5: 2001.12.8530.16385
    P6: 4a5bda4e
    P7: c0000005
    P8: 00006ef9
    P9:
    P10:
    Do these indicate any fix that i have not already tried above?

    On a Windows 7 Pro SP1 Toshiba Satellite A505 64bit laptop, when I run Itunes, no windows ever appears. If I watch Task Manager, "itunes.exe *32" appears briefly then disappears.
    I ended ipodservice.exe, no diff. Started Itunes in Itunes safemode, no diff (in Windows normal mode OR windows safe mode).  I tried creating another user - same issue. I tried disabling the antivirus. I scanned for viruses.  I uninstalled ALL the apple software and removed ALL the apple related folders (incl bonjour, apple blah, quicktimes, itunes, etc), as per
    http://support.apple.com/kb/HT1923
    The problem persisted. After the most recent removal / reinstall,I went to event viewer > applications and found the following items. I didn't find anything online relating to es.dll and itunes.
    Log Name:      Application
    Source:        MsiInstaller
    Date:          7/31/2014 6:07:11 PM
    Event ID:      1039
    Task Category: None
    Level:         Warning
    Keywords:      Classic
    User:          Owner-PC\Owner
    Computer:      Owner-PC
    Description:
    Product: iTunes. The application tried to modify a protected Windows registry key \CLSID\{44EC053A-400F-11D0-9DCD-00A0C90391D3}\ProgID.
    Log Name:      Application
    Source:        Application Error
    Date:          7/31/2014 6:09:29 PM
    Event ID:      1000
    Task Category: (100)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      Owner-PC
    Description:
    Faulting application name: iTunes.exe, version: 11.3.0.54, time stamp: 0x53bc1265
    Faulting module name: es.dll, version: 2001.12.8530.16385, time stamp: 0x4a5bda4e
    Exception code: 0xc0000005
    Fault offset: 0x00006ef9
    Faulting process id: 0x1aac
    Faulting application start time: 0x01cfad253d3a5a2a
    Faulting application path: C:\Program Files (x86)\iTunes\iTunes.exe
    Faulting module path: C:\windows\system32\es.dll
    Log Name:      Application
    Source:        Windows Error Reporting
    Date:          7/31/2014 6:09:33 PM
    Event ID:      1001
    Task Category: None
    Level:         Information
    Keywords:      Classic
    User:          N/A
    Computer:      Owner-PC
    Description:
    Fault bucket 378197881, type 17
    Event Name: APPCRASH
    Response: Not available
    Cab Id: 0
    Problem signature:
    P1: iTunes.exe
    P2: 11.3.0.54
    P3: 53bc1265
    P4: es.dll
    P5: 2001.12.8530.16385
    P6: 4a5bda4e
    P7: c0000005
    P8: 00006ef9
    P9:
    P10:
    Do these indicate any fix that i have not already tried above?

  • Spry validation disappears - leaves widget code

    I have added the spry validation to my form fields many
    times. This particular form, I have had to add them twice already
    and now I got an error that says the javascript for widgets that
    are missing are still on the page. I see the widget javascript at
    the bottom of my page in code view. I also see other changes I made
    to the form fields at the same time that I added the spry
    validation. So I am not imagining that I already did this.
    What could have happened to make the validation disappear?
    has this every happened to any of you?

    Hi Daniel,
    Im having the same problem, can you please tell me what you did? I understand you found the problem?
    Thank you!

  • How can I keep the leading zero in zip codes from disappearing in Numbers spreadsheet?

    I have a spreadsheet with addresses, and the leading 0 of the zip codes (thanks New Jersey) keeps disappearing... How do I correct this?

    Penny,
    It's easy for 5-digit ZIP codes to use the Number System format. Set to Base 10 and 5 places. Part of the goodness of this approach is that if you have already lost the zeros to the Automatic Format, this will reconstitute them.
    ZIP 5 plus 4 codes are not a problem because the dash in the middle causes a default to Text.
    Jerry

  • Characters inside content="" code disappears on saving .css

    If I open an existing css file with the code content=""; make some other changes and save the content it disappears.
    My guess is that this is some kind of language/character/utf related setting?
    I only have this problem in Dreamweaver CC, not in old versions of Dreamweaver.
    Before:
    .test {
              content:="";
    After save and reopen the file the line looks like:
    .test {
              content:="";

    This link describes the proper use of the 'content' style -
    CSS Content Property

  • Cost Center Disappearing When I remove Order Reason Code

    Hello SAP Experts,
    When the user removes ther order reason code and saves the order the value in the cost center disappears on the order. Anyone know why this is happening?
    Thanks,
    Patrick

    Hello,
    After some testing I realized that the users picks the blank order reason code on the sales order and clicks on save. That removes any of the cost center information on the order.  The blank order reason code is not on the order reason table, it is a valid choice on the sales order. Table OVF3 is not valid since it doesn't have a blank order reason as a choice. Is there a work around?
    Thanks,
    Patrick

  • Tax Code Disappearing

    Hi Experts,
    When I am creating a GRPO based on a PO and change the date of the GRPO,the tax codes which were copied from  Purchase Order ,disappear from the line level .The same thing happens when the PO date is also changed before saving it.
    Please suggest what is going wrong ?
    Regards,
    Asap

    hi,
    It normal system behaviour on changing dates tax codes get refreshed.
    Enter dates first, tax code won't change then.
    Jeyakanthan

  • After saving one invoice through T code vf04, vf04 screen is disappearing a

    After saving one invoice through T code vf04, vf04 screen is disappearing and for every invoice, users have to enter again and again. This creates inconvenience to all users and takes a lot of time for invoicing.

    hi,
    the better way to use VF04 is to create a variant that it cummulates all the billing due documents and be executed via a batch job preferably or do it once.
    depending the criteria of the users doing billing, may be different sales areas, document number range etc you can create variants for VF04.
    regards
    sadhu kishore

  • Cell for inputting jurisdiction code disappears ?

    Hi,
    When I used MIRO to verify invoice , I have to enter Code tax ( E0) , Then it require to input Jurisdiction code , But It leads me to 'Quantity' cell and there is no cell ' Jurisdiction code' to enter , It has disappeared ( Yesterday It was there ) , But I do not know how to see it again in MIRO , Could you please help me ?
    thanks

    Hi
    Have u maintained the (Jurs Code) in the vendor master?
    It is avl in xk01 address filling screen. If u select the more field button on "street address" the field will apear.
    Am not sure.. Try to maintain here n chk the same is coming while doing MIRO..
    Regards
    Ram

  • Xcode 4 code sens (code completion) disappeared

    I want to share with you a problem I encountered using Xcode 4 GM seed build 4A278. It was shocking to get no convenient code sense (code completion) in one of my classes inherited from NSObject. My .h file had no problem whatsoever, but the .m file didn't react to any of my gestures including the control command key combination.
    All other files in the project the code sensing feature worked fine. This was my first couple of hours with Xcode 4 and the project was converted from Xcode 3. In the end, the solution was to copy the code into memory, delete the .m file, add a new .m file and finally pasting the code in to the .m file. Voila, there was the code sensing. You never know, you may experience a similar problem in the future.
    I think I really going to like the new Xcode 4, good job Xcode team!

    I'm having this same problem as well:
    Lydster wrote:
    if I place the cursor in the middle of a function name and hit Esc I then see the completion list. But as soon as I start editing - it all disappears and I'm faced with "No Completions Found".
    However, it only happens when my source code file is located above the project folder in the file system. When I move the files into the project folder or a sub folder of the project folder code completion works fine.
    This appears to be a bug. Anyone else experiencing this?

  • Why the code in the UR disappear

    Hi all,
    Why the code in the UR disappear, i wrote a rutine in the UR to fill an Infoobject, but the rutine find from 0EMPLOYEE the comp code, but i need the value with Valid to 31.12.9999, when i write this in the rutine and press save, this disapear , its amazing but i dont know? help

    make sure you are in change mode. Try activating the code after writing.

  • HTML Code Display - Disappearing???

    (RH8, CHMs)
    Hello,
    Running into an issue, not sure how to fix this.
    I am building a link to an external .htm file that will be included with our help CHMs. It's staying external because this allows us to update it at any time without having to update any CHM itself by re-importing and building. The html files are in the same folder as the help CHMs.
    Normal hyperlinking doesn't seem to work - the CHM can't apparently see the content of topic, and may be running into an issue because it appears to be trying to open within the help screen rather than through a browser like IE or Firefox.
    So I did some googling and found the following html code which works like a charm:
    http://www.cybertext.com.au/tips_HTML_chm_external.htm
    <OBJECT id=hhctrl
       type="application/x-oleobject"
       classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11"
       codebase="hhctrl.ocx#Version=4,73,8412,0"
       width=100
       height=100>
      <PARAM name="Command" value="ShortCut">
      <PARAM name="Font" value="Arial, 10pt">
      <PARAM name="Text" value="Text:Doc name">
      <PARAM name="Item1" value=",document.ext,">
    </OBJECT>
    The issue I'm running into is that this code doesn't display in RoboHelp itself. That is, if I view the topic in Design mode, the hyperlink text ("Doc name" in the example above) never shows. And if I go between design and html, or close and reopen, the code disappears in the HTML view as well. The code is still there - the links show up as designed (and work) whenever I compile the project. I just can't find a way of getting them to display in RH beyond staying in the HTML view for that topic after inserting the code.
    Any ideas why this is happening, and what can be done?

    You could try an iFrame. Much easier in RoboHelp 9 I believe but also available in RoboHelp 8.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

Maybe you are looking for

  • Problem in Converting Shapefile to SDO Layer

    Hi all, I am new to the Oracle Spatial database 10g (10.2.0.1.0). I got problem in Converting shapefile to sdo. My ESRI Shapefile (Tempshp.shp,Tempshp.shx,Tempshp.dbf) contain field name as "LEVEL". I can able to run the shp2sdo and "Tempshp.sql" and

  • Getting below error when doing base_update.sh

    [10.22.13 17:04:46] INFO: Checking definition from AppConfig.xml against existing EAC provisioning. [10.22.13 17:04:48] INFO: Definition has not changed. [10.22.13 17:04:48] INFO: Starting baseline update script. [10.22.13 17:04:48] INFO: Acquired lo

  • Change Decimal Notation Format

    Hi All We have a requirement to output currency and quantity fields in a smartform to a different format than is specified in the users settings. This can be different depending on the country key of the vendor. Does anyone know of a way to dynamical

  • Games installing error

    games nd apps were not downloded properly!! on installing it says installing error plz help me out Solved! Go to Solution.

  • HP Pavilion DV6-6c00tu Software And Drivers Required

    Hi everyone !! Guys i need your help... please help me and guide me .. i need hp pavilion dv6-6c00tu all softwares and drivers ..up to dated Required some Software and Driver Applications for Hp pavilion dv6-6c00tu... Windows-7 Professional 64-Bit 1-