Unable to DEFLATE coldfusion documents

I have "AddOutputFilterByType DEFLATE text/html" in my
config. All my pages are getting filtered correctly - .html,
.shtml, .php, etc -- but .cfm pages are not. Can anyone
help?

Good day Brian,
I'm sorry to hear you're having trouble.  Try the solutions outlined in this document: Troubleshooting Common Problems with ExportPDF
That should resolve the issue!
Kind regards,
David

Similar Messages

  • When I sign in to the Adobe Reader XI (which is the only option that I have to open a pdf document, I will sign in to the Adobe ID sign-in page. After I do this, the "Convert To" box goes "gray" and I am unable to convert the document I have selected.  It

    When I sign in to the Adobe Reader XI (which is the only option that I have to open a pdf document, I will sign in to the Adobe ID sign-in page. After I do this, the "Convert To" box goes "gray" and I am unable to convert the document I have selected.  It was working great for the first week that I used it, but now it doesn't give me the converting option.  I am very frustrated as I have done nothing to change anything, and I was thinking this was so great...now I am just pulling out my hair and do not have the option of calling anyone since no phone numbers are listed. I am VERY busy and do not have time to sit and wait over a half an hour to "chat", which I tried to do yesterday.  All I want to do is very simply, convert pdfs to Word.  I have paid for this and am not getting any help. I am not very savvy when it comes to Adobe this program and Adobe that program...I feel I am being scammed as I do not get simple answers for something that appeared was going to be simple. You can't even call customer service to talk to someone live to help walk you through. 

    Hello Kathie,
    Sorry for the inconvenience that has caused to you.
    Please let me know if you have tried converting any other PDF to word with Reader.
    Alos, please sign up at "https://cloud.acrobat.com/" using your Adobe ID credentials. Click on 'ExportPDF' tab and upload the PDF that you want to convert to Word.
    Let me know if this converts fine.
    Hope to hear from you.
    regards,
    Anubha

  • PDF: Unable to print a document as PDF from APEX when using the BI Publishe

    Hi,
    From an APEX application, I am unable to print a document in a PDF format when using the Oracle BI Publisher.\
    Here is the configuration:
    1) Server A is W2K3 and hosts the Oracle BI Publisher server, with IP address ip01.
    2) Server B is a OEL5.2 and hosts the database server of the APEX application, with IP address ip02.
    3) Machine C is a W7 desktop from which through an URL both the APEX applicationn and the BI server are accessed, with IP address ip03.
    4) The APEX application is configured with the following to use the Oracle BI Publisher:
    - Printer server: Advanced (requires Oracle BI Publisher)
    - Printer server protocol: HTTP
    - Printer server host address: ip01
    - Printer server port: 9704
    - Printer server script: /xmlpserver/convert
    - Network services are enabled (at least I did get any warning/error message)
    From C, I access the the APEX application through its URL, if I try to download a page by selecting PDF in the download section of the interative report section for that page, I am unable to open if and get the error:
    <file>. pdf file can not be opened because the file type is not supported or because it is damaged (because, for example as an e-mail attachment is not sent and correctly decoded)
    Yet, still from C, I am able to open any other PDF document.
    The same way, still from C, acessing the APEX application through its URL, I have a query report defined with a PDF output format. Then, when I test the report (Test Report in the Report query) for that query, I get the error:
    ORA-20001: The printing engine could not be reached because either the URL specified is incorrect or a proxy URL needs to be specified.
    At first sight this could be a wong entry in the priinter configuration for APEX. But with this address, through the URL I can log in to the Oracle BI Publisher server.
    Does someone has an idea what the problem could be?
    Thanks for any tips.

    How are you trying to print to pdf?
    Don't go via PostScript or Acrobat Distiller, which are old deprecated technology.
    You use:
    Menu > File > Print > PDF (button bottom left) > Save as PDF…
    Peter

  • The document information panel was unable to load. the document will continue to open. For more information, contact your system adminsitrator.

    Hi Guys,
    I am creating the library using object model with custom content type.  When i am opening document from custom content type, the meta data fields are not displaying in the document and throwing below error.
    The document information panel was unable to load. the document will continue to open. For more information, contact your system adminsitrator.
    Document Information Panel cannot open a new form.
    The form contains schema validation errors.
    Content for element '{http://schemas.microsoft.com/office/2006/metadata/propertiesRoot}properties' is incomplete according to the DTD/Schema.
    Expecting: {http://schemas.microsoft.com/office/2006/metadata/properties}properties.
    But after saving the document, then meta data is enabled.
    Thanks in advance for suggested solutions.
    thanks
    Santhosh G

    Hi,
    For a better troubleshooting, I suggest to do as follows:
    1. Please try to update the Location column's schema by following the steps below.
     1) Go to Site Settings -> "Site Columns"
     2) Click on "Location", after the page is opened. Don't modify any settings, click "OK"  to forcibly update the field's schema.
    2. Re-edit the document information panel template to see if the issue still occurs.
    Please go to the Library setting > click the corresponding content type(need to enable managed of content types in Advanced settings) > click Document Information Panel settings.
    3. Here are some similar links about your issue, please take some time to look at them:
    http://social.msdn.microsoft.com/Forums/en-US/sharepointcustomizationlegacy/thread/243b4852-3f17-4a3a-b6d7-187d65a5f088/
    http://blogs.msdn.com/b/raresm/archive/2010/03/30/document-information-panel-cannot-open-the-form.aspx
    https://joranmarkx.wordpress.com/2012/02/10/sharepoint-document-information-panel-cannot-create-a-new-blank-form/
    If the issue still occurs, please check if the command below can help(change the site URL and the library name in the code):
    Apply-Fix -siteUrl "http://your site URL "
    function Apply-Fix($siteUrl)
    clear
    Add-PSSnapin "Microsoft.SharePoint.Powershell" -ErrorAction SilentlyContinue # -EA 0
    [Environment]::CurrentDirectory=(Get-Location -PSProvider FileSystem).ProviderPath
    foreach ($spwTarget in (Get-SPSite $siteUrl).RootWeb.Webs) {
    Write-Host "Checking Web: " $spwTarget.Url
    $list = $spwTarget.Lists["your library name"]
    $fields = $list.fields
    foreach($field in $fields)
    if($field.SourceId -eq '{$ListId:your library name;}')
    $schemaxml = $field.SchemaXML
    $schemaxmldata = [xml]$schemaxml
    $schemaxmldata.Field.SetAttribute("SourceID", $list.ID)
    $schemaxml = $schemaxmldata.get_InnerXml()
    $field.SchemaXML = $schemaxml
    $field.Update()
    Write-Host "Fixed" $field.Title "field in the library"
    Write-Host "Done."
    More information:
    SharePoint 2010: Creating a Custom Content Type using Visual Studio
    http://www.codeproject.com/Articles/410880/SharePoint-Creating-a-Custom-Content-Type-usi
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected].
    Dennis Guo
    TechNet Community Support

  • I installed Firefox 3.6. Since then, I am unable to open pdf documents in Firefox. I get a black page. I tried opening the same document in Internet Explorer. It worked fine. I recently installed Nuance's pdf reader and thought that might be the problem.

    I installed Firefox 3.6. Since then, I am unable to open pdf documents in Firefox. I get a black page. I tried opening the same document in Internet Explorer. It worked fine. I recently installed Nuance's pdf reader and thought that might be the problem. Uninstalled it. Still have the problem with Firefox.
    == This happened ==
    Every time Firefox opened

    How about if you right click on the PDF and select Save Link As..., and then open it locally from within Reader? Does it work ok then?  That might be a workaround until the issue within the browser is resolved.
    Rob Jaworski
    Intl Program Manager

  • Whenever I try to open a certain document on Microsoft word it keeps saying it is unable to find the document. How do I find it?

    I typed a 10 page paper. And when I went to submit it to my class online the document was grey and it had no information and it wouldn't let me open it; like it was corrupted. When I do click on it, it says that Microsoft Word is unable to find my document.
    When I click would you like to locate it yourself, it brings me to all my documents but it is no where to be found on my computer. How do I retrieve it? 

    Hi Jessica,
    From where did you open the file for editing originally? Have you saved it properly before you submit it?
    As Paul mentioned above, in some cases, corrupted documents are rarely recoverable. Do you have a backup of that file? Or elaborate a little bit about your situation for further assistance.
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Unable to edit the document in sharepoint2010

    Hi,
    I am unable to edit the document in sharepoint2010 with IE-10 while editing i am getting the error like
    "The form cannot be displayed in the browser because the use of session cookies has been disabled in the current browser settings.In order to load the form the session cookies must be allowed."
    Please suggest me on this.
    Thanks in advance.
    Regards
    SidduSekhar

    Hi SidduSekhar,
    Based on your description, I need to verify the things below:
    Which browser did you use? Did this issue occur with all the browsers?
    Is the cookie disabled in the browser? If yes, please enable it.
    Did you implement security fix in the web.config, such as <httpCookies requireSSL="true" httpOnlyCookies="true" />? If yes, please set it to false in web.config.
    Did you configure Alternate Access Mapping for SharePoint with a URL containing a “_” character? If yes, please remove the “­_” from the URL.
    More references:
    http://blogit.create.pt/miguelisidoro/2013/12/01/sharepoint-and-the-form-cannot-be-displayed-in-the-browser-because-the-use-of-session-cookies-error/
    https://prasantabarik.wordpress.com/2014/05/03/sharepoint-2010-workflow-task-error/
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • APEX_UTIL.GET_PRINT_DOCUMENT Error Unable to get the document

    Hi,
       I am working on Oracle APEX 4.1 to send the report as an attachment through mail  I am unable to get the document while calling the APEX_UTIL.get_print_document. I have created a report query and report template (rtf template) so as to send the report as an email attachment. The report works fine individually upon clicking of button so there is no issue in BI publisher configuration. I am sure there is something very trivial which I am missing out here. Any help will be appreciated.
    Declare
       l_id number;
       l_document BLOB;
       l_error_msg varchar2(2000);
    BEGIN
       l_document := APEX_UTIL.GET_PRINT_DOCUMENT
             p_application_id=>'123',
             p_report_query_name=>'Sample_Report',   
             p_report_layout_name=> 'Sample_Report',
             p_report_layout_type=>'RTF',
             p_document_format=>'PDF',
             p_print_server => 'f?p=&APP_ID.:0:&SESSION.:PRINT_REPORT=Sample_Report'
       IF l_document is null
       THEN
           dbms_output.put_line( ' no report returned');
          l_error_msg:='<html> <body> <h1 > Apologies the report was not returned from the apex , as there is some printing issues </h1> </body> </html> ';
       ELSE
          l_error_msg:=null;
       END IF;
       IF l_error_msg IS NULL THEN
           l_id := APEX_MAIL.SEND(
           p_to => '[email protected]',
           p_from => '[email protected]',
           p_subj => 'APEX_MAIL with attachment',
           p_body => 'Please review the attachment.',
           p_body_html => '<b>Please</b> review the attachment' || l_error_msg);
          dbms_output.put_line(l_id);
          IF l_document is not null then
             APEX_MAIL.ADD_ATTACHMENT (
                        p_mail_id => l_id,
                        p_attachment => l_document,
                        p_filename => 'Sample_Report.pdf',
                        p_mime_type => 'application/pdf');
          END IF;
    END IF;
    END;
    Here the output says no report returned.
    Thanks & Regards
    Ahmed

    Try removing the parameter p_print_server from the call.  This will use your default print server which should already be configured to use the BI Publisher engine.

  • Unable to open the document when combining files.

    We have a user that gets an error when combining files. It says
    Unable to open the document:
    <Filename and path>
    Please check to see if you have read permission for the above file.
    Retry and cancel buttons.
    We get this error on every subsequent file, it works on the first one after the computer starts.
    This computer has Windows Vista Business with SP2, Adobe Acrobat X with the latest patches.
    It doesn't matter if the files are local or on a network drive, the same always occurs. I have cleared
    all user and system temporary files, re-installed, verified the Acrobat Add-In for Word 2010 is active,
    verifed the PDF printer is working fine. It only happens when trying to combine files. I have given the
    user local administrator privilidges, tried with my account that has domain admin priviledges, no luck.
    I really need some suggestions...
    Thanks,
    Tom

    I have found out from Adobe technical support that this is a known issue with Office 2010 SP1 installed.
    This is an FYI for anyone else experiencing this issue, remove SP1 and it will work ok.
    They said an update to correct this issue will be coming within the next quarter.
    TP

  • Unable to create Accounting document for my Outgoing excise Invoice

    Dear All,
    I am implementing sales from Factory. I am unable to creat accounting document for my Outgoing excise invoice.  When I click the Utilization button, The excise invoice type is selected Deemed.
    1. How to control which Which Excise invoice type should be selected in J1IIN.
    2. For Deemed exports will system not genererate Accounting document for Excise Invoice?
    3. Where to view the excise invoice document types (Like Billing and order types)
    Thanks & Regards

    For deemed export sales,
    -Accounting documents will not get generated. (ref: Excise Acct Determination in CIN settings, you will not find Excise Tranraction type:ARE3 for which G/L account will not be assigned)
    -Excise Invoice type will be automatically triggered based on configuration : Excise Group / Series Group detetermination.
    - For Deemed Exports , only Quantity will get updated in RG1, but not the value. thats the reason, accounting document will not get generated.
    - This excise invoice is created, for - to update the RG1 registry / ARE3 creation.
    hope it clears
    regards,

  • Adobe Acrobat XI Pro. Unable to process the document in the module Save As.File not created

    On the ultrabook Asus (System Settings: WIN 8.1 64-bit, Core I5-3317U CPU @ 1.70 Ghz, Memory 4 Gb), set Adobe Acrobat XI Pro 11.0.09
    When you convert to any format via SaveAs in WORD, EXCEL, or via the Export file in ... throws the error "Unable to process the document in the module Save As. File not created"
    http://youtu.be/l0a0lWexfNQ.

    Hi,
    Please post your query in Adobe Acrobat Thread:Acrobat
    Regards,
    Florence

  • Unable to see existing documents in a Custom Sharepoint 2013 Document library while saving a document directly in it using explorer mode

    Hi,
    We have a SharePoint 2013 doc library based on a custom template, which has been migrated from 2010.
    We are unable to see existing documents in a Document library created using this template while saving a document directly in it using explorer mode, However we can save files and even see them in explorer mode, only when we try to save a new document there
    directly, we cant see the old docs.
    All the OOB libraries work fine.
    Below is the normal behavior while saving a file, however nothing comes up when saving on this custom template library

    Solved it myself guys... (Well the major part)
    Got help from here...
    https://www.nothingbutsharepoint.com/sites/devwiki/articles/pages/blank-open-save-dialog-when-browsing-document-library-from-office-clients.aspx
    and
    http://www.sharepointconfig.com/2011/02/vs2010-list-definition-template-missing-file-dialog-view/
    with some tweaks of my own..
    Still working on it because its showing SharePoint 2010 header... And I need 2013 look...

  • Have recently updated Adobe Reader and now unable to open downloaded documents - Message received is could not open 'file name.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email a

    Have recently updated Adobe Reader and now unable to open downloaded documents - Message received is could not open 'file name.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded). When I check the file it shows Zero KB downloaded but the file appears - any suggestions?

    Obviously your download was not successful.
    What is your operating system?  How exactly do you download such files?

  • Unable to email a document.  Keep getting error message:  Invalid Date Enter 2-digit month

    Unable to email a document.  Keep getting error message:  Invalid Date Enter 2-digit month
    Does not happen with all forms which emante from same USG webpage
    Any adivice?

    If i am using 11G andrtp is 11g but on rtp side if they configure SSL, is it mandatory to do it from our side also?No it not mandatory to enable SSL at your end however you have to configure identity and trsut at your end.
    Any update on my regular question(The main forum question)?You mentioned that you are posting message from 10g to 11g and as per log you are sending it to URL - https://dev-nog.server:443/b2b/transportServlet
    So few things which I see as a problem are-
    1. You should use URL https://hostname:soa_server_ssl_port/b2b/httpReceiver instead of https://dev-nog.server:443/b2b/transportServlet
    2. SOA server SSL port should be enabled (SSL should be enabled on SOA server)
    3. You should configure wallet at 10g side to contain trust cert of 11g server
    Regards,
    Anuj

  • Unable to generated a document ID error

    We are testing berkeley Dbxml 2.5.13 in Windows xp/Sp2.
    We want to design an application that can connect to DB placed in server and modify it by multiple users.
    Application open a dbxml database once and keep it until the App closed. Then free resources.
    I use following configuration:
    EnvironmentConfig:*
    pEnvironmentConfig.setLogDirectory(FileLogPath);
    pEnvironmentConfig.addDataDir(FileContainerPath);
    pEnvironmentConfig.setAllowCreate(true);
    pEnvironmentConfig.setInitializeCache(true);
    pEnvironmentConfig.setInitializeLogging(true);
    pEnvironmentConfig.setTransactional(true);
    pEnvironmentConfig.setInitializeLocking(true);
    pEnvironmentConfig.setCacheSize(20*1024);
    pEnvironmentConfig.setRunRecovery(true);
    pEnvironmentConfig.setThreaded(true);
    pEnvironmentConfig.setRegister(true);
    pEnvironmentConfig.setMutexTestAndSetSpins(50);
    pEnvironmentConfig.setMaxLockers(10000);
    pEnvironmentConfig.setMaxLockObjects(10000);
    pEnvironmentConfig.setMaxLocks(10000);
    pEnvironmentConfig.setJoinEnvironment(true);
    And for Xmlmanager:*
    pXmlManagerConfig.setAdoptEnvironment(true);
    pXmlManagerConfig.setAllowExternalAccess(true);
    And for XmlContainerConfig:*
    pXmlContainerConfig.setTransactional(true);
    pXmlContainerConfig.setCreateDir(FileContainerPath);
    I place Environment Home Directory in a Directory in Server and for all users give full access to it.
    User "A" can open as much as process that he want and connect to db via each process in his own Computer an add/remove data from each process from data base easily.
    When a User "B" connect to DB and open another instance of application from his own computer he once he can add data to DB anad User "A" can see those modification immediately. Then user "A" add data and user "B" can see. In the third time when user "B" wants to add data following error arise):
    Error in AddDocument:com.sleepycat.db.DatabaseException:Unable to generated a document ID, errorcode=INVALID_VALUE
    It is worth mentioning that when I set pEnvironmentConfig.setCacheSize(20*1024*1024);
    This error doesn’t appear but users couldn't see other user's modification.

    I do not use Snapshot isolation. please take a look at my code(for readability i omit Try/Catch).
    using System;
    using System.Windows.Forms;
    using com.sleepycat.db;
    using com.sleepycat.dbxml;
    using java.io;
    class DBConnection
    string _strEnvironmentPath = @"M:\DB";
    string _strContainerPath = @"M:\DB";
    string _strLogPath = @"M:\DB";
    public string _strContainerName = @"DB.dbxml";
    string _strContainerAlias = "alias.dbxml";
    XmlManager _XmlManager = null;
    XmlContainer _XmlContainer = null;
    public DBConnection()
    InitializeDb();
    private void InitializeDb()
    XmlManagerConfig pXmlManagerConfig = new XmlManagerConfig();
    pXmlManagerConfig.setAdoptEnvironment(true);
    XmlManager = new XmlManager(EnvironmentSettings(strEnvironmentPath), pXmlManagerConfig);
    XmlContainerConfig pXmlContainerConfig = new XmlContainerConfig();
    pXmlContainerConfig.setTransactional(true);
    File FileContainerPath = new File(_strContainerPath);
    pXmlContainerConfig.setCreateDir(FileContainerPath);
    XmlContainer = XmlManager.openContainer(_strContainerName, pXmlContainerConfig);
    XmlContainer.addAlias(strContainerAlias);
    private com.sleepycat.db.Environment EnvironmentSettings(string strEnvPath)
    File FileEnvironmentHome = null;
    if (_strEnvironmentPath != null)
    FileEnvironmentHome = new File(strEnvPath);
    File FileLogPath = new File(_strLogPath);
    File FileContainerPath = new File(_strContainerPath);
    EnvironmentConfig pEnvironmentConfig = new EnvironmentConfig();
    pEnvironmentConfig.setLogDirectory(FileLogPath);
    pEnvironmentConfig.addDataDir(FileContainerPath);
    pEnvironmentConfig.setAllowCreate(true);
    pEnvironmentConfig.setInitializeCache(true);
    pEnvironmentConfig.setInitializeLogging(true);
    pEnvironmentConfig.setTransactional(true);
    pEnvironmentConfig.setInitializeLocking(true);
    pEnvironmentConfig.setCacheSize(20 * 1024 * 1024);
    pEnvironmentConfig.setRunRecovery(true);
    pEnvironmentConfig.setThreaded(true);
    pEnvironmentConfig.setRegister(true);
    com.sleepycat.db.Environment pEnvironment = new com.sleepycat.db.Environment(FileEnvironmentHome, pEnvironmentConfig);
    return pEnvironment;
    public XmlValue GetDocument(string DocumentID)
    string strQueryString = @"doc('dbxml:/" + _strContainerName + "/" + DocumentID + "')";
    return XmlManager.query(strQueryString, XmlManager.createQueryContext()).next();
    public bool AddDocument(string XMLContent, string strDocumentID)
    XmlTransaction pXmlTransaction = _XmlManager.createTransaction();
    XmlDocument pXmlDocument = _XmlManager.createDocument();
    pXmlDocument.setName(strDocumentID);
    pXmlDocument.setContent(XMLContent);
    _XmlContainer.putDocument(pXmlTransaction, pXmlDocument);
    pXmlTransaction.commit(); pXmlTransaction = null;
    return true;
    }

