LiveCycle Output: Font cannot be found (PDF/A) but is installed

Heya!
I'm using LiveCycle ES3 OutputModule calling the GenerateOutput2 method via SOAP to merge an XDP with XML data to an PDF/A document.
Unfortunately I get the output:
"(com.adobe.document.xmlform.ReturnStatus@33c0ab2b) XMLForm, render : 20511, Requested font 'Liberation Sans' was not found and font substitution is not allowed for PDF/A."
The "missing" font is located at/usr/share/fonts/truetype/ttf-liberation/.
I have a headless Linux server, so I configure everything using
/.../adobe_livecycle_es3/configurationManager/bin/ConfigurationManager.sh
In my cli_property.txt file, I've set the following settings:
AdobeFontsDir=/opt/adobe/adobe_livecycle_es3/fonts/
customerFontsDir=
systemFontsDir=/usr/share/fonts/
The properties were deployed via
./ConfigurationManagerCLI.sh configureLiveCycle -f cli_propertyFile.txt
I'm stuck here and looking forward to any help.
Thanks in advanced.
Phil

Please verify that the missing font is installed.
Also, specify the location of the missing font directory (usr/share/fonts/truetype/ttf-liberation/ ) as customer font directory in livecycle adminui. 
refer the link for further details:
http://help.adobe.com/en_US/livecycle/10.0/AdminHelp/WS92d06802c76abadb-5145d5d12905ce07e7 -7d48.html

