Filter DLL couldn't allocate enough memory error while exporting word to pdf on linux

Hi,
I have downloaded PDF export 8.4.1 Linux(x86-64) version and I ran makedemo.sh
after that I modified the 'exepath' to my demo folder on default.cfg file and I am running ExportTest.sh by passing the micro soft document file and converting to pdf. I am also passing the pdf file name as second parameter and the third parameter is default.cfg file.
I am getting the following error "Conversion Error: filter DLL couldn't allocate enough memory:".
Am I missing any settings or should i allocate the memory anywhere?
Thanks,
Suresh K

Hi,
Found a note explaining the significance of these errors.
It says:
"NZE-28862: SSL connection failed
Cause: This error occurred because the peer closed the connection.
Action: Enable Oracle Net tracing on both sides and examine the trace output. Contact Oracle Customer support with the trace output."
For further details you may refer the Note: 244527.1 - Explanation of "SSL call to NZ function nzos_Handshake failed" error codes
Thanks & Regards,
Sindhiya V.

Similar Messages

  • "Unable to Allocate Aligned Memory" error, while executing BR

    Hi Gurus
    I'm facing "Unable to Allocate Aligned Memory" error while executing a BR. Please help me out, I'm in a real trouble due to this.
    Thanks

    Everyday I get more and more worried about this forum and the way things are heading.
    If you are an essbase administrator you should understand the basics or just research a little bit.
    Even a quick search would reveal your answer - Re: Unable to Allocate Aligned Memory:Essbase error:1008143
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • RrRenderingError - Error while exporting report to PDF

    Hi,
    I am getting an error while exporting SSRS 2000 report to PDF. The error message is as shown below. This is report actually by sales rep and it is working fine with all the sales rep but when i try with one sales rep  i get this error.
    Error
    Exception of type Microsoft.ReportingServices.ReportRendering.ReportRenderingException was thrown. (rrRenderingError) Get Online Help
    Exception of type Microsoft.ReportingServices.ReportRendering.ReportRenderingException was thrown.
    Object reference not set to an instance of an object.
    Please somebody help me out.
    Thanks
    Cheers
    Gigi
    cheri

    Cherian K,
    A message that indicates that the object reference is not set to an instance of the object is typically caused by one or more of the following reasons:
    There are soft page breaks within empty lists in the report.
    There are hidden groups within the report and you tried to export it to PDF.
    The report has a link to a subreport that is not published on the report server and you tried to export it to CSV.
    There are text boxes with a width and/or height of zero in the report.
    A text box is either hidden or the NoRows property is set to true.
    A text box spans table cells where some cells have a collection of null values.
    The report has static columns and/or rows and, in the Visibility properties, Hidden is set to true.
    The report has static columns and/or rows and there are grand totals in the report.
    The report has static column headings and, in the Visibility properties, Hidden is set to true.
    The matrix report has multiple columns and rows and, in the Visibility properties, Hidden is set to true and
    you tried to export to PDF or TIFF.
    Regards
    Shiv

  • "Memory full." error while exporting report to PDF format - CR2008SP2

    <br>
    Hello,<br>
    <br>
    I am developing a C#.NET application that uses the CR2008 SP2 .NET libraries. This application performs some database updates and uses CR2008 SP2 to run 7 different reports and export the results to PDF files. This application is a console application that only uses Crystal to export the rendered reports - it does not use previews or printing.<br>
    <br>
    The specific pattern of this application is as follows:<br>
    <br>
    - perform some database updates<br>
    - render report #1 and export it as a PDF file<br>
    - perform some database updates<br>
    - render report #2 and export it as a PDF file<br>
    ... pattern repeats to report #7 ...<br>
    <br>
    This application works fine as long as I run only one instance of it at a time. The problem occurs when I try to run multiple instances of this application at the same time. When I run multiple instances of this application at the same time (against totally different databases) each instance will start up happily and begin running through the process described above. After a few moments one or more instances will fail during the report export. The specific error is as follows:<br>
    <br>
    "Memory full. Failed to export the report. Not enough memory for operation."<br>
    <br>
    The error always comes from the call to:<br>
    <br>
    CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToDisk(Format, FileName)<br>
    <br>
    I have watched the memory consumption of these instances of my application while they are running. They never seem to exceed approximately 52MB each. At this time task manager reports over 1GB of physical memory free. These numbers lead me to believe that memory is not actually "full".<br>
    <br>
    Here are some specifics about the environment:<br>
    <br>
    Dell Vostro 1720 / P8600 / 4GB<br>
    Windows 7 Ultimate x64<br>
    SQL Server 2008 SP1 x64<br>
    Crystal Reports 2008 SP2<br>
    <br>
    Specifics about the C# application:<br>
    <br>
    IDE: Visual Studio 2008 SP1<br>
    Type: Console Application<br>
    Target platform: x86<br>
    .NET Framework: 3.5 SP1<br>
    Crystal References:<br>
    - CrystalDecisions.CrystalReports.Engine (v12.0.2000.0)<br>
    - CrystalDecisions.Shared (v12.0.2000.0)<br>
    <br>
    Specifics about the report templates:<br>
    <br>
    The report templates are RPT files saved from CR2008 SP2. They are relatively simple. A few of them (maybe 3) contain a single subreport.<br>
    <br>
    Specifics about the database:<br>
    <br>
    Each database is approximately 1GB in size. The database contains many tables but the reports only access a handful of tables. Each table that the reports access have maybe a few hundred rows tops. Most have less than 100. Likewise, when the reports perform their selections the resulting rowset for the reports is anywhere from about 20 records to a few hundred records tops.<br>
    <br>
    A few items to note:<br>
    <br>
    - Multiple instances of my application need to be able to run on a single machine at the same time. It is a specific design requirement.<br>
    - My application works fine as long as I run only one instance of it at a time.<br>
    - My application works fine when I run multiple instances if I comment out the Crystal part of it.<br>
    - My application works fine when I run multiple instances if I change the export format from PDF to HTML32 or HTML40 (have not tried any others)<br>
    - The machine has over 1GB of physical memory free when this error occurs.<br>
    - I have taken steps to ensure that I am properly disposing of my CrystalDecisions.CrystalReports.Engine.ReportDocument instance just after each export is complete. I have tried to use the "using" keyword, as well as explicitly setting the instance to null and calling the .NET framework garbage collector. This did not seem to help.<br>
    <br>
    Any assistance with this issue would be greatly appreciated.<br>
    <br>
    Steve<br>
    <br>
    Edited by: scbraddy on Mar 11, 2010 1:53 AM

    <br>
    Jonathan & Ludek,<br>
    <br>
    Thanks for the timely response and good suggestions guys!<br>
    <br>
    I have performed a few more tests today in order to help answer some of your questions.<br>
    <br>
    Below are my responses. Some of them are answers to questions and some of them are observations based on tests I have performed today.<br>
    <br>
    - The database system is SQL Server 2008 SP1 Developer Edition x64.<br>
    <br>
    - The C# application connects to the database using the native .NET SQL client (System.Data.Sql).<br>
    <br>
    - During runtime I connect the report to the database by looping through the ReportDocument.Database.Tables collection. For each Table found I create a CrystalDecisions.Shared.TableLogOnInfo instance, fill in the table name, server name, database name, user ID, and password, and use Table.ApplyLogOnInfo() to apply it. I do the same thing for the subreports collection if there are any. Like I said, about half of the reports contain a single subreport.<br>
    <br>
    - The report templates are currently set to use the "SQLOLEDB" Provider. The Database Type is set to "OLE DB (ADO)". I am not entirely sure what you mean by trying a different database driver. I assume you mean to change the provider? If so, given the fact that we are using SQL Server 2008, what would I change it to?<br>
    <br>
    - If I do not perform the database updates during application runtime (instead, perform them ahead of time and then allow the application to only render the reports) then I still have the same problem. Nothing changes.<br>
    <br>
    - I installed the Fix Pack 2.5, rebooted, and tried again. Same problem.<br>
    <br>
    - I do not beleive that I am using XML transforms. How would I know?<br>
    <br>
    - Regarding fragmented memory: It is hard for me to believe that, given the amount of memory free on the machine once all processes are up and running (1GB+), and the size of the processes (~50MB), that a contiguous block could not be found. Maybe there is some Crystal process that is attempting to balloon out of control, but as far as I can tell my application is not getting very big. I will not rule this out of course because I don't know for sure.<br>
    <br>
    - Regarding killing the process once a report is rendered: The problem with this is that the application needs to perform these 7 groups of updates and render these 7 reports in a specific sequence all as part of one complete "pass". Also, this application needs to be able to be able to handle a scneario where one or more instance of the application is started on a single machine at roughly the same time (pointed at different databases). The application actually does work fine in this regard (staying well within the capabilities of my 4GB laptop even when 8 of them are running) except that I always get the same error when I choose PDF as my export format.<br>
    <br>
    - I ran a test today where I changed the export format to HTML40 and started 8 instances of the application at the same time, each working from a different copy of the database. The instances ran a little slow but did complete in good time with no errors. Please note that changing the export format to PDF will cause the application to fail with the "memory full" error if even only 2 instances are running at the same time. The only way I can successfully complete a run with the export format set to PDF is to run only 1 instance at a time. I can run it over and over all day long and it will not fail, as long as only 1 instance is running at a given time. As of yesterday I had only proven that the application would complete when using the HTML40 export format when 2 or 4 instances are running, but today I doubled it again (to 8) and still no failure while using HTML40. This is possibly the most interesting fact about this problem, and is another reason why I am skeptical that memory fragmentation is the culprit.<br>
    <br>
    We would like to solve this problem because we would like to continue to target the PDF format. It is the standard report export format for our applications. If we cannot solve this problem we may call a meeting and decide whether to proceed with the HTML40 export format, or possibly dump Crystal from this project altogether.<br>
    <br>
    Thanks again for your interest in our problem and your timely and helpful responses. I'm really not sure where to go next ... maybe change the database provider in the templates? I will need some specific advice in this area because I'm not sure what to do. Any more ideas you guys have will be greatly appreciated on this end!<br>
    <br>
    Steve<br>
    <br>
    Edited by: scbraddy on Mar 12, 2010 2:18 AM

  • IllegalArgumentException error while exporting report in PDF format

    Hi all,
    we are using Crystal Report 2008, Java 1.5.22 and JRC 11.8.4.1094 to export reports in pdf format within java.
    It is working fine for all reports except for a specific report where it gives IllegalArgumentException while exporting the PDF.
    Below the error occurred:
    12:39:16,875 ERROR [c] Disk Exporter: no output file was created by an exporter
    12:39:16,875 ERROR <b> PdfExporter: caught Exception in PDFFormatter.finalizeFormatJob (from destination?); aborting export
    java.lang.IllegalArgumentException
         at com.crystaldecisions.reports.exporters.destination.disk.c.a(Unknown Source)
         at com.crystaldecisions.reports.exporters.format.page.pdf.b.a(Unknown Source)
         at com.crystaldecisions.reports.a.e.if(Unknown Source)
         at com.crystaldecisions.reports.formatter.a.c.if(Unknown Source)
         at com.crystaldecisions.reports.formatter.a.c.a(Unknown Source)
         at com.businessobjects.reports.sdk.b.b.int(Unknown Source)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.x.a(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.q.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.dd.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.export(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.AdvancedReportSource.export(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.NonDCPAdvancedReportSource.export(Unknown Source)
         at com.crystaldecisions.reports.reportengineinterface.JPEReportSource.export(Unknown Source)
         at com.crystaldecisions.report.web.event.br.a(Unknown Source)
         at com.crystaldecisions.report.web.event.w.a(Unknown Source)
         at com.crystaldecisions.report.web.event.b7.broadcast(Unknown Source)
         at com.crystaldecisions.report.web.event.av.a(Unknown Source)
         at com.crystaldecisions.report.web.WorkflowController.do(Unknown Source)
         at com.crystaldecisions.report.web.WorkflowController.doLifecycle(Unknown Source)
         at com.crystaldecisions.report.web.ServerControl.a(Unknown Source)
         at com.crystaldecisions.report.web.viewer.ReportExportControl.a(Unknown Source)
         at com.crystaldecisions.report.web.ServerControl.getHtmlContent(Unknown Source)
    12:39:16,875 INFO  [c] Disk Exporter: finalizing export to destination
    12:39:16,875 ERROR [JRCCommunicationAdapter] Failed to export report
    com.crystaldecisions.reports.exporters.format.page.pdf.a.a: Unknown exception is thrown
         at com.crystaldecisions.reports.exporters.format.page.pdf.b.a(Unknown Source)
         at com.crystaldecisions.reports.a.e.if(Unknown Source)
         at com.crystaldecisions.reports.formatter.a.c.if(Unknown Source)
         at com.crystaldecisions.reports.formatter.a.c.a(Unknown Source)
         at com.businessobjects.reports.sdk.b.b.int(Unknown Source)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.x.a(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.q.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.dd.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.export(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.AdvancedReportSource.export(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.NonDCPAdvancedReportSource.export(Unknown Source)
         at com.crystaldecisions.reports.reportengineinterface.JPEReportSource.export(Unknown Source)
         at com.crystaldecisions.report.web.event.br.a(Unknown Source)
         at com.crystaldecisions.report.web.event.w.a(Unknown Source)
         at com.crystaldecisions.report.web.event.b7.broadcast(Unknown Source)
         at com.crystaldecisions.report.web.event.av.a(Unknown Source)
         at com.crystaldecisions.report.web.WorkflowController.do(Unknown Source)
         at com.crystaldecisions.report.web.WorkflowController.doLifecycle(Unknown Source)
         at com.crystaldecisions.report.web.ServerControl.a(Unknown Source)
         at com.crystaldecisions.report.web.viewer.ReportExportControl.a(Unknown Source)
         at com.crystaldecisions.report.web.ServerControl.getHtmlContent(Unknown Source)
    Caused by: java.lang.IllegalArgumentException
         at com.crystaldecisions.reports.exporters.destination.disk.c.a(Unknown Source)
         ... 56 more
    Have an idea?
    Thanks

    Hello Andrea.
    I searched through the SAP Notes for the error that you are encountering.  There is an SAP Note that exists titled the following:
    1332907 - Report being exported to PDF format using the Crystal Reports for Eclipse 1.x runtime, errors with the exception: PdfExporter: caught Exception in PDFFormatter.finalizeFormatJob
    Since you may not have access to the SAP Notes, I will extract the details that are mentioned in the note here:
    =============================================
    Symptom
    Attempting to export a report to Adobe PDF format using the Crystal Reports for Eclipse 1.x runtime results in an exception.
    The exception indicates "PdfExporter: caught Exception in PDFFormatter.finalizeFormatJob"
    Environment
    Windows 2003
    Apache Tomcat 5.0
    Crystal Reports for Eclipse version 1.x
    Reproducing the Issue
    Using the Crystal Reports for Eclipse runtime version 1.x attempt to export a report to PDF format that has the "Repeat Group Header on Each Page" option enabled.
    Note: This does not occur if this option is enabled in a subreport.
    Cause
    When the "Repeat Group Header on Each Page" is enabled for a group in a main report the Crystal Reports for Eclipse 1.x runtime is unable to correclty format the PDF document which results in an exception.
    Resolution
    Updating the application to use Crystal Reports for Eclipse version 2.x runtime will resolve the issue.
    The most recent updates to the Crystal Reports for Eclipse runtime can be freely downloaded from the SAP SDN Website. 
    http://www.sdn.sap.com/irj/boc/crystalreports-java
    =============================================
    Since you are on JRC 11.8.4.1094 which is Crystal Reports for Eclipse 1.x, this may be the cause of your problem.
    I hope that this helps.
    Regards.
    - Robert

  • Memory error while OCRing a large PDF

    I have a 3.000 pages's PDF, which amounts to 1 gigabyte, out of a scanned book.
    When trying to perform OCR with ClearScan 600 dpi set, Acrobat  seems to go ok for many pages but then suddenly I get this error:
    Acrobat could not perform recognition
    (OCR) because:
    There is insufficient memory to process
    this page.
    I am on a macbook Air with 4G. I checked the disk space and there are 71 free. I googled around and saw people with 16G RAM with the same error.
    So what should I do?
    I need to keep the 600 dpi choice for it's a book (a legal code) with small fonts and I am afraid downsampling would make it unreadable.
    Any hint?
    Thank you and have a nice weekend.
    –&#8232;cordialmente,
    tiziano solignani, da  Mac
    http://blog.solignani.it

    Hi Tiziano -
    Rather than scanning the entire book into one file, scan about 1/4 of the book and save as a pdf file. Then repeat until you have 4 files. Save them all, then combine them in Acrobat. It takes far less memory to simply combine files than to store all that scanned information and try to produce the single file.
    donna.

  • Out of memory error while rendering

    Trying to render a 1 minute comp and part way through it tanks out with a "7::66 Unable to allocate enough memory" error. I watch the RAM usage indicator at the bottom of the render screen and it just gradually climbs until it hits 100% and crashes.
    System is a 2013 Mac Pro running latest version of Yosemite and latest version of CC. I have 64GB of RAM installed so at this point I'm going to disregard AE's advice that I bump this up.
    Also using Element 2 in the comp so that may be a culprit.
    Anyhow, if anyone has any advice on how to troubleshoot this I would greatly appreciate it.

    When you say latest version of CC, do you mean version 12.2.1.5?
    What is in your comp besides the layer with Element on it?
    Have you used a minute-long comp with Element 2 in the past?
    What are the rest of your system specs?
    Have you tried the "secret" preferences setting to purge after a certain number of frames?
    Another suggestion would be to render an image sequence. Then, if it crashes, you can just pick up the render from where it left off.

  • SAP DBTech JDBC: [4]: cannot allocate enough memory: Out of memory

    Hello,
    I am currently experiencing this error when making request to the Hana database via jdbc : SAP DBTech JDBC: [4]: cannot allocate enough memory: Out of memory
    I guess I am running out of space, so I wanted to delete some data from unused tables. The problem is that I cannot connect with Studio anymore "Error when connecting to system".
    Is there another way to delete data from some tables when getting this particular error ?
    Does anyone experienced such a situation ?
    Thank you,
    Benoît

    Hi Benoit,
    Please plan to migrate to the latest version from Rev 38 before 1 year license expires in Rev 38 in Oct 2013. You need to export your content and import in the latest version.
    As you are aware, a lot of bugs are fixed between Rev 38 and the newer releases along with new SPS5 features  and HANA One is adding new web based management features in each HANA One release which does not need SSH to stop|start HANA as it can be done in browser starting in Rev 52 (check out The specified item was not found.for additional info). Please stay tuned for the upcoming version which will have additional management features to manage your instance.
    Thanks,
    Swapan

  • Unable to allocate enough memory to render the current frame

    I am a bit of a novice at AE, just starting to learn. I have googled this, searched these forums and tried all I can think of. No luck. SO I will ask here. 
    I bought this AE file  http://videohive.net/item/-earth-zoom-customize/6451983 
    Here is the error message I get when trying to render
    After Effects error: Unable to allocate enough memory to render the current frame (18172 x 18172 @ 8 bpc). Either decrease the memory requirements for the rendering of this frame, or install more RAM. (12805). For more information, see adobe.com/learn_ae_mem (7 :: 66)
    I even tried to render the project without making any changes. No luck
    My info:
    Macbook pro 15” Mid 2012
    OSX 10.9.2
    Processor 2.6 ghz intel core i7
    Memory: 8 GB 1600 MHz DDR3
    Graphics  NVIDIA GeForce GT 650M 1024 MB
    Running AE CC 12.2.1.5
    First thought, Is my laptop inadequate for this type of work? 
    When it says - (18172 x 18172 @ 8 bpc) is that the resolution it's trying to output? The project is 6 seconds long and 1920x1080 resolution.
    I can render it at half resolution, but not at the 1080 res.
    Thanks for your help.

    Purged cache, set it to purge every 5 frames ... no luck. Purge every frame ... no luck.
    I tried disabling different parts of the clip to render. No luck until I disabled the inner shadow of the globe, and it seems to work.
    What should your purge setting be normally for this ap? I think it was set to "0". SHould I move it back to 0?
    Thanks for your help.

  • After Effects Unable to Allocate Enough Memory to Render Current Frame/ MeshWarp problem.

    Hello,
    I am currently working with 17 layers in AE- CC 2014.1.1 (13.1.1)  Most of the layers have multiple effects, including the "Mesh Warp,"- which happened to have been freezing my computer constantly.  I finally had to change computers... First, I was unable to render these layers, because there is not enough memory space. So I went back to editing. After adding a couple of video layers, I went to play back, and got the above message:  "After Effects Unable to Allocate Enough Memory to Render Current Frame"
    I changed my "cache" folder to my external hard drive. I also upped the cache space from 23MB to 50MB. But I am still getting this error.
    In terms of the Mesh warp: Once i brought the effect to the video file, and tried to move the grid, I got the rainbow spinny ball. It went away after a while. As soon as I clicked on ANYTHING- i got the wheel again. This continued until I "Forced Quit." I don't know what thats about...
    This is the info for the Composition Settings/ computer I am working on. i am trying to give as much information as possible. This is for my Senior Thesis! Can anyone please help me ASAP?
    Best,
    Julia

    What are these layers you're working with? What size? What format? What Codec? What color space?
    What happens if you turn on Render Multiple Frames Simultaneously (reserving at least one core for other programs)?
    Julia_SpecialEffects wrote:
    I also upped the cache space from 23MB to 50MB. But I am still getting this error.
    I assume you mean GB, not MB...
    What happens if you save to version 12 and try to work on it there? (If you don't have an older version installed, try it: Creative Cloud Help | Install, update, or uninstall apps)
    Have you tried rebooting your machine recently? Do other programs/apps//software run normally?

  • Export several Fuji X-Trans Files got "Not Enough Memory" Error

    When I tried to export several (say 15) Fuji X-Trans files at the same time, I got a "Not Enough Memory" Error. This problem only occurred after after upgrading to Lightroom 4.4. I can now only export a few (3-5) X-Trans files at the same time. Does anyone encounter this problem and know how to fix it?
    I am using Windows 7 32-bit with 4GB memory, SSD System drive, and Radeon 7700 Graphics card. For Virtual memory, I set "no paging file" on C drive and "system managed size" on another SSD drive.
    Thanks in advance.
    Wilson

    One might expect an Export function is single-threaded so the number of files exported wouldn’t matter, but perhaps if you are very close to the limit, memory fragmentation comes into play, where LR is requiring contiguous blocks and there aren’t any big enough.  It’s probably time to upgrade to a 64-bit Windows system and start getting used to the Metro interface which isn’t bad as long as your frequently-used programs have tiles on the first screen.
    Go to Help / System Info… and see how much memory LR has available.  On my 32-bit system with 4GB of RAM installed LR only has 716.8MB available which is typical for 32-bit Windows applications:
    Built-in memory: 3327.0 MB
    Real memory available to Lightroom: 716.8 MB
    Real memory used by Lightroom: 160.5 MB (22.3%)
    Virtual memory used by Lightroom: 160.8 MB
    Memory cache size: 33.2 MB
    You could change your VM settings to allocate a multi-gigabyte minimum pagefile size to see if it makes any difference, in case LR is waiting on the VMM to allocate more and then gives up, but I’d expect LR is requiring actual RAM for processing images, not VM which is much , much slower.

  • A FIX for error message: When I try to open Snood (it's a game) I get this message.  Not enough memory {Error # :: 0, in sound.cp@line 101  Can you help?

    After years of playing Snood, w/o problems, I started getting this error message, on my iMac, OS 10.5.8,
    with 4 GB of memory when opening Snood:  Not enough memory {Error # :: 0, in sound.cp@line 101
    My MacBook Pro w. Mac OS 10.6.8 did not have this problem.
    Initially I thought that Snood raised its minimum requirement to Mac OS 10.6.
    I had several correspondences with Snood. Their tech support is great. Quick and thorough responses.
    They thought the issue was in Mac's system preferences/ Sound. It was.
    I didn't realize that my sound input and output devices were gone.
    The fix was resetting the PRAM. I found this advice on MacFixIt.com.
    MacFixIt help with volume:   http://reviews.cnet.com/8301-13727_7-10415659-263.html
    Resetting the PRAM is on Apple support:   http://support.apple.com/kb/HT1379
    My sound (music!) is back, along with Snood. So glad I reset the PRAM before reinstalling the OS software!
    Thank you to Snood, MacFixIt and Apple.
    Happy new year all!

    Good work, nice post/tip, thanks!

  • Not enough memory errors

    I have a d110a printer. Setup worked fine. Downloaded the HP Iprint app to my phone. No issues. Sometimes when I'm printing a pic from the phone i'll get possible printer error, not enough memory. I'll shut the prnter off and back on it resolves the issue. Any known fixes for this?

    Ok Rusty,
    This are the official ADOBE spec.
    Windows
    Intel® Pentium® 4 or AMD Athlon® 64 processor
    Microsoft® Windows Vista® with Service Pack 2 or Windows® 7 with Service Pack 1
    2GB of RAM
    1GB of available hard-disk space
    1024x768 display
    DVD-ROM drive
    Internet connection required for Internet-based services*
    Premiere, Photoshop etc runs fine, my friend have a similar System it runs
    better, no Error
    I export only one Picture in LR4 and its come Not Enough Memory.
    I export in LR3.6 120 Pictures and works fine!!!!
    nice day
    mangray

  • Troubleshoot not enough memory error

    I am getting a not enough memory error, and while there are tons of posts about this on the forums, I had some additional questions. First, I have two cRIOs, and think the error may have been thrown by one of them. Is this even possible though? I'm trying to narrow down which exe the error may be in. Second, does anyone have an order of steps they take when they get these errors in order to troubleshoot them?
    CLA, LabVIEW Versions 2010-2013
    Solved!
    Go to Solution.

    Found the REAL problem! I was not reading my header correctly, this resulted in type casting the wrong bytes of data. Every now and then I would be type casting bytes of data that when type casted from a string to a I32 resulted in a number around 17 million. I am assuming the TCP read tries to malloc this memory (or new if its c++ ) and was unable to do so. That's why I got the not enough memory error. When I started reading my TCP bytes correctly, the error went away.
    CLA, LabVIEW Versions 2010-2013

  • INTERNAL ERROR & NOT ENOUGH MEMORY error

    Somehow 4 gig of memory is not enough!!
    I am on Win Vista ultimate. intel Core 2 Duo 2.66 4 BG of
    Ram.
    And I'm working on a local hard drive with fat all else
    running
    I constantly get "Internal Error occurred...could not complete
    request"
    particularly alarming if that request was to save!!!!. I have
    been using the 'fireworks autobackup" air app...save me heaps of
    time...But its taking longer and longer to save the file as I work
    on it.
    If i save every 10 minutes !!!! its taking 1:20 to save..this
    is 12% of my time...FW STILL sucks memory somehow..
    any one with solution to this!!!???
    Ive also had the "not enough memory" error a few times..In
    which every thing done on the file is lost since last it was
    opened...whether I saved it a million times or not. I've started
    making copy backups and restarting FW every few hours to purge the
    memory..but this sucks. This memory leak seemed to be mostly gone
    in CS3 according to others so assumed CS4 had it sorted

    One of our users is running across a similar issue using the
    pen tool. A file that's 3000x2000 having sections cut out using the
    pen tool will spike FW up to 2gig of used ram. Eventually the
    Internal Error messages will start but, you can still trace your
    path. The issue is it pops up every time you click a new point. The
    only current work around I have for the user is to shrink the file
    or decrease the dpi. Has anyone else run across this?
    Specs
    XP SP3
    Core2 3.0ghz
    4 gig ram.

Maybe you are looking for