Maybe you are looking for

  • Tons of problems !

    Hi, I just uploaded my site using iweb. But it comes out with tons of errors in the internet. The text has moved, the videos don't play ( the quick time logo appears instead ) and no audio ( all of my mp3's only display a tiny quick time logo) . And

  • Is there a version of Acrobat Reader that works for XP SP3??

    I have spent 30 minutes trying to get either ver 8 or version 9 of Acrobat Reader to install on a fairly recent clean install of XP Pro Sp3 machine. I need to use Acrobat Reader for a application rather than another reader and want to know why Acroba

  • Script language problem in Address syntax

    For this syntax in script ADDRESS PARAGRAPH ZD LINES 8 NAME     &BILL_NAME1&, &BILL_NAME2&, &BILL_NAME3&, &BILL_NAME4& STREET   &BILL_STRAS& POBOX    &BILL_PFACH& CODE &BILL_PSTL2& CITY &BILL_PFORT& POSTCODE &BILL_PSTLZ& REGION   &BILL_REGIO& CITY   

  • PCA Line item

    Hi All, Can anyone please tell me How the Trading Partner gets picked up in the PCA line item?? Thanks in Advance. Regards, Vinay

  • Download of 1 particular Podcast freezes when xfr to IPOD -Apple Logo shows

    Since I've upgraded to 7.0, my downloads of Coast to Coast am podcasts will not play on my IPOD. They play perfecly fine in ITunes on my laptop. But, after I transfer them to the IPOD they show up however when I hit play the IPOD Apple logo comes on