Make CF process .CSS pages on apache

Hello,
I read a previous post stating that it was possible to have
ColdFusion process .CSS pages. I'm not able to find any
documentation to do this on IIS or Apache. Does anyone have a URL
explaining this process?
If possible, I'd also like to somehow cache the .CSS so it's
not reloaded for each page load. Is this possible using CFHeader or
some other method? Currently I've just renamed the .CSS file to
.CFM, which makes me wonder if there's a way to get around having
to double pound all of the CSS values.
EDIT: I'm using CF 7.02.

TESTotnes wrote:
Not quite frames and tables - I just meant the frame as in the layout and table as in layout too! Should have just said layout...
Anyway... Thank you for your answer, I'm just beginning, so this is all a learning curve. I've been changing the CSS as I go along, rather than inserting an external stylesheet, do I need to insert an external one for it to work?
You may need to explain it like I'm 5 Sorry!
If you change the css in your index.html file how does it change in the about_us.html...if you have no externally linked css file .........can't work that one out.
If you have no linked external stylesheet and the css is embedded at the top of each page then it can't change in another page?

Similar Messages

  • How to Make a "fonts.css" style sheet

    Hi, I  have a wordpress blog with a stylesheet named “style.css”. I want to change the fonts in the style sheet and so I want to create a separate style sheet named “fonts.css"
    I could just duplicate the ”style.css” page and then rename it “fonts.css” but I believe I read somewhere it is better to create a new style sheet named “fonts.css” and then add my font styles to that. Doens anyone know of a tutorial or how I make the new style sheet and add my fonts?

    I only typically use two stylesheets on any given site, layout.css and styles.css. One is for the overall layout/positioning info of the site and the other is the style information which would include fonts, colors, shadows, transitions, etc.
    If it is better in your mind and for your workflow to create a third stylesheet just for the font values, go for it. To me, fonts are just another style element though, so they stay in my styles.css file.
    There's really no right or wrong to doing it either way. Just make sure you create another link in the head section of your site to the new file if you create fonts.css.
    Thanks jon,
    Yes I agree, I could just change the fonts in “style.css” and then have less style sheets, but the themes developer told me to create a new style sheet named “fonts.css” only because the theme is updated regularly and uploading a new theme will write over the file named “style.css” and then your fonts will default to their original fonts.
    I don't see anything wrong with that approach. Just remember that if you have both styesheets linked to the same page then the page will get it's css styles from the last linked stylesheet.
    So for instance if you have:
    body {
    font-size: 14px ;
    in the style.css
    and
    body {
    font-size: 12px ;
    in the fonts.css
    and the last linked stylesheet was styles.css the page would display 14px text.
    So you just need to get them in the right order IF you have more than one styleshet linked to a page.
    Thanks Osgood,
    Yes that was my other question. So in my uploaded CSS folder I have the original “style.css” file and now my new “fonts.css” file. “style.css” is above the “fonts.css” file and both contain the same information except the file “fonts.css’ has been changed to use different fonts.
    So if I understand you correctly I need to either move the file “fonts.css" above the file “style.css” or delete “style .css” from the CSS folder so the file “fonts.css” will take precedence. Is this correct?
    Also, I needed to open style.php and edit the code to include “fonts.css” which I did.
    I opened "style.php" and then added the code in "red" then uploaded it to the (CSS) folder on the server.
    <?php
    header( "Content-type: text/css" );
    $files = array();
    $files[] = 'style.css';
    $files[] = 'responsive.css';
    $files[] = 'fonts.css';
    foreach($files as $file) :
        $content = @file_get_contents( $file );
        echo minify( $content );
    endforeach;
    function minify( $code ) {
              $code = preg_replace( '#\s+#', ' ', $code );
              $code = preg_replace( '#/\*.*?\*/#s', '', $code );
              $code = str_replace( '; ', ';', $code );
              $code = str_replace( ': ', ':', $code );
              $code = str_replace( ' {', '{', $code );
              $code = str_replace( '{ ', '{', $code );
              $code = str_replace( ', ', ',', $code );
              $code = str_replace( '} ', '}', $code );
              $code = str_replace( ';}', '}', $code );
              return trim( $code );
    ?>
    After doing all of this I still didn’t see any changes to my fonts so I must have done something wrong.
    Any ideas?

  • Exception occurred processing JSP page

    I'm a Java newbie... I'm trying to write a very simple (I think) .jsp file to test the connectivity to our Oracle DB.
    here's my entire .jsp file...
    <%@ page import="java.io.*"%>
    <%@ page import="java.sql.*"%>
    <%@ page import="javax.sql.*"%>
    <%
    String dname;
    String query = "select DNAME from DEPT";
    Connection conn = null;
    ResultSet rs = null;
    Statement stmt = null;
    try {
    Class.forName("oracle.jdbc.driver.OracleDriver");
    // Create a connection to the database
    conn = DriverManager.getConnection("jdbc:oracle:thin:@hostname:1521:SID", "username", "password");
    } catch (ClassNotFoundException e) {
    // Could not find the database driver
    } catch (SQLException e) {
    // Could not connect to the database
    stmt = conn.createStatement();
    rs = stmt.executeQuery(query);
    while ( rs.next() ) {
    dname = rs.getString("dname");
    System.out.println("dname: " + dname);
    %>
    I'm getting the following error...
    org.apache.jasper.JasperException: An exception occurred processing JSP page test3.jsp at line 23
    20: // Could not connect to the database
    21: }
    22:
    23: stmt = conn.createStatement();
    24:
    25: rs = stmt.executeQuery(query);
    26: while ( rs.next() ) {
    Any help would be appreciated.
    Thanks!

    You need to move all of this:
    stmt = conn.createStatement();
    rs = stmt.executeQuery(query);
    while ( rs.next() ) {
    dname = rs.getString("dname");
    System.out.println("dname: " + dname);
    }inside your try/catch. if any of them throw an exception, your not catching it.
    Further you should use a finally block to close your connection.
    Edited by: inryji on Feb 21, 2008 3:15 PM

  • Problem connecting oracle database to jsp pages using Apache Tomcat server 8.0

    Well...I tried too many things..googled so many times..but still could not find solution to my problem.
    I use windows 8 Enterprise Edition(if this has to do something with the problem)
    Oracle 11.2.0
    Apache Tomcat server 8.0
    JDK 1.7
    My oracle is installed in the D: drive and tomcat in c:. i copied the ojdbc6.jar file from oracle to lib directory of tomcat server.
    Then i set  CLASSPATH in environment variables as "C:\Program Files\Apache Software Foundation\Tomcat 8.0\lib\ojdbc6.jar" in system variables
    My path variable is set as "C:\Program Files\Java\jdk1.7.0_02\bin".
    My program is as follows in notepad:
    <%@ page import="java.sql.*" %>
    <html>
    <body>
    <%
    Connection conn;
    Statement st;
    ResultSet rs;
    try{
    new oracle.jdbc.driver.OracleDriver();
    String dbURL="jdbc:odbc:oracle:thin:@localhost:1521:XE";
    String userId="system";
    String pwd="moon";
    conn=DriverManager.getConnection(dbURL,userId,pwd);
    st=conn.createStatement();
    rs= st.executeQuery("SELECT * FROM login");
    while(rs.next())
    System.out.println(rs.getString(1)+""+rs.getString(2));
    catch(Exception e){}
    %>
    </body>
    </html>
    I get too many errors then
    eroors
    org.apache.jasper.JasperException: An exception occurred processing JSP page /page2.jsp at line 14
    11: String userId="system";
    12: String pwd="moon";
    13:
    14: conn=DriverManager.getConnection(dbURL,userId,pwd);
    15: st=conn.createStatement();
    16:
    17: rs= st.executeQuery("SELECT * FROM login");
    Stacktrace:
    org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:568)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:455)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:403)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:347)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:725)
    org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
    root cause
    javax.servlet.ServletException: java.sql.SQLException: [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:905)
         org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:834)
         org.apache.jsp.page2_jsp._jspService(page2_jsp.java:102)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:725)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:432)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:403)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:347)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:725)
         org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
    Nothing solved this problem.

    >> Nothing solved this problem.
    Can't fix a problem 'till an actual problem is identified.
    >> ODBC Driver Manager ... Data source name not found
    That appears to be ODBC drivers looking for a DSN (Data Set Name). If it wants a DSN, the DSN has to be specified in the code, and the DSN has to be configured in the windows host ODBC applet. So that is at least two squirrels to get in the right tree before moving forward. A ...host:...[port:]SID|service name are some of the bits needed in a jdbc connect string, and that is in no way related to DSNs. A Whole Different Animal. If it wants a DSN that might be what needs to go in the URL bit.
    And ODBC setups can be confusing, especially if an x64 OS is in the mix- if that is the case there are two different ODBC configuration applets, one for x64 the other for x86, and if one gets as far as talking to an actual database it might toss an architecture error. Only way to fix that "problem" is *delete* the ODBC DSN and then run the correct (maybe the x86) ODBC config utility, and set up the DSN. Again.

  • Assigning 'Print' styles to existing CSS page

    Hello, Have designed basic site using CSS setting for 'all'
    media. Now I want to make CSS 'print' pages. The problem I'm having
    is assigning 'print' settings to my CSS page. Currently my head
    data reads:
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title>notjustthenews.co.uk</title>
    <link href="njtn.css" rel="stylesheet" type="text/css"
    />
    </head>
    Can anyone help?

    Your profile lists 10.6.2 as your OS version. If this is true, it may be the source of problems with Pages. Keeping both the OS and iWork apps updated will avoid some problems.
    Jerry

  • Can you make the "Apply CSS Class" part of the editor bigger?

    Hi there...
    Just wondering - is it possible to make the "Apply CSS Class" editor window larger... It's TINY. (about 200px Square)
    As a result I can't see many of the classes...
    Cheers, Dave

    Hi Liam, I think i did what you said, only the changes don't appear?
    Am I missing something?
    I've cleared the browser cache & refreshed page etc - but can still see:
    Cheers, Dave

  • Can I consolidate the CSS pages?

    Hello,
    I noticed that Muse creates a CSS page for every singe HTML page so I have about 50 CSS pages. What's the point of CSS if there's not just one master?
    Is it possible to have just one? For a few reasons,
    A) the client will think I'm crazy once they see 50+ CSS pages
    B) should the client want to make changes in the future it's ridiculous to make them change 50+ pages just to change a font color. No, the client most likely will not buy Muse just to make a few simple updates and I will not be available for future updates.
    OR
    Is it possible to export my Muse site so it's not dependent on using Muse in the future? I like building with Muse but am thinking it's probably not the way to go since I build then pass the sites off to clients.
    thanks for any input.

    Site wide formatting is stored in the site_global.css. Examples of site wide formatting include Paragraph Styles, Character Styles, Graphics Styles, List Styles and Hyperlink Styles you define in Muse. If you use styles in Muse for your formatting, it would then be possible to edit the CSS style definition in the site_global.css to alter the appearance of all text or objects that use that style (though editing the HTML output by Muse is not a workflow we encourage).
    Page-specific formatting (i.e. where the objects are located on the page, formatting applied not using styles, etc.) is stored in a .css file for that specific page, since it's only relevant to that page. Even if you make very heavy use of the styles available in Muse, there will still be size, position and stacking order information that is only relevant to that specific page and thus recorded in the page-specific css file.

  • Easy way to make my site CSS friendly without changing everything??

    I want to make my site CSS friendly but based on my research on the internet seems to be really tricky to do and time consuming.  Do I just take out all of the pictures and just have text and save it as an alternative?  What do I do to make my site "smart" so to speak and recognize if someone's computer needs CSS or not? 

    The main issue with the website as it stands is that there's no text on the home page.
    If you offered a text-only version for slower connections (which I would not worry about), there would be nothing to show.
    I would forget about CSS for now (there's plenty of auto-generated CSS already in the code BTW) and focus on these Google guidelines:
    http://www.google.com/support/webmasters/bin/answer.py?hl=en&answer=35769
    I see allot of web sites these days that have that orange CSS in the address bar and I know it must be important somehow and wish to learn about it.  Maybe I'm getting CSS mixed up in what I'm thinking.  Not sure.
    I think you're getting the acronyms mixed up.
    That orange icon is an indicator of an RSS (Really Simple Syndication) feed available on the website, not CSS. It's known as a Live Bookmark in Firefox and allows you to stay in touch with sites without visiting them all the time.
    http://www.mozilla.com/en-US/firefox/livebookmarks.html
    http://johnbokma.com/firefox/rss-and-live-bookmarks.html

  • CSS page confusion

    I am new to CSS and Dreamweaver. I have created a CSS page
    that is text only. However, I wish to have the CSS page deliver a
    standard page with a header division, navigation bar division, left
    bar division and footer division. I want every new page that I
    create to have those divisions with all the links in them so I can
    just concentrate on adding the body text that will change from page
    to page. I thought that the CSS page would do all that, but I
    cannot get it to work. Is there a way to get these divisions to
    automatically come up on a new page that i might create?
    Vic
    I am using Windows Xp and Dreamweaver CS3.

    > I thought that the CSS page would do all that, but I
    cannot get
    > it to work. Is there a way to get these divisions to
    automatically come up
    > on a
    > new page that i might create?
    You are confusing CSS with DW Templates and perhaps
    Server-side includes.
    CSS will have the ability to place every page element on any
    page that
    contains, or links to that CSS, but CSS does not have the
    ability to create
    such pages from nothing.
    So, the scheme would be, you create a page using the CSS
    required to style
    everything properly, and then you either save that page as a
    DW Template, or
    you cut out the important bits and save them as server-side
    includes.
    If you used Templates, then you would spawn a new page from
    the Template,
    add the unique content, and save the page. Repeat this
    process for each
    page in the site.
    If you used server-side includes, then you would save your
    parent page that
    has assembled the includes to deliver the layout you want,
    with some generic
    filename. With that generic page open, you would add your
    page-specific
    content, and save it with that page's name. Then replace the
    page-specific
    content with different content, and save it with the new
    page's name.
    Repeat that process for all the pages in the site.
    Get it? CSS doesn't create the pages, however if you create a
    page with the
    elements in it that are referenced by your CSS Selectors, it
    will style that
    page as you wish.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "PainReliefDiet" <[email protected]> wrote
    in message
    news:[email protected]...
    >I am new to CSS and Dreamweaver. I have created a CSS
    page that is text
    >only.
    > However, I wish to have the CSS page deliver a standard
    page with a header
    > division, navigation bar division, left bar division and
    footer division.
    > I
    > want every new page that I create to have those
    divisions with all the
    > links in
    > them so I can just concentrate on adding the body text
    that will change
    > from
    > page to page. I thought that the CSS page would do all
    that, but I cannot
    > get
    > it to work. Is there a way to get these divisions to
    automatically come up
    > on a
    > new page that i might create?
    > Vic
    >

  • "inc" extension wont display in css page layout

    i am new to building pages with css. all i know is table based layouts. im trying to make a new template for my sites. also they are ASP pages. my problem is when im trying to use the "inc" code for my headers, footers, navigation, and a right menu. they dont display.
    what would be different for getting those files to display in a css page layout?

    You're close but you're missing quotes around your include file names.  And your includes contain too much information.
    Include files are nothing more than snippets of html code. An include  statement is inserted into the parent page where you want the content to  appear.  For this demo, I have three pre-built SSI files in my Includes  folder:
    HeadMenu.ssi
    LeftLinks.ssi
    Footer.ssi 
    My parent page has been saved as Untitled.shtml (.shtml or  .shtm tells the server there are include statements in the page). You may also  use .php or .asp if your server supports these, however those include statements look different from  the ones  in this demo.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <link href="style.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="container">
    <div id="header">
    <!--#include virtual="Includes/HeadMenu.ssi" -->
    <!--end header --> </div>
    <div id="sidebar1">
    <!--#include virtual="Includes/LeftLinks.ssi" -->
    <!--end sidebar1 --> </div>
    <div id="mainContent">
    <h1>Main Content H1</h1>
    <p>Lorem ipsum dolor sit amet, consectetuer adipiscing odio.</p>
    <!--end mainContent --> </div>
    <div id="footer">
    <!--#include virtual="Includes/Footer.ssi" -->
    <!--end footer --> </div>
    <!--end container --> </div>
    </body>
    </html>
    My HeadMenu.ssi file looks like this with only the relevant menu code.
    <div id="menu">
    <a href="#content">skip menu &gt;</a>
    <a class="intro" href="index.shtml">home</a>
    <a class="gallery" href="gallery.shtml">gallery</a>
    <a class="tools" href="tools.shtml">tools</a>
    <a class="portfolio" href="portfolio.shtml">portfolio</a>
    <a class="fees" href="Fees.shtml">fees</a>
    <a class="links" href="links.php">links</a>
    <a class="contact" href="contact.shtml">contact</a>
    </div> <!--end menu -->
    You can see a working example of this on my website:  http://alt-web.com
    One last thing, you won't see includes appear on in browser  until you publish  to a web server.  If you want to test pages locally, you'll need to install a local testing  server (WAMP, XAMP, MAMP) on your computer.
    Ask your server host if they  support SSIs and whether or not  .shtml or .shtm files are set-up up to parse includes.  Sometimes you need to add this to your .htaccess file.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print |  Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb

  • Adobe recommends: CSS page layout basics

    Over the next week, we are going to be publicizing some high-value content  from adobe.com and other community sites. We have been tracking what's   been most important to our users, and feel that getting this content out to the larger community will go a long way toward helping people tackle some of their most pressing challenges.
    Continuing on our quest for great layout tips, our next recommendation comes from yours truly:
    CSS page layout basics
    This article takes you through the A-Z of what makes up a basic CSS layout. It also shows you how to use some of the CSS layouts that come packaged with Dreamweaver.
    Give it a spin and let us know what you think!
    Previous recommendation threads:
    Use Dreamweaver CS 5.5 to package your web application for iOS and Android devices
    Customizing a Spry Menu Bar widget
    Spry Menu Bar resources
    Layout 101

    Although I love sending newbies to tutorials, I am sometimes stuck with a quandary especially when I see the word basics.
    To me, a basic layout does not require any more than
    <!DOCTYPE HTML>
    <html>
    <head>
      <meta charset="utf-8">
      <title>Untitled Document</title>
      <style>
              body {width: 960px; margin: auto;}
              #header {height: 85px; background: #060;}
              #nav {height: 35px; background: #000;}
              #aside {height: 400px; width: 180px; background: #999; float: left;}
              #article {margin-left: 200px;}
              #footer {height: 35px; background: #000; clear: both;}
         </style>
    </head>
    <body>
      <div id="header"></div>
      <div id="nav"></div>
      <div id="aside"></div>
      <div id="article"></div>
      <div id="footer"></div>
    </body>
    </html>
    In the above I have used fixed heights. That is because I have not placed any content into the div elements, but still wanted to show the outcome.
    When the basic layout has been settled on, we can start with our niceties like resetting styles, padding for the content etc. I have noticed that David Powers has written an article (which I have not as yet read) on Modernizr wich will help as a good starting point.
    The main thing to keep in mind is to keep it simple.
    Gramps
    Oops! Sorry! the Modernizr article goes way beyond the basics. Please only tackle this if you are brave enough. The reason I thought that it may be a good starting point is beacause I have been using HTML5Boilerplate (which includes Modernizr) for quite some time now.
    Message was edited by: altruistic gramps

  • RE: [Adobe Reader] when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? i

    HelloThank's for your helpsI hope this document is helpfulBest Regards,
    Date: Sun, 22 Jun 2014 17:10:17 -0700
    From: [email protected]
    To: [email protected]
    Subject:  when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? if you can help me th
        when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? if you can help m
        created by Anoop9178 in Adobe Reader - View the full discussion
    Hi,
    Would it be possible for you to share the document?
    Regards,
    Anoop
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6485431#6485431
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
         To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Adobe Reader by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

    thank's for reply and your help
    i did the step's that you told me but  i still have the same problem
                                     i have the latest v.11.0.7
    i
    i disable the protected mode

  • There was an error processing a page. there was a problem reading this document (110)?

    hi
    my name is kapil and i am trying to open one (which is downloded) pdf document.which giving me an error as there was an error processing a page. there was a problem reading this document (110) for some page only. i am using acrobat reader x. is it any 3d setting or any thing else please give me an idea. i am waiting for replay as soon as possible...........
    your sincerely
    KAPIL TRIVEDI

    When I encountered an error "there was a problem reading this document 110" in Acrobat Pro 11 on 28.7 MB CS6 file, it indeed was very frustrating.
    I solved my problem, but since I don't know which step benefitted me, I've to enumerate all the steps I took:
    Read below:
    1.1. I could copy the file anywhere on the drive, but couldn't 'save as' from Acrobat Pro.
    1.2. No document security was applied of any sort on the file.
    1.3. Still in the first tab of the document properties, all details under advance section were empty. No 'PDF Version' 'location' 'file size' etc were populated. Nothing.
    1.4. I couldn't change and save anything in any of property dialogue. I could comment on the text, but as soon as I tried to save, it gave an error (some sort of 'File reading' error).
    1.5. When I tried to extract a page (I tried many), it gave 'reading error'.
    1.6. I didn't try 'splitting error'. Since I was 100% sure, it'll give me same reading error.
    1.7. I opened the file in Firefox and tried saving it as pdf from there. But no error, but no save either.
    1.8. I ran 'Remove Hidden Information' from protection panel without any errors.
    1.9. I tried 'sanitize document' from the same tab, but didn't succeed.
    1.10. Then (here I think the problem was resolved), from Document Processing panel, I did some commands. 1st, 'Export all images', successfully. Then 'Remove all links', it found 0.
    1.11. Then in 'print production' panel, I clicked/tried to open acrobat distiller. The same opened, did some processing. But I don't know if it did something in solving the problem or not.
    1.12. Although I think my problem was resolved till now, but the last step I did was 'Saved As' the file (from the file menu) as a .ps file. Though I've not yet reopened/used that ps file (to convert it into a pdf file again). But around here I wanted to close the file and it asked me whether I wanted to save the file, I said yes. And it saved the file correctly. And I checked that in properties dialogue, the missing information was populated too.
    1.13. Sorry for so lengthy instructions, but I had no choice.

  • "There was an error processing a page. Out of memory." Adobe Acrobat 9 Pro-Please Help!

    "There was an error processing a page. Out of memory." Adobe Acrobat 9 Pro I had this problem with my last computer over two years ago which was obviously an older version of windows and acrobat and had found a way to solve it but like I said it was an older version and was 2 years ago so I don’t remember how to fix it. I’ve looked through many forums and emptied my temp folder I’ve uninstalled and reinstalled the software I’ve turned off my anti-virus I don't have adobe reader because I know this causes comflicts also and have tried so much more and I’m still having issues with about half my pdf files I cannot figure it out. I use pdf files many times a day and this is really hindering my work so please please please if anyone else has experienced this or knows how to fix it that would be great thank you!!! I’m somewhat computer savvy but not completely so if you cloud please explain to me in slightly less tech terms that would be great too.

    Assuming your disk is not too full, and your virtual memory settings are normal, this is not caused by software clashes, TEMP folders nor fixed by reinstalls. It is Acrobat _actually_ running out of memory, or running out of something else it has a fixed supply of.
    1. Are you using any plug-ins to process files?
    2. After you get this error on a particular file, restart Acrobat. Does the file now open OK?

  • Error message: There was an error processing a page. There was a problem reading this document (110)

    I opened a pdf document in Adobe Reader X. When I attempted to scroll through the pages the following error message appeared, “There was an error processing a page. There was a problem reading the document (110). After an Internet search to try to find the reason for the error and a solution, I came across a site that suggested it was an issue regarding the fonts of the document. I then reopened the document and went into the document’s font properties (FILE – PROPERTIES – FONTS tab). There I noticed that the “Gathering font information” stopped at 2% which, of course, I took to mean that Adobe Reader X was having a difficult time in loading the font’s information. Another site suggested opening the document in the pdf reader, Foxit. So I did, and the document loaded properly with no error messages. I was still curious as to why the document did not load entirely in Adobe Reader X and if the same problem would occur using a different reader. I then downloaded the pdf reader, Nitro Reader 2. I opened the same document and initially received the following message, “The requested page number is invalid and does not exist in this document.” I closed the message and proceeded to scroll through the document. As I scrolled, the following message appeared, “This file was damaged (corrupted) and has been repaired.” I thought, “Wonderful!” I then chose <FILE – SAVE AS – PDF DOCUMENT> and saved the “repaired” document under a new name. When I opened the “repaired” document with Adobe Reader X, behold, the document opened entirely with no error message. I was curious, so I went into the document’s font properties and noticed, this time around, that the “Gathering font information” loaded to 100%. Nitro Reader 2 detected the error and fixed it. Now I’m left to wonder…why wasn’t Adobe Reader X able to do the same? I hope this post helps others who are experiencing the same issue.

    When I encountered an error "there was a problem reading this document 110" in Acrobat Pro 11 on 28.7 MB CS6 file, it indeed was very frustrating.
    I solved my problem, but since I don't know which step benefitted me, I've to enumerate all the steps I took:
    Read below:
    1.1. I could copy the file anywhere on the drive, but couldn't 'save as' from Acrobat Pro.
    1.2. No document security was applied of any sort on the file.
    1.3. Still in the first tab of the document properties, all details under advance section were empty. No 'PDF Version' 'location' 'file size' etc were populated. Nothing.
    1.4. I couldn't change and save anything in any of property dialogue. I could comment on the text, but as soon as I tried to save, it gave an error (some sort of 'File reading' error).
    1.5. When I tried to extract a page (I tried many), it gave 'reading error'.
    1.6. I didn't try 'splitting error'. Since I was 100% sure, it'll give me same reading error.
    1.7. I opened the file in Firefox and tried saving it as pdf from there. But no error, but no save either.
    1.8. I ran 'Remove Hidden Information' from protection panel without any errors.
    1.9. I tried 'sanitize document' from the same tab, but didn't succeed.
    1.10. Then (here I think the problem was resolved), from Document Processing panel, I did some commands. 1st, 'Export all images', successfully. Then 'Remove all links', it found 0.
    1.11. Then in 'print production' panel, I clicked/tried to open acrobat distiller. The same opened, did some processing. But I don't know if it did something in solving the problem or not.
    1.12. Although I think my problem was resolved till now, but the last step I did was 'Saved As' the file (from the file menu) as a .ps file. Though I've not yet reopened/used that ps file (to convert it into a pdf file again). But around here I wanted to close the file and it asked me whether I wanted to save the file, I said yes. And it saved the file correctly. And I checked that in properties dialogue, the missing information was populated too.
    1.13. Sorry for so lengthy instructions, but I had no choice.

Maybe you are looking for

  • Safari 4.0.3  Customize Toolbar problem

    After update verything functions OK till I click View/Customise Toolbars. After this action Adresses and Google searches cannot be typed any more unless I restart Safari Tried to trass com.apple.Safari.plist and restart but nothing changes No idea ho

  • Crash / Hang on Mac OS X 10.3

    I have just recently finished deploying a corporate application into a cross platform environment and have had some weird problems with the application on MAC OS X. The application runs great on Windows and on Linux but for some reason the applicatio

  • I am trying to install itunes.....

    I am trying to install itunes to my mother's pc for her, every time I attempt to download the required file, it asks me to save it (which I do), and nothing goes any further. Can someone help me?

  • Expanding SpeedGrade Timeline without a mouse?

    I'm using a 2013 15" Macbook Pro Retina. When working in SpeedGrade, I'm wanting to expand the timeline. I'm not using a mouse. Is there a keyboard shortcut to expand and collapse the Timeline? Thanks. gbmcneill

  • How to maintain the source List if record already exist to maintain ME01

    Hi Folks, I've a BDC pgm for t-code ME01(Maitain Source list). which is for creating new contract before expirting one.  Here I am upload a TXT file which contains data like vendor, Plant, date(valid to-valid from), PurOrgn, Agreement ... But program