Problem w/2 pages in a 44pg. catalog outputting to a PDF

Using Mac OS 10.6.8, ID 7.0.4 been a MAC user since 1988.
Been working on a 44 page catalog for about the last month and during that time producing PDF's for the client to proof. Everything has been going fine...until today.Now when I output a PDF, pages 8-9 don't produce crop marks, a colored text box doesn't show up and a dialog box comes up and say, "You may have problems viewing this document correctly. Please contact the person that created this doc". I've gone through hours of trying to eliminate what it could be w/no success. BUT...if I take—say page 9—in the pages panel and drag it down to the end of the catalog it outputs fine.
I even inserted 2 new pages above pages 8 and 9, slected all the content and dragged it to the new pages (which of course now become the NEW pages 8 and 9) and it still doesn't produce a PDF right. Still missing crop marks & colored text box. It's a fairly simply doc. Text, 2 photos and a colored text box and nothing overlaps, same fonts as all the other pages etc. It's designed as all the other pages. This problem only happens with pages 8-9. Everything before & after output fine.
I was thinking maybe it's a corupted prefernces file, but I do have some custom preferences I've made and I've forgot where to find that file and how to restore it if it doesn't work. If I do trash the preferences and close ID, when I relaunch ID and open my .indd catalog file, will it automatically create a new preferences files & load the preferences I have built into the doc?
Any other ideas how to correct this problem?

Now when I output a PDF, pages 8-9 don't produce crop marks, a colored text box doesn't show up and a dialog box comes up and say, "You may have problems viewing this document correctly. Please contact the person that created this doc". I've gone through hours of trying to eliminate what it could be w/no success. BUT...if I take—say page 9—in the pages panel and drag it down to the end of the catalog it outputs fine.
Our two standard recommendations:
Trash, Replace, Reset, or Restore the application Preferences: http://forums.adobe.com/thread/526990
Clean corrupt files by exporting to Interchange Format (.inx): http://forums.adobe.com/thread/526991
I was thinking maybe it's a corupted prefernces file, but I do have some custom preferences I've made and I've forgot where to find that file and how to restore it if it doesn't work. If I do trash the preferences and close ID, when I relaunch ID and open my .indd catalog file, will it automatically create a new preferences files & load the preferences I have built into the doc?
See above. You should trash the preferences while ID is closed, not while it is open. It will automatically create new preferences files, yes. It will maintain the preferences that are document-specific when you load the document, yes.