Similar Messages

  • "Provider cannot be found.It may not be installed properly"

    Hi All,
    I am running into this error "Provider cannot be found.It may not be installed properly" while I am trying to connect to Oracle from Excel VBA.
    I had installed both Oracle 10.1 and Oracle 10.2 in the same machine and is working with .NET applications.My .NET applications works fine.But when I try to connect from within the EXCEL VBA,it gives me this error.
    This is my oracle client folder structure
    Oracle 10.1 -> C:\Program Files\Oracle\product\10.1.0\Client_1
    Oracle 10.2 client -> C:\Program Files\Oracle\product\10.2.0\Client_2
    Oracle 10.2 ODAC -> C:\Program Files\Oracle\product\10.2.0\Client_1
    As part of working around this error,I have uninstalled my 10.2 and now I just have 10.1 in my local machine.
    This is the code snippet where the error occurs in VBA
    Set Conn = New ADODB.Connection
    Conn.ConnectionString = "Provider=OraOLEDB.Oracle;Data Source=datasource;User ID=userid;Password=pwd;CacheType=Memory"
    Conn.ConnectionTimeout = 60
    Conn.Open
    I would really appreciate any help as I have been working around this erro for the last 2 days
    Thanks much!

    Hi,
    Why do you have 3 Oracle homes?
    Mutliple Oracle homes on Windows is a pain at best. Oracle's OLEDB and ODBC drivers require that their home be first in your PATH.
    Generally you can have as many homes as you want, but can only USE the home that's first in your PATH, and things like OraOLEDB, being a com object, can only be installed into a single home.
    In your registry, what does HKEY_CLASSES_ROOT\CLSID\{3F63C36E-51A3-11D2-BB7D-00C04FA30080}\InprocServer32\(Default) point to (the entry for Oracle's OLEDB provider)? Is it the same home that's first in your path if you open a dos prompt and type PATH?
    Hope it helps
    Greg

  • Itunes not showing elements 11 drop down list of albums and won't sync, says ïtunes cannot sync, required folder cannot be found. ï have tried re installing both but no success. pls help!!!

    Hi, Itunes won't sync my photos to ipad from elements 11. itunes doesn't show drop down list of albums and says Ipad "......cannot be synced, required folder cannot be found" i have tried re installing both programs but no luck. pls help!!!

    I managed to finally fix the problem in a relatively painless way. It turned out that the problem wasn't on my phone, the problem was with iTunes. I completely uninstalled iTunes from my PC and then reinstalled it and everything was fine.
    In order to completely uninstall iTunes, I did two things:
    Used RevoUninstaller to uninstall iTunes. This cleans out a bunch of extra things that the normal iTunes uninstaller misses.
    Searched for any iTunes folders/files on my computer (using the freeware utility called Everything) and deleted them manually.
    I hope that works for you.

  • HT1349 When trying to down load an app it keeps saying my password cannot be found try again but it is the right one what do I do about this problem

    When downloading from iTunes or an app I put in my apple Id and it keeps sayin cannot be found try again but I no it's the right one how do I solve this problem

    In that case your email provider's server is having difficulties to deliver the message to the recipients email provider server.
    This has got nothing to do with Thunderbird.
    There is little you can do though. You may have the recipient to check with his email provider if they have any issues.

  • Attribute key cannot be found : Data present but not processed

    Hi there,
    I know this question has been ask several time and I went through a lot of proposed solution but none were successful in my case. My cube processed successfully for month but now I have the following error :
    Errors in the OLAP storage engine: The attribute key cannot be found when processing: Table: 'EventMember', Column: 'Id', Value: '22560966'. The attribute is 'Id'.
    To explain my case here what I've got.
    A dimension [Member Unique] where there is a bigint Id and some attributes. The only defined attribute in the dimension is Id.
    When I process fully this dimension the query issued by SSAS to SQL (using the profiler) is the following :
    SELECT
    DISTINCT
    [dbo_Member].[Id] AS [dbo_MemberId0_0]
    FROM [dbo].[Member] AS [dbo_Member]
    I verified that the Id 22560966 is present in the table and in the resulting set and that is the case.
    Then I have the measure group EventMember based on a named query doing the following :
    SELECT Id
    FROM dbo.Member AS m
    WHERE EXISTS
    SELECT 1 AS Expr1
    FROM dbo.Event AS g INNER JOIN
    dbo.MemberHistory AS h ON h.Id = g.MemberId INNER JOIN
    dbo.MemberVersion AS v ON v.HistoryId = h.Id
    WHERE (v.AntvoiceMemberId = m.Id)
    This query returns also the row 22560966.
    When I process fully the measure group EventMember the query issued by SSAS is :
    SELECT [EventMember].[EventMember0_0] AS [EventMember0_0],[EventMember].[EventMemberId0_1] AS [EventMemberId0_1]
    FROM
    SELECT 1 AS [EventMember0_0],[Id] AS [EventMemberId0_1]
    FROM
    SELECT Id
    FROM dbo.Member AS m
    WHERE EXISTS
    SELECT 1 AS Expr1
    FROM dbo.Event AS g INNER JOIN
    dbo.MemberHistory AS h ON h.Id = g.MemberId INNER JOIN
    dbo.MemberVersion AS v ON v.HistoryId = h.Id
    WHERE (v.AntvoiceMemberId = m.Id)
    AS [EventMember]
    AS [EventMember]
    And it crashes during the process giving me the above error.
    I did try to allow missing key attribute error in the process option, and it ran successfully. It allowed me to issue an MDX statement on my cube to check if the dimension member was present. And it was not the case. Hence the error I think. The MDX statement
    was :
    SELECT [Member Unique].[Id].&[22560966] on 0
    FROM MyCube
    The the final question would be : Why this member which is returned by the SQL query is not present in my dimension ?
    I tried deletiong my cube it did not changed a thing. A noticeable thing is that the faulty attributes key are the same every time.

    Hi RodolpheAV,
    The error means SSAS could not find a record in the dimension table [table name] where column [column name] contained value [value]. For more information, you can look into the following articles:
    Error messages when you try to process a database or a cube in SQL Server 2005 Analysis Services: "The attribute key cannot be found" and "The record was skipped because the attribute key was not found:
    http://support.microsoft.com/kb/922673
    SSAS Quick Reference: Attribute Key Cannot Be Found:
    http://www.ssas-info.com/analysis-services-articles/66-mgmt/1963-ssas-quick-reference-attribute-key-cannot-be-found
    TechNet Subscriber Support
    If you are TechNet Subscription user and have
    any feedback on our support quality, please send your feedback here.
    Regards,
    Bin Long
    TechNet Community Support

  • I tunes folder cannot be found or created - windows xp install

    windows xp
    trying to install itunes and i get the message "itunes folder cannot be found or created"
    tried uninstall / reinstall - no dice
    any help would be greatly appreciated

    This is usually due to a problem with the registry setting for My Music, see this Apple article:
    http://docs.info.apple.com/article.html?artnum=302398
    Occasionally the method using TweakUI doesn't work and a registry edit is required, I cna give you the method for that if required.

  • Movie file cannot be found ... but I don't want it!

    I keep getting the "move file ... cannot be found" message from a project I already finished.
    I want to start a new project, but FCP insists on searching for all these files that I don't have anymore! It's dozens and dozens of clips, hitting Cancel just takes me to the next "file cannot be found" message.
    How can I just open a new project?

    Ugh no ... doesn't do anything.
    Which one? The cancel button or David's suggestion?
    If you delete the .plist file it sets everything back to default including activating the "Open last project on application launch" setting.
    Quit FCP.
    Put your project files folder, or just the project file (If it's the only one you have) into the Trash.
    DO NOT EMPTY THE TRASH!!
    Start FCP. Because you project files are in the trash FCP will not be able to access them. Go back to my suggestion in my first reply and turn off the "Open last project on application launch" setting.
    When you have done that return your project files to their correct location.

  • Midi i/o cannot be found with logic, but usb works fine?

    i have a microkorg xl, which has midi i/o and usb connection.
    i used to connect XL to logic via usb, to control logic's instrument.
    but i want to record sound from XL.
    so I set up the midi i/o to my mbox 2 ( i tried use usb as i and midi out to mbox2 but it makes internal noise, will be appreciate if anyone can help with this )
    Now, midi i/o are connected and the audio output from XL is connected to mbox2 audio in.
    and i found that on logic transport bar, there is no midi message recieved!
    i have searched on manual and googled but seems like this is abnormal so no result has been found.
    1 more thing,
    if i draw a region with notes on an external midi track, and i got the audio!
    thats mean the midi out from logic is worked.
    hope anyone can help! thank lots!
    Logic 9.1.3 OSX 10.6.6

    I got some good help from local Oracle support in relation to the Apache work-around I suggested. Unfortunately, there is no work-around. Here's what Bill came up with:
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>07-AUG-01 01:17:34
    Speaking to ct in regard to another issue, and ct wanted to know if it was possible to perform a redirect on the invalid uri to the correct uri from within Apache.
    mod_rewite gives this functionality, but unfortunately, this will not work in this case.
    The problem is due to how Apache has been compiled. It looks like the jserv module comes before the rewite module at compile, and so takes preference. As we are trying to redirect from a servlet, as opposed to a servlet, in effect, mod_jserv picks up the servlet mount point, and dispatches this through to jserv and hence mod_rewrite doesn't get to parse the uri to perform the redirection.
    There is no workaround using Apache directives.<HR></BLOCKQUOTE>
    Too bad, but worth investigating.

  • Device cannot be found in VI, but can be found in .exe

    Hi everyone,
    I'm trying to use Labview to control Newport Agilis Controller. The device uses a virtual COM-port via USB port. There's a example.vi comes with the driver from the company, which just connect the device, ask for system information and disconnect it. Also, there's a example.exe from the company doing the same job, which is just converted from the example.vi. 
    I tried this VI but it cannot find the instrument (it returns an empty instrument list for pick). However, when I try the executable version of it, it works properly, see screenshots attached. The device shows up correctly in MAX also, but communication cannot be completed in VISA test panel. see attachment.
    Does anyone have similar experience? How can I solve this problem. Any suggestion will be appreciated.
    Jie
    Attachments:
    example in vi format.jpg ‏317 KB
    example in exe format.jpg ‏270 KB
    Agilis in MAX.jpg ‏233 KB

    Hi nathand,
    Yes, the dll file is linked to the program. I tried to remove this dll file from its location, the program gives a different result--it still returns a blank instrument list, but this time with an error code 1172.

  • Time Capsule internal disk "cannot be found"

    Yesterday I stopped being able to connect to my Time Capsule's shared disk; I see my Time Capsule in Finder but when I double-click on the disk folder, it says "The operation cannot be completed because the original item for 'Storage' cannot be found." I've tried installing all software updates, restarting my computer (Mac mini), resetting the Time Capsule, and tried every different file sharing setting, all without any difference. I'm thinking it may be related to the recent software update for .Mac>MobileMe because I noticed there are new icons for this in Finder the same time the Time Capsule disk stopped working.

    Mac with Lion is about vista standard as far as networking goes.. did you turn it off and on again??
    Turn off the whole network.. off not sleep.. reboot in the right order.. modem.. router.. TC if different to router.. then clients.. I think the TC should reappear.. if not connect to it by ethernet.. do not use extended wireless.. it is too flakey.
    If it still doesn't appear press reset and do the setup again.
    For lion make sure you download, install and use the tool utility.. not the toy utilty built into windows lion.
    http://support.apple.com/kb/DL1482
    Tell me if the hard disk appears.. if so you know the procedure the next time.. in a few days when it happens again. It will happen again btw.. it is windows.. lion

  • HT3199 I want to restore my apple tv but message shows device cannot be found

    Why cannot i restore my apple TV and message shows device cannot be found?

    Hi I have same problem too.
    Ihave windows 7 at my home desktop and latest version of iTunes. I bought this apple TV 2 from a friend of mine couple of days ago. It works perfectly fine when I plugged into my TV however the home sharing is still linked to my friend's email address so I tried to restore it by plugging into my iTune but meessage pops out everytime that device cannot be found. I tried re-installing as well however results remains the same i.e. device cannot be found.
    Any help appreciated.
    Please do let me know if you require additional information.

  • Apple TV 2 and iTunes-Device cannot be found

    I'd be grateful for any help and/or advice.
    Whenever I connect my Apple TV2 via microUSB to my Windows 7 PC to restore, the message pop out "Device cannot be found". I downloaded 5.2 firmware and restored the apple TV firmware by pressing shift key and it restored it perfectly well. Whenever I connect the device to my TV it works fine as well however the iTune message still says "device cannot be found".
    Looking through the forum it appears that a number of other ATV owners have similar problem since iTune 11 release. Some managed to resolve the problem by restoring firmware however others like me are unable to do so. Any help would be greatly appreciated.
    Thanks

    Hi I have same problem too.
    Ihave windows 7 at my home desktop and latest version of iTunes. I bought this apple TV 2 from a friend of mine couple of days ago. It works perfectly fine when I plugged into my TV however the home sharing is still linked to my friend's email address so I tried to restore it by plugging into my iTune but meessage pops out everytime that device cannot be found. I tried re-installing as well however results remains the same i.e. device cannot be found.
    Any help appreciated.
    Please do let me know if you require additional information.

  • Try to create a pdf file in photoshop Get Distiller error %%[ Error: Helvetica not found. Font cannot be embedded. ]%%

    Hello,
    when i try to create a pdf file in photoshop CC with the printer "Adobe PDF" in Optimal Quality, document is not created and i get an error log file with this content :
    %%[ ProductName: Distiller ]%%
    %%[ Error: Helvetica not found. Font cannot be embedded. ]%%
    %%[ Error: invalidfont; OffendingCommand: findfont ]%%
    Stack:
    /Font
    (Helvetica)
    /_Helvetica
    [39 /quotesingle 96 /grave 130 /quotesinglbase /florin /quotedblbase
    /ellipsis /dagger /daggerdbl /circumflex /perthousand /Scaron
    /guilsinglleft /OE /.notdef /.notdef /.notdef /.notdef /quoteleft
    /quoteright /quotedblleft /quotedblright /bullet /endash /emdash
    /tilde /trademark /scaron /guilsinglright /oe /.notdef /.notdef
    /Ydieresis]
    %%[ Flushing: rest of job (to end-of-file) will be ignored ]%%
    %%[ Warning: PostScript error. No PDF file produced. ] %%
    Does anyone have an idea ?
    Thanks a lot.

    Hi,
    The D810 requires Camera Raw 8.6 or later - the latest version that is compatible with Photoshop Elements 12 is Camera Raw 8.5 as far as I can see.
    You need to either buy a new version of Photoshop Elements or use the free Adobe DNG converter.
    DNG  Converter 8.8
    Win – http://www.adobe.com/support/downloads/detail.jsp?ftpID=5888
    Mac – http://www.adobe.com/support/downloads/detail.jsp?ftpID=5887
    Useful Tutorial
    http://www.youtube.com/watch?v=0bqGovpuihw
    Brian

  • SAPScript Korean font convert to PDF , font cannot read

    Hello everyone
    i use SAPscript original language EN.
    in sapscript i use korean font KPBATANG to show detail of Purchase order,
    some korean text come from SAP table , some korean text i hardcode in sapscript.
    but when i convert SAPscript to PDF for sending file vie email.
    all korean font cannot read, but english font is OK.
    i attach picture as below.
    http://www.flickr.com/photos/53547794@N06/4966797778/
    you will see that korean font in ( ) cannot read
    please help.
    Edited by: dittaporn nanasilp on Sep 7, 2010 6:43 AM

    Hi,
    In addition to Korean font like KPBATANG, the language key of the used form(sapscript or smartform) must be KO. Also the PDF must be created by a Korean device type like e.g. KPSAPWIN.
    If you have a Unicode system, then the Unicode cascading fonts device type SWINCF or PDFUC can be used to create the PDF. In this case the language of the form is not so important.
    Regards,
    Aidan

  • My operating system is Windows XP SP3.  I have Adobe 11.0.08 installed.  I cannot print a pdf file/document. Error message - AeroRd32.exe - Unable To Locate Component  -  "Application failed to start because lxdautil.dll not found."  Any suggestions?

    My operating system is Windows XP SP3.  I have Adobe 11.0.08 installed.  I cannot print a pdf file/document. Error message - AeroRd32.exe - Unable To Locate Component  -  "Application failed to start because lxdautil.dll not found."  Any suggestions?

    That DLL is part of your printer driver; reinstall or update the device driver for your printer, and the message should go away.

Maybe you are looking for

  • Error in Message Mapping and Workflow

    Hi everyone. I have a BPM that works fine. We've discovered that doesn't work because of big files. We've changed some parameters that SAP told us but still doesn't work. I'm trying to send a 60mb file from XI to R3 via RFC. I haven't reach that step

  • Transaction PSV2-business event type-abbreviation search term doesnt work

    hello masters, could someone knows how to solve this strange thing...In production machine i have two users that cant search in tcode PSV2 for event type in abbreviation separator... in dev and quality machines works, i already try to find difference

  • Should I track trcss and trvset files in RH 9?

    Hi all, We recently upgraded to RH 9 from RH 7. I see these two file types in RH 9 that I'm not sure what they are/do. .trcss and .trvset. Do they need to be tracked in our source control system? Or should they be ignored? We're using mercurial for o

  • Can you run Hardware Test from older DVD?

    Hello, My mini2,1 came with OS 10.4. I have the two original system discs. SInce I bought it right before 10.5 was released, Apple sent me a single Leopard Upgrade disc. Does anyone know if the Apple Hardware Test is on the 10.5 upgrade disc? If it i

  • Mail and safari not working properly

    So i had not used my laptop in about a week because of an issue with safari that was driving me crazy. When i get to https sites (totally random) have a box to enter something like a cc number or address as i start to type safari gives me the busy wh