Fms2_console.htm

I finally got FMS2 to install and run on my Centos 4.4 server
how ever i'm having a problem getting into the admin panel, This is
what i recieve when i try to connect, Any suggestion on what to do,
<?xml version="1.0" encoding="utf-8" ?>
- <result>
<level>error</level>
<code>NetConnection.Connect.Rejected</code>
<description>Admin user requires valid username and
password.</description>
<timestamp>Sat 24 Feb 2007 10:25:23 PM
CST</timestamp>
</result>
Here is the url
http://www.xxx.xx.xxx.com:1111/fms2_console.htm
Thyank you.

What you need to do is open the page containing the admin
console .swf, and enter your server details in the console (rather
than the address bar of the browser.
The page you want to open is here:
FMS install dir/fms2_console.htm
If you want to make the console available via http, just move
the above mentioned html document, and the fms2_console.swf file
into a web accessible directory.

Similar Messages

  • Cannot create new app in mgr

    I just installed the latest FSM2 on Fedora 5. Everything went
    perfectly, I didn't even have to add any libraries.
    I fired up fms2_console.htm on my windows client and logged
    in to my remote server. In the "Manage servers" pane I can see my
    server and I can ping it so I'm sure I'm connected properly.
    When I go back to the "View applications" pane there is
    nothing in the list. When I click on "New Instance..." nothing
    happens. I have restarted the server from the console and I've
    restarted the console but nothing helps.
    Does anyone have a clue what I'm doing wrong?
    P.S. Why does the button use the word "instance" instead of
    "application"? Am I supposed to create some kind ofapplication
    "class" first?

    well you have to build an application first in a a .swf can
    connect to the server and either share data or stream video and
    sound...when you click on instance button you have to specify the
    .swf that you wish to connect to by its name or you can just fire
    up the .swf and it will automatically connect to the server. I
    sugget you look up flash media server 2 remote shared object and
    falsh media server 2 stream using google.com
    a good book from amazon for $15.00 is an invalueable tool.
    remember google is your friend and i suggest you learn about
    remote shared objects and basic actionscript before you attempt to
    build an RIA .....RIA = rich internet application.
    be prepared to spend 400 hours dedicated to learning how to
    use the media server.

  • Index_rhc.htm vs index_csh.htm... to dat or not to dat

    This is a "why" question -- Hoping William van Weelden is watching since he has lots of related topics online ---
    For quite some time, our developers have used this construct, where helpID is actually the string we plug into the Context Sensitive map GUI...not the Map ID number, the actual string. This has always worked well.
          "/help/A/a_rhc.htm#" + helpID;
    I did something unusual recently (at least I think so) with a result that I can't explain.  I created a separate webhelp project, and  hid the output in a subdirectory of primary, so it looks like this:
    /help/index.htm <primary content, with A/B generated as part of standard webhelp>
      help/A/a.htm
                a_rhc.htm
                a_csh.htm
    help/B/b.htm
                b_rhc.htm
                b_csh.htm
    help/foo/index.htm  <sneaky folder copied in manually so contents are not searched within parent but are within this folder>
               index_rhc.htm
               index_csh.htm
    Inexplicably, although I built the sneaky project the same way (other than not using content category tags to create subdirs), I have to use index_csh.htm to get the mapIDs to redirect. I don't really comprehend why, if it works ok for the main help project and all the little cshdats etc are created, the old school _rch doesn't work.  This is not critical but I'd like to understand in case there is a side effect I've not yet discovered.  For that new sneaky folder, I have to use calls like this:
           "/help/foo/foo_csh.htm#" + helpID;
    The same type of ID (map ID string, not number) are used, so I don't grok the reason.

    A good start is see which version of RH you are using. I have looked into RH7 and later and as far as I remember, it doesn't work as you describe. (See also http://www.wvanweelden.eu/articles/part/rhc-start-file)
    If you call the rhc file with an id after the # (rhc.htm#123), the number refers to a topic id that is generated on compile time. This is completely separate from any id you have set in RoboHelp. At least, that is how the scripts say it works iin the versions I have studied.
    The RHC file does not support these strings at all, but the CSH file does. The _csh file does support this, but there is a catch: if you are using the map ID string AND that consists of numbers, the method you use will treat is as the map number. The safe way is to call the file as follows: foo_csh.htm#topicid="+ helpID;
    If you want to understand how the system works, please see the link above. I have tried to gather all information on the WebHelp CSH I could reverse engineer from the code.
    Kind regards,
    Willam

  • Error Message: "Unable to find qm_dw.htm

    (I'm a low-to-moderate ability user - just upgraded from MX2004 to CS4 and just moved from PC to MacBook) I'm working through various DW CS4 tutorials and added one 'Adobe' plug-in (Lorem and More). On recent DW start-ups I have started getting the message "Unable to find qm_dw.htm in the Configuration/Floaters directory. The floater will not be shown." Does anyone know how I can resolve this? Many thanks in anticipation. John.

    In case it helps, try deleting the DW cache file
    http://kb2.adobe.com/cps/191/tn_19105.html#dat (step 4)

  • [CC] How to perform a script "foo_beforeSave.htm" only for specific site?

    Since a long time I use a script for automatic text replacements which perform with each save command.
    The script sits in that folder:
    C:\Users\myusername\AppData\Roaming\Adobe\Dreamweaver CC\de_DE\Configuration\Commands\foo_beforeSave.htm
    It works for all documents of all sites.
    The source code (the regex rule is just an example) of the script you find below.
    My question:
    I like to perform a script like this only for a specific site.
    I'm not a programmer. So I don't know where to place the script to reach that target. Or how I have to edit the source code of the script.
    Is there anybody who could help me with that please?
    I would appreciate it a lot. Thanks
    <!DOCTYPE HTML SYSTEM "-//Macromedia//DWExtension layout-engine 5.0//dialog">
    <!-- MENU-LOCATION=NONE -->
    <html>
    <head>
    <title></title>
    <script src="../Shared/Common/Scripts/dwscripts.js"></script>
    <script>
    function canAcceptCommand(){
        return true;
    function getFileName(url) {
      var index = url.lastIndexOf('/');
      if (index != -1) retVal = url.substring(index + 1);
      else retVal = url;
      return retVal;
    function runCmd(){
        var dom = dw.getDocumentDOM();
        dom.synchronizeDocument();
        var path = dw.getDocumentPath('document');
        if(getFileName(path) != 'foo_beforeSave.htm'){
            var docEl = dom.documentElement;
            var tempDoc = docEl.outerHTML;
            tempDoc = tempDoc.replace(/&bdquo;/g,'„');
            tempDoc = tempDoc.replace(/&#8222;/g,'„');
            tempDoc = tempDoc.replace(/&ldquo;/g,'“');
            tempDoc = tempDoc.replace(/&#8220;/g,'“');
            tempDoc = tempDoc.replace(/&rdquo;/g,'”');
            tempDoc = tempDoc.replace(/&#8221;/g,'”');
            docEl.outerHTML = tempDoc;
    </script>
    </head>
    <body onLoad="runCmd();">
    </body>
    </html>

    Well, the posted script is a full working one.
    I just search for a way to limit the range of the script to the actual site.
    Therefore it is unimportant, which regex is in the example.

  • Can't find filecache to stop ICERegions.htm errors on opening dw cs4

    Hi
    I have recently started getting this error on opening DW cs4.
    "The following translators were not loaded due to errors ICERegions.htm has configuration that is invalid"
    I also get javascript errors when I try to save (although save us seems to work ok) and I can't cut and paste.
    I searhced and found this http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_19105#dat which says (point4) - Delete the WinFileCache-7A9586CB.dat, MacFileCache-BFE7CE2E.dat, or FileCache.dat and then talks about how the file name might be slghtly different.after the "Filecache" bit.
    I have searched my hard drive for "filecahce" and there was no such file seems to be there.
    I am using win xp pro and cs4
    ANy help appreciated
    thanks
    Edward

    WHoops - feeling a bit stupid now...
    searhced in the adobe folder, but its in user/applications....
    The problem appears to be sorted - so thank you me, and anyone else who thought about ansering this post!
    E

  • Missing Index topics, links and .htm files

    I hope someone can help with this, as I am very frustrated
    right now. I normally use RoboHelpX5, but have also tried this in
    RoboHelp7.
    If I generate a Winhelp2000 version of our help system,
    everything appears normal. All of the specified index keywords are
    there, all of the links are there, etc.
    But if I generate either HTML or WebHelp versions using the
    same source, as I'm supposed to be able to, for some reason:
    1. Index entries for certain topics disappear from the list.
    If I manually add the topic to the index again and save, then
    regenerate the help files, the topic is still missing from the
    index.
    2. The hyperlinks for the missing items in #1 above do not
    appear. The original text is there, but there is no hyperlink. If I
    try to add a hyperlink again, the topic appears in the list, but
    once I regenerate the help files, the link disappears again.
    3. The individual .htm file for the missing items in #1 above
    are not being generated.
    Is there some reason why these topics are being dropped from
    the html and webhelp versions of the help system? Is there some
    sort of topic formatting or setting I am missing? I have tried to
    compare working topics vs. missing topics, and cannot find anything
    different in my Word document formatting.
    I have tried creating a completely different help system,
    using clean documents with no RoboHelp formatting, and consistently
    have problems with the same topics. I even tried on another
    computer that had never had RoboHelp on it before. That didn't make
    any difference. The topics were still missing from the index, the
    hyperlinks to those topics were still missing, and the individual
    .htm files were not generated.
    Any help would be appreciated.
    Stephanie
    (ow_mas)

    Hi,
    I ran into the same problem today with some top level Index
    entries not showing up in WebHelp. I discovered how to fix it by
    comparing the entries that did show up with those that didn't. If
    an entry had a topic associated with it, it showed up; if it has a
    cross-reference, it doesn't.
    Double click an Index entry in the Index pane (or right click
    and choose Properties), then clear the Cross-reference checkbox.
    Repeat for each entry that has a cross-reference instead of a
    topic. There may be a global way to fix them all, but I haven't
    found it yet. Then recompile your help, Voila!
    Hope this helps....
    Zie3D

  • How can I get back into my application aftermath invoking Start up page of index.htm ?

    Gorgeous Hello All,
    If anyone of you can please provide me a solution for the following, will help me in plentious and galore.
    Am using Adobe RoboHelp, Version 10 and IE version being 10.
    A hurdle :-
    I have a application which has been developed in ASP .NET, Version 4.0. Help link has been created in this application wherein here the Start up page of index.htm has been linked to be read from the RoboHelp local project folder\!SSL!\Multiscreen_HTML5\desktop. All are working absolutely fine except when
    I login into the above-said application -> click on the Help page -> the index.htm opens with Contents, Index, Glossary -> Am able to successfully perform any task by respective clickings
    -> But I am not able to get back into my application when I click on the IE provided Back button (Alt+Left) -> Any amount of invoking Back button makes the system getting looped into this Start up page of index.htm only -> When I Close Tab (Ctrl + W) or Close ( X ) -> The window session gets closed and I have to repeat all by relogin once again.
    How can I get back into my application aftermath invoking Start up page of index.htm ?
    (I can always get back into the application easily by erasing those parts in the url which refers to this RoboHelp linkages – but this certainly looks non-polished work)
    Help Please
    Cheese – Vipin Nambiar, Bangalore

    Hey Jeff, I used Internet Explorer 10.0.9200 and Google Chrome 26.0.1410. Alas - it is the same behavior.
    (But Jeff : When I used Microsoft HTML Help as primary layout to generate chm file , My Help when launched from my Application opened in a new browser window and when I closed this Help browser window did not close my application. Looks like need to write few liner code to get this issue settled )
    Thanks Indeed of lots for your concerns Jeff !!!

  • Moving a site in early development from CSS/HTM to PHP

    Hello.  I am early in the development of my latest site, which I began constructing using CSS and HTML.  My pages were .htm's.  After studying up on .php, I decided that i wanted this site to be in .php, so that I could do some things server side, like having secure forms for contact and etc..
    So I made a new index page in .php.  I copied and pasted the code from my index.htm into the index.php, and attached the CSS style sheets that I had created.  So everything is displaying correctly in the new index.php, as it was in the index.htm.  Can someone let me know if this is an okay practice.. a legit way of going about what I'm trying to do?
    My next question revolves around hyperlinks.  Is the creation of links fundamentally different in .php than in .html?  I figured you could make links in the same way, by moving to html in the properties panel and turning text on the page into a link.  However, when I go to view the page in a browser and try the link I made to another page in the site, and it asks me if I want to open up a file (note: I did not set up a local testing server).  Do you need to set up a local testing server using MAMP (i'm on a Mac) in order for links to function properly in a .php page?  Or should I be creating the links in the php code, by using the echo function?
    And of course last night I was trying to set up my local testing server and was having some struggles getting it to work.  I still have to figure that out, but before I ask you how to do that, I think I will try some more resources on the web, as there seems to be some videos available on that topic.  And yes I did copy all the files of the site that I'd like to test to the root directory of htdocs in the MAMP application folder, I'm must just be getting some of the settings wrong in the manage sites dialogue box.
    Any help/insight would be of a great help!  I know this is fairly simple stuff, but thanks!

    So I made a new index page in .php.  I copied and pasted the code from my index.htm into the index.php, and attached the CSS style sheets that I had created.  So everything is displaying correctly in the new index.php, as it was in the index.htm.  Can someone let me know if this is an okay practice.. a legit way of going about what I'm trying to do?
    That's fine.
    Won't make any difference to the server or the end result in browsers until the server finds some PHP script in your page to process before sending the page to browsers.
    A .php extension merely tells the server to check the page for PHP script to process before delivering the page to a browser. If it finds none, nothing happens server-side. The page is simply sent to the browser.
    My next question revolves around hyperlinks.  Is the creation of links fundamentally different in .php than in .html?  I figured you could make links in the same way, by moving to html in the properties panel and turning text on the page into a link.  However, when I go to view the page in a browser and try the link I made to another page in the site, and it asks me if I want to open up a file (note: I did not set up a local testing server).  Do you need to set up a local testing server using MAMP (i'm on a Mac) in order for links to function properly in a .php page?  Or should I be creating the links in the php code, by using the echo function?
    There's no change to your normal HTML coding practices when using PHP pages. They're regular HTML pages with PHP script sprinkled through them. The script is processed by the server. End users never see it in their browsers.
    Browsers understand HTML. A link is a link. Created the same as always.
    PHP scripts in the page are processed by the server, then inserted in the page then delivered to the browser.
    A testing server is required if you want to test PHP pages locally.
    You can test by saving your pages after each edit then upload to your PHP-enabled web host then refresh your browser. It works but it can be slow.
    A testing server does the same thing locally. Much quicker.

  • Strange behavior when using servlet filter with simple index.htm

    I am new to J2EE development so please tolerate my ignorance. I have a web application that starts with a simple index.htm file. I am using a servlet filter throughout the website to check for session timeout, redirecting the user to a session expiration page if the session has timed out. When I do something as simple as loading the index.htm page in the browser, the .css file and one image file that are associated, or referenced in the file are somehow corrupted and not being rendered. How do I get the filter to ignore css and image files??? Thank you!!
    The servlet filter:
    import java.io.IOException;
    import javax.servlet.Filter;
    import javax.servlet.FilterChain;
    import javax.servlet.FilterConfig;
    import javax.servlet.ServletException;
    import javax.servlet.ServletRequest;
    import javax.servlet.ServletResponse;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    public class SessionTimeoutFilter implements Filter {
         String[] excludedPages = {"SessionExpired.jsp","index.htm","index.jsp"};
         String timeoutPage = "SessionExpired.jsp";
         public void destroy() {
         public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
              if ((request instanceof HttpServletRequest) && (response instanceof HttpServletResponse)) {
                   HttpServletRequest httpServletRequest = (HttpServletRequest) request;
                   HttpServletResponse httpServletResponse = (HttpServletResponse) response;
                   //httpServletResponse.setHeader("Cache-Control","no-cache");
                   //httpServletResponse.setHeader("Pragma","no-cache");
                   //httpServletResponse.setDateHeader ("Expires", 0);
                   String requestPath = httpServletRequest.getRequestURI();
                   boolean sessionInvalid = httpServletRequest.getSession().getAttribute("loginFlag") != "loggedIn";               
                   System.out.println(sessionInvalid);
                   boolean requestExcluded = false;
                   System.out.println(requestExcluded);
                   for (int i=0;i<excludedPages.length;i++){
                        if(requestPath.contains(excludedPages)){
                             requestExcluded = true;
                   if (sessionInvalid && !requestExcluded){
                        System.out.println("redirecting");
                        httpServletResponse.sendRedirect(timeoutPage);
              // pass the request along the filter chain
              chain.doFilter(request, response);
         public void init(FilterConfig arg0) throws ServletException {
              //System.out.println(arg0.getInitParameter("test-param"));
    The index.htm file (or the relevant portion)<HTML>
    <Head>
    <META http-equiv="Content-Style-Type" content="text/css">
    <LINK href="RTEStyleSheet.css" rel="stylesheet" type="text/css">
    <TITLE>Login</TITLE>
    </HEAD>
    <BODY>
    <FORM NAME="Login" METHOD="POST" ACTION="rte.ServletLDAP"><!-- Branding information -->
    <table width="100%" border="0" cellpadding="0" cellspacing="0">
         <tr>
              <td width="30%" align="left"><img src="images/top_logo_new2.gif">
              </td>
              <td width="37%" align="center"></td>
              <td width="33%" align="right"></td>
         </tr>
    </table>
    My web.xml entry for the filter:     <filter>
              <description>
              Checks for a session timeout on each user request, redirects to logout if the session has expired.</description>
              <display-name>
              SessionTimeoutFilter</display-name>
              <filter-name>SessionTimeoutFilter</filter-name>
              <filter-class>SessionTimeoutFilter</filter-class>
              <init-param>
                   <param-name>test-param</param-name>
                   <param-value>this is a test parameter</param-value>
              </init-param>
         </filter>
         <filter-mapping>
              <filter-name>SessionTimeoutFilter</filter-name>
              <url-pattern>/*</url-pattern>
              <dispatcher>REQUEST</dispatcher>
              <dispatcher>FORWARD</dispatcher>
         </filter-mapping>

    Hi,
    Try adding CSS files and images to the excluded Pages.

  • HTTP Status 404 - /B1iXcellerator/index.htm

    Dear All,
    I am always getting an error whether it be 2005B or 2007B when I am using SAP Business One integration platform > Control Center as follows :
    ''To help protect your security, Internet Explorer has restricted this file from showing active content that could access your computer. Click here for options''
    The I click and select Allow Blocked content and I then get the page displayed as error as under :
    HTTP Status 404 - /B1iXcellerator/index.htm
    type Status report
    message /B1iXcellerator/index.htm
    description The requested resource (/B1iXcellerator/index.htm) is not available.
    Apache Tomcat/5.5.20
    Please help me out as to what might be the problem as I am running from pillar to post for solving it.
    Your guidance and help would be highly appreciated.
    Regards,
    Kamlesh

    Hi,
    Try this, in internert explorer Tools->INternet options security tab select interner and click on custom level. Now here enable all the things and check if it helps.
    Vasu Natari.

  • Contribute 4 wont forget index.htm

    Hi, I'm troubleshooting a customer problem (I'm new to
    Contribute, using v4). One of the three sites I am now
    administering was not bringing up the correct home page due to
    there being both an index.htm and an index.html page on the server.
    I have removed the incorrect one (index.htm) from the server and
    cannot get Contribute to forget it. I have tried:
    1. Deleting the connection and creating a new one, browsing
    to the correct home page. Everything is OK until I open the
    connection and I get a page not found error. If I add the
    additional 'l' to index.htm, everything works OK.
    2. Change the order contribute looks for default pages on the
    Web Server settings, moving index.htm below index.html. Contribute
    ignores the order and still looks for index.htm.
    3. Deleted index.htm from the default pages list on the Web
    Server settings. Contribute still looks for index.htm.
    The other two sites were originally set up with index.html
    pages and work fine. There must be a file, cache, or something
    either on the site or on my workstation retaining this setting.
    It's just annoying as I can show the customer how to get round it
    but I'd like to fix it.

    After making index.html as default pages list on the Web
    Server settings on Contribute.
    Check in the server below mentioned things,where you are
    creating connection.
    1) Remotely login to the server.
    2) Go to Internet Information Services.
    3) Right click the default website and go to default website
    properties.
    4) Select the Documents tab.
    5) Here make the default page you want to keep.
    And try the same scenario. Hope this helps you.

  • Does DW recognize default.htm / index.html?

    I'm new to Dreamweaver and am working on an existing web
    site. Web servers typically load up a "default.htm" or "index.html"
    page when you give it a URL with just the directory name, e.g.
    http://foo.bar/about/. Most of
    the links in my site are set up that way. How can I get Dreamweaver
    to recognize that <a href="/about/"> is not a broken link? Or
    does it automatically know to look for default.htm?

    He is gaining a URL that never changes, according to
    Micha.... 8)
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Paul Whitham AdobeCommunityExpert"
    <[email protected]> wrote in message
    news:erafv6$35u$[email protected]..
    > You are actually making your server work harder by
    ommitting the full file
    > reference and I can;t really see what you are gaining.
    You can define a
    > homepage within DW but that is only one for the site and
    not for each
    > folder.
    >
    > --
    > Paul Whitham
    > Certified Dreamweaver MX2004 Professional
    > Adobe Community Expert - Dreamweaver
    >
    > Valleybiz Internet Design
    > www.valleybiz.net
    >
    > "iganpo" <[email protected]> wrote in
    message
    > news:er8phi$1f7$[email protected]..
    >> I'm new to Dreamweaver and am working on an existing
    web site. Web
    >> servers
    >> typically load up a "default.htm" or "index.html"
    page when you give it a
    >> URL
    >> with just the directory name, e.g.
    http://foo.bar/about/. Most of
    the
    >> links in
    >> my site are set up that way. How can I get
    Dreamweaver to recognize that
    >> <a
    >> href="/about/"> is not a broken link? Or does it
    automatically know to
    >> look
    >> for default.htm?
    >>
    >
    >

  • CS3 Web Photo Gallery index.htm renaming

    I'm not sure if there is a way to change this but if any one know please let me know. I working to modify one of the templates for the Web Photo Gallery, and am wondering if there is a way to designate in the template what to name the index page besides index.htm or index.html.
    I'm working to create a site that will have many photo galleries. And while it does work to have each gallery in its own sub directory with the main gallery page named index.htm. I would prefer to have the main gallery page renamed during the automation process for easier archiving.
    Let me know if anyone know if this is possible.

    >Anyway, renaming the files should not pose a problem, if you do full links. I just wouldn't do it for web galleries created automatically from PS.
    There are could be hundreds of subpages in a gallery and I'm trying to avoid going back and redoing the link to each of the main pages. Every subpage points to the main page or the index page that PS creates. I can go and manually rename the index page but then the home button that is generated during the automation on each of the sub pages needs to be changed as well. I'm trying to avoid this.
    Let me explain what I'm trying to accomplish. In the root of the domain I plan on having my index page (with a brief description about the company). Then I plain to have a few other pages including a gallery page. This is going to be the main page for all my galleries. Images will be places here that will link to the main page of each of the galleries that are created. Also on the root there will be a folder named "XYZ". This is were all the galleries will be placed under there own sub folders.

  • Why did my index.htm file generate blank? and other weirdness.

    Here's the story. Maybe someone can tell me where I made my mistake, or what happened. I'm numbering the steps for convenience in discussing this.
    1) I started a new project, a WebHelp project.
    2) I imported content in Word.
    3) I created an index, glossary, and TOC. I used wizards for some of this.
    4) I created a style sheet and applied it to all the topics.
    5) I added a skin from the gallery.
    6) I generated output.
    Then I sent that output to the UI developer on my project. He plugged it in to the web app, and it seemed to work fine. So then:
    7) I opened the project, edited the text, and removed glossary links (because I didn't like how they were working) individually.
    8) I generated a new TOC to match the changed topic structure (minor changes).
    9) I generated another output.
    I sent that output to the UI developer and he said it was blank. I opened index.htm and sure enough, it was indeed blank. In fact, it was Zero KB. I also noticed that four other files were blank: whfform.htm, whform.js, whskin_plist.htm, and whtbar.js.
    So then I decided to start over. I created a new project, imported just the html topic files from the old project, redid the index (in a  hasty and less thorough manner), decided to bail on the glossary for now, did a TOC and sent that to the developer.
    Now the Search pane is totally wonky, showing a list of characters and terms.
    So I am getting frustrated. The developer has tried monkeying around with stuff on his end, but it's not working. So he says, why don't you send me a build with everything?
    The problem is, I have two broken builds. The first one, which for whatever reason has the blank index.htm file (and other blank files), and the second one, which has no glossary, a messy index, and a screwed up search.
    I can't seem to find anyone else having this problem. :-/  Can someone help? 
    Thanks so much,
    Tamarleigh

    I am having the exact same problem, and I think I've figured out what is happening here. There is an issue when mapping Word styles into RH. The person who setup our Word template included a sidehead with conditional text to hide instructor notes when printing participant training manuals. I removed the conditional text, and everything is working fine. You may want to double check to make sure you don't have conditional text in your Word docs. I've uploaded an image with the code below to show how the conditional text looked when the document was linked and generated.
    Check out the code below:
    <table cellspacing="0">
              <tr>
                        <td style="vertical-align: top; padding-left: 0px; padding-top: 0px;
                                   padding-right: 0px; padding-bottom: 0px;" height="800" width="114"><table
                                   cellspacing="0" width="100%">
                                  <tr>
                                            <td style="padding-left: 0px; padding-top: 0px; padding-right: 0px;
                                                       padding-bottom: 0px;"><div v:shape="Text_x0020_Box_x0020_146"
                                                                                                                             class="shape" style="padding: 3.6pt 7.2pt 3.6pt 7.2pt;">
                                                      <p class="WD_InstructorNotesHeading"><span style="background: #ffff00;">Instructor
                                                       Notes:</span></p>
                                                      <p class="WD_InstructorNotesText"><span style="background: #ffff00;">Add
                                                       any additional instructor information into this text
                                                       box.&#160;&#160;It will only appear when hidden text
                                                       is turned on.</span></p>
                                                      <p class="WD_InstructorNotesText">&#160;</p>
                                            </div></td>
                                  </tr>
                        </table>
                        &#160;</td>
              </tr>
    </table>
    Cheers.

Maybe you are looking for

  • HT200246 how do i set the decode template in motion 5 to pal

    How do change the frame rate of the decode template from 29.97 secs to 25 secs in Motion 5?

  • Duplicate Item via DI

    Hi all, I want to create a duplicate of an existing item. The purpose is to do this via the DI-API So my Code is as follows Dim oTemplate as SAPbobsCOM.Items Dim oItem As SAPbobsCOM.Items Dim nResult As Integer oTemplate = oCompany.GetBusinessObject(

  • Capturing In FCE

    Am trying to capture some DV footage into FCE, and when 2 GB of film is imported, I get a warning saying that capture has ben stopped due to lack of memory space. I have 500GB free!! This means that only 9 mins of film can be captured at a time and i

  • Display column values as zeros

    I am having three select queries with union below: select col1, col2 from table1 where condition; -> fetches 1 record union select col1, col2 from table2 where condition; -> fetches no row union select col1, col2 from table3 where condition; -> fetch

  • System preference 32 bits??

    Hi, Sorry for my english, I'm spanish. I have a "problem" with system preference. Since I've installed Snow Leopard the system preference ran in 64 bits mode, but now I don't know why always run in 32 bits. Could you help me please? PD:I tried to boo