help with robohelp server

Hello

I don't know it was user error, but... I'm evaluating Adobe Technical Communications t (which I never used before) because we want to publish help files on a web site with an existing application running in a .net environment. I looked everywhere but could not find documentation that says:

1. do I or do I not need RoboHelp Server (I think so, but I would like to see why writing)
2. the actual process of publishing on the Web

Can anyone help direct me to where this documentation can be?

Thank you

zjillian

Hey zjillian and welcome to the forums!
In the case to explain, I do not think you need the RoboHelp Server * necessarily *. It is optional and depends on whether you want to use the functionality provided by the server. You can read this article which explains more on the server.

http://www.Adobe.com/devnet/RoboHelp/articles/rhserver.html

If you don't need these features, then publish as simple "WebHelp" to support a .NET application would be nice. Or the other method may use the .NET API (also optional) which is included free of charge with RoboHelp along this path on your computer.
C:\Program Files\Adobe\RoboHelp 7.0\CSH API\RoboHelp .NET

The actual process of publish depends on your particular destination and method. For example, they are sent by FTP to a web server directly, or placing them on a LAN drive part where the web administrator can pick them up and drop on the web server.

Check out these two sections of online help for more details. To access paste these two topics in the online help search box.

Dialog publish WebHelp

New Destination dialog box

Thanx
John

Tags: Adobe

