Troubleshooting Tables

I am creating a site in dreamweaver using templates and tables.  I have created a table, 2 rows and 2 colums, in which my header is on the top.  On the bottom left I have created a nav bar by splitting the cell into 2 columns then into several rows, which I have created links for each page.  My main content is on the bottom right cell.
My problem is that when I insert content in the cell, my top row in my nav bar moves.  How do I insert my main content without my nav bar changing?
Thanks
Nick
Below is my HTML Code for my template page:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<!-- TemplateBeginEditable name="doctitle" -->
<title>Untitled Document</title>
<!-- TemplateEndEditable -->
<!-- TemplateBeginEditable name="head" -->
<!-- TemplateEndEditable -->
<style type="text/css">
<!--
body,td,th {
color: #E0DFE3;
body {
background-color: #FFFFFF;
a {
font-weight: bold;
.style1 {color: #000000}
-->
</style>
</head>
<body>
<p> </p>
<table width="700" border="0" cellspacing="0" cellpadding="0">
  <!--DWLayoutTable-->
    <tr>
      <td colspan="2"><img src="/WORLD_MUSICAL_TALENT_FORUM2.jpg" width="700" height="125" align="absmiddle"></td>
    </tr>
    <tr>
      <td width="150" height="45" align="center" valign="middle" bordercolor="#0000FF" class="style1"><div align="center"><strong><a href="/index.html">Home</a></strong></div></td>
      <td width="550" rowspan="22" align="left" valign="top"><!-- TemplateBeginEditable name="MAIN CONTENT" --><!-- TemplateEndEditable --></td>
    </tr>
    <tr>
      <td height="45" align="center" valign="middle"><a href="/Classifieds.htm">Classifieds</a></td>
    </tr>
    <tr>
      <td height="45" align="center" valign="middle" bordercolor="#FF0000" class="style1"><div align="center"><strong><a href="/Our_Beginning.htm">Our_Beginning</a></strong></div></td>
    </tr>
    <tr>
      <td height="45" align="center" valign="middle" bordercolor="#FF0000" class="style1"><div align="center"><strong><a href="/Newsletter.htm">Newsletter</a></strong></div></td>
    </tr>
    <tr>
      <td height="45" align="center" valign="middle" bordercolor="#FF0000" class="style1"><div align="center"><strong><a href="/World_Instruments.htm">World_Instruments </a></strong></div></td>
    </tr>
    <tr>
      <td height="45" align="center" valign="middle" bordercolor="#FF0000" class="style1"><div align="center"><strong><a href="/Music_Theory.htm">Music_Theory </a></strong></div></td>
    </tr>
    <tr>
      <td height="45" align="center" valign="middle" bordercolor="#FF0000" class="style1"><div align="center"><strong><a href="/Music_History.htm">Music_History</a></strong></div></td>
    </tr>
    <tr>
      <td height="45" align="center" valign="middle" bordercolor="#FF0000" class="style1"><div align="center"><strong><a href="/Music_History_2.htm">Music_History_2</a></strong></div></td>
    </tr>
    <tr>
      <td height="45" align="center" valign="middle" bordercolor="#FF0000" class="style1"><div align="center"><strong><a href="/Nick's_Music.htm">Nick's_Music</a></strong></div></td>
    </tr>
    <tr>
      <td height="45" align="center" valign="middle" bordercolor="#FF0000" class="style1"><div align="center"><strong><a href="/World_Music.htm">World_Music</a></strong></div></td>
    </tr>
    <tr>
      <td height="45" align="center" valign="middle" bordercolor="#FF0000" class="style1"><div align="center"><strong><a href="/Music_Technology.htm">Music_Technology</a></strong></div></td>
    </tr>
    <tr>
      <td height="45" align="center" valign="middle" bordercolor="#FF0000" class="style1"><div align="center"><strong><a href="/Music_Composition.htm">Music_Composition</a></strong></div></td>
    </tr>
    <tr>
      <td height="45" align="center" valign="middle" bordercolor="#FF0000" class="style1"><div align="center"><strong><a href="/Musical_Terms.htm">Musical_Terms</a></strong></div></td>
    </tr>
    <tr>
      <td height="45" align="center" valign="middle" bordercolor="#FF0000" class="style1"><div align="center"><strong><a href="/Affiliates.htm">Affiliates</a></strong></div></td>
    </tr>
    <tr>
      <td height="45" align="center" valign="middle" bordercolor="#FF0000" class="style1"><div align="center"><strong><a href="/Children%27s_Songs.htm">Children's Songs </a></strong></div></td>
    </tr>
    <tr>
      <td height="45" align="center" valign="middle" bordercolor="#FF0000" class="style1"><div align="center"><strong><a href="/Music_Lessons.htm">Music_Lessons</a></strong></div></td>
    </tr>
    <tr>
      <td height="45" align="center" valign="middle" bordercolor="#FF0000" class="style1"><div align="center">Tell_a_Friend</div></td>
    </tr>
    <tr>
      <td height="45" align="center" valign="middle" bordercolor="#FF0000" class="style1"><div align="center"><strong><a href="/Forum.htm">Forum</a></strong></div></td>
    </tr>
    <tr>
      <td height="45" align="center" valign="middle" bordercolor="#FF0000" class="style1"><div align="center"><strong><a href="/Live_Chat.htm">Live_Chat</a></strong></div></td>
    </tr>
    <tr>
      <td height="45" align="center" valign="middle" bordercolor="#FF0000" class="style1"><div align="center"><strong><a href="/Musical_Guestbook.htm">Musical_Guestbook</a></strong></div></td>
    </tr>
    <tr>
      <td height="45" align="center" valign="middle" bordercolor="#FF0000" class="style1"><a href="/Contact_Me.htm">Contact_Me</a></td>
    </tr>
    <tr>
      <td height="4506" align="center" valign="middle" class="style1"><div align="center"></div></td>
    </tr>
</table>
  <p> </p>
</body>
</html>

My problem is that when I insert content in the cell, my top row in my nav bar moves.  How do I insert my main content without my nav bar changing?
I agree completely with John, but if you want to stick with tables, then get rid of the col- and rowspans (merging and splitting cells)!  Read this - http://www.apptools.com/rants/spans.php
You could just have a two cell, one row table.  The image at the top would not even need to be in the table - put it before the table's code.  In the left cell, nest a new table for your vertical navigation, and put your content in the right cell.
That way, the shape changes of the two tables are 'insulated' from each other....
But give an effort to moving away from complex table convolutions like this!

Similar Messages

  • Where can I find various high level examples of workflows being used

    I am about to start a project with TCS 3.5 and have been participating in the Adobe webinars to help learn components and specific techniques but what I am lacking is an understanding of various workflows I can model my project after or take bits from various sources. Why start with Framemaker in this workflow versus RoboHelp or even Word? Questions like this I think come from experience with the process and I am thinking that what I am getting myself into is a chessgame with all these pieces and don't want to paint myself into a corner by traveling down one route. I have seen this graphic:
    And this one:
    And this one:
    But they are too generic and do not contain enough information to really understand the descision making process one must go through on various projects.
    Can we have a series of webinars made, all with the underlining theme of defining a working process or workflow, by having guests describe how they have or are using this suite in real life on their own projects? One that might include a graphic showing the routes taken through the suite with reasons why?
    My project hopes to make a single source internal site that will tie together various 3D portable industrial coordinate metrology systems (hardware and software). It would be used as a dispersal site for help, communications between users and SME, OEM information, QA requirements, established processes, scripting snipet downloads, statistics, and training (including SOJT). Portable industrial metrology has 8 different softwares that are used and right now about 8 different instruments. These include laser trackers and radars, articulated arms, scanners, structered white and blue light to name a few. The softwares include Spatial Analyzer, Veriserf, CompIT, eMscon, AXYZ to a few there as well. I want to be able to participate and add content to an internal Sharpoint site, push content to users for stand-alone workstations, ePub, capture knowledge leaving the company through attrition, develop easy graphic rich job aid sheets, and aid in evaluations of emergent software and hardware. I would also like to leave the option open to use the finished product as a rosetta stone like translator between the software packages; doing this is the equivelent of doing this in these other software pacages for example.

    PDF is definately a format I want to include, to collaborate with other divisions and SME for one reason, but also for the ease in including 3D interactive target models with in it and portability. I plan on being able to provide individual PDFs that are very specific in their topics and to also use them to disperse user guides, cheat sheets or job aids... something the user may want to laminate on their own and keep with them for reference, printed out. Discussion in these sheets would be drasticly reduced to only the elements, relying heavely on bullet points or steps, usfull graphs, charts and tables... and of course illustrative images. I am thinking that these should be downloadable buttons to print on each topic section, not in a general apendix or such. They would hopefully be limited to one page, double sided 8x10.
    The cheet sheet would have a simplistic flow chart of how or where this specific topic fits in the bigger picture,
    The basic steps,
    Illustrations, equipment, setup
    Software settings for various situations in a table or chart,
    Typical result graph to judge with,
    Applicable QA, FAA regulation settings or concerns,
    Troubleshooting table,
    Topic SME contact info
    On the back, a screen shot infographic of software process
    The trouble here is that I have read that FM has a problem sometimes in succesfully transfering highly structured or formatted material to RoboHelp. Does this then mean that I would take it from FM straight to PDF?
    Our OEM material is very high level stuff... basicly for engineers and not shop floor users... but that is not to say they don't have some good material that could be useful. Our internal content is spread out across many different divisions and continents, with various ways of saying the same thing. This leads QA to interpret the information differently depending where the systems are put to work. We also have FAA requirements that need to be addressed and reminded to the user.
    Our company is starting to also see an exodus of the most knowledagble of the users through retirement. Capturing the knowledge and soft skill packages they have developed working here for 20-30 years is something I am really struggling with. I have only come up with two ideas so far:
    Internal User Web based Forum
    Interviews (some SMEs do not want to make the effort in transfering knowledge by participating in anything if it requires an effort they don't see of benefit to themseleves), to get video, audio or transcription records

  • Trouble after updating the lastest firmware 2.7 for mac ox 10.7.3

    I had updated 10.7.3 for a couple of week and then I installed new firmware by "software update" 2.7. Before I updated new firmware, "OS X Lion" in Appstore was "Installed", after I install new firmware, it did not "Installed" any more and show me the cost ($29.99). I dont know why and I try to click on it. Suddenly, the Appstore begin to download OS X 10.7.3 again while I'm using this version!!!
    Please help me Apple is coming to release "Mountain Lion".I don't want to buy "Lion" again and waste  $29.99
    Help me!!

    Actually, it looks like your install did not go well. On a G5, 10.3.9, we have no such errors. Among the things to watch for: incomplete downloads; make sure you are not installing as root user. Other: did you check these installation notes: http://developers.sun.com/prodtech/javatools/jscreator/reference/docs/2/Installation_ReleaseNotes.html#hwsw
    There is a troubleshooting table as well that pertains to all platforms.
    /krys
    Creator Team

  • Manually Installed Agent is not showing up in the Operations Manager Console Under Pending Management.

    Hi Community,
    I submitted this question because I'm a bit stuck with SCOM 2012 R2, I'll try to explain briefly what is happening right now in my environment,  we have a DEV SCOM Deployment in which all the roles are installed in a single server, this servers is a
    VMware machine running Windows Server 2008R2.
    The Initial installation of the SCOM Operations Manager and all the other components was not performed by me but by a co-worker, unfortunately he doesn't remember much about the initial configuration. So i had to pickup where he left things about a year
    ago, neither of us are SCOM experts, and we have almost no previous experience with previous versions of this application.
    Now the problem that I'm facing is the following, all the DEV Servers are Domain Controllers and one of the indication within the "Guide for System Center Management Pack for Active Directory for Operations Manager 2012" states the following
    Configuration
    Supported?
    Agent-less monitoring
    No
    After my first review I notice that our servers were being monitor by agent-less mode and given the above statement from the Operations Guide the only way that we could ever get those domain controllers monitor by SCOM would be by installing the agent on
    each server, so I read somewhere (Can't remember where) that in order to install the agents in all the servers I should first remove them from the Agent-less node, which I did. Then I tried to use the discovery wizard to get the agent install in all of them
    but it didn't matter how many times I try the servers never show up.
    I read in a Tech Net Article that you had to modify the security settings so SCOM would let me decide if I wanted to approve it or not.
    --> http://technet.microsoft.com/en-us/library/hh212853.aspx
    I performed the suggested steps from the article but still the servers were not showing up, not even if I run the Discovery wizard, so I decided to go and perform the installation manually in a couple of servers I was able to install the agent in one of
    the Domain Controllers, I configured the agent to use a service account that has Domain Admin rights. An hour after I installed the agent I went back to the Operations Console Manager and I check under Pending Action but the Server was not showing up. So i
    went back to the Internet to try to find out if someone else had experience the same problem, and in one website some mentioned that if the servers were not showing up it was probably because they were still register in the SCOM Database, now I have no idea
    of how i can check that or How can i remove them from there to have them available again, but what troubles me the most is that even after i installed the agent manually the server were not being recognize.
    I went to the Event Viewer and I found one particular event that caught my attention, see below :
    Log Name:      Operations Manager
    Source:        Health Service Modules
    Date:          6/12/2014 12:48:19 PM
    Event ID:      11551
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      MyManagementServer
    Description:
    Computer verification failure for Machine Name: MyManagementServe is 0x800706BA. The RPC server is unavailable.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Health Service Modules" />
        <EventID Qualifiers="49152">11551</EventID>
        <Level>2</Level>
        <Task>0</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-06-12T16:48:19.000000000Z" />
        <EventRecordID>1945680</EventRecordID>
        <Channel>Operations Manager</Channel>
        <Computer>MyManagementServer</Computer>
        <Security />
      </System>
      <EventData>
        <Data>MyManagementServe</Data>
        <Data>0x800706BA</Data>
        <Data>The RPC server is unavailable.</Data>
      </EventData>
    </Event>
    Not sure if this is related to the problem that I'm facing right now, but , I make sure that the RPC Services were running and also the related dependencies too. There's no Firewall enable in any of the servers and DNS seems to be working properly.
    Ports 135 / 5723 are open and listening so since I ran out of ideas, I would like to know if some of the experts in this field could perhaps give me some guidelines.
    There's one caveat that I haven't mention yet and that is related to SQL, I checked and my user just has read access to SQL i'm not sure if that could affect this but i think is worth mentioning.
    My main goal is to have all the servers showing up in the Operations Manager Console.
    So thanks all in advance !
    Oscar Loria

    So you can ping and nslookup from your ms to these agents and vice versa right?  I wouldn't do a manual install, I would push the agent from the management server.  You can uninstall the agent manually, or use cleanmom to get rid of them.  Then
    do an install from the console.  When you initiate the install from the console (management server), should it run into any issues it will dump out an error which will give you an idea of where the problem may be.
    From Holmans post on this:
    e MOM Server could not execute WMI Query "Select * from Win32_OperatingSystem" on 
    computer “servername.domain.com” 
    Operation: Agent Install 
    Install account: DOMAIN\account 
    Error Code: 800706BA 
    Error Description: The RPC server is unavailable.
    The MOM Server could not execute WMI Query "(null)” on 
    computer “servername.domain.com” 
    Operation: Agent Install 
    Install account: DOMAIN\account 
    Error Code: 800706BA 
    Error Description: The RPC server is unavailable.
    8004100A 
    800706BA
    1.  Ensure agent push account has local admin rights 
    2.  Firewall is blocking NetBIOS access.  If Windows 2008 firewall is enabled, ensure “Remote Administration (RPC)” rule is enabled/allowed.  We need port 135 (RPC) and the DCOM port range opened for console push through a firewall.  
    3.  Inspect WMI service, health, and rebuild repository if necessary 
    4.  Firewall is blocking ICMP  (Live OneCare) 
    5.  DNS incorrect 
    http://blogs.technet.com/b/kevinholman/archive/2009/01/27/console-based-agent-deployment-troubleshooting-table.aspx
    Regards, Blake Email: mengotto<at>hotmail.com Blog: http://discussitnow.wordpress.com/ If my response was helpful, please mark it as so, if it answered your question, then please also mark it accordingly. Thank you.

  • "Error [10151] The LCP Port on CCM Admin for Mobile Agent is not Configured or misconfigured"

    We are running into a problem which we have noticed on UCCE 8.5 and havent seen on earlier 7.5 release.
    If we setup a CTI port as agent device target and if we try to login the agent using Cisco Desktop (Not CAD, just CTI OS Client) then we get following error:
    "Error [10151] The LCP Port on CCM Admin for Mobile Agent is not Configured or misconfigured"
    But this wasnt the issue with 7.5 and we were able to do agent login with CTI Port as device target. We dont intend to use Mobile Agent feature but just login UCCE agent to CTI port as the device.
    Do we know if this is a known issue or if something has changed between 7.x and 8.x release which could be is causing this?

    So you can ping and nslookup from your ms to these agents and vice versa right?  I wouldn't do a manual install, I would push the agent from the management server.  You can uninstall the agent manually, or use cleanmom to get rid of them.  Then
    do an install from the console.  When you initiate the install from the console (management server), should it run into any issues it will dump out an error which will give you an idea of where the problem may be.
    From Holmans post on this:
    e MOM Server could not execute WMI Query "Select * from Win32_OperatingSystem" on 
    computer “servername.domain.com” 
    Operation: Agent Install 
    Install account: DOMAIN\account 
    Error Code: 800706BA 
    Error Description: The RPC server is unavailable.
    The MOM Server could not execute WMI Query "(null)” on 
    computer “servername.domain.com” 
    Operation: Agent Install 
    Install account: DOMAIN\account 
    Error Code: 800706BA 
    Error Description: The RPC server is unavailable.
    8004100A 
    800706BA
    1.  Ensure agent push account has local admin rights 
    2.  Firewall is blocking NetBIOS access.  If Windows 2008 firewall is enabled, ensure “Remote Administration (RPC)” rule is enabled/allowed.  We need port 135 (RPC) and the DCOM port range opened for console push through a firewall.  
    3.  Inspect WMI service, health, and rebuild repository if necessary 
    4.  Firewall is blocking ICMP  (Live OneCare) 
    5.  DNS incorrect 
    http://blogs.technet.com/b/kevinholman/archive/2009/01/27/console-based-agent-deployment-troubleshooting-table.aspx
    Regards, Blake Email: mengotto<at>hotmail.com Blog: http://discussitnow.wordpress.com/ If my response was helpful, please mark it as so, if it answered your question, then please also mark it accordingly. Thank you.

  • ESB Services nor Default System not showing up in ESB console

    We are running SOA Suite 10.1.3.1 and the services within the ESB console are not showing up immediately after logging into the console. I have verified that the credentials
    within the esb_paramater table are correct. We have also increased the amount of max cursors on the DB. Is there something else
    that we can try to get those services up and running?
    Edited by: user5529739 on Jun 11, 2009 9:50 AM

    So you can ping and nslookup from your ms to these agents and vice versa right?  I wouldn't do a manual install, I would push the agent from the management server.  You can uninstall the agent manually, or use cleanmom to get rid of them.  Then
    do an install from the console.  When you initiate the install from the console (management server), should it run into any issues it will dump out an error which will give you an idea of where the problem may be.
    From Holmans post on this:
    e MOM Server could not execute WMI Query "Select * from Win32_OperatingSystem" on 
    computer “servername.domain.com” 
    Operation: Agent Install 
    Install account: DOMAIN\account 
    Error Code: 800706BA 
    Error Description: The RPC server is unavailable.
    The MOM Server could not execute WMI Query "(null)” on 
    computer “servername.domain.com” 
    Operation: Agent Install 
    Install account: DOMAIN\account 
    Error Code: 800706BA 
    Error Description: The RPC server is unavailable.
    8004100A 
    800706BA
    1.  Ensure agent push account has local admin rights 
    2.  Firewall is blocking NetBIOS access.  If Windows 2008 firewall is enabled, ensure “Remote Administration (RPC)” rule is enabled/allowed.  We need port 135 (RPC) and the DCOM port range opened for console push through a firewall.  
    3.  Inspect WMI service, health, and rebuild repository if necessary 
    4.  Firewall is blocking ICMP  (Live OneCare) 
    5.  DNS incorrect 
    http://blogs.technet.com/b/kevinholman/archive/2009/01/27/console-based-agent-deployment-troubleshooting-table.aspx
    Regards, Blake Email: mengotto<at>hotmail.com Blog: http://discussitnow.wordpress.com/ If my response was helpful, please mark it as so, if it answered your question, then please also mark it accordingly. Thank you.

  • Employee given invite, he installed, but after installing CC app   Audition under his account email, it still says 'trial', on admin side, it says 'pending user' and not 'active.

    I am the admin in my company, and out of all the licenses, he is having a problem with this. And this is the second try. We tried with the company email for him, and it didn't work. We are now trying with his Gmail, and there is still a problem.

    So you can ping and nslookup from your ms to these agents and vice versa right?  I wouldn't do a manual install, I would push the agent from the management server.  You can uninstall the agent manually, or use cleanmom to get rid of them.  Then
    do an install from the console.  When you initiate the install from the console (management server), should it run into any issues it will dump out an error which will give you an idea of where the problem may be.
    From Holmans post on this:
    e MOM Server could not execute WMI Query "Select * from Win32_OperatingSystem" on 
    computer “servername.domain.com” 
    Operation: Agent Install 
    Install account: DOMAIN\account 
    Error Code: 800706BA 
    Error Description: The RPC server is unavailable.
    The MOM Server could not execute WMI Query "(null)” on 
    computer “servername.domain.com” 
    Operation: Agent Install 
    Install account: DOMAIN\account 
    Error Code: 800706BA 
    Error Description: The RPC server is unavailable.
    8004100A 
    800706BA
    1.  Ensure agent push account has local admin rights 
    2.  Firewall is blocking NetBIOS access.  If Windows 2008 firewall is enabled, ensure “Remote Administration (RPC)” rule is enabled/allowed.  We need port 135 (RPC) and the DCOM port range opened for console push through a firewall.  
    3.  Inspect WMI service, health, and rebuild repository if necessary 
    4.  Firewall is blocking ICMP  (Live OneCare) 
    5.  DNS incorrect 
    http://blogs.technet.com/b/kevinholman/archive/2009/01/27/console-based-agent-deployment-troubleshooting-table.aspx
    Regards, Blake Email: mengotto<at>hotmail.com Blog: http://discussitnow.wordpress.com/ If my response was helpful, please mark it as so, if it answered your question, then please also mark it accordingly. Thank you.

  • Studio Creator 2 Installation for Mac OSX 10.3.9

    i'm new in java and i having problem in studio creator 2 in my iBook Mac OSX 10.3.9.
    Installation process goes smooth 100%, but an error messenge pop up after uninstall component done...
    anyone here has same experience to solve the problem?
    thanks
    install log as below:
    (Mar 16, 2006 8:30:20 PM), Setup.product.install, com.installshield.product.service.product.PureJavaProductServiceImpl, msg1, installing Files (coreFiles)
    (Mar 16, 2006 8:32:42 PM), Setup.product.install, com.installshield.product.service.product.PureJavaProductServiceImpl, msg1, installing Files (bean3)
    (Mar 16, 2006 8:33:08 PM), Setup.product.install, com.installshield.product.service.product.PureJavaProductServiceImpl, msg1, installing Install Application Server Action (bean4)
    (Mar 16, 2006 8:33:09 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, #
    (Mar 16, 2006 8:33:09 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, # Wizard Statefile generatd by make_statefile.sh
    (Mar 16, 2006 8:33:09 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, #
    (Mar 16, 2006 8:33:09 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, # Wizard Statefile section for Sun Java System Application Server
    (Mar 16, 2006 8:33:09 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, #
    (Mar 16, 2006 8:33:09 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, [STATE_BEGIN Sun Java System Application Server a83b45b56562dfcf3143521e30481ac0f15726ee]
    (Mar 16, 2006 8:33:09 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, defaultInstallDirectory = /Applications/Creator2/SunAppServer8
    (Mar 16, 2006 8:33:09 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, currentInstallDirectory = /Applications/Creator2/SunAppServer8
    (Mar 16, 2006 8:33:09 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, JDK_LOCATION = /System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Home/
    (Mar 16, 2006 8:33:09 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, INST_ASADMIN_USERNAME = admin
    (Mar 16, 2006 8:33:09 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, INST_ASADMIN_PASSWORD = adminadmin
    (Mar 16, 2006 8:33:09 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, INST_ASADMIN_PORT = 24848
    (Mar 16, 2006 8:33:09 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, INST_ASWEB_PORT = 28080
    (Mar 16, 2006 8:33:09 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, INST_HTTPS_PORT = 21043
    (Mar 16, 2006 8:33:09 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, STORE_ADMIN_AUTH = FALSE
    (Mar 16, 2006 8:33:09 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, ADMIN_PASSWORD_ENCRYPTED = FALSE
    (Mar 16, 2006 8:33:09 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, CREATE_SAMPLES_DOMAIN = FALSE
    (Mar 16, 2006 8:33:09 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, CREATE_DESKTOP_SHORTCUT = FALSE
    (Mar 16, 2006 8:33:09 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, [STATE_DONE Sun Java System Application Server a83b45b56562dfcf3143521e30481ac0f15726ee]
    (Mar 16, 2006 8:33:09 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, Installing Application Server...
    exitcode = 73
    (Mar 16, 2006 8:41:33 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, Finished
    (Mar 16, 2006 8:41:33 PM), Setup.product.install, com.installshield.product.service.product.PureJavaProductServiceImpl, msg1, installing Post Install Core Action (bean2)
    (Mar 16, 2006 8:42:00 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, The following script has unexpected output: /Applications/Creator2/bin/storagebuilder.sh
    (Mar 16, 2006 8:42:00 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, /Applications/Creator2/bin/storagebuilder.sh: line 1: dirname: command not found
    (Mar 16, 2006 8:42:00 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, mkdir: //rave2.0: No such file or directory
    (Mar 16, 2006 8:42:00 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, Exception in thread "main" java.lang.NoClassDefFoundError: org/netbeans/lib/java/storagebuilder/Main
    (Mar 16, 2006 8:42:05 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, err, Error executing storagebuilder script - exit code 1
    (Mar 16, 2006 8:42:06 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, The following script has unexpected output: /Applications/Creator2/bin/db-start.sh
    (Mar 16, 2006 8:42:06 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, /Applications/Creator2/bin/db-start.sh: line 1: dirname: command not found
    (Mar 16, 2006 8:42:06 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, /Applications/Creator2/bin/db-start.sh: line 12: /../rave2.0/startup/bin/db-start.sh: No such file or directory
    (Mar 16, 2006 8:42:12 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, The following script has unexpected output: /Applications/Creator2/bin/create-sample-db.sh
    (Mar 16, 2006 8:42:12 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, /Applications/Creator2/bin/create-sample-db.sh: line 1: dirname: command not found
    (Mar 16, 2006 8:42:12 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, /Applications/Creator2/bin/create-sample-db.sh: line 7: /../rave2.0/startup/bin/create-sample-db.sh: No such file or directory
    (Mar 16, 2006 8:42:18 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, The following script has unexpected output: /Applications/Creator2/bin/pe-init-tray.sh
    (Mar 16, 2006 8:42:18 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, /Applications/Creator2/bin/pe-init-tray.sh: line 1: dirname: command not found
    (Mar 16, 2006 8:42:18 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, /Applications/Creator2/bin/pe-init-tray.sh: line 1: dirname: command not found
    (Mar 16, 2006 8:42:19 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, The following script has unexpected output: /Applications/Creator2/bin/pe-start.sh
    (Mar 16, 2006 8:42:19 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, + PRG=/Applications/Creator2/bin/pe-start.sh
    (Mar 16, 2006 8:42:19 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, + '[' -z '' ']'
    (Mar 16, 2006 8:42:19 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, ++ dirname /Applications/Creator2/bin/pe-start.sh
    (Mar 16, 2006 8:42:19 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, /Applications/Creator2/bin/pe-start.sh: line 1: dirname: command not found
    (Mar 16, 2006 8:42:19 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, + J2EE_HOME=/../SunAppServer8
    (Mar 16, 2006 8:42:19 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, + export J2EE_HOME
    (Mar 16, 2006 8:42:19 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, ++ dirname /Applications/Creator2/bin/pe-start.sh
    (Mar 16, 2006 8:42:19 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, /Applications/Creator2/bin/pe-start.sh: line 1: dirname: command not found
    (Mar 16, 2006 8:42:19 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, + RAVE_HOME=/..
    (Mar 16, 2006 8:42:19 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, + '[' -f /usr/xpg4/bin/tr ']'
    (Mar 16, 2006 8:42:19 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, ++ uname -s
    (Mar 16, 2006 8:42:19 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, ++ tr '[:upper:]' '[:lower:]'
    (Mar 16, 2006 8:42:19 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, + os=darwin
    (Mar 16, 2006 8:42:19 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, + '[' darwin = darwin ']'
    (Mar 16, 2006 8:42:19 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, + JAVACMD=/System/Library/Frameworks/JavaVM.framework/Home/bin/java
    (Mar 16, 2006 8:42:19 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, ++ dirname /Applications/Creator2/bin/pe-start.sh
    (Mar 16, 2006 8:42:19 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, /Applications/Creator2/bin/pe-start.sh: line 1: dirname: command not found
    (Mar 16, 2006 8:42:19 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, + dir=
    (Mar 16, 2006 8:42:19 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, + /System/Library/Frameworks/JavaVM.framework/Home/bin/java -cp /../rave2.0/startup/lib/pe-admin.jar com.sun.rave.install.AppServerAdmin /../SunAppServer8
    (Mar 16, 2006 8:42:19 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/rave/install/AppServerAdmin
    (Mar 16, 2006 8:42:19 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, + '[' '' = -reset ']'
    (Mar 16, 2006 8:42:25 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, The following script has unexpected output: /Applications/Creator2/bin/deploy-ws.sh
    (Mar 16, 2006 8:42:25 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, /Applications/Creator2/bin/deploy-ws.sh: line 1: dirname: command not found
    (Mar 16, 2006 8:42:25 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, /Applications/Creator2/bin/deploy-ws.sh: line 1: cd: //rave2.0/samples/websvc: No such file or directory
    (Mar 16, 2006 8:42:25 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, /Applications/Creator2/bin/deploy-ws.sh: line 1: cd: //SunAppServer8: No such file or directory
    (Mar 16, 2006 8:42:25 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, find: illegal option -- t
    (Mar 16, 2006 8:42:25 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, find: illegal option -- y
    (Mar 16, 2006 8:42:25 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, find: illegal option -- p
    (Mar 16, 2006 8:42:25 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, find: illegal option -- e
    (Mar 16, 2006 8:42:25 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, find: f: No such file or directory
    (Mar 16, 2006 8:42:31 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, The following script has unexpected output: /Applications/Creator2/bin/deploy-ejbs.sh
    (Mar 16, 2006 8:42:31 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, /Applications/Creator2/bin/deploy-ejbs.sh: line 1: dirname: command not found
    (Mar 16, 2006 8:42:31 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, /Applications/Creator2/bin/deploy-ejbs.sh: line 12: /../rave2.0/startup/bin/deploy-ejbs.sh: No such file or directory

    Actually, it looks like your install did not go well. On a G5, 10.3.9, we have no such errors. Among the things to watch for: incomplete downloads; make sure you are not installing as root user. Other: did you check these installation notes: http://developers.sun.com/prodtech/javatools/jscreator/reference/docs/2/Installation_ReleaseNotes.html#hwsw
    There is a troubleshooting table as well that pertains to all platforms.
    /krys
    Creator Team

  • HT4174 Not sure what I did but projects are not showing up in the video window as i skim... Event footage does but project footage has sound but the video screen is gray... Hwo do I get the vido to show in the viewer?

    Not sure what I did but projects are not showing up in the video window as i skim... Event footage does but project footage has sound but the video screen is gray... How do I get the vido to show in the viewer?

    So you can ping and nslookup from your ms to these agents and vice versa right?  I wouldn't do a manual install, I would push the agent from the management server.  You can uninstall the agent manually, or use cleanmom to get rid of them.  Then
    do an install from the console.  When you initiate the install from the console (management server), should it run into any issues it will dump out an error which will give you an idea of where the problem may be.
    From Holmans post on this:
    e MOM Server could not execute WMI Query "Select * from Win32_OperatingSystem" on 
    computer “servername.domain.com” 
    Operation: Agent Install 
    Install account: DOMAIN\account 
    Error Code: 800706BA 
    Error Description: The RPC server is unavailable.
    The MOM Server could not execute WMI Query "(null)” on 
    computer “servername.domain.com” 
    Operation: Agent Install 
    Install account: DOMAIN\account 
    Error Code: 800706BA 
    Error Description: The RPC server is unavailable.
    8004100A 
    800706BA
    1.  Ensure agent push account has local admin rights 
    2.  Firewall is blocking NetBIOS access.  If Windows 2008 firewall is enabled, ensure “Remote Administration (RPC)” rule is enabled/allowed.  We need port 135 (RPC) and the DCOM port range opened for console push through a firewall.  
    3.  Inspect WMI service, health, and rebuild repository if necessary 
    4.  Firewall is blocking ICMP  (Live OneCare) 
    5.  DNS incorrect 
    http://blogs.technet.com/b/kevinholman/archive/2009/01/27/console-based-agent-deployment-troubleshooting-table.aspx
    Regards, Blake Email: mengotto<at>hotmail.com Blog: http://discussitnow.wordpress.com/ If my response was helpful, please mark it as so, if it answered your question, then please also mark it accordingly. Thank you.

  • SCOM questions

    Which management pack have you found the most noisy? How have you gone about tuning it? 
    What are the Pros and Cons of a gateway server in SCOM 2007 R2 ? 
    What are some high availability options for SCOM 2007 R2 core components.
    What are some high availability options for
    SCOM 2012 - agents
    why can't you target a rule or monitor at a group?
    What type of issues have you come across when deploying agents and how did you resolve them?
    any one please post the answers for this questions

    1) the most noisy are Exchange and cluster MP. but then again it depends on you environment and what MPs you import.
    2) Gateway servers helps in managing servers from untrusted domain. read more on
    http://social.technet.microsoft.com/Forums/systemcenter/en-US/c6b2f29f-e5e0-4560-80dc-e4642f6d2437/gate-way-server-in-scom-2007-r2?forum=operationsmanagerreporting
    3) SCOM 2012 removes the single point of failure as there is no RMS role. Have your gateway servers in failover mode.
    4) set up failover of agents to gateway servers.
    5) That's how rules and monitors work.
    6)
    http://blogs.technet.com/b/kevinholman/archive/2009/01/27/console-based-agent-deployment-troubleshooting-table.aspx
    Hope this helps. Please Mark as Answer if this helps.
    Thanks, S K Agrawal

  • SCOM Agent installation Issue

    Dear all,
    We have SCOM 2012 r2 , when we install agent through discovery . We got the below error
    The Operations Manager Server cannot process the install/uninstall request for computer xxxxx due to failure of operating system version verification.
    Operation: Agent Install
    Install account: XXXXX
    Error Code: 80070035
    Error Description: The network path was not found.
    Any idea what would be the issue here ?
    Gone through some forum , but no luck
    http://www.scapaot.de/blog/?p=291
    Thanks,
    74KMS

    Hi
    Kevin Holman has a great blog on troubleshooting agent install issues here:
    http://blogs.technet.com/b/kevinholman/archive/2009/01/27/console-based-agent-deployment-troubleshooting-table.aspx
    The error you state has "Manual Agent Install" as the "fix".
    Could you confirm:
    1. The agent is in the same domain as the SCOM Management Server?
    2. Can you do an NSLookup from the Management Server to the agent FQDN?
    3. If you try and install the agent manually, do you get an error or does it complete?
    Cheers
    Graham

  • KT4-ULTRA Doesn't boot!

    Im having a strange problem with the kt4.  It doesn't boot the first time i turn the computer on for the day.  It starts up, all the fans etc.  but nothing happens.  If i hit the reset button, it will then start and give the options to start in safe mode etc....  After that, it will boot everytime from a cold boot.  Any ideas why it would do this one time a day?  Thanks for the help.  d.

    Hi StriFe,
    Sounds like it might be a good idea to strip the system back to bare-bones and start again from scratch, very carefully and methodically. Make sure you observe good Anti-Static procedures before touching anything inside the case, etc.
    Once everything is stripped out, reset the CMOS via the m'board Jumper and follow the instructions desribed in the m'board manual to avoid mishaps. Once this is done and the Jumper is returned to it's original position, you can start rebuilding the computer, one step at a time and checking for acceptable behaviour after each step by starting the computer and observe the D-Leds and the D-Led troubleshooting table.
    By doing it this way, you will hopefully be able to identify the cause of the problem and then go from there. As a general rule, the BIOS settings should be left at their default settings until such time as everything is working properly. After that, if a bit of tweaking is on the agenda, do this on one thing at a time and at one step at a time, rebooting your computer after each single adjustment until such time as you achieve the level of tweaking you are after, or until the computer will no longer operate reliably, in which case you should revert back to a setting that is Two steps back from where you ended up. This should then give you sufficient margin of safety for the computer to run reliably.
    Hope this helps. All the best
    Dimal.

  • JPA - TroubleShooting - Error in Datatypes used in Creating Tables

    h1. JPA - TroubleShooting - Error in Datatypes used in Creating Tables
    h2. Error Description
    The error appears when JPA is trying to automatically
    generate tables from Entities. It uses types it shouldn't because they aren't
    supported by the Database Engine. If you examine the createDDL.jdbc file you
    are going to find not supported data types. You could run the statements that
    are listed there directly to your Database Engine and find out that they don`t
    run generating syntax errors like the error posted below.
    h3. Query example (statement)
    CREATE TABLE SEQUENCE (SEQ_NAME VARCHAR(50), SEQ_COUNT NUMBER(19))h3. PostgreSQL Error whent trying to execute the statment
    CREATE TABLE SEQUENCE (SEQ_NAME VARCHAR(50),
    SEQ_COUNT NUMBER(19))": org.postgresql.util.PSQLException: ERROR: syntax
    error near "("
    h3. MSSQL 2000 Error when trying to execute the statement:
    [CREATE - 0 row(s), 0.578 secs] [Error Code: 2715, SQL State: HY000] [Microsoft][SQLServer 2000 Driver for
    JDBC][SQLServer]Column or parameter #1: Cannot find data type NUMBER
    h3. FireBird Error when trying to execute the statment
    Dynamic SQL Error
    SQL error code = -104
    Token unknown - line 1, char 62
    Statement: CREATE TABLE SEQUENCE (SEQ_NAME VARCHAR(50),
    SEQ_COUNT NUMBER(19))
    h2. TroubleShooting
    Looks like it wants "NUMERIC", not "NUMBER".
    [http://www.postgresql.org/docs/8.1/interactive/datatype.html#DATATYPE-NUMERIC]
    I had this problem using Firebird. I found out it had to do
    with the database jdbc driver. I tried using a different database engine, like
    Microsoft SQL Server 2000 with the corresponding driver and it worked as it
    should. I suspect the JDBC driver has to supply in some way the datatypes it
    supports to JPA TopLink Library.
    Edited by: juanemc2 on Apr 1, 2008 7:39 AM

    In Hibernate you can supply the "dialect" to use for SQL generation. I assume TopLink to have a similar functionality.
    This is not a generic JPA issue, but rather something with the specific implementation you're using.
    Or rather it is a generic SQL issue, caused by different database engines using slightly (or not so slightly) different SQL syntax which causes problems when generating SQL automatically.

  • Rec_transactions_interface table troubleshooting

    Hello
    we are having errored records processing_status_code = 'ERROR' or transaction_status_code = 'ERROR' from the previous months.
    1--when we run this process next month, will we need to remove all previous months records from  rcv_transactions_interface table ?
    Or its fine to leave them as it is.
    please advise
    2--
    In general, how can we troubleshoot once a record got transaction status code as ERROR. Can we just update the transaction_status_code to NULL and rerun the concurrent program?
    Thanks
    kp

    kp2000 wrote:
    Hello
    we are having errored records processing_status_code = 'ERROR' or transaction_status_code = 'ERROR' from the previous months.
    1--when we run this process next month, will we need to remove all previous months records from  rcv_transactions_interface table ?
    Or its fine to leave them as it is.
    please advise
    2--
    In general, how can we troubleshoot once a record got transaction status code as ERROR. Can we just update the transaction_status_code to NULL and rerun the concurrent program?
    Thanks
    kp
    1. It's ok leave the ERROR records in the table but recommended to remove them periodically.
    2. I believe both the transaction_status_code and processing_status_code need to be updated to PENDING.

  • Troubleshoot Error - Unable to perform table-based value assignment config

    After to creating class, characteristics, and value assignment type, the system is unable to perform table-based value assignment configuration. The following error is displayed:

    Hi Mr. SAP,
    Based on the diagnosis, you can figure out that most likely someone is already editing the customizing table or might you are not authorized..
    In case if you have the access to SM12 Transaction code, kindly check if an entry present there. If yes it means the table is locked and you can't proceed on that. you have to reach out to the specific resource to unlock the table who did a lock, else you need to reach out to BASIS to make that entry delete.
    Regarding authrization for locking of table, please check SU53 after the execution of the T-code, if you are missing any role. If you find anything there, then reach out to your Security team to get and assigned roles to your profile.
    Regards,
    Abhi

Maybe you are looking for

  • Totaling subreport data on each page

    I have 5 subreports linked to the main report all based on Employee ID.  They each pass their data via a shared variable.  The data is being passed to the main report without a problem.  When I try to total each page (one per employee), I am not gett

  • Actual quantity in service tab page becoming zero after updation

    Dear friends, We updated validity start date, end date in header and the field "form.val.2" in service tab page in item details of a service line item(item category D) in a Purchase order using the function module 'BAPI_PO_CHANGE'. After updation we

  • Function module to send mail????

    Hi, which function module can we use to send mail in ABAP online program , i dont want to attach any file, just i want to notify the users by writing few lines in the email body. can u help me out in this issue.. Thanks & Regards, Harsha Ramaiah

  • Is there a log file for iDVD '08?

    I'm trying to burn a DVD using iDVD '08 and I can get the contents in iDVD '08, but when I try to burn the DVD, I get the popup message that says: "Encoding video: There was an error during movie encoding" and it quits. Is there a way (like a log fil

  • PC Suite - Nokia Communications Centre is not Init...

    I am running Nokia PC Suite v.7.1.180.94 with bluetooth on both a laptop (Win 7) and desktop (Win 8). Everything is fine on the desktop but, about a month ago, a problem started with the connection to the laptop. Bluetooth is working, the little icon