Cannot open the PDF in Chrome, impossible to open the standalone player, cannot accept the EULA, etc..

I use a Mac.

I try to open a PDF in Chrome - I open it fine in Adobe Reader if I download it. When I open it in Chrome, I get the message I have to accept the EULA and revive to open the PDF in Chrome.

I reinstalled Adobe, restarted Chrome and it works fine in Safari.

When I go to the applications folder and try to open Adobe Reader (which is different from opening a PDF file I recorded on my Mac). The menu bar appears but is not the "Adobe" "empty" file - nothing happens but the menu bar.

I searched all the stinking forums and nothing seems to work. It seems to be a persistent problem dealing with simple workarounds.

For example, I tried: Version of Adobe Reader X 10.1.3 - cannot open a PDF in the browser... - does not work

How can I get Reader to open on its own and accept the EULA?

First remove the following files:

(i) adobe Reader of / application

(II) in the folder/Library/Internet Plug - Ins:

(1) AdobePDFViewer.plugin

(2) AdobePDFViewerNPAPI.plugin

(III) from ~/Library/Caches

(1) com.adobe. *.

Now reinstall Adobe Reader. And launch the reader Application. Here come the EULA. Accept that and now you will be able to open PDFS in Safari.

Chrome is a browser not supported for Reader/Acrobat. You can check this in the Adobe release notes.

http://www.Adobe.com/devnet-docs/acrobatetk/tools/releasenotes/index.html

Hope this will help you.

Tags: Acrobat