Similar Questions

  • Help with VC server and disk space

    We run our virtual Center as a virtual machine. It has a 90 GB virtual disk. I know that this is probably not advisable, but it was setup before coming. Disk is running out of space (3 GB remaining). I was wondering where all space is getting pulled to the top. I also wonder what to do next. I thought about simply expanding the drive as 150 GB. But I think that it is not recommended.

    Can someone recommend me a few options on what to do. I would like to do things and not to have any downtime.

    Thank you.

    If your database is local SQL (looks), and is 2.x and complete his recovery mode for SQL, you have probably some large translogs and you might also have a lot of data that has piled up over time in the database that could be purged.

    Browse the system files first, as you would with any other server, and find out what is using the space.   On the domestic ass that your database is in mode local recovery, full and the database is old for a few years and little or no maintenance has been done, this knockout can help http://kb.vmware.com/selfservice/microsites/search.do?cmd=displayKC&docType=kc&externalId=1003980&sliceId=1&docTypeID=DT_KB_1_1&dialogID=9840420&stateId=0%200%2011555726

    If this isn't the PB or if these conditions do not apply, and if all goes well a search through the file system will lead you in the right direction.

  • Help with Windows server 2008 Enterprise Edition

    Issue 01

    I have problems with plug a USB in my server it says found new device, but when I click on the little icon sometimes as an unknown device on the computer and it happens for each USB device y at - it a reason for this and is there a way to fix it I tried to re install windows, but doe some reason my computer doesn't start from the dvd :(
    Issue 02
    When I tried to install 2 hard disks that are dynamic disks it won't let not mt assigned disk numbers or anything that he says only: file not found
    How can I fix that if possible

    Support is located in the Windows Server Forums:
    http://social.technet.Microsoft.com/forums/en-us/category/WindowsServer/

  • need help with SQL Server 2008 R2 deadlock uninstall process

    I installed SQL Server 2008 R2 trial version on my PC running Windows Vista Ultimate, a day ago, but he placed himself completely in the disk partition (E :) that I specified. [i.e. I found some parts of the installation in my C:\program files as well as a USB as well].

    I tried to uninstall SQL Server 2008 R2, but was only partially successful.  I'm prevented from uninsalling the main parts using the programs and features Panel - that is "Microsoft SQL Server 2008 R2" and "Microsoft SQL Server 2008 R2 Setup (in English).

    Still visible are:

    1 C:\Program Files (x 86) \Microsoft SQL Server

    2 C:\Program Files (x 86) \Microsoft Visual Studio 9.0

    3 C:\ProgramData\Microsoft\Windows\Start demarrer\programmes\microsoft SQL Server 2008 R2

    I would like your help to uninstall the other goals of SQL Server, so that I can do a clean install once more.

    Any advice on how SQL Server 2008 R2 evaluation version must be correctly installed what a future unistall is not messy, would be welcome.

    Hello

    Your question of Windows 7 is more complex than what is generally answered in the Microsoft Answers forums. It is better suited for the SQL Server forums. Please post your question in the SQL Server forums.

    http://social.msdn.Microsoft.com/forums/en/category/SQLServer

  • Help with apex.server.process

    Hello

    I try to use the new function apex.server.process for and I seem to have some problems with it. The appeal itself seems to work very well as firebug it returns what to expect. It's just that I return the json string to an object, and this is what causes the problem.

    Here is my application process:

    DECLARE
    
      lv_json             VARCHAR2(4000 CHAR);
      lv_score            NUMBER(12);
    
    BEGIN
    
        --Will get the score from the database...
        lv_score := round(fm_apex.events_api.get_percent_complete(:P40_EVENT_ID,'TOTAL'));
        
        IF lv_score = 100 THEN
          lv_json := '{"success":true}';
        ELSE
          lv_json := '{"success":false}';
        END IF;
        
        htp.p(lv_json);
        
    END;
    

    And this is my javascript function:

    function checkScore(pThis) 
    {
        var getScore = apex.server.process(
            'IS_SCORE_COMPLETE_JSON',
            {
                pageItems: "#P40_EVENT_ID"
            }
        );
        
        if ( eval(getScore.success) )  {
            alert('This is successful');
            //doSubmit(pThis.id);        
        } else {
            openModal('notScoredFully');
        }
            
    };
    

    It is done when the answer is {'success': false} and Firebug, it is it was still evaluating true? Everyone can see what I'm doing wrong?

    See you soon,.

    Paul.

    1 / apex.server.process is asynchronous. You manage it as if it is not. You initiate the call and he went, in contrast to htmldb_get that works synchronously (= makes the browser to wait for return). You must use the function of success.

    Apex.Server.process JavaScript APIs

    The return value of the call to server.process is an object jqXHR, documentation on which you can find here: jQuery.Ajax | jQuery API Documentation

    I would just use same success if, as shown in the example in the documentation.

    apex.server.process ( "MY_PROCESS", {
      x01: "test",
      pageItems: "#P1_DEPTNO,#P1_EMPNO"
      }, {
    success: function( pData ) { ... do something here ... }
      } );
    

    So something along these lines:

    apex.server.process(   'IS_SCORE_COMPLETE_JSON'
                         , { pageItems: "#P40_EVENT_ID" }
                         , { success: function( pData ) {
                                        if(pData.success){
                                          alert('This is successful');
                                        } else {
                                          alert('This is NOT successful');
                                        }
                                      }
                           }
    );
    

    2 / default apex.server.process manages the return as a json data type value. It would be pointless to 'eval', he.

  • I need help with RoboHelp 10 conditional compilation tag option

    I need assistance with the option of conditional compilation tag. I want to apply CBT to the contents of a field. I looked at the help topics and believes that I applied the function correctly. However, it does not work as you wish. In the 2nd sentence below, I want the text highlighted in blue to appear only to the printed output and printed in purple text to appear only to the .htm / output online. Help, please.

    There are common tasks for managing files and folders in the browser

    in the grid of BBS files viewer. For more information on these common tasks see help

    and support in the successful business. click on the links below.

    Hello

    With the help of marking is a two part process.

    First part

    You create and apply tags for the information you want to order.

    Second part

    You create a create an Expression that is used when you generate your output. The Expression of build usually reads something like: NO Tag1 (or whatever the name of your tag)

    Then when generate you and use the Expression to build, the information containing the tag is not included in the build.

    See you soon... Rick

  • Need help with Windows Server Essentials 2012 R2

    So I set up a server and I had a client computer to connect to the server without problem. I can disconnect and different users access to different folders on entry-level servers. On the following client computer, I did the same steps, but now, when that I log out, I can't change what users, I use on the server, only the one that I used when I first booted the computer. The client computer runs Windows 7 Home Premium. Any suggestions would be nice.

    This issue is beyond the scope of this site and must be placed on Technet or MSDN

    http://social.technet.Microsoft.com/forums/en-us/home

    http://social.msdn.Microsoft.com/forums/en-us/home

  • I need help with my server...

    Hello everyone out there! Can someone help me please?
    I have a PowerEdge SC1420, who currently runs on Ubuntu only. Now I want to install Windows XP on it, but I can't do it.
    It is said that the hard drive cannot be detected. And btw I can not connect to Ubuntu as well because nobody around knows the password.
    Thanks in advance! :)

    There are ways to reset the password under Ubuntu... you have to Google a bit (or post to a forum Ubuntu/linux) to find.

    XP needs the driver for the storage controller - that's why it does not detect the drives.  What controller do you have?  How many discs?  RAID?

  • Help with test server - Wampserver

    Hello

    I've just upgraded to Dreamweaver CC in Dreamweaver 8.  On attepmting to open a php page, Dreamweaver says I need to have a test server.  This is something that has confused kind of me, so I avoided to do.  Well, now I'm trying to set up a test server.  I'm learning!

    All my sites web design are kept in a file on my D drive, here:

    D:\Documents\local_sites

    I understand that although Wampserver wants to put me all my Web site files in:

    C:\wamp64\www

    I don't understand.  Why should I move all my files?  I want that they kept in my documents!  I don't want to move my files on the drive where are my programs.  I want that they kept on my data disc!      What should I do?


    Can someone explain this to me?

    You can keep them where they are and push the duplicates on your local server. New versions of DW will do this automatically backup the.

    Personally, I keep all of my PHP sites in the server itself to avoid the nonsense of duplication.

  • CHM compatibility with Windows Server 2003

    I just finished creating the first version of a help with RoboHelp HTML CHM file, and it works fine on the machine, I used to write, as well as several others. When I tried the consultation on our production machine, running Windows Server 2003, I received the good Table of contents and Index, but all pages display the error "cannot display Page"standard. Right click on the page and selecting Properties said it had res://ieframe.dll/dnserrordiagoff_webOC.htm.

    I checked the specifications of RoboHelp, and indeed, the standard version of RoboHelp is not compatible with Windows Server 2003. However, I had assumed that this meant that I couldn't run the program on a Windows Server 2003-based computer, not that I couldn't run to the exit.

    This error is caused by a compatibility problem? It would help to upgrade to Server edition, or resign myself to use separate HTML files? Or is it another problem?

    Hi, Sydney, and welcome to the forum,

    The problem you described usually occurs when you view the contents of a file .chm remotely over a network and are due to security restrictions that Microsoft introduced in 2005. See this article for more information and workarounds:

    http://www.Grainge.org/pages/authoring/chm_mspatch/896358.htm

    So the solution is either to move files .chm on a local drive or to implement the registry changes that are described in the article (on your local computer and not on the Windows 2003 Server). The best way to make these registry changes is to use the free HHReg utility, which is available here:

    http://www.EC-software.com/products_hhreg.html

    To answer your question, however, I do not think that there is a difference between Windows Server 2003 and other versions of Windows as .chm files are concerned.

    Pete

  • RoboHelp Server 6 and MySQL

    Is it possible to use a compatible ODBC database with RoboHelp Server 6, such as MySQL? This will affect our decision to upgrade or switch to a new solution.

    Thank you
    Sean

    Bobby,

    Thanks for the reply. Exactly what I was looking for.

    Sean

  • Production of help 2 RoboHelp

    We use RoboHelp HTML for quite awhile, but now the applications that we document are being brought to Visual Studio, and we must be able to produce 2 help. I know it is possible to use the FAR, or to take our Doc-To-Help .xpj and empty 2 help DBS, but rather, would stick us with RoboHelp. Does anyone know if Adobe has plans to support the ability to produce 2 help with RoboHelp? Thank you.

    Hi again

    It is a strange coincidence. Your message here arrived about five minutes after that a nearly identical post was made to HATT.

    If you really want to gain the ear of Adobe, you must use the form would like to suggest this.

    Click here to view the WishForm/Bug report form

    See you soon... Rick

  • Webhelp created with RoboHelp HTML installed on Linux server crashes when view with Firefox

    We have just started using the Adobe Technical Communication Suite to a single source our documentation and have worked on most of the kinks, except for a sticking point in the Webhelp generated with RoboHelp. We need our help system to work with IE and Firefox. When aid is run locally on a Windows machine, IE and Firefox work fine.

    When help is installed on our Linux-based server, the help of opening causes Firefox hang unless Firefox is configured to use Unicode encoding. Unfortunately, the Firefox default is Western Europe. We do not control the environments of our customers, and we can not just to document this problem because FireFox users will not be able to open the help system more about the fix.

    During the investigation of this problem, we discovered that RoboHelp is insert a blank line at the beginning of each HTML file. This blank line is innocuous in IE and in Firefox when the help is installed locally, but when help is installed on a Linux server, the empty line causes Firefox to hang unless the Unicode encoding is selected. It seems that under Linux, the empty line is converted to 3 characters corrupt, that can be seen if you look at the source code.

    It is a showstopper for us, unless a workaround can be found. My questions are:

    (1) is this a known problem?
    (2) is it possible for RoboHelp to eliminate blank lines?
    (3) is there a way to force FireFox to use Unicoding encoding for our help system (for example, by changing our CSS file)?

    Thank you!

    Welcome to the forum.

    A bit beyond me, but I wonder if article 22 on this page of my website help.

    http://www.Grainge.org/pages/authoring/RH7/using_rh7.htm

    The reference to 3 corrupt characters, is what prompted me to think about it.

  • Try to download on our FTP Muse site recognizes the following FTP screen then stands up and says... "Unable to validate the specified domain that is associated with the server FTP. Still? "FYI, until I update to the 2014 version it worked fine. Pl help

    Try to download on our FTP site

    Muse recognizes the FTP

    Then the next screen appears and says...

    "Unable to validate the specified domain that is associated with the server FTP. Still? »

    FYI, before I update to version 2014 there worked well.

    Help please. Thank you. Chuck

    OK, I spent about 2 hours on the phone with the support guys Muse and here's what finally worked...

    When the second screen, enter ftp, your domain.com NOT www.yourdomain.com

    then put the name of next folder as usual.

    Why it works that way...? who knows... but it works.

    I would like to know how you do them.

    Chuck

  • I need help with this error on VMware Server 2

    Hello world!  I'm new to using this site, but not to a large part by using VMware, VMware Server software. I have worked with it for 1.0.5 version. I have a Dell 2950 PowerEdge Server with Red Hat 5.2 and VMware Server 2. I installed 3 virtual machines and I made a backup of any of it. I copied this entire virtual machine to another computer (Dell Optiplex 755) with the same Red Hat 5.2 and VMware Server 2 and I added the virtual machine properly in the inventory of machines with VMWare Server 2 recognized the very fast machine. But when I press Play to start the virtual machine I got the error that appears on the image and I don't know what can be the problem.

    Can someone help me please?

    Thank you very much!

    William Anderson

    It looks like may have copied the files when the virtual machine is not correctly - stop search *.lck files/folders in the destination folder and delete them. Also, make sure that the account running the VMware process has permissions to write to the files/folders.

    ---

    If you have found this device or any other answer useful please consider the use of buttons useful or Correct to award points.

Maybe you are looking for

  • How to install Win7 on Satellite C870-190?

    Hi, I hope I'm posting in the category right forum then... My laptop is Toshiba Satellite C870-190 and it doesn t want to start my windows 7 CD.I tried first with the DEL-button that opened the system startup when I start Notepad and then choose the

  • Running windows XP and failed several times to download KB970892__Help

    Download - SQL Server 2005 SP3 KB970892

  • Any way to show the menu rear element?

    I'm just packing a mobile web link in a Tablet app. So, basically, the application displays the URL of web page set in the config.xml file. I want to add the menu item of Web as a back and next button, someone knows how to do? Anyway I could write so

  • Help! Win 7 not to download pictures from an SD card

    Hi everyone: Win 7 displays all but one twenty pictures on sd card of my cell phone. I have been on this site for about an hour but could not find an answer. Can anyone help? Thank you...

  • Zoho CRM in Adobe Muse web form integration

    Hello worldI am trying to integrate the web form that comes with Zoho CRM inside the Muse page, but does not work: I mean the browser does not display the form, but just a bunch of text without the entry fields. The form works fine if you create an h