Once again problems with Adobe DPS

Had several problems in the past to "log in" with the Folio Builder. After A LOT OF INSTALLATIONS it finally worked well.
But now I wasn't even able to open the Folio Builder panel or the Overlay Creator Panel. Nothing happens if I choose it in the menu..
Consequently I installed the new Update:
1. The Digital Publishing Tools
2. the separate Folio Builder panel
Unfortunately it still didn't work.
Installed the whole thing again. Does not work. Can't open the panels.
As you can see in the screenshot, the Folio Builder panel is called "%MENU_NAME" in the menu. HMMMMMM......??????
ANYONE HAS THIS BUG TOO? HAS ANYBODY A SOLUTION?
I have a very strong timeline to finish a presentation for the iPad...

You need to install the producer tools first, then folio builder. If you dont you get the error you are seeing.
Lots of people have had this problem, but it is easily rectified, if you uninstall and then re-install the correct way.
Hope that helps
Alistair

Similar Messages

  • Once Again, Problems with PDF Output in 3.0

    Sorry that i write another thread to this topic. i think i ´ve read all other posts (and oracle documents from oracle) but i can´t find the answer to my problem
    there a two things i wondering about:
    first: What is the right port (and how can i prove it, which one is used?)
    Some write use 8888 , some use the listener Port 1521 ???
    second: after copying the fop directory, do i have to use
    oc4j -install ?
    Bonus Questions :-)
    I always get 0 length pdf documents. Is there a logfile, where i can look in?
    At my first try i put the 3 lines at the of the file application.xml, but i got an error
    now i use this :
    <library path="../../../j2ee/fop-0.20.5/build/fop.jar"/>
    <library path="../../../j2ee/fop-0.20.5/lib/batik.jar"/>
    <library path="../../../j2ee/fop-0.20.5/lib/avalon-framework-cvs-20020806.jar" />
    </orion-application>#
    Is this the right position?
    Thanks
    marco

    Hi Marco,
    First: What is the right port (and how can i prove it, which one is used?)In your OC4J configuration there will be a line which specifies which port should be used. To check which port it is try doing this -
    [jes@db j2ee]$ grep "port=" home/config/http-web-site.xml
    <web-site host="localhost" port="8888"
    <web-site port="8888" display-name="Oracle9iAS Containers for J2EE HTTP Web Site">
        <!-- <frontend host="your_host_name" port="80" /> -->I ran that command whilst in the j2ee directory, you can see the output I got (3 lines), so in my case it is running on port 8888 (the third line is actually commented out).
    To check if the port is actually listening, try this -
    [root@db root]# lsof -i:8888
    COMMAND  PID USER   FD   TYPE  DEVICE SIZE NODE NAME
    java    9047 root   14u  IPv4 5133190       TCP *:8888 (LISTEN)
    java    9048 root   14u  IPv4 5133190       TCP *:8888 (LISTEN)
    java    9049 root   14u  IPv4 5133190       TCP *:8888 (LISTEN)
    java    9050 root   14u  IPv4 5133190       TCP *:8888 (LISTEN)
    java    9051 root   14u  IPv4 5133190       TCP *:8888 (LISTEN)
    java    9052 root   14u  IPv4 5133190       TCP *:8888 (LISTEN)
    java    9053 root   14u  IPv4 5133190       TCP *:8888 (LISTEN)
    java    9054 root   14u  IPv4 5133190       TCP *:8888 (LISTEN)
    java    9055 root   14u  IPv4 5133190       TCP *:8888 (LISTEN)
    java    9057 root   14u  IPv4 5133190       TCP *:8888 (LISTEN)
    java    9058 root   14u  IPv4 5133190       TCP *:8888 (LISTEN)
    java    9060 root   14u  IPv4 5133190       TCP *:8888 (LISTEN)
    java    9061 root   14u  IPv4 5133190       TCP *:8888 (LISTEN)
    second: after copying the fop directory, do i have to use
    oc4j -install ?No, when you run OC4J it should automatically setup the files for you, you can start the OC4J container by doing this -
    [root@db home]# $ORACLE_HOME/jdk/bin/java -jar oc4j.jar
    07/03/29 07:05:43 Oracle Application Server Containers for J2EE 10g (9.0.4.0.0) initializedYou can change the path to the java command to suit your own installation.
    Is this the right position?This is what my application.xml looks like -
    [root@db config]# more application.xml
    <?xml version="1.0" standalone="yes"?>
    <!DOCTYPE orion-application PUBLIC "-//Evermind//DTD J2EE Application runtime 1.2//EN" "http://xmlns.oracle.com/ias/dtds/orion-application-9_04.dtd">
    <!-- The global application config that is the parent of all the other
            applications in this server. -->
    <orion-application autocreate-tables="true" default-data-source="jdbc/OracleDS">
        <web-module id="defaultWebApp" path="../../home/default-web-app"/>
        <web-module id="dms0" path="../../home/applications/dms0.war"/>
        <web-module id="dms" path="../../home/applications/dms.war"/>
        <commit-coordinator>
            <commit-class class="com.evermind.server.OracleTwoPhaseCommitDriver"/>
            <property name="datasource" value="jdbc/OracleDS"/>
            <!-- Username and password are the optional properties
               replace with your commit_co-ordinator_super_user
                 <property name="username"
                                   value="system" />
                 <property name="password"
                                   value="->£$@£@£$!£" />
      -->
        </commit-coordinator>
        <persistence path="../persistence"/>
        <!-- Path to the libraries that are installed on this server.
         These will accesible for the servlets, EJBs etc -->
        <library path="../applib"/>
        <library path="../../../sqlj/lib"/>
        <library path="../../../rdbms/jlib/xsu12.jar"/>
        <library path="../../../lib/dsv2.jar"/>
        <!-- Path to the taglib directory that is shared
             among different applications. -->
        <library path="../jsp/lib/taglib"/>
        <!-- Comment out the jazn element to use principals.
        When both jazn and principals are present jazn is used  -->
        <!-- libraries below added for FOP support -->
    <library path="../../../j2ee/fop-0.20.5/build/fop.jar"/>
    <library path="../../../j2ee/fop-0.20.5/lib/batik.jar"/>
    <library path="../../../j2ee/fop-0.20.5/lib/avalon-framework-cvs-20020806.jar" />
    <!-- above libraries added for FOP support -->
        <principals path="./principals.xml"/>
        <log>
            <file path="../log/global-application.log"/>
        </log>
        <jazn provider="XML" location="./jazn-data.xml"/>
        <data-sources path="data-sources.xml"/>
        <connectors path="./oc4j-connectors.xml"/>
        <namespace-access>
            <read-access>
                <namespace-resource root="">
                    <security-role-mapping>
                        <group name="administrators"/>
                    </security-role-mapping>
                </namespace-resource>
            </read-access>
            <write-access>
                <namespace-resource root="">
                    <security-role-mapping>
                        <group name="administrators"/>
                    </security-role-mapping>
                </namespace-resource>
            </write-access>
        </namespace-access>
    </orion-application>Hope this helps
    John.

  • Once again, problems with my Jukebo

    Well. I bought my jukebox 2, and I had loads of problems setting it up. In the end, after downlaoding loads of various stff, I had to give up on using the installation CD, and we discovered that if I simply clicked on a file and clicked send to, it came up with my jukebox and I could put files on it that way. However, we've since reformatted the computer, and it does not come up with that option anymore, so now I have absolutely no idea how to get files on my player. Anyone got any ideas?

    I believe the Send To is part of Nomad Explorer, so make sure you install that.

  • Once again problems with Netscape 4

    Hi,
    I have an jsp with a form inside. The form request is handled by a servlet.
    But when running the jsp from Netscape4, there are no parameters sent with the request object. Why is this?
    With the Internet Explorer I have no problems. The parameters are accesible without problems from the request object.
    Has anyone an idea???

    It seems that there is some error with your HTML (Check it thoroughly for example for missing </form> tags,etc , etc . IE is correcting them automatically but netscape is not.
    This has nothing to do with JSP
    Shubhrajit

  • "there is a problem with adobe acrobat/reader. if it is running please exit and try again. (523.523)

    We are getting the following error "there is a problem with adobe acrobat/reader. if it is running please exit and try again. (523.523)" and a gray screen appears (Image not viewable) with multiple users. We are using Adobe Reader XI (11.0.05) and (11.0.06). The current workaround is to log off the website and log back in. Once the user logs back in, the pdf will appear. However it occurs anywhere from 2-8 times in a day. Anyone else having this issue or know of another workaround? Any suggestion with how to fix? Please help!!

    Hi Valerie,
    Please let me know the version of Adobe Acrobat/Reader & operating system installed on your computer?
    Also, try this:-
    Launch Adobe Reader/Acrobat.
    From the menu, choose Edit -> preferences -> General
    Uncheck the option for "Enable Protected Mode at startup"
    Restart the Adobe Reader and web browser.
    Regards,
    Aadesh

  • There is a problem with Adobe Acrobat/Reader. Please exit Adobe Acrobat/Reader and try again.

    We have Adobe Reader 8.1.3 set to open in the browser.
    We are trying to open PDF files within IE Browser. While opening multiple documents in the IE Browser, we get "There is a problem with Adobe Acrobat/Reader. Please exit Adobe Acrobat/Reader and try again." error, once we click on the "OK" button, PDF file opens in the Adobe reader. This happens randomly while some files open up in IE Browser and some files get the above mentioned error message and open in the Adobe Reader.
    We need to open all the PDF files in the IE Browser. Any input is greatly appreciated.

    I may be better off without the tool bar, but I have found anohter solution;
    .  Open Adobe Reader,
                go to edit menu,
                under Preferences
                go to Internet, uncheck "Display pdf in browser"
    The pdf files then open, but not in the browser

  • There is a problem with adobe acrobat reader please exit adobe acrobat reader and try again 101:101

    I'm trying to access some web PDF files via SharePoint Application but i got this error message "there is a problem with adobe acrobat reader please exit adobe acrobat reader and try again 101:101"
    my operating system is Win 7 and I'm using Adobe Acrobat Pro 11.0

    I'm having the same problem. Only I have Windows XP and at the end of the error message it shows 103.103. Please let me know if and when you get an answer or remedy to this problem. Thanks!

  • YOUR Message "There is a problem with Adobe Acrobat/Reader. If it is running, please exit and try again. (0:104)" keeps occuring when trying to read.

    YOUR Message "There is a problem with Adobe Acrobat/Reader. If it is running, please exit and try again. (0:104)" keeps occuring when trying to read.

    Hi tanjam38435898,
    Please refer this thread Links as it seems relevant to your query : Re: Error Code 0:104
    hope that helps
    Regards,
    Rahul

  • There is a Problem with Adobe Acrobat/Reader. If it is running, please exit and try again (1014:101

    Hi
    I have this problem with Adobe Reader 11.0.01. It displays this message "There is a Problem with Adobe Acrobat/Reader. If it is running, please exit and try again (1014:1014). This is in Internet explorer when attempting to open Reader links.
    This is on a Windows XP SP3 machine.
    Please help me find a solution for this?

    Try the Acrobat and Reader Cleaner tool. Then re-install.
    http://labs.adobe.com/downloads/acrobatcleaner.html

  • I get an error window that says There is a problem with adobe acrobat reader if it is running please exit and try again. Alittle help here PLEASE!!

    Can any one help me with this problem??

    Hi garryw,
    What version of Reader are you using, and are you on Mac OS or Windows? Do you get the same error when you try to print other PDF files, or is the problem specific to one PDF?
    For starters, please try the solutions listed in this thread: Re: There is a problem with Adobe Acrobat /Reader. If it is running ,please exit and try again.(0:104)
    Let us know how it goes.
    Best,
    Sara

  • There is a problem with Adobe Acrobat/Reader. If it is running, please exit and try again. (0:104)

    There is a problem with Adobe Acrobat/Reader. If it is running, please exit and try again. (0:104)
    I keep getting that message when I try to open a PDF link from a webpage. When I open the Windows Task Manager under the Applications tab I do not see Adobe Acrobat/Reader listed at all.
    How do I fix this problem?

    I may as well answer my own question.
    After typing "patch" and reading a few threads I found out how to fix it.
    http://forums.adobe.com/message/4541936#4541936

  • There is a problem with Adobe Acrobat/Reader. If it is running please exit and try again. (0:521)

    There is a problem with Adobe Acrobat/Reader. If it is running please exit and try again. (0:521)
    Although I have found other threads in this forum relating to this error - none of the fixes appear to work. I've not found precisely the same error number (0:521), might I need a different fix for this? Has anyone else had the same error?
    Just to note, this appears to be an issue with Internet Explorer 8 on Windows 7 while viewing pdfs 'in-browser' i.e. using the plugin. Other versions of IE on other machines and FF on the same machine work fine on the same pdfs. It also works if you right click the pdf, download and view it in Acrobat Reader 'locally'.
    Any help greatly appreciated, I'm stumped.

    We were getting the same error on a Win 7 machine which had Acrobat 7 (running in compatability mode) and Reader X installed.  When the user was trying to open the link from an email the error 'There is a problem with Adobe Acrobat.....(0:521) would appear and the pdf would not load.
    Investigating the problem I can across an article to uncheck the option "Display PDF in browser" (in the application choose Edit -> Preferences -> Internet).  Undertaking this procedure in Acrobat Reader X however, I could not uncheck this and the path the app was showing was for Acrobat 7!?!
    Therefore, opened Acrobat 7 and undertook the same procedure.  Unchecked the "Display PDF in browser" (in the application choose Edit -> Preferences -> Internet) which I was able to do, saved and closed the application.
    Rechecked Acrobat X and the "Display PDF in browser" could be deselected and the path was now for ..\Reader 10.0\Reader\AcroRd32.exe
    Retried the original email with the link to the pdf and it now opens without error.
    Not too sure if this will help but just thought I would share.

  • Error: there is a problem with Adobe Acrobat/Reader   If it is running, please exit and try again.

    I keep getting this message when trying to open a file.
    Error: there is a problem with Adobe Acrobat/Reader   If it is running, please exit and try again.

    I have the same problem also but solved with the solution from http://www.brain-cluster.com/blog/orange/2011/03/06/there-problem-adobe-acrobatreader-if-it-running-please-exit-and-try-again

  • There is a problem with Adobe Acrobat/Reader. If it is running, please exit and try again. (4:4)

    Trying to open a streamed PDF in an IFRAME in Internet Explorer 9 on my Win7 64bit machine.
    This results in the following dialog:
    There is a problem with Adobe Acrobat/Reader. If it is running, please exit and try again. (4:4)
    The PDF is streamed (not read from disc) from a servlet in our Java WebSphere environment and the call looks like this:
    https://intranetserver.com/myapplication/OpenDocumentServlet.pdf?documentToOpenID=1
    The Servlet sets content-type header application/pdf and content-length and writes the bytes to the buffer.
    Does the error dialog even come from Acrobat? When the dialog opens there is no active AcrReader process visible in task manager.
    Please advise!
    Meddelandet redigerades av: p b
    Solved. Our IT dept. responsible for packaging and deployment repacked and redeployed 11.0.9. Unknown what changes were made to make it work.

    I don't know what acrofix.exe is; can you explain?
    Issue
    Nothing happens when you launch Acrobat 30 days after installing a CS6 suite.
    Solutions
    Important: Perform the solutions below in order. Do not continue further if an earlier solution resolves the problem.
    Solution1: Install the patch for Acrobat installed as part of a CS6 (Windows Only)
    1.   Log in to your Windows computer as an Administrator.
    2.   Click the following link to download the patch file:
    Acrofix.zip
    3.   When prompted "Do you want to open or save this file?,” click Open.
    4.   Extract the file. The location varies depending on your operating system and the utility.
    5.   Double-click the extracted Acrofix.exe to begin the execution.
    6.   If the execution is successful, Command Prompt closes automatically.
    7.   When the execution is complete, launch Acrobat.
    or
    Solution2: Install the patch for Acrobat installed as part of a CS6 using Command Prompt (Windows Only)
    1. Run the Command Prompt as an Administrator.
    2. Navigate to the location of the extracted hot fix in Solution 1 (Step 4).
    3. Type Acrofix.exe to execute it.
    4. If the execution is successful, Command Prompt shows Exit Code:0
    5. When the execution is complete, launch Acrobat.
    Solution 3: Reactivate Acrobat through another Suite product
    I will try your cleaner, thanks
    [private data removed]

  • I keep getting "There's a problem with Adobe Acrobat, please try again" pop-up messages.

    I keep getting pop up's that say "There's a problem with Adobe Acrobat, please try again". I'm trying to work and can't open any .pdf files. I bought the conversion service yesterday and today today nothing works.
    Help!

    Hi Karen,
    The error message you mentioned doesn't have anything to do with ExportPDF as Acrobat and ExportPDF aren't connected in any way.
    Could you try the steps outlined in our Getting Started guide: http://forums.adobe.com/docs/DOC-2412
    Let us know how it goes.
    -David

Maybe you are looking for

  • Any way to get frame accurate in icon view mode?

    Does anyone know if there is a way set frame accurate in points in icon view mode?  I know that if you are "hover scrubbing" a clip, and then click on it you can use the JKL keys to shuttle through the footage.  But is there any way to go frame-by-fr

  • Jabber for windows login issue

    Issue is when the users launch the Jabber client it opens up with the Default page for entering the Server Details as if it was 1st time login. This is happenng evrytime for every user. Please Help !

  • Error when displaying amount field in HTMLB Tableview

    Hi all,    I am displaying some 'X' table in HTMLB Tableview and it has one amount field.But reference(currency) field of that amount field is in other table . I know it gives the error. Please tell me there is any other way to resolve this problem w

  • Whitelist in Reader X doesn't work

    Hello everyone, Anybody can help me figure out this? I have a plug-in which will call functions in a DLL to invoke 3rd-party application's UI. It works in Reader 9.0, none-protect mode in Reader X. But it doesn't work in protect mode in Reader X. (He

  • Issue while changing validity date for assigned roles: SAP IDM 7.2 SP8

    Hello Experts I assigned the Task on repository for validity modification for Roles as in below screenshot: When I modify the role validity, Task defined for Validity modification doesnt get triggered and IDM executes the tasks defined as Modify Task