Similar Messages

  • Blank page coming inbetween the output of the pdf

    Hi Tim,
    I am getting a blank page in between the data output of the pdf. For example I have a 10 pages output of the pack slip report in PDF so for the first 7 pages it is printing the header and line information printed correctly. But for 8th page only header information is printed(without line information) and 9th page only half part of the header (header is having 10 rows so only 5 rows ) are getting printed
    Any help will really appriciated. This is in production now.
    Thanks,
    Ambadas

    Hi Ravi,
    Thanks, I tried removing all spaces but still it is giving this problem and this is not happening all the time but only for large report like more than 7-8 pages. Can you look at the template see if I am missing something.
    Please let me know.
    Thanks again.
    Ambadas

  • Problem with "Next Page" And "Zoom" in CrystalReportViewer With VS 2010

    Hello,
    i am using crystal report v 13 sp1 with visual studio 2010,
    As mebtioned, the next page and the zoom is not working in my report, whiwh has as data source "Stored Procedure"
    This is my code, and i think it's correct, i was using this code in previous versions of crystal report (cr10) and it worked fine,
    When i used the Data set , the next page and zoom worked fine, but with stored procedure it doesn't work,
    Note: when i open the Tree of Data on the left, then click on the next page or the zoom, it become funtional, it's very weird,
    protected void *Page_Init*(object sender, EventArgs e)
    if (!IsPostBack)
    reportDocument = (ReportDocument)this.Page.Session ["_reportDocument"];
    if (reportDocument != null)
    string rptFile = reportDocument.FileName.Split('
    ', '/').Last();
    LoadReportRessource(reportDocument);
    TableLogOnInfo log = new TableLogOnInfo();
    ConnectionStringSettings conn = WebConfigurationManager.ConnectionStrings[0]; //la premiere connectionstring
    SqlConnectionStringBuilder SConn = new SqlConnectionStringBuilder(conn.ConnectionString);
    log.ConnectionInfo.ServerName = SConn.DataSource;
    log.ConnectionInfo.DatabaseName = SConn.InitialCatalog;
    log.ConnectionInfo.UserID = SConn.UserID;
    log.ConnectionInfo.Password = SConn.Password;
    log.ConnectionInfo.Type = ConnectionInfoType.SQL;
    for (int i = 0; i < reportDocument.Database.Tables.Count; i++)
    reportDocument.Database.Tables.ApplyLogOnInfo(log);
    for (int i = 0; i < CrystalReportViewer1.LogOnInfo.Count; i++)
    CrystalReportViewer1.LogOnInfo.ConnectionInfo = log.ConnectionInfo;
    CrystalReportViewer1.ParameterFieldInfo = (ParameterFields)this.Page.Session ["_paramFields"];
    CrystalReportViewer1.ReportSource = reportDocument;
    CrystalReportViewer1.DataBind();
    CrystalReportViewer1.ShowFirstPage();
    else
    CrystalReportViewer1.ReportSource = (ReportDocument)this.Page.Session ["_reportDocument"] ;
    Edited by: Soumaya on Sep 7, 2011 6:16 PM

    @Don:
    Sorry, but i donno what do you mean by "what is the App Pool running in 32 or 64 bit?",
    i am running the application locally, ( the IIS is installed locally ),
    as i told you, my OS is 64bit,
    And yes i tried a very simple report, with just one field , and the "next button" is also not working,
    Its only not working with stored procedure, in the others methods ( push or pull method is working fine)
    i think its a problem in refreshing page, because when i open the tree on the left, then click on next page or zoom, its works fine
    @Ludek:
    i changed my code as below, and it doesn't solve my problem:
            ReportDocument reportDocument;
            protected void Page_Init(object sender, EventArgs e)
                if (!IsPostBack)
                    reportDocument = (ReportDocument)this.Page.Session["_reportDocument"];
                    if (reportDocument != null)
                        string rptFile = reportDocument.FileName.Split('
    ', '/').Last();
                            TableLogOnInfo log = new TableLogOnInfo();
                            ConnectionStringSettings conn = WebConfigurationManager.ConnectionStrings[0];
                            SqlConnectionStringBuilder SConn = new SqlConnectionStringBuilder(conn.ConnectionString);
                            log.ConnectionInfo.ServerName = SConn.DataSource;
                            log.ConnectionInfo.DatabaseName = SConn.InitialCatalog;
                            log.ConnectionInfo.UserID = SConn.UserID;
                            log.ConnectionInfo.Password = SConn.Password;
                            log.ConnectionInfo.Type = ConnectionInfoType.SQL;
                            for (int i = 0; i < reportDocument.Database.Tables.Count; i++)
                                reportDocument.Database.Tables<i>.ApplyLogOnInfo(log);
                        this.Page.Session["_reportDocument"] = reportDocument;
                        CrystalReportViewer1.ParameterFieldInfo = (ParameterFields)this.Page.Session["_paramFields"];
                        CrystalReportViewer1.ReportSource = reportDocument;
                        CrystalReportViewer1.ShowFirstPage();
                else
                    CrystalReportViewer1.ReportSource = this.Page.Session["_reportDocument"];
    Edited by: Soumaya on Sep 8, 2011 10:39 AM

  • A lot of tabs loads and tells me there was a problem loading the page. How can I stop all the tabs loading because ist slows down Firefox.

    When I open Firefox, a lot of tabs try to open at the same time. They all say Problem loading the page. It happened after I tried to download a owners manual for Harley Davidson motor cycles. How can I stop all but one tab from opening.

    This can be a problem with the file [http://kb.mozillazine.org/sessionstore.js sessionstore.js] and sessionstore.bak in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder]
    Delete [http://kb.mozillazine.org/sessionstore.js sessionstore.js] and sessionstore.bak in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder]
    If you see files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js then delete those as well.
    See:
    * http://kb.mozillazine.org/Session_Restore

  • I'm having a problem saving a pages document as another format, like a Word document or PDF file.  I've never had this problem in the past.  Please help me!  I need to have this fixed a.s.a.p.

    Hello everyone,
    I'm currently having a problem saving a Pages document as another format, such as a Word document or PDF file.  I've never had this problem before with Pages.  Please help me!  I need to have this completed a.s.a.p.
    Thanks,
    Amy

    To save as a PDF, you do that from Print
    To save as Wrod format, you export
    Allan

  • Has anyone solved the problem of sending Pages docs to Windows machines?

    I am trying to create a business newsletter that can be emailed to anyone who wants it. I'm working with OS X 10.4.10 and Pages. My business partner, who works on a PC, can't read a Pages doc, so I converted it to a pdf, and Windows won't read that, either. So I exported it as a Word doc, and he can read that, except the colors aren't true. What kind of a program creates files that pdf readers can't view? And why did I spend my money on Pages if it can't create a file everyone can read?

    Strange, I've been emailing PDFs with no problems at all.
    I am the only MAC-MAN in the office so all my work goes to 100% PC "market".
    A wild guess - are you using Apple Mail app? If so, make sure the "Send Windows friendly attachments" is selected.
    Do not encrypt the PDFs.
    Do not include EPS graphics (just in case...)
    JPEGs rather than TIFFs (dunno why, but better safe...)
    And most importantly, make sure the end users have the latest Acrobat Reader!!!
    You would be surprised to find how many "incompatibilities" boil down to obsolete software being used.
    To give you an example, I did an internal use web page using a FLASH animation, and several users sent me VERY ANGRY emails that the "MAC crap" doesn't work on their computers, well, guess what, for security (MS-security, not REAL security) FLASH was disabled on the network computers, nuf'said!
    Failing all above, send HTML.
    Hope you solve the problem. Keep us posted.
    i.3d

  • All of a sudden I have problems printing web pages wwith Firefox 3.6.8 (XP), but printing pdf pages is still fine (printing with other software as well)

    Suddenly I can't print web pages with Firefox 3.6.8 anymore, but pdf pages pose no problem - the same applies to printing with any other software

    Thanks edmeister for your trouble!
    I guess I should have written that I had tried the tips on 'reset printer' and 'does not print to paper at all' before I posted the question - to no avail.
    The printer starts as normal: it's the right printer selected, the dialogue window shows the progress of sending the data to the printer - and after that: that's it. It simply vanishes from the queue, and nothing happens.

  • Print problem after exporting Pages to PDF.

    I am attempting to print a very large genealogical book (300 + pages) of my family's descendants and noticed that in both Preview and Adobe Reader the first character of every page is missing. This does not happen when printing from Pages so it cannot be a printer problem. I checked the placement of the print against the Pages page and both Preview and Adobe Reader are EXACTLY the one character difference with the pages exactly even with each other. The original page type is 12 pt with margins: Left .5in, Right .5in, Top .75in, Bottom .75in, no header, Footer .5in using 9 pt type. What is really odd is that the onscreen display is correct but only the printed (HP OJ6500E702n wireless duplex marginless printer) copy is incorrect which indicates to me the conversion is somehow creating this problem.
    I need this PDF file as it is the file I print from plus I put the file on a disk as a backup for the paper book for all book recipients.
    Sparkgapper

    While this problem is for ANY application that EXPORTS, not prints, to a PDF format, I have discovered that the problem is probably be with the printer's minimum allowable margins being physically the same regardless of portrait or landscape instead of the logical rotation of margin type locations in landscape mode. Question answered by logic research.
    Sparkgapper

  • Problem printing flash pages - black box

    Hello,
    I am trying to help someone else in our office who is having
    a problem with swf pages converted from PDF documents. The PDFs
    were made from either Quark or Indesign documents. The pages
    contain graphics, some of which are bitmap (one-color) images. All
    looks good on screen when displayed in a browser, but when printed
    the graphics become black boxes, as though a black background were
    added to the image. Does anyone know why this is happening or can
    someone suggest a workaround? We have thousands of pages that need
    to print from our user's browsers but find we are plagued with this
    issue. The weird thing is, I found that some of the bitmap images
    were fine while most of them were bad. I used PitStop professional
    to examine the PDFs and there is nothing different about the images
    there.
    Regards,
    Len Swierski

    Anybody figure this out???
    We're having the same problem too. All of our flash paper
    documents are being converted from PDFs that orignally came from
    Quark or Indesign. The art department figured out that they could
    fix the problem by converting the bitmaps to grayscale. (Our pages
    are black and white anyway) We also found out that different
    versions of acrobat could fix the probelm. Somtimes version 7 would
    work and sometimes version 4 would work. A lot of trial and error
    and wasting paper.

  • Problems with error-page in web.xml and page caching

    Having a few problems with error pages and web.xml with browsers caching the error pages and strange errors coming out of weblogic.servlet.intenal.WebAppServletContext
    I'm trying to set a web app up so that all http errors and all exceptions are routed thruogh predefined resources. For now, I'm simply send 400 errors to 400.html and the ServletException, IOException and RuntimeException to respective html pages.
    What I'm finding is that the error codes work fine but the exceptions are only be routed to the correct error page for the first call to the servlet after server restart.
    So for example, I have my servlet throwing a ServletException as a test case. The weblogic server log shows that ServletException is thrown, and the correct error page for ServletExceptions is shown.
    If I change the Servlet code to throw IOException in place of SevletException, the weblogic.log shows that IOExceptyion is being thrown (so the servlet has deployed successfully), however the Servletxception error page is shown on the browser.
    I'm using IE6 and I've changed the setting such that a new page is requested every time using the tools-internet options-temp internet files-settings option to "check for new versions of stored pages: Every visit to the page".
    Despite this, the servlet exception error page still appears.
    If you clear the cache from the temp intenet files->delete files IE option, the correct errror page will be shown so it appears that the browser cache is being used after all.
    everytime I delete the temp intenet files I get the correct error page on the first request after but then not after that.
    I have implemented the service method for this test to throw the exceptions - does this make a differecne?
    As a test, I have moved the imlpementation to the doGet method instead bu I now get a strange eror from weblogic comlpaining about an arrayOutOfBoundsException because eror codes in the web.xml are not supported! - see error above.
    Any help is appreciated

    After further investigation: -
    There are no problems with error pages based on error codes, only error exceptions.
    As a test case, I have a service method in a servlet throwing either one of the three exception types that servlets can throw (Runtime, Servlet & IO) the following rules apply. The exception to be thrown is hardcoded and is changed and the web app rebuilt each time. The correct web.xml has been deployed to the app server (checked through console). the webapp is being redeployed correctly - this can be seen in the weblogic log, where the correct exception is reported.
    I am using WLS 8.1, Servlet 2.3, JDK 1.4.1_02
    In all cases, the weblogic log reports that the servlet is throwing the exception as expected.
    Despite having set error-page for exception javax.servlet.ServletException, the exceptions are diverted to the error page that has been set up for http error code 500
    The error page for ServletException is therefore never reached.
    I have the browser set to request pages every time it is asked.
    Once the servlet has thrown an IOException, the only way to get the browser to report an IO or Runtime exception error-page is to clear the browser cache. Restarting the server has no effect.
    Once the servlet has responded with ANY exception, it is not possible to get it to report a ServletException (which is incorrectly reported as a 500 anyway) unless the cache is cleared. Restarting the server has no effect.
    In the case where the servlet throws ServletException, it has no root exception. The servlet 2.3 spec states that if ServletException is thrown but cannot be found in the error pages, the root excpetion will be extracted and the error page list traversed again. Knowing that the RuntimeException error page is correct shown when RuntimeException is throwm, I have nested this inside the ServletException, however error page for http error 500 is still shown.
    I don't believe this is a WLS 8.1 problem, as the console shows that the correct exception is thrown each time. this is backed up by the fact that the correct exception page is thrown when the cache is cleared regardless of what exception was previousdly thrown by the servlet. This excludes ServletException which is always incorrectly thrown as a 500.

  • Error "problem loading more pages"

    Using XP SP3, IE 8 and Acrobat Reader X, I have been trying to look at a document identified by a website as .pdf.
    I see what appears to be the first page of that document - ie it makes perfect sense in the context of the website - but at the foot of the first page a message appears reading:
    "Whoops! There is a problem loading more pages. Retrying..."
    and nothing more happens.
    On another PC, using XP SP3, IE 7, and Acrobat Reader XI, I cannot even get that first page up - after clicking on the link to the document, nothing happens,
    Can anyone guess whether this is a problem with Acrobat Reader or IE? and if so, what might be done to fix it?

    Your link is on Google Docs, which uses its own PDF viewer.  I can see all pages with no problems.
    If you use the download button on top of the page, you can download a perfect PDF to your local disk.
    If that Wordpress page is yours, I would suggest that you upload the PDF to somewhere where it can be viewed with the browser's PDF plugin, not with the Google Docs PDF viewer.

  • Problem in getting Page nos in SFs

    I have a problem in getting Page nos in SFs. My problem is that, I want to print multiple docs ie SELECT-OPTION case.
    Here each doc has N no of pages. I want to print Page 1 of N for each doc. I used SFSY-PAGE / SFSY-FORMPAGES but its giving total no of pages. I want my page no has to reset for each doc.
    Ex.. DOC 1 .... Page 1 of 3, 2 of 3 etc.
    DOC2 .... Page 1 of 5 etc.
    DOC3 .... Page 1 of 1 etc.
    but its printing 1 of 9, 2 of 9 etc.
    Plz help me in this reg.
    Thanx in advance.

    Hi Sachin,
    Thanx for the reply but i think that u did not get my question correctly.
    I said that if no of pages is greater than 10, then upto 9th page it is coming as Page 1 of *,..Page 2 of *, then after 10 the page, it is coming right.
    For e.g. if the no of pages is 15, then it is coming as Page 1 of *, Page 2 of *....Page 9 of *, but from the 10th page, it is coming as Page 10 of 15 which is the correct way.

  • Problems Uploading a Pages file in html format including pictures to web pa

    I have problems uploading a Pages file in html format to a web page.
    The files itself is downloaded but the images are not. How can I upload a page file in html including the pictures or illustrations?

    I just bought a macbook as well as the iwork software. I am having a few problems. I am a student and when I try to print out documents (originally word documents) it puts them automatically into textedit instead of pages. Also, the pages get all screwed up, things are missing, etc. How do I make pages my default and do i need to export? import? or do something so that these documents show up perfectly in pages?
    A second questions- When i try to print out slideshows in keynote (originally from powerpoint) the handouts print on the little edge of the paper horizontally rather than the long way. I am hoping these are easy adjustments.
    I would appreciate any help anyone can give me.
    Thank you!

  • How can I fix this problem with exporting Pages files?

    Hello,
    I'm having problems with exporting Pages files to Word or PDF (I haven't tried the other formats). Whenever I try to export the Page file, I get one message like this: "The document "XXXXXXX" could not be exported as "YYYYYYY". This problem started after the last Pages update, before that it was working fine. I restarted the computer, updated the OS, but the problem hasn't been solved.
    Does anyone know how to fix this problem?
    Thank you in advance!
    Best regards,
    Filipe

    Computers are made of parts made by humans and assembled by humans of materials that are not perfect.
    For example, a display cable that was accidentally pinched during assembly would pass quality control testing with flying colors and would not fail until the lid had been opened and closed several times.
    Likewise a display might not fail until powered on and off a few hundred times.

  • I have a problem with searching page, whenever i try to open any page a blank paper cums appear only written custom search google in English

    i have a problem with searching page, whenever i try to open any page a blank paper cums appear only written custom search by google this one is not such as my google home page
    == This happened ==
    Not sure how often
    == i use to search any page like movies or etc

    Well, it seems waiting is not my strong suit..! I renamed a javascript file called recovery to sessionstore. This file was in the folder sessionstore-backups I had copied from mozilla 3 days ago, when my tabs were still in place. I replaced the sessionstore in mozilla's default folder with the renamed file and then started mozilla. And the tabs reappeared as they were 3 days ago!
    So there goes the tab problem. But again when I started mozilla the window saying "a script has stopped responding" appeared, this time the script being: chrome//browser/contenttabbrowser.xml2542
    If someone knows how to fix this and make firefox launch normally, please reply! Thank you

Maybe you are looking for

  • Problem using Image Processor from Bridge

    I have been using the Image Processor to process photos from Bridge for quite some time. However, I recently received an error message when I try to initiate Image Processor from Bridge and I have not been able to find any help topics that address my

  • Messages in a Queue/Topic

    hi How do i check if there are any messages in the Queue/topic. i am using Platform edition Thanks

  • How do I get GPIB USB-A to work in MAX 2.2?

    I updated from LV 6.0 to 6.1. During the intallation MAX was updated to version 2.2. My problem is that my GPIB cark USB-A is not suported in MAX 2.2, I updated to 488.2 2.0 (W32) and I can now use my card within MAX again, but I cant use VISA aliase

  • Oracle BPM 11g + Tomcat

    Is it possible to execute Oracle BPM 11g project on Tomcat ?

  • Assign device to a lot

    There is a typical problem that we are facing. We are trying to assign a device to a lot using the standard function module ISU_S_LOT_CHANGE. For the first device, this function module is assigning the lot but when we assign the second device to a lo