Similar Questions

  • How a Web site can be opened using Adobe PDF Script chrome?

    How a Web site can be opened using Adobe PDF Script chrome?

    An Internet Explorer site can be opened with: app.launchURL ("the Web site name", true);

    You can't decide which browser will be used. This is a setting of the machine where the file is opened.

  • My code servlet JasperViewer report mode more download it in pdf in chrome. How to modify this code it gives only the view in JasperViewr?

    Mr President.

    My servlet code does two things

    1 see the report in JasperViewer

    2. it download it in pdf in chrome.

    How to modify this code it gives only the view in JasperViewr?

    My code is

    package esh.view;
    
    
    import esh.model.AppModuleImpl;
    
    
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.PrintWriter;
    
    
    import java.sql.Connection;
    import java.sql.PreparedStatement;
    import java.sql.SQLException;
    
    
    import java.util.HashMap;
    import java.util.Locale;
    import java.util.Map;
    
    
    import javax.servlet.ServletConfig;
    import javax.servlet.ServletException;
    import javax.servlet.annotation.WebServlet;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    
    
    import net.sf.jasperreports.engine.JasperCompileManager;
    import net.sf.jasperreports.engine.JasperExportManager;
    import net.sf.jasperreports.engine.JasperFillManager;
    import net.sf.jasperreports.engine.JasperPrint;
    import net.sf.jasperreports.engine.JasperReport;
    import net.sf.jasperreports.engine.design.JasperDesign;
    import net.sf.jasperreports.engine.xml.JRXmlLoader;
    
    
    import net.sf.jasperreports.view.JasperViewer;
    
    
    import oracle.jbo.client.Configuration;
    
    
    @WebServlet(name = "MultiReportServletJasper", urlPatterns = { "/multireportservletjasper" })
    public class MultiReportServletJasper extends HttpServlet {
        private static final String CONTENT_TYPE = "text/html; charset=UTF-8";
    
    
        public void init(ServletConfig config) throws ServletException {
            super.init(config);
        }
    
    
        protected Connection getConnection() {
                
                PreparedStatement st = null;
                String amDef = "esh.model.AppModule";
                String config = "AppModuleLocal";
                AppModuleImpl am = (AppModuleImpl ) Configuration.createRootApplicationModule(amDef, config);
                
                st = am.getDBTransaction().createPreparedStatement("select 1 from dual", 0);
                Connection conn = null;    
            
                try {
                    conn = st.getConnection();
                    return conn;
                } catch (SQLException e) {
                }   
            
                return null;
            }
    
    
        public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
            String var0 = "";  
            String reportName = "";  
            try {  
                 reportName = request.getParameter("reportName");  
                } catch (Exception e) {  
                        e.printStackTrace();  
                       }  
                 response.setContentType(CONTENT_TYPE);  
                 Map parameters = new HashMap();  
                 parameters.put("format", "pdf");  
                 parameters.put("WEBDIR", getServletContext().getRealPath("/"));  
                 parameters.put("REPORT_LOCALE", new Locale("ar"));                             
                                                                                            
                 Connection conn = null;  
                 InputStream is = null;  
            try  
                {  
                 conn = getConnection();  
                 is = getServletContext().getResourceAsStream("/WEB-INF/reports/"+reportName+".jrxml");  
                              
                             
                 response.setContentType("application/pdf");  
                 response.addHeader("Content-Disposition", "attachment; filename="+reportName+".pdf");                                        
                 JasperDesign jasperDesign = JRXmlLoader.load(is);  
                 JasperReport jasperReport = JasperCompileManager.compileReport(jasperDesign);  
                 JasperPrint jasperPrint = JasperFillManager.fillReport(jasperReport, parameters, conn);                      
                 JasperExportManager.exportReportToPdfStream(jasperPrint, response.getOutputStream());  
                 JasperViewer.viewReport(jasperPrint,false);                                                                                
                  conn.close();  
                }  
                   catch (Exception e) {  
                         e.printStackTrace();  
                    } finally {  
                        closeConnection(conn);  
                    try {  
                           if(is !=null){  
                              is.close();  
                         }                                                             
                } catch (Exception localException1)  
                    {  
                      }  
                }                      
        }
        
        protected static void closeConnection(Connection conn) {
                try {
                    if(conn !=null){
                       conn.close();
                    }           
                } catch (Exception ex) {
                    //  System.out.println("Developer Msg : Exception in printReport1Servlet.closeConnection()");
                }
            }
        
        
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    

    Concerning

    Change: response.addHeader ("Content-Disposition", "attachment; filename = "reportName +".pdf");"

    To: response.addHeader ("Content-Disposition", "inline; filename = "reportName +".pdf");"

    Browser first tries to show the PDF, and if no pdf reader is available, you will get the download dialog box.

    (and remove JasperViewer.viewReport (jasperPrint, false);  )

    Dario

  • The WCChromeExtn file does not exist in the Acrobat folder, so that I can't use the extension of the conversion of PDF in Chrome.

    I installed Acrobat Pro 11.0.10. The WCChromeExtn file does not exist in the Acrobat folder, so that I can't use the extension of the conversion of PDF in Chrome.

    I do not know how to find this file, but it worked after the repair! Thank you.

  • "the service cannot accept messages of control at the moment."

    Cannot download and install all files. I get this response, "the service cannot accept messages of control at the moment."

    Hi Frank St.

    What web browser do you use? This happens on a particular Web site or any web sites?

    Please provide the complete error message you receive.

    Let us know which files you are trying to download for a better understanding of the issue.

    The problem may be temporary. Wait a few minutes and then retry your operation.

    If the problem persists,

    Step 1: Run Internet Explorer in "no Add-ons" mode and test

    To determine if the error is caused by an add-on, run Internet Explorer in "no Add-ons" mode To do this, follow these steps:

    1. click Startand type Internet Explorer in the box start the search .

    2. click on Internet Explorer (No Add-ons). Internet Explorer opens without Add-ons, toolbars, or plug-ins.

    3. test Internet Explorer to verify that it works correctly. If problems occur always, try step 2

    If no error occurs, the problem is caused by one of the Add-ons that typically load with Internet Explorer. In this case, follow the steps mentioned in the link to determine which add-on is causing the problem

    Optimize internet Explorer

    http://support.Microsoft.com/kb/936213

    (See method 3-2 in the link)

    Let us know if it works

    Thank you, and in what concerns:

    Ajay K

    Microsoft Answers Support Engineer

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Error: c:/windows\system32\whatyouclickedon.msc the service cannot accept control message

    Help so confused trying to attach 1 get prob. an another system32 group policy error as no system restore and the control panel will not work correctly and sometimes logon I have no user profile

    someone please help im so confused, I got something weird, I guess that this auto downloaded on my computer do not know it showed up in my toolbar at the time and it looked like the symbol of windows firewall but wasn't it was a supposed antivirus program who wanted to buy me out well I got the blue screen a second after I saw it and my anti virus program did not I spent hours and now am Finally able to connect under normal start up instead of safe mode I think pretty well I found it, I saw an add on IE at the exact moment it happened and it turned off and was able to start fine have not seen since scanned for all after normal startup and he found nothing, but I find myself with these weird problems since this thing very happened from time to time as each start 2 ups or so on normal startup, I don't have any trash a few icons, fonts is very basic and small and it appears a message sayingsomething is wrong with the user profile and I restarted and everything comes back, but I try to get into the control panel and I can load it fine but when I try to enter the administration tools , it appears c:/windows\system32\whatyouclickedon.msc the service cannot accept control currently message I went to a Forum on here and read a similar and tried solution of type cmd at the command prompt in the search bar and he was able to load regularly but when tried run as administrator happens with the same message when I go into Control Panel as I prev said so I can't do the sfc/scannow and finally I tried to solve by doing a system restore but now it says the same message in the Control Panel, but before he kept coming because it has been disabled by group policy and when trying to get to the group policy I couldn't I'm so confused my head is spinning but I'm not completely stupid comp. don't know where to start or if all these things are a coincidence or really are related may not think about what I'm missing please help!

    You have not completely removed malware.

    Scan with this program:

    If necessary, do all the workSafe Mode with network.

     

    To get intoSafe Mode with network, press F8 at the Power On / boot and use key arrow upward to get intoSafeMode with networking from the list of options, and then press ENTER.

     

     

    Read all the information below before you start:

    http://www.Malwarebytes.org/MBAM.php

    Malwarebytes is as its name suggests, a Malware Remover!

    Download the free Version from the link above.

    Download, install, upgrade and scan once a fortnight.

    How to use Malwarebytes after installation:

    1. open Malwarebytes > click the update tab at the top > get the latest updates.

    2. on the Scanner tab, make sure that thePerform full scan option is selected and then click on theScan button to start scanning your computer

    3 MBAM will now start to scan your computer for malware. This process can take some time.

    4. when the scan is complete, a message box will appear

    5. you must click on the OK button to close the message box and continue the process of Malwareremoval.

    6. you will now be at the main scanner screen. At this point, you must click on the button toview the result .

    7. a screen showing all of the malware displayed the program that is

    8. you must now click remove selection button to remove all the listed malware. MBAM will now delete all of the files and registry keys and add them to the programs quarantine. When you remove files, MBAM may require a restart in order to eliminate some of them. If it displays a message stating that it needs to restart, please let him do. Once your computer has rebooted, and logged in, please continue with the remaining steps.

    9. when MBAM has finished remove the malware, it will open the scan log and display it in Notepad. See the log as desired, and then close the Notepad window.

    10. you can now exit the MBAM program.

    See you soon.

    Mick Murphy - Microsoft partner

  • BlackBerry cannot accept the connection via the Mobile network?

    Hi all, on Blackberry, I want to open a server socket to listen to a connection come from other devices.

    Here is my code:

    String url = "socket://:12345;deviceside=true";
    ServerSocketConnection scn = (ServerSocketConnection) Connector.open(url);
    SocketConnection sc = (SocketConnection) scn.acceptAndOpen();
    

    Mobile network on that BB is ok, but it cannot accept any connection.

    I also use its mobile phone network to connect to other servers, it works fine when it's the client socket.

    I tried with the Wifi network, and it works very well.

    String url = "socket://:12345;interface=wifi";
    ServerSocketConnection scn = (ServerSocketConnection) Connector.open(url);
    SocketConnection sc = (SocketConnection) scn.acceptAndOpen();
    

    In my view, Network Service Mobile prevented so that other devices connect to it, is it true?

    Please explain it to me, thank you very much!

    This approach only works for mobile connections, when the data are pushed to the device.  You cannot use it to connect to other phones directly.  Sorry

  • Error message "To display the contents of the Flash technology in this PDF file, please install this version of Flash Player that supports Adobe Reader and Acrobat".

    I converted MS-Outlook 2010 e-mail folder (and emails) into a PDF portfolio. When I have Adobe Reader X R-clicked, selected, I got and error message "To display the contents of the Flash technology in this PDF file, please install this version of Flash Player that supports Adobe Reader and Acrobat". I get the same msg when I try to open it with Acrobat. He worked the week last in Adobe Reader. I have the latest version of Flash Player installed. The portfolio opens when I click on < more >, but the Index is missing and I can't get to the first email. PC platform. Anyone else having this problem? If so, how to fix?

    You are running Internet Explorer by chance? If so, the Flash Player you have is NOT in need of Adobe Reader and Acrobat. If there is a link in the message, use that, rather than assuming that you already have Flash Player. If this does not work, let us know.

  • Problems with the Acrobat PDF acceptance of the EULA in Safari Viewer

    We are currently having problems with our Acrobat PDF Viewer in Safari. When users open a pdf file in Safari, he is invited to the first open Acrobat Pro and accept the EULA. We tried a variety of different things, but we have been unable to remove it.

    Here's what we tried:

    Adding a FeatureLockdown to the com.adobe.acrobat.pdfviewer.plist and the com.adobe.acrobat.pro.plist blocking EULA, EULAAcceptedForBrowser and bLaunched to true.

    Repackaging Adobe Reader with the EULA accepted again.

    Remove the Adobe PDF plugins (it had marginal success, but it defines an extract to the default pdf viewer outside of Safari as well.) It takes Acrobat to stay by default.)

    I can provide the plist files edited if they are needed.

    I managed to solve the problem by applying the following preferences for all user accounts (our deployment toolkit can do for new users and profiles set cache):

    / Users/username/Library/Application Support/Adobe/Acrobat/11.0/

    Exchange-ProMessages

    SharedDataEvents

    UserCache.bin

    / Users/username/Library/Preferences /.

    com.adobe.Acrobat.Pro.plist

    com.apple.LaunchServices.plist

    / Users/username/Library/Preferences/Adobe /.

    .30142FB7F3A2

    / Library/Application Support/Adobe/SLCache/QUNDRVNTX0NIRUNL.slc

    / Library/Application Support/Adobe/SLStore/.230E4A0DF1DC

    These profile settings user as well as the file plist in the folder/Library/Preferences/Adobe/have solved our problem.

  • "The service cannot accept control at this moment a message" and the wireless Wlan card stopped working

    My computer is showing a wireless card WLAN stopped and on numerous programs, including the firewall and security, as well as other system error "the service cannot accept a message of control at the moment."  I even tried downloading new spyware thinking that something was inside my computer but cannot download anything.  What can I do?

    Hi irishswede,

    Thank you for visiting the Microsoft Windows Vista Community.  Here are the steps that include the error message you stated in your troubleshooting post.

    Please let us know if this helped.

    Dena
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • When I try to open Windows media player, is to show that the file wmploc.dll has version no11.0.6002.18111 where11.0.6002.18311 was expected. Help, please

    When I try to open Windows media player it shows that the wmploc.dii file has version no11.0.6002.18111 where 11.0.6002.18311 was expected.  and he prmpting to download from the msn help site.please.

    Hello

    Thanks for posting your query in Microsoft Community and we give the opportunity to help you.

    This happens usually when the version of wmp.dll is at odds with what is defined in the Windows registry.

    You can follow the steps in the article mentioned below and check if it works.

     

    After the WMP update you an error of wmploc.dll on version number incorrect

    http://support.Microsoft.com/kb/961047

    Hope this information is useful. If you need further assistance, please answer and we will be happy to help you.

  • I get a message saying "the service cannot accept control messages" when trying to install AVG. What could be the cause?

    I get a message saying "the service cannot accept control messages" when trying to install AVG. What could be the cause?

    original title: error message

    Hello cd1968,

    Here's what he says about this error in the MSDN library (http://msdn.microsoft.com/en-us/library/ms833805.aspx):

    Explanation:

    There is a lag between the requested control and service control status. The service may be in a State of waiting to start, shutdown - pending or stopped.

    User action:

    Wait a few minutes and try your operation again.

    In other words, wait a bit and try again.  You can also try to reboot (be sure to allow time Windows to load completely) and then try to install it.

    Thank you
    Darin

  • Cannot open windows media player on windows 7

    Original title: windows media player

    Nothing happens when I click on media player icon

    Hello
     
    1. have you made changes on the computer before this problem?
    2. you receive an error message/code?
    3. are you referring to the Windows Media Player on the desktop shortcut icon?
     
    I suggest you follow the methods below:
     
    Method 1
    Try opening Windows Media Player of the location of the installation folder.
     

    (a) click Start , and then click computer.

    (b) click the C drive etselectionnez program files.

    (c) open the Windows Media Player folder and try to open the drive.

     
     
    Method 2
    Open Windows Media player troubleshooting setting and check if the problem persists. Follow the steps in the link:
    http://Windows.Microsoft.com/en-us/Windows7/open-the-Windows-Media-Player-settings-Troubleshooter
     

    Method 3
    To help resolve the error and other messages, you can start Windows by using a minimal set of drivers and startup programs. This type of boot is known as a "clean boot". A clean boot helps eliminate software conflicts.
    http://support.Microsoft.com/kb/929135
    Note: Follow step 7 to reset the computer to start as usual after the boot process.
     
    Let us know the status of the issue.
  • How to export a video with two audio tracks such as: English and a steam engine, then open in vlc player, then select one of the two tracks?

    How to export a video with two audio tracks such as: English and a steam engine, then open in vlc player, then select one of the two tracks?

    Everything you always wanted to know about the acoustics in first Pro CC - YouTube

  • I can't download a PDF in chrome.  Nothing happens.  I used to be able to. Crazy!

    Hi guys,.

    I can't download a PDF in chrome.  Nothing happens.  I used to be able to. Crazy!

    Windows 7 SP1.

    I can download a pdf file in Internet Explorer.

    Chris

    Well, I'm surprised.  I uninstalled all my Adobe of Control Panel programs, then reinstalled Adobe Acrobat Reader DC (not sure what is DC) and everything works fine now.  Hooray!

