Dreamweaver CC fluid grid controls disappearing and other info

Hi All,
I have finally completed my first commercial fluid grid design in Dreamweaver CC and it was a bit of a mission.
One disconcerting thing about the program is that the fluid grid controls keep disappearing. You know, the ones where you can hide the div, duplicate it, move it up or down, or delete it.
I have found that when this happens, I need to close the html file I am working on in DW CC and then open it again. The controls then appear again, so you can rearrange your various layouts as demonstrated in those breezy demo videos about DW CC fluid grid layouts.
So don't just conclude you have broken the code when these controls disappear, try closing and opening the file again first.
Also you need to insert all the divs you need for all layouts in the mobile phone layout, as that is the main layout, governing all the others because of the way the media queries are set up in the CSS file that is created when you start your fluid grid layout.
I could not work out how to reorder divs in the different layouts, this may not be possible at the moment. Instead I created divs in the phone layout to cover all of the divs needed in the three layout sizes and switched them off and on in the various layouts. This works really well, but I found that DW behaved strangely if I switched a div off in the mobile layout and then tried to style it in one of the other layouts. So I suggest styling all of the divs first for all the layouts before switching any of them off in the mobile layout.
Also you can't copy the contents of one div and put them in another without freaking the program out, especially if you are working in a div that is hidden in the mobile layout.
I suggest saving regularly as you add new divs and style them and view live in a browser immediately, as the preview in DW CC is not reliable. It can't show rounded div corners or shadows for example.
Keep an eye on the code as it is built by your use of the CSS Properties panel. If it starts going wrong, close the html file without saving it or the attached CSS file. Then go back in and try what you want to do again.
If you save weird code errors, your work could be so compromised that you need to start all over again. So quit out without saving if you notice this.
After much experimentation I now insert images into a div, rather than make them a background image, as the background image will not completely show if the content of the div is not long enough. This may require a rethink of your design.
Doing any absolute sizes in a div will make the responsive design very hard to style and possibly break the code, so I don't suggest it.
Adding padding to a div can make it stick out of right edge of the design, I am not sure why this is the case and could not work out how to stop it. So use low pixel numbers in the padding of a div.
Also control z seems to be a sudden death move, so I stopped doing that.
So my first job has been a bit of a ride, but I seem to be nearly there on my first design.
I think DW CC is still a work in progress and I look forward to further updates of the software.

Hi Top Ten,
You can't get them back once they go. You now need to edit the css code manually to do the same thing.
For instance if you want divs to sit beside each other you put this in the css for that div:
clear: none;
This css means that div will allow other divs to sit beside it.
Then put in a width in percentages. For example if you have three divs that need to sit beside each other put:
width: 33%;
in each of them. Or maybe:
width: 31%;
margin-right: 2%;
Fortunately in DWCC it is now robust enough for you to do those code changes by hand. My original question in this thread was posed when DW CC fluid grid had just come out and crashed easily. A year later all is well, so you can do those changes in the css code without problems now.
Regards,
Mary