Maybe you are looking for

  • Music on AppleTV resumes when you listen to AirPlay from PC

    While listening to music from my PC to my new AppleTV airplay (4), the Apple TV music app takes over, stop the music I want to hear.  Its very annoying and I can't stop.

  • Question about USRP synchronization when using 1 X 2 MIMO

    Hello I wonder section about 1 X 2 MIMO (a transceiver system two USRP). I entered sequence of bits as "10101010...' part of the transmitter." If '1' and '0' bits are aligned in order. 0 comes after 1, 0 just after 1. I want to send this sequence of

  • I need drive recovery for hp dv4-1245dx

    everyone, Please Ineed a disk recovery for dv4-2145dx... I lost my cd... back in the philippines... appreciate your help... just download here or send it to my Email...-) > [email protected] windows7 install disc need... Bless you..

  • I need help installing a security update.

    I am trying to contact customer support, but apparently they took that option on the site because I can't use the answers or post on the forum. It starts to irritate me, but I am trying to install the update for Windows XP (KB2686509) security and it

  • Blue screen of death in windows xp: Stop 0xD1

    every time I tried to start out of the hibernation mode, I get the blue screen.  I restarted by using the last known good configuration.  When the computer is started, the screen of support from microsoft to stop 0x000000D1 comes.  I followed the ins