Similar Messages

  • Centering a page in Dreamweaver CS6 Fluid grid

    Centering a page in Dreamweaver CS6 Fluid grid.
    I figured this would be an easy task and have saved it to last. After watching videos, scanning the web and this forum I have found many answers but none of them seem to work in CS6. I currently have an extra 1-2% margin on the left to get the page closer to the middle but this doesn't work well with all screen sizes and its still not in the middle.
    Page can be found here
    Any advice would be greatly appreciated!

    It looks like you've nested the rest of content within your #header DIV. And header div's width is 94.4% - this results in everything on the site have a ~5% margin on right.
    You may want to fix this first to see if it helps you with the result you intend to get. If not, do post back.

  • Fluid grid layout guides and elements are suddenly gone

    I’m working in Dreamweaver CC and trying to build a fluid grid layout from scratch.  Everything works fine for a while then I notice that suddenly all the grid guides are gone, the icon (next to the “Live” button) that allows me to toggle the fluid grid guides on and off is gone, and when I try to insert a new div tag…(within the "gridContainer clearfix" tag),  the dialog box that opens does not have the option to “insert as fluid element.” Even when I click within a div in my page, the usual options that surround the div are gone as well. It’s as if Dreamweaver doesn’t recognize the page as a fluid grid layout, but when I preview the html, it is still responsive and looks like it is supposed to.
    Does anyone know what could’ve changed that might cause this? 
    I even called Adobe and the tech support guy told me they are not trained in CSS and could not help me. I would think Adobe would be familiar with CSS… right?
    If anyone has any suggestions that would be great?

                   Sudarshan Thiagarajan
    The only template files I changed were the main css that I specify when creating a new FG layout.
    I changed this for all three devices within the "style.css" page:
    /* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */
    @media only screen and (min-width: 481px) {
    .gridContainer {
    width: 100%;  (this is is what I changed on the mobile, tablet and desktop settings)
    padding-left: 0.95%;
    padding-right: 0.95%;
    clear: none;
    float: none;
    margin-left: auto;
    This the dialog box I get when trying to insert a new div (it used to ask me to insert "As a fluid element"

  • Dreamweaver CC fluid grid, can I change the position of DIV's based on Mobile, Tablet, Desktop view?

    Hi all,
    Currently working on my first Dreamweaver CC fluid grid / responsive site. I want to optimise the pages layout for Mobile, Tablet and Desktop.
    I can see that I can hide individual div elements by adding "display: none;" to the mobile media query code in the CSS.
    I am wondering am I able to change the position of DIV's in relation to the order of each other some how using a similar way?
    Eg I have a webpage design for desktop like.
    Title
    Nav
    Description
    Buy Button
    Photo
    On mobile I'd like to be able to bring that Photo up towards the top of the layout eg.
    Title
    Nav
    Photo
    Description
    Buy Button
    I was hoping those up and down arrows you see in the Dreamweaver CC interface was going to some how make the changes to each view Mobile, Tablet, Desktop, but all that is doing is moving the position of code in the HTML amoung each of the main DIV sections.
    Or am I at the point where I will need to create a seperate page for mobile only to make a layout change like this?
    Any help would be great

    Hi Complexity,
    I have got some further info, and if I have lead you astray I am sorry.
    I don't think you can change the order of the divs in a responsive layout in DW CC.
    However, you can arrange the divs to sit under or beside each other differently in each of the layouts, for pc, tablet or phone.
    You can also switch divs off and on in each of the layouts, having them display in one size screen and not in another.
    So what you would need to do is to create a couple of nav divs, if you want a nav at the top of one type of screen and one at the bottom. You could duplicate the content in both of them and switch one on in one layout and one off in the other.
    I hope this helps!
    I am doing my first layout for a client using DW CC responsive layouts. I have done two test/hobby sites already.
    It is a bit of a mission learning it but I am getting there.
    I do find it interesting that most people recommend using other programs to do responsive rather than Dreamweaver's fluid grid layouts. I don't think many people are using it yet.
    Regards,
    Mary

  • How can move Grid Control Repository to other server

    hi,
    We need to move our Oracle Grid Control Repository to Other server due to some Server Issuse....can someone helpme out......
    OMR and OMA : Server A (Windows 2003 Server)
    OMS : Server B (Windows 2003 Server)
    Target Server : Server C (Windows 2003 Server)
    Movement : Server A -----> Server C
    Please help me someone.....
    Thanks
    Jay

    Please Refer the below doc for migration
    http://download.oracle.com/docs/cd/B16240_01/doc/em.102/e10954/repository.htm#CHDBHDDC

  • My ipod was stolen and i managed to get on here only because i still have my serial number and other info. is there a way i can still track my ipod? i never entered it in with icloud

    my ipod was stolen and i managed to get on here only because i still have my serial numbers and other info. is there a way i can track it even though i didnt enter it into the icloud?

    No

  • Lost photos and other info

    Hi after changing the background on my ibook and accounts i have lost all my photos in iphoto and other info like firefox bookmarks and addons ect.
    Two questions... Why has this happened? and more importantly how do i get the data back?
    Any help will be appreciated
    Cadan

    It's also comforting to back-up your computer. Normally, you would write your photos to optical media; then just insert these when needed. I keep my KeyChain, Bookmarks, &c on a CD. Nothing else I have is really important.
    However, the G3 won't write optical media, or DVDs at least. I use an old iPod as a backup disk for the G3 iBooks here, but you might be able to write CDs (I can't remember).
    In any case, everyone should probably look into backup devices, media, & strategies.

  • Bought 10 gb Uploaded Iphone and IPad2, left with 2gb space.  How to view pictures and other info in ICloud?

    Bought 10 gb Uploaded Iphone and IPad2, left with 2gb space.  How to view pictures and other info in ICloud?  Can I upload documents from my desktop (Windows os)?
    Thanks.

    If you backed up your iphone to icloud, then there's a chance that doing a restore might bring back your photos.  I say "chance" because many users have tried that (assuming they had photos turned in for backups in settings), but ended up not getting back any photos.  If that happens, then they are gone. 
    Remember, you should have been syncing photos all along to a computer for archiving.  Don't trust the pictures to an icloud backup.

  • Using iPhoto, I want to move photo from one event to another I export it to desktop and then reimport.  Titles and other info vanish; only the original jpg number comes thru.  How do I avoid this?

    Using iPhoto, I want to move photo from one event to another I export it to desktop and then reimport.  Titles and other info vanish; only the original jpg number comes thru.  How do I avoid this?

    Don't do that - flag the photo and go to the target event and use the add flagged photo to selected event command to move it intact within iPhoto
    LN

  • Dreamweaver CC fluid grid perfect in Chrome, not great in Firefox, disaster in IE.

    I got past the problem of the fluid grid layout lines disappearing along with handles/etc., and was so excited that I got our site to work responsively in Chrome, but I don't understand why it won't work in the other browsers (seems this was also a problem with CS6?).   I build with both design and code, and I just can't find the problem, or any online help for this.  Any ideas where I can look for more information?  Thanks!!

    Thanks for the advice to validate.  I found some minor end tag errors on the page and was able to fix them.  However, I still have the browser problem.  In FF, the only problem is that the logo slides behind the main body in larger screen sizes.  In IE, the swf is absent, the logo loses the rounded border, the accordion obscures everything at the top of the main body and squishes the text together, I lose the background attributes for both the main body, Kuali nav panel and both background and text features for the footer.  Unfortunately, I don't know how to share a link for assistance, as the testing server is behind the JHU firewall.  I've copied the source code for the index page below in hopes that someone can see some noob error I've made...  Thanks so much for your help!!!!
    <!doctype html>
    <!--[if lt IE 7]> <html class="ie6 oldie"> <![endif]-->
    <!--[if IE 7]>    <html class="ie7 oldie"> <![endif]-->
    <!--[if IE 8]>    <html class="ie8 oldie"> <![endif]-->
    <!--[if gt IE 8]><!--> <html class="">
    <!--<![endif]-->
    <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>JHU Coeus Help</title>
    <link href="boilerplate.css" rel="stylesheet" type="text/css">
    <link href="Alternate.css" rel="stylesheet" type="text/css">
    <link href="jQueryAssets/jquery.ui.core.min.css" rel="stylesheet" type="text/css">
    <link href="jQueryAssets/jquery.ui.theme.min.css" rel="stylesheet" type="text/css">
    <link href="jQueryAssets/jquery.ui.accordion.min.css" rel="stylesheet" type="text/css">
    <!--
    To learn more about the conditional comments around the html tags at the top of the file:
    paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/
    Do the following if you're using your customized build of modernizr (http://www.modernizr.com/):
    * insert the link to your js here
    * remove the link below to the html5shiv
    * add the "no-js" class to the html tags at the top
    * you can also remove the link to respond.min.js if you included the MQ Polyfill in your modernizr build
    -->
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <script src="respond.min.js"></script>
    <script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
    <script src="jQueryAssets/jquery-1.8.3.min.js" type="text/javascript"></script>
    <script src="jQueryAssets/jquery-ui-1.9.2.accordion.custom.min.js" type="text/javascript"></script>
    <!--The following script tag downloads a font from the Adobe Edge Web Fonts server for use within the web page. We recommend that you do not modify it.--><script>
    var __adobewebfontsappname__="dreamweaver"
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    function MM_goToURL() { //v3.0
      var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
      for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
    </script><script src="http://use.edgefonts.net/lobster-two:n4:default.js" type="text/javascript"></script>
    </head>
    <body onLoad="MM_preloadImages('Images/StructuralGraphics/PremiumSwap.gif','Images/StructuralGr aphics/LiteSwap.gif','Images/Buttons/what_you_need_first_sel.gif','Images/Buttons/proposal _help_icon_sel.gif','Images/Buttons/budget_help_clean_rgb_sel.gif','Images/Buttons/video_c lean_rgb.gif','Images/Buttons/user_guides_clean_rgb_sel.gif','Images/Buttons/admin_guides_ clean_rgb.gif','Images/Buttons/classes_clean_rgb.gif','Images/Buttons/ORIS_clean_rgb_sel.g if','Images/StructuralGraphics/MedicineResourcesSwap.gif','Images/StructuralGraphics/Resea rchSwap.gif','Images/StructuralGraphics/NursingSwap.gif','Images/StructuralGraphics/EmailS wap.gif','Images/StructuralGraphics/TimelineHover.gif','Images/StructuralGraphics/Document ationSwap.gif','Images/StructuralGraphics/BARASwap.gif','Images/StructuralGraphics/KualiKJ HUHover.gif')">
        <div class="fluid SystemStatus">
       <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="680" height="30" id="FlashID" title="System Status">
         <param name="movie" value="Images/StructuralGraphics/Flash Objects/SystemYellow.swf" />
         <param name="quality" value="high" />
         <param name="wmode" value="opaque" />
         <param name="swfversion" value="11.2.0.0" />
         <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
         <param name="expressinstall" value="Scripts/expressInstall.swf" />
         <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
         <!--[if !IE]>-->
         <object type="application/x-shockwave-flash" data="Images/StructuralGraphics/Flash Objects/SystemYellow.swf" width="680" height="30">
           <!--<![endif]-->
           <param name="quality" value="high" />
           <param name="wmode" value="opaque" />
           <param name="swfversion" value="11.2.0.0" />
           <param name="expressinstall" value="Scripts/expressInstall.swf" />
           <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
           <div>
             <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
             <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
              </div>
           <!--[if !IE]>-->
            </object>
         <!--<![endif]-->
          </object>
      </div>
      <div class="fluid Header">
        <div class="fluid LogoWrapper">
        <div class="fluid LogoWhite">
        <div class="fluid Logo"><img src="Images/StructuralGraphics/ExternalLogo_Blue2.gif"  alt=""/></div>
        </div>
        </div>
        </div>
    <div class="gridContainer clearfix">
      <div class="fluid MainBody">
              <div class="fluid Body">
              <div class="fluid LaunchWrapper">
         <div class="fluid LaunchButtons"><img src="Images/StructuralGraphics/LaunchPremium.gif"  alt="" id="Image1" onClick="MM_goToURL('parent','http://prcoeus.johnshopkins.edu/coeus/coeus.jnlp');return document.MM_returnValue" onMouseOver="MM_swapImage('Image1','','Images/StructuralGraphics/PremiumSwap.gif',1)" onMouseOut="MM_swapImgRestore()"/></div><div class="fluid LaunchButtons"><img src="Images/StructuralGraphics/LaunchLite.gif"  alt="" id="Image2" onClick="MM_goToURL('parent','http://prcoeus.johnshopkins.edu/coeus/userAuthAction.do');return document.MM_returnValue" onMouseOver="MM_swapImage('Image2','','Images/StructuralGraphics/LiteSwap.gif',1)" onMouseOut="MM_swapImgRestore()"/></div>
         <div class="fluid LaunchText">Use the Coeus buttons at left to launch Coeus Premium and Coeus Lite, until our transition to Kuali Coeus, targeted for November 2015.</div>
       </div>
              <div class="fluid CoeusHelp">
         <div class="fluid CoeusButtons"><a href="Documents/NeedFirst.htm"><img src="Images/Buttons/what_you_need_first.gif"  alt="" id="Image3" onMouseOver="MM_swapImage('Image3','','Images/Buttons/what_you_need_first_sel.gif',1)" onMouseOut="MM_swapImgRestore()"/></a></div>
         <div class="fluid CoeusButtons"><a href="Documents/PropHelp.htm"><img src="Images/Buttons/proposal_help_icon.gif" alt="" id="Image4" onMouseOver="MM_swapImage('Image4','','Images/Buttons/proposal_help_icon_sel.gif',1)" onMouseOut="MM_swapImgRestore()"/></a></div>
                <div class="fluid CoeusButtons"><a href="Documents/Budget.htm"><img src="Images/Buttons/budget_help_clean.gif"  alt="" id="Image5" onMouseOver="MM_swapImage('Image5','','Images/Buttons/budget_help_clean_rgb_sel.gif',1)" onMouseOut="MM_swapImgRestore()"/></a></div>
                <div class="fluid CoeusButtons"><img src="Images/Buttons/video_clean.gif" alt="" id="Image6" onMouseOver="MM_swapImage('Image6','','Images/Buttons/video_clean_rgb.gif',1)" onMouseOut="MM_swapImgRestore()"/></div>
                <div class="fluid CoeusButtons"><a href="Documents/UserGuides.htm"><img src="Images/Buttons/user_guides_clean.gif" alt="" id="Image7" onMouseOver="MM_swapImage('Image7','','Images/Buttons/user_guides_clean_rgb_sel.gif',1)" onMouseOut="MM_swapImgRestore()"/></a></div>
                <div class="fluid CoeusButtons"><a href="Documents/AdminGuides.htm"><img src="Images/Buttons/admin_guides_clean2.gif"  alt="" id="Image8" onMouseOver="MM_swapImage('Image8','','Images/Buttons/admin_guides_clean_rgb.gif',1)" onMouseOut="MM_swapImgRestore()"/></a></div>
                <div class="fluid CoeusButtons"><a href="Documents/Training.htm"><img src="Images/Buttons/classes_clean.gif" alt="" id="Image9" onMouseOver="MM_swapImage('Image9','','Images/Buttons/classes_clean_rgb.gif',1)" onMouseOut="MM_swapImgRestore()"/></a></div>
                <div class="fluid CoeusButtons"><a href="Documents/ORIS.htm"><img src="Images/Buttons/ORIS_clean.gif" alt="" id="Image10" onMouseOver="MM_swapImage('Image10','','Images/Buttons/ORIS_clean_rgb_sel.gif',1)" onMouseOut="MM_swapImgRestore()"/></a></div>
       </div>
              <div class="fluid CoeusText">Use the buttons above for help with building proposals and budgets in Coeus, as well as finding information about administrative functions such as the approval process. See what instructor-led training is available under the &quot;Training Classes&quot; button.</div>
                        </div>
               <div class="fluid AccordionWrapper">
               <div class="fluid AccordionBack">
               <div class="fluid AccordionHolder">
                  <div id="Accordion1">
             <h3><a href="#">Research Administration Offices</a></h3>       
                    <div>
               <p>
                      <div class="fluid ResearchOffices"><strong>School of Medicine Research Administration (SOM)</strong> <br>
    733 North Broadway, BRB 117<br>
    Baltimore, Maryland 21205<br>
    <a href="http://www/hopkinsmedicine.org/">http://www/hopkinsmedicine.org/<br>
    Research/ora/</a></div>
    <div class="fluid ResearchIcon"><img src="Images/StructuralGraphics/MedicineResources.gif" alt="" id="Image11" onClick="MM_goToURL('parent','http://www/hopkinsmedicine.org/');return document.MM_returnValue" onMouseOver="MM_swapImage('Image11','','Images/StructuralGraphics/MedicineResourcesSwap.g if',1)" onMouseOut="MM_swapImgRestore()"/></div>
                      <div class="fluid ResearchPersonnel"><table>
      <tr>
        <td><strong>Joanne Frantz-Doggett</strong> <br>
    Associate Director<br>
    410-955-8921<br>
    [email protected]</td>
        <td><strong>Nicole Leonard</strong><br>
    Deputy Director<br>
    410-502-6655<br>
    [email protected]</td>
      </tr>
      </table>
    </div>
      <p>
                      <div class="fluid ResearchOffices"><strong>Johns Hopkins University Research Administration (JHURA)</strong><br>
    Wyman Park Center, W400<br>
    3400 North Charles Street<br>
    Baltimore, Maryland 21218<br>
    <a href="http://www.jhuresearch.jhu.edu/rpa/">http://www.jhuresearch.jhu.edu/rpa/</a></div>
                      <div class="fluid ResearchIcon"><img src="Images/StructuralGraphics/Research.gif"  alt="" id="Image12" onClick="MM_goToURL('parent','http://www.jhuresearch.jhu.edu/rpa/');return document.MM_returnValue" onMouseOver="MM_swapImage('Image12','','Images/StructuralGraphics/ResearchSwap.gif',1)" onMouseOut="MM_swapImgRestore()"/></div>
                      <div class="fluid ResearchPersonnel">
      <table><tr>
        <td><strong>Alexandra A. McKeown<br></strong>
    Associate Vice Provost for Research Administration<br>
    410-516-8444<br>
    [email protected]</td>
        <td><strong>Jennifer Barron<br></strong>
    Executive Director<br>
    615 N. Wolfe Street, W1600<br>
    Baltimore, Maryland 21205<br>
    410-614-1856<br>
    [email protected]</td>
      </tr>
      </table>
    </div>
      <p>
                      <div class="fluid ResearchOffices"><strong>Business and Research Administration (BARA)</strong> <br>
    Wyman Park Center, N600<br>
    3400 North Charles Street<br>
    Baltimore, Maryland 21218<br>
    <a href="http://www.jhu.edu/kasper/sponsored_projects/">http://www.jhu.edu/kasper/sponsored_projects/</a></div>
                      <div class="fluid ResearchIcon"><img src="Images/StructuralGraphics/BARA.gif"  alt="" id="Image13" onClick="MM_goToURL('parent','http://www.jhu.edu/kasper/sponsored_projects/');return document.MM_returnValue" onMouseOver="MM_swapImage('Image13','','Images/StructuralGraphics/BARASwap.gif',1)" onMouseOut="MM_swapImgRestore()"/></div>
                      <div class="fluid ResearchPersonnel"><strong>Mary Louise Healy</strong><br>
    Associate Director<br>
    Office of Research Administration<br>
    410-516-8617<br>
    [email protected]
    </div>
      <p>
                      <div class="fluid ResearchOffices"><strong>School of Nursing Office of Research Administration (SON)</strong><br>
    525 North Worlfe Street<br>
    Baltimore, Maryland 21205<br>
    www.nursing.jhu.edu/<br>
    <a href="http://faculty_research/administration/index.html">http://faculty_research/administration/index.html</a></div>
                      <div class="fluid ResearchIcon"><img src="Images/StructuralGraphics/Nursing.gif" alt="" width="109" height="109" id="Image14" onClick="MM_goToURL('parent','faculty_research/administration/index.html');return document.MM_returnValue" onMouseOver="MM_swapImage('Image14','','Images/StructuralGraphics/NursingSwap.gif',1)" onMouseOut="MM_swapImgRestore()"/></div>
                      <div class="fluid ResearchPersonnel"><strong>Maggie Brewer</strong><br>
    ORA Administrator<br>
    443-287-2902<br>
    [email protected]
    </div>
                 </div>
                    <h3><a href="#">Research-Related Administration</a></h3>
             <div>
               <p><div class="fluid Offices"><strong>Sponsored Projects Shared Services</strong><br>
    3910 Keswick Road, 5th Floor;
    Baltimore, Maryland 21211<br>
    443-997-8151<br>
    <a href="http://ssc.jhmi.edu/sponsoredprojects/index.html">http://ssc.jhmi.edu/sponsoredprojects/index.html</a><br>
    <br>
    <strong>Office of the Controller</strong><br>
    3910 Keswick Road, 5th Floor; Baltimore, Maryland 21211<br>
    Wanda Adams, Administrative Coordinator;<br>
    443-997-8155<br>
    <a href="http://finance.jhu.edu/depts/controller/office_controller.html">http://finance.jhu.edu/depts/controller/office_controller.html</a><br>
    <br>
    <strong>Compliance and Interdivisional Research Services</strong>
    <br>
    Wyman Park Center, W400; <br>
    3400 North Charles Street; Baltimore, Maryland 21218<br>
    Marge Dolly; [email protected]<br>
    <br>
    <strong>Licensing and Technology Development</strong><br>
    100 North Charles Street, 5th Floor;<br>
    Baltimore, Maryland 21201;<br>
    410-515-8300<br>
    <a href="http://www.techtransfer.jhu.edu">http://www.techtransfer.jhu.edu</a><br>
    <br>
    <strong>Export Controls Office</strong><br>
    Wyman Park Center, W400; Baltimore, Maryland 21218<br>
    Frank Barker; [email protected]<br>
    <br>
    <strong>Health, Safety & Environment</strong><br>
    600 North Wolfe Street; Billing Administration 1290<br>
    Baltimore, Maryland 21287-1629<br>
    <a href="http://www.hopkinsmedicine.org/hse/">http://www.hopkinsmedicine.org/hse/ </a></div>
                 </div>
             <h3><a href="#">ORIS Executive Committee</a></h3>
                    <div>
                      <p>Mike Amey<br>
    Associate Dean of Research Affairs<br>
    School of Medicine Research Administration<br>
    733 North Broadway, BRB 117; Baltimore, Maryland 21205<br>
    410-955-3061; [email protected]
    <br>
    <br>
    Mary Louise Healy<br>
    Associate Director, ORA<br>
    Zanvyl Krieger School of Arts and Sciences<br>
    Wyman Park Center, N600; <br>
    3400 North Charles Street; <br>
    Baltimore, Maryland 21218-2685<br>
    410-516-8617; [email protected]<br>
    <br>
    Alexandra A. McKeown<br>
    Associate Vice Provost for Research Administration<br>
    Johns Hopkins University Research Administration<br>
    Wyman Park Center, W400; <br>
    3400 North Charles Street; Baltimore, Maryland 21218-2685<br>
    410-516-8668; [email protected]<br>
    <br>
    Kelly Welsh<br>
    Associate Dean, Finance and Administration<br>
    School of Nursing<br>
    525 North Wolfe Street, Suite 338;<br>
    Baltimore, Maryland 21205<br>
    410-955-4766; [email protected]</p>
                    </div>
                    <h3><a href="#">ORIS Leadership</a></h3>
                    <div>
                      <p>Alexandra A. McKeown<br>
    Associate Vice Provost for Research Administration<br>
    Johns Hopkins University Research Administration<br>
    Wyman Park Center, W400; <br>
    3400 North Charles Street; Baltimore, Maryland 21218-2685<br>
    410-516-8668; [email protected]<br>
    <br>
    <strong>Robert E. Taylor</strong><br>
    IT Manager<br>
    Office of Research Information Systems<br>
    Wyman Park Center, W400; <br>
    3400 North Charles Street; Baltimore, Maryland 21218-2685<br>
    [email protected]<br>
    <br>
    </p>
                    </div>
           </div>
         </div></div>
       </div>
              <div class="fluid KCNavWrapper">Kuali Coeus Information <div class="fluid NavPanel">
         <div class="fluid ButtonWrapper">
           <div class="fluid ButtonWhite">
             <div class="fluid ButtonWrappers"><img src="Images/StructuralGraphics/KualiKJHU.gif" alt="" id="Image15" onMouseOver="MM_swapImage('Image15','','Images/StructuralGraphics/KualiKJHUHover.gif',1)" onMouseOut="MM_swapImgRestore()"/></div>
                    <div class="fluid ButtonWrappers"><img src="Images/StructuralGraphics/Email.gif" alt="" id="Image16" onMouseOver="MM_swapImage('Image16','','Images/StructuralGraphics/EmailSwap.gif',1)" onMouseOut="MM_swapImgRestore()"/></div>
                    <div class="fluid ButtonWrappers"><img src="Images/StructuralGraphics/TimelineButton.gif" alt="" id="Image17" onMouseOver="MM_swapImage('Image17','','Images/StructuralGraphics/TimelineHover.gif',1)" onMouseOut="MM_swapImgRestore()"/></div>
                    <div class="fluid ButtonWrappers"><img src="Images/StructuralGraphics/Documentation.gif" alt="" id="Image18" onMouseOver="MM_swapImage('Image18','','Images/StructuralGraphics/DocumentationSwap.gif', 1)" onMouseOut="MM_swapImgRestore()"/></div>              </div>
         </div>
       </div>
              </div>
      </div>
        </div>
              <script type="text/javascript">
    swfobject.registerObject("FlashID");
    $(function() {
      $( "#Accordion1" ).accordion();
    </script>
    <div class="fluid Footer">
         <div class="fluid FootHead">Office of Research Information Systems</div>
         <div class="fluid FootAddress">Wyman Park Center, W400<br>
    3400 North Charles Street; Baltimore, Maryland 21218-2685
    </div>
         <div class="fluid Twitter">This is the content for Layout Div Tag "Twitter"</div>
       </div>
    </body>
    </html>

  • Trouble in Dreamweaver with fluid grid layouts

    Hi!  This is my first time posting here.  I have been having intermittent problems in the fluid grid layouts.  The sizing handles that are supposed to be there in a fluid element/div sometimes disappear along with the duplication icon and the arrow that moves a div/element up to the previous row.  For instance I am working on a lesson in my online class for Dreamweaver that is asking me to style an unordered list for a menu.  I want to make it into a horizontal menu where each item is 3 columns wide.  Without the handles I cannot size the items in the list nor "bump them up" next to each other.  Does this make any sense?  Sometimes, they are there and sometimes not.  Mostly not there.  This is very frustrating!  Can someone offer any solutions?
    Paula Jo Nyman

    I have the same Issue, I have been trying to get it resolved for a while now, but the live customer support is terrible, I feel like they don't read the initial question and it frustrates me how I am constantly asked questions about my question that is CLEARLY covered in the initial Question. I Have been on hold on the phone for some time now, if I get this resolved I will post an answer. It does disgust me how adobe are slowly parring the technical support over to its users.

  • Dreamweaver CS6 fluid grid with slideshow

    I am trying to create a slideshow page for my DW CS6 fluid grid site, preferably with previews.
    I want the images to scale with the width of the browser.
    I checked out different plugin's and apps but one does not integrate with DW, the other can't combine Landscape and Portrait pictures ect....
    After looking in the forums I could only find 1 discussion about this resulting in there is no solution.
    But a year has past and...... does anyone know a good solution?
    Don't want to use Flash.
    thx.

    "Try and find a "Responsive jQuery Slideshow" plugin? The biggest issue
    that javascript-slideshows will have is that many rely on having a
    specific width"
    Non-jQuery extensions sometimes present solutions:
    http://www.projectseven.com/products/galleries/igm2/examples/demo-01.htm
    Al Sparber - PVII
    http://www.projectseven.com
    The Finest Dreamweaver Menus | Galleries | Widgets
    Since 1998

  • Dreamweaver CC fluid grid site, how do I give user the option to view desktop version on mobile?

    Hi all,  I've just built my first fluid grid site with Dreamweaver CC, just wondering what is the easiest way to give an option to the user to view the desktop version on a mobile device (so they can zoom-in and pinch around and get to see what would be shown on a desktop).  My mobile version of the site is a lot different to the desktop. I've kept all the original code structure, css, media quries and use of boilerplate etc intact from the original dreamweaver cc template.  If someone could please show the best way to do this would be great

    Hi Ben, yes I know but I come across people who insist on using the desktop version of sites because they are more familiar with the layout of the buttons and dont want to relearn etc, I come across this many times on sites I visit myself actually where I don't have time to relearn the navigation of the site because I know the desktop version so well, if in a rush etc.
    Hi Mary Blight its definatley possible, I mean I could create a new css file with desktop version only css and use jquery to change the mobile css to this new css file when a user clicks "view desktop button", its just that I must have over 2000 lines of css and about 200 classes thats properties are spread over the 3 different media queries (with different inhertence), and I really don't want to have to manually go through each if I have to.
    Was hoping I might be able to use some view port meta tags like how apple does on their devices
    <meta name="viewport" content="width=device-width, initial-scale=1"> something like this to fool the device into thinking its a desktop site, or something along those lines etc.

  • Adobe has made upgrades with the Dreamweaver CS6 fluid grids. Is there a better tutorial than this?

    It there a better tutorial than this anywhere http://blogs.adobe.com/dreamweaver/2013/02/updated-fluid-grids-in-dreamweaver.html ? I can't seem to understand this guy. I know he means well. I really want to learn fluid grids. Thanks any reconmandations?

    If you want to learn to make responsive Web pages, do not rely on
    Adobe's fluid grid system. Learn CSS yourself. If you need to rely on a
    grid framework, then you are barking up the wrong tree. I can absolutely
    guarantee that if you do not fully understand the theories behind
    responsive design and you use the Adobe fluid grid (or the open source
    frameworks/scripts that Adobe uses) your site will eventually break.
    Study and learn. If you are sharp enough, you will quickly come to
    understand that nearly every article and tutorial on the subject is
    plain wrong. The essence of responsive design is very easy and does not
    require anyone's code but your own.
    Al Sparber - PVII
    http://www.projectseven.com
    The Finest Dreamweaver Menus | Galleries | Widgets
    Since 1998

  • Patching Grid Control OMS and Agent to 10.2.0.5 issue

    Oracle 11gR1 RHEL5 - Grid Control 10.2.0.5
    Hi All,
    I have been stuck on this issue for over a month (was relying on Oracle supports help and they just would not reply) and I can't figure it out. Basically, what happened is that my 10.2.0.5 patch set failed partiallty when I was applying it to the OMS. Here is what is going on right now:
    Database Repository (EMREP) - 11gR1 (11.1.0.6) - /opt/app/oracle/product/11.1.0/db_1
    OMS - 10.2.0.5 - /opt/app/oracle/product/10.2.0/grid_1/oms10g
    Agent - 10.2.0.5 - /opt/app/oracle/product/10.2.0/grid_1/agent10g
    When I was almost done with the 10.2.0.5 patch on the OMS, OUI gave me the following error:
    SEVERE: OUI-25031:Some of the configuration assistants failed. It is strongly recommended that you retry the configuration
    assistants at this time. Not successfully running any "Recommended" assistants
    means your system will not be correctly configured.
    *1. Check the Details panel on the Configuration Assistant Screen to see the errors resulting in the*
    failures.
    *2. Fix the errors causing these failures.*
    *3. Select the failed assistants and click the 'Retry' button to retry them*
    When I checked the logs I found the following messages (Here is a part of it...I think before it started to fail):
    Finished deleting the above files...
    INFO: Configuration assistant "OMS Oneoff Patch Application" succeeded
    INFO: Command = oracle.sysman.emcp.oms.RepositoryPatchUpgrade -verbose
    Repository Upgrade is failed with errors. Restore the database, rectify the errors and retry the install.
    For more details :
    -For configuration issues, look at the log files present in following location:
    /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/cfgfw
    -For repository failures, look at the log files
    /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emrepmgr.log.10.
    2.0.5.0
    /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emrepmgr.log.10.2.0.5.0.errors
    -If not able to identify the repository issues, contact ORACLE Support.
    -After the Repository issues are rectified and upgraded successfully, execute the below runConfig command to run remaining config tools.
    Goto /opt/app/oracle/product/10.2.0/grid_1/oms10g/oui/bin directory and run below command.
    For UNIX :
    ./runConfig.sh ORACLE_HOME=/opt/app/oracle/product/10.2.0/grid_1/oms10g ACTION=patchsetConfigure MODE=perform COMPONENT_XML=oracle.sysman.top.oms.10_2_0_5_0.xml
    For Windows :
    runConfig.bat ORACLE_HOME=/opt/app/oracle/product/10.2.0/grid_1/oms10g ACTION=patchsetConfigure MODE=perform COMPONENT_XML=oracle.sysman.top.oms.10_2_0_5_0.xml
    Command = oracle.sysman.emcp.oms.RepositoryPatchUpgrade has failed
    Exception : java.lang.Exception: Command: /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/admin/emdrep/bin/RepManager -connect (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=rhel-grid)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=emrep))) -action upgrade -no_transx -no_verify -verbose -repos_user sysman -output_file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emrepmgr.log.10.2.0.5.0 failed. Exit code: expected [0 ], but got 45
    INFO: Configuration assistant "Repository Upgrade" failed
    *** Starting OUICA ***
    Oracle Home set to /opt/app/oracle/product/10.2.0/grid_1/oms10g
    Configuration directory is set to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs. All xml files under the directory will be processed
    Parsing configuration file config.xml ....
    Ended Parsing configuration file config.xml
    Start Processing configuration tool Oracle Internet Directory Patch Configuration Assistant....
    Preparing for copying /opt/app/oracle/product/10.2.0/grid_1/oms10g/ldap/log/patchca.log to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs
    Buffer size for copying file is set to 2048
    Expanding source path /opt/app/oracle/product/10.2.0/grid_1/oms10g/ldap/log/patchca.log
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/ldap/log/patchca.log from the file path expanding...
    WARN: Source file /opt/app/oracle/product/10.2.0/grid_1/oms10g/ldap/log/patchca.log could not be found. Nothing will be copied for this file
    Number of file(s) copied is 0
    Number of directories copied is 0
    End Processing configuration tool Oracle Internet Directory Patch Configuration Assistant
    Start Processing configuration tool Directory Integration Platform Configuration Assistant....
    Preparing for copying /opt/app/oracle/product/10.2.0/grid_1/oms10g/ldap/log/oidca.log to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs
    Expanding source path /opt/app/oracle/product/10.2.0/grid_1/oms10g/ldap/log/oidca.log
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/ldap/log/oidca.log from the file path expanding...
    WARN: Source file /opt/app/oracle/product/10.2.0/grid_1/oms10g/ldap/log/oidca.log could not be found. Nothing will be copied for this file
    Number of file(s) copied is 0
    Number of directories copied is 0
    End Processing configuration tool Directory Integration Platform Configuration Assistant
    Start Processing configuration tool OC4J Instance Configuration Assistant....
    Preparing for copying /opt/app/oracle/product/10.2.0/grid_1/oms10g/j2ee/home/log/* to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs
    Expanding source path /opt/app/oracle/product/10.2.0/grid_1/oms10g/j2ee/home/log/*
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/j2ee/home/log/home_default_island_1 from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/j2ee/home/log/operations from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/j2ee/home/log/log.xml from the file path expanding...
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/j2ee/home/log/log.xml to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/log.xml
    Number of file(s) copied is 1
    Number of directories copied is 0
    End Processing configuration tool OC4J Instance Configuration Assistant
    Start Processing configuration tool OPMN Configuration Assistant - start HTTP server....
    Preparing for copying /opt/app/oracle/product/10.2.0/grid_1/oms10g/opmn/logs/* to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs
    Expanding source path /opt/app/oracle/product/10.2.0/grid_1/oms10g/opmn/logs/*
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/opmn/logs/WebCache~WebCacheAdmin~1 from the file path expanding...
    Number of directories copied is 0
    End Processing configuration tool OPMN Configuration Assistant - start OCA Instance
    Start Processing configuration tool Wireless Configuration Assistant....
    Preparing for copying /opt/app/oracle/product/10.2.0/grid_1/oms10g/wireless/logs/upgrade_CA.out to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs
    Expanding source path /opt/app/oracle/product/10.2.0/grid_1/oms10g/wireless/logs/upgrade_CA.out
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/wireless/logs/upgrade_CA.out from the file path expanding...
    WARN: Source file /opt/app/oracle/product/10.2.0/grid_1/oms10g/wireless/logs/upgrade_CA.out could not be found. Nothing will be copied for this file
    Number of file(s) copied is 0
    Number of directories copied is 0
    End Processing configuration tool Wireless Configuration Assistant
    Start Processing configuration tool Wireless Metadata Repository Update....
    Preparing for copying /opt/app/oracle/product/10.2.0/grid_1/oms10g/wireless/logs/upgrade_CA.out to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs
    Expanding source path /opt/app/oracle/product/10.2.0/grid_1/oms10g/wireless/logs/upgrade_CA.out
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/wireless/logs/upgrade_CA.out from the file path expanding...
    WARN: Source file /opt/app/oracle/product/10.2.0/grid_1/oms10g/wireless/logs/upgrade_CA.out could not be found. Nothing will be copied for this file
    Number of file(s) copied is 0
    Number of directories copied is 0
    End Processing configuration tool Wireless Metadata Repository Update
    Start Processing configuration tool Portal Metadata Repository Update....
    Preparing for copying /opt/app/oracle/product/10.2.0/grid_1/oms10g/portal/upg/plsql/upgrade.log to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs
    Expanding source path /opt/app/oracle/product/10.2.0/grid_1/oms10g/portal/upg/plsql/upgrade.log
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/portal/upg/plsql/upgrade.log from the file path expanding...
    WARN: Source file /opt/app/oracle/product/10.2.0/grid_1/oms10g/portal/upg/plsql/upgrade.log could not be found. Nothing will be copied for this file
    Number of file(s) copied is 0
    Number of directories copied is 0
    End Processing configuration tool Portal Metadata Repository Update
    Start Processing configuration tool OPMN Configuration Assistant....
    Preparing for copying /opt/app/oracle/product/10.2.0/grid_1/oms10g/opmn/logs/* to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs
    Expanding source path /opt/app/oracle/product/10.2.0/grid_1/oms10g/opmn/logs/*
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/opmn/logs/WebCache~WebCacheAdmin~1 from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/opmn/logs/OC4J~OC4J_EM~default_island~1 from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/opmn/logs/dcm-daemon~dcm-daemon~dcm~1 from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/opmn/logs/ons.log from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/opmn/logs/WebCache~WebCache~1 from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/opmn/logs/OC4J~OC4J_EMPROV~default_island~1 from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/opmn/logs/states from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/opmn/logs/OC4J~home~default_island~1 from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/opmn/logs/opmn.log from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/opmn/logs/HTTP_Server~1 from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/opmn/logs/ipm.log from the file path expanding...
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/opmn/logs/WebCache~WebCacheAdmin~1 to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/WebCache~WebCacheAdmin~1
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/opmn/logs/OC4J~OC4J_EM~default_island~1 to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/OC4J~OC4J_EM~default_island~1
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/opmn/logs/dcm-daemon~dcm-daemon~dcm~1 to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/dcm-daemon~dcm-daemon~dcm~1
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/opmn/logs/ons.log to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/ons.log
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/opmn/logs/WebCache~WebCache~1 to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/WebCache~WebCache~1
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/opmn/logs/OC4J~OC4J_EMPROV~default_island~1 to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/OC4J~OC4J_EMPROV~default_island~1
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/opmn/logs/OC4J~home~default_island~1 to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/OC4J~home~default_island~1
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/opmn/logs/opmn.log to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/opmn.log
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/opmn/logs/HTTP_Server~1 to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/HTTP_Server~1
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/opmn/logs/ipm.log to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/ipm.log
    Number of file(s) copied is 10
    Number of directories copied is 0
    End Processing configuration tool OPMN Configuration Assistant
    Start Processing configuration tool Application Server Control Configuration Assistant....
    Preparing for copying /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/* to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs
    Expanding source path /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/*
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emoms.trc from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emoms.trc.10 from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emdctl.log from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emrepmgr.log.10.2.0.4.0 from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emagentfetchlet.trc from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emoms.trc.1 from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emoms.trc.4 from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emoms.trc.7 from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emoms.log from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/nfsPatchPlug.log from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/em-application.log from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emoms.trc.9 from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emoms.trc.8 from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emrepmgr.log.10.2.0.5.0 from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emdctl.trc from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emctl.log from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/server.log from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/secure.log from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emoms.trc.6 from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/em.nohup from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emrepmgr.log.10.2.0.5.0.errors from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/em-web-access.log from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/pafLogs from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emias.log from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emoms.trc.5 from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emrepmgr.log.10.2.0.4.0.errors from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emoms.trc.3 from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emagent.trc from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/rmi.log from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emagent.log from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emoms.trc.2 from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emca_repos_out_of_box12_56_33.log from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emagentfetchlet.log from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emoms.log.1 from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emrepmgr.log.10.2.0.5.0.transx from the file path expanding...
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emoms.trc to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/emoms.trc
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emoms.trc.10 to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/emoms.trc.10
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emdctl.log to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/emdctl.log
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emrepmgr.log.10.2.0.4.0 to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/emrepmgr.log.10.2.0.4.0
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emagentfetchlet.trc to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/emagentfetchlet.trc
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emoms.trc.1 to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/emoms.trc.1
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emoms.trc.4 to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/emoms.trc.4
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emoms.trc.7 to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/emoms.trc.7
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emoms.log to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/emoms.log
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/nfsPatchPlug.log to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/nfsPatchPlug.log
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/em-application.log to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/em-application.log
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emoms.trc.9 to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/emoms.trc.9
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emoms.trc.8 to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/emoms.trc.8
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emrepmgr.log.10.2.0.5.0 to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/emrepmgr.log.10.2.0.5.0
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emdctl.trc to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/emdctl.trc
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emctl.log to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/emctl.log
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/server.log to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/server.log
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/secure.log to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/secure.log
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emoms.trc.6 to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/emoms.trc.6
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/em.nohup to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/em.nohup
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emrepmgr.log.10.2.0.5.0.errors to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/emrepmgr.log.10.2.0.5.0.errors
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/em-web-access.log to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/em-web-access.log
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emias.log to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/emias.log
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emoms.trc.5 to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/emoms.trc.5
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emrepmgr.log.10.2.0.4.0.errors to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/emrepmgr.log.10.2.0.4.0.errors
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emoms.trc.3 to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/emoms.trc.3
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emagent.trc to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/emagent.trc
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/rmi.log to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/rmi.log
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emagent.log to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/emagent.log
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emoms.trc.2 to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/emoms.trc.2
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emca_repos_out_of_box12_56_33.log to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/emca_repos_out_of_box12_56_33.log
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emagentfetchlet.log to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/emagentfetchlet.log
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emoms.log.1 to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/emoms.log.1
    Completed copying file /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emrepmgr.log.10.2.0.5.0.transx to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/emrepmgr.log.10.2.0.5.0.transx
    Number of file(s) copied is 34
    Number of directories copied is 0
    End Processing configuration tool Application Server Control Configuration Assistant
    Start Processing configuration tool DCM Repository Update Assistant ....
    Preparing for copying /opt/app/oracle/product/10.2.0/grid_1/oms10g/dcm/logs/* to /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs
    Expanding source path /opt/app/oracle/product/10.2.0/grid_1/oms10g/dcm/logs/*
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/dcm/logs/dcmctl_logs from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/dcm/logs/emd_logs from the file path expanding...
    Adding the file /opt/app/oracle/product/10.2.0/grid_1/oms10g/dcm/logs/daemon_logs from the file path expanding...
    Number of file(s) copied is 0
    Number of directories copied is 0
    End Processing configuration tool DCM Repository Update Assistant
    INFO: The "/opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.
    INFO: Since the option is to overwrite the existing /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/configToolFailedCommands file, backing it up
    INFO: The backed up file name is /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/configToolFailedCommands.bak.1
    SEVERE: OUI-25031:Some of the configuration assistants failed. It is strongly recommended that you retry the configuration assistants at this time. Not successfully running any "Recommended" assistants means your system will not be correctly configured.
    1. Check the Details panel on the Configuration Assistant Screen to see the errors resulting in the failures.
    2. Fix the errors causing these failures.
    3. Select the failed assistants and click the 'Retry' button to retry them.
    INFO: User Selected: Yes/OK
    INFO: Starting to execute configuration assistants
    INFO: Command = oracle.sysman.emcp.oms.RepositoryPatchUpgrade -verbose
    Repository Upgrade is failed with errors. Restore the database, rectify the errors and retry the install.
    For more details :
    -For configuration issues, look at the log files present in following location:
    /opt/app/oracle/product/10.2.0/grid_1/oms10g/cfgtoollogs/cfgfw
    -For repository failures, look at the log files
    /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emrepmgr.log.10.2.0.5.0
    /opt/app/oracle/product/10.2.0/grid_1/oms10g/sysman/log/emrepmgr.log.10.2.0.5.0.errors
    -If not able to identify the repository issues, contact ORACLE Support.
    -After the Repository issues are rectified and upgraded successfully, execute the below runConfig command to run remaining config tools.
    Goto /opt/app/oracle/product/10.2.0/grid_1/oms10g/oui/bin directory and run below command.
    For UNIX :
    ./runConfig.sh ORACLE_HOME=/opt/app/oracle/product/10.2.0/grid_1/oms10g ACTION=patchsetConfigure MODE=perform COMPONENT_XML=oracle.sysman.top.oms.10_2_0_5_0.xml
    For Windows :
    runConfig.bat ORACLE_HOME=/opt/app/oracle/product/10.2.0/grid_1/oms10g ACTION=patchsetConfigure MODE=perform COMPONENT_XML=oracle.sysman.top.oms.10_2_0_5_0.xml
    Command = oracle.sysman.emcp.oms.RepositoryPatchUpgrade has failed
    Exception : java.lang.Exception:
    REPOSITORY UPGRADE STATUS : 3
    INFO: Configuration assistant "Repository Upgrade" failed
    I would appreciate any help on this as I have been stuck on it since April :( Not too happy with Oracle Support.
    Thanks much to all!
    JrOraDBA

    Here is the output for when I applied the patch:
    opatch apply
    Invoking OPatch 10.2.0.3.0
    Oracle interim Patch Installer version 10.2.0.3.0
    Copyright (c) 2005, Oracle Corporation.  All rights reserved..
    Oracle Home       : /opt/app/oracle/product/10.2.0/grid_1/db10g
    Central Inventory : /opt/app/oracle/oraInventory
    from           : /etc/oraInst.loc
    OPatch version    : 10.2.0.3.0
    OUI version       : 10.2.0.3.0
    OUI location      : /opt/app/oracle/product/10.2.0/grid_1/db10g/oui
    Log file location : /opt/app/oracle/product/10.2.0/grid_1/db10g/cfgtoollogs/opatch/opatch2009-04-22_12-07-14PM.log
    ApplySession applying interim patch '4329444' to OH '/opt/app/oracle/product/10.2.0/grid_1/db10g'
    Invoking fuser to check for active processes.
    Invoking fuser on "/opt/app/oracle/product/10.2.0/grid_1/db10g/bin/oracle"
    OPatch detected non-cluster Oracle Home from the inventory and will patch the local system only.
    Please shutdown Oracle instances running out of this ORACLE_HOME on the local system.
    *(Oracle Home = '/opt/app/oracle/product/10.2.0/grid_1/db10g')*
    Is the local system ready for patching?
    *Do you want to proceed? y*
    y
    User Responded with: Y
    Backing up files and inventory (not for auto-rollback) for the Oracle Home
    Backing up files affected by the patch '4329444' for restore. This might take a while...
    Backing up files affected by the patch '4329444' for rollback. This might take a while...
    Patching component oracle.rdbms, 10.1.0.4.0...
    Updating archive file "/opt/app/oracle/product/10.2.0/grid_1/db10g/lib/libserver10.a"  with "lib/libserver10.a/qerix.o"
    ApplySession adding interim patch '4329444' to inventory
    Verifying the update...
    Inventory check OK: Patch ID 4329444 is registered in Oracle Home inventory with proper meta-data.
    Files check OK: Files from Patch ID 4329444 are present in Oracle Home.
    Running make for target ioracle
    The local system has been patched and can be restarted.
    OPatch succeeded.
    However, the weird thing is that I don't see it in the lsinventory:
    */opt/app/oracle/product/10.2.0/grid_1/db10g/OPatch/opatch lsinventory*
    Invoking OPatch 10.2.0.3.0
    Oracle interim Patch Installer version 10.2.0.3.0
    Copyright (c) 2005, Oracle Corporation.  All rights reserved..
    Oracle Home       : /opt/app/oracle/product/10.2.0/grid_1/db10g
    Central Inventory : /opt/app/oracle/oraInventory
    from           : /etc/oraInst.loc
    OPatch version    : 10.2.0.3.0
    OUI version       : 10.2.0.3.0
    OUI location      : /opt/app/oracle/product/10.2.0/grid_1/db10g/oui
    Log file location : /opt/app/oracle/product/10.2.0/grid_1/db10g/cfgtoollogs/opatch/opatch2009-06-09_09-37-54AM.log
    Lsinventory Output file location : /opt/app/oracle/product/10.2.0/grid_1/db10g/cfgtoollogs/opatch/lsinv/lsinventory2009-06-09_09-37-54AM.txt
    Installed Top-level Products (2):
    Oracle Database 10g Patch Set 3                                      10.1.0.5.0
    Oracle Enterprise Manager Repository Database                        10.2.0.3.0
    There are 2 products installed in this Oracle Home.
    Interim patches (1) :
    Patch  5632264      : applied on Thu Apr 23 12:23:10 CDT 2009
    Created on 8 Feb 2007, 00:38:09 hrs PST8PDT
    Bugs fixed:
    *5632264*
    OPatch succeeded.
    Do you think I should restore the backup (and I only have the database backup, not the Oracle Home backup)?
    THanks.

Maybe you are looking for

  • With firefox 4, google toobar seach box suggestions no longer appear in the search box itself

    After installing Firefox 4: When I start typing in the Google toolbar search box an item, like NYT and the search suggestions appear -- like NY Times -- I used to be able to click on "NY Times" and this would appear filled out in the Google search bo

  • Iphoto library deleted

    Oh my what a mess. I have deleted my i photo library. I just loaded some photos from my iPad on to a newly created library. I use time machine and have lots of backups. Can I load the old photos from time machine onto iphoto or am I out of luck? If i

  • Digital Signature on PO

    Dear All, Can you pls throw some light on how to create DIGITAL SIGNATURE on the Purchase Orders so that it can be sent to vendor immdtly via mail. Regards Rang

  • Inner Class Problem - I think...

    Ok here's my problem. I have two classes, one is a servlet, the other implements Runnable. The first class called Job starts a new thread with using the second class, JobItem. I created a simple object in the Job classes called lineItem. This is just

  • Can't rename a new reminder list.

    Followed instructions but when I press return, it returns to "untitled". MacBook Pro OS 10.7.5 iCal 5.03