Images stopped rendering

Situation: This morning I was able to log-in to my ApplExp application and perform work. Sometime after that initial log-in, other people were unable to access Page-1 of the application to login. It appears as if images are not rendering. In my browser I'm able to continue because the gif is in my cache. When I use a different browser I can replicate the problem on my machine. For example, the entry "/i/favicon.ico" gif is not rendering.
I have verified the dads.conf.
Contents:
Alias /i/ "f:\oracle\product\10.1.0\db_2\htmldb\images\"
AddType text/xml xbl
AddType text/x-component htc
<Location /pls/htmldb>
SetHandler pls_handler
Order deny,allow
Allow from all
AllowOverride None
PlsqlDatabaseUsername HTMLDB_PUBLIC_USER
PlsqlDatabasePassword Yesterday04
PlsqlDatabaseConnectString 128.135.244.193:1521:diyalah.orientalinstitute.uchicago.edu ServiceNameFormat
PlsqlDefaultPage htmldb
PlsqlDocumentTablename wwv_flow_file_objects$
PlsqlDocumentPath docs
PlsqlDocumentProcedure wwv_flow_file_manager.process_download
PlsqlAuthenticationMode Basic
PlsqlNLSLanguage AMERICAN_AMERICA.AL32UTF8
</Location>
I have replaced the image directory contents from a recent backup. No change. I have restarted the server and restarted Apache all to no avail.
Environment:
Windows XP server running Oracle 10gR1 and Application Express 3.1
The Apache error.log contains entries such as:
[Wed Feb 15 11:42:20 2012] [error] [client <ip address>] [ecid: 1329327740:<ip address>:6140:5068:451,0] Filename is not valid: f:/oracle/product/10.1.0/db_2/htmldb/images"javascript
I would appreciate any suggestions for how to get at the problem
Thanks,
George

Try changing the last slash of the alias line to be a forward slash (/) instead of the backward slash (\).
Alias /i/ "f:\oracle\product\10.1.0\db_2\htmldb\images/"

Similar Messages

  • Lightroom suddenly stopped rendering previews

    I've been using Lightroom since v1 and have been using v3 since it was released.  All of a sudden tonight, while working on photos that were already in my catalog, Lightroom has stopped rendering previews and is much slower to operate.
    I've optimised my catalog, I've tried purging my cache, I've rebooted etc.  Nothing I've done is helping, if I zoom in in Library view I just see a blury outline that is the existing thumbnail.  Some of my other images don't even have thumbnails anymore.  If I go to Develop view it behaves normally, it's just Library view that seems broken.

    I'd purged the CameraRaw cache, but after no success I ended up deleting my entire "Lightroom 3 Catalog Previews.lrdata" directory (which freed up 30GB of space and took over 10 minutes at the command line).
    Fingers crossed it seems to have resolved my issue... certainly on relaunching Lightroom it's now recreated this folder, hammered my CPU and successfully created new thumbnails for the folder I was viewing in Lightroom.  It's a little concerning just how much it hammered my CPU (100% for about 5 minutes, still sitting at 75% now after nearly 10 minutes) when I was only looking at a folder with 23 images in it... it was also hammering my Lightroom/System disk for the first 5 minutes, but not the disk with my photos on it.
    Oh well, will see if it happens again and I might start to manually delete the previews folder semi-regularly.

  • HTML background image stops being replicated in long page

    This is a straight HTML (no JavaScript, no CSS) page with a tiled background image (128x128 pixel JPEG). After about 2/3 of the roughly 3,000 lines of this page the background image stops, with a smooth horizontal divide: the tiled image background above, and a white background below. The discontinuity moves up and down some while scrolling this page, but remains a clean horizontal break.
    This is new behavior with Firefox 7. The background image was displayed throughout the full page with Firefox 6 and earlier.

    Hi vestibule, the home page renders out to 42072.5px tall, and Firefox has a bug that limits backgrounds to a height of approximately 32735px tall. See [https://bugzilla.mozilla.org/show_bug.cgi?id=671302 Bug 671302 – cairo-gdi: large background-images and gradients don't work beyond ~ 32735px].
    This bug is coming up on a year old and for some reason hasn't been fixed yet, perhaps because such long pages are relatively rare on the web. ??
    Until that is resolved, to make the "transition" less jarring, you can add a matching background color (this is the closest I can come up with at the moment):
    <br>body {
    background-image: url(Image_Files/parchmnt.jpg);
    background-color: #f8f8d4;
    }

  • OTF/PS fonts have recently stopped rendering in Flash Pro CS3 on Windows 7/64

    Recently, a number of my OTF/PS fonts have stopped rendering when used in Flash Pro CS3. The fonts appear in the fonts menu, render properly in the font preview popup in the font menu, but the fonts fail to render on stage when used, with certain exceptions:
    --If Bitmap Text is selected, the fonts appear (but aliased)
    --If Anti-alias for animation is selected, then the text appears when text insertion is active in the text box, but vanishes when focus shifts to another element, tool, selection
    In all other cases and for all other settings (yes, including black text with 100% alpha on a white background, etc etc), the text shows solely as transparent. You can select the text (although not see what you're selecting), cut and paste, and as you change the font size, kerning, justification, bold, italic, etc, the text boxes resize as normally expected; simply, the text does not show up.
    The fonts work normally in all other CS3 and Windows applications, and up until about last week (Dec 12 or so), used to work fine in Flash.
    The problem fonts appear to be (primarily Open Type Format) Post Script Outline fonts.
    I have installed all Windows updates, Flash Pro CS3 updates, deleted the Flash user config files, deleted and reinstalled the fonts, and copied the fonts to the C:/user/Program Files/Common/Adobe/Fonts folder.
    There were no new installations (applications, fonts, etc) around the time when the error started showing up, aside from possibly Windows updates.
    Given the timing (worked fine Tuesday, failed on Wednesday), I believe a Windows update may have been at least partially responsible, though perhaps it's the Mayan apocalypse.
    Running Flash Professional CS3 on a Windows 7 64 bit system.

    uninstall windows update kb2753842

  • JDeveloper 10.1.3.3 ADF Swing - Images not rendering after deployment

    Hi,
    I have deployed my ADF Swing application in production in very simple 2 tiers architecture.
    One executal jar on my desktop and
    The database running on a Linux server.
    When I run MyApp.jar from my desktop, none of my images is rendered and LOV buttons do NOT work.
    The same application runs against the same dabase from Jedev environment shows images and LOVs work fine.
    Thank for your your help.

    I suppose that you use Java WebStart to deploy your application.
    The issue might be that you're using absolute path to load images into the application (c:\something\something.jpg). When you start your app in webstart, it doesn't allow the application the acces to the disk using absolute path. Even if it did, you wouldn't find your images in the same folder as they are on your disk.
    You should load images like this:
    ImageIcon icon=new ImageIcon(this.getClass().getResource("images/something.jpg"));
    This presumes that you store all your images in "images" package (folder).
    You can read more here:
    http://java.sun.com/j2se/1.5.0/docs/guide/javaws/developersguide/development.html#retrieving

  • AE stops rendering when clicking off the window

    When I start rendering a composition, I usually just go to a spare monitor to browse the web and do additional work. However whenever I click onto my new monitor, AE stops rendering and gives me the 'finished sound'. Why doesn't it complete rendering? I have to leave my computer alone and keep a window selected in AE for it to complete.

    We need to know a lot more to help you. Please provide answers to the questions listed here:
    http://forums.adobe.com/thread/961743

  • DataGrid with Image column rendering problem

    Hi,
    I'm having trouble in getting images displayed on a datagrid
    column. If I scroll down and then scroll up the scrollbar, the
    images are rendering fine. The source of the image is Bitmap which
    is generated at run time. Any idea how to solve this problem? Any
    help is greatly appreciated.
    Thanks,
    Jeesmon
    My component code is pasted below
    "Attach Code"
    <?xml version="1.0" encoding="utf-8"?>
    <mx:DataGrid xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="init()" dataProvider="{cardDataProvider}">
    <mx:Script>
    <![CDATA[
    import mx.core.UIComponent;
    import
    org.eclipse.higgins.cardselector.filters.CustomDropShadowFilter;
    import mx.collections.ArrayCollection;
    import mx.controls.Image;
    import org.eclipse.higgins.cardselector.icard.Card;
    [Bindable]
    private var cardDataProvider:ArrayCollection;
    private var _cards:Array;
    public function get cards():Object {
    return this._cards;
    public function set cards(value:Object):void {
    this._cards = value as Array;
    if(this._cards != null && this._cards.length > 0)
    buildDataProviderArray();
    private function buildDataProviderArray():void {
    var dataArray:ArrayCollection = new ArrayCollection();
    for(var i:int = 0; i<this._cards.length; i++) {
    var card:Card = this._cards
    dataArray.addItem(card);
    this.cardDataProvider = dataArray;
    private function init():void {
    this.styleName = "CardsBox";
    this.width = 200;
    this.rowHeight = 120;
    this.headerHeight = 0;
    this.liveScrolling = true;
    this.filters = [new CustomDropShadowFilter(0x333322, 55,
    2).getInstance()];
    ]]>
    </mx:Script>
    <mx:columns>
    <mx:DataGridColumn sortable="false" editable="false"
    resizable="false">
    <mx:itemRenderer>
    <mx:Component>
    <mx:VBox width="100%" height="100%" paddingLeft="5"
    paddingRight="5" paddingTop="5" paddingBottom="0"
    verticalGap="0">
    <mx:Script>
    <![CDATA[
    import mx.controls.Alert;
    private function getBitmap(value:*) : DisplayObject
    var result:DisplayObject;
    var loader:Loader = Loader(Image(value).getChildAt(0));
    if(loader.contentLoaderInfo.childAllowsParent)
    if(loader.content is Bitmap)
    var bitmap:Bitmap = Bitmap(loader.content);
    result = new
    Bitmap(bitmap.bitmapData,bitmap.pixelSnapping,bitmap.smoothing);
    return result;
    ]]>
    </mx:Script>
    <mx:Image source="{getBitmap(data.getImage())}"
    height="80" width="120" styleName="CardsBoxImage" />
    <mx:Label text="{data.getName()}"
    styleName="CardsBoxLabel" width="100%" />
    </mx:VBox>
    </mx:Component>
    </mx:itemRenderer>
    </mx:DataGridColumn>
    </mx:columns>
    </mx:DataGrid>

    I solved the issue by adding creationComplete event handler
    for the image in the datagrid column
    <mx:Image source="{data.getImage()}" height="80"
    width="120" styleName="CardsBoxImage"
    creationComplete="event.target.source =
    getBitmap(event.target.source)" />

  • Premiere Pro stops rendering and gives error message when encounters "RGB Color Corrector"

    Premiere Pro (and also Encore) stops rendering and gives error message when it encounters a clip containing the "RGB Color Corrector" in any clip.  It will process clips without RGBCC, but will stop when it gets to one with RGBCC activavted.  PP will render clips if other effects, such as "Fast Color Corrector", "Color Balance (HLS)", and "Three-Way Color Corrector" are selected. However, these do not have the capabilities that The other color correctors will not do what RGB color corrector does, so I need to have this working to finish a large product that is due to the client.  Please help me..... I am not using the Creative Cloud version, and can't find either a download for the new update from 2013, or a phone number to talk to anyone. 

    Using a Win7 computer with 2.8 quad core processor, 24 gig of ram, Nvidia Quadro 5000 video card.  Don't think I have any plugins.  I looked at one a while back for cleaning up grainy video, but I am not sure I paid for that.  Think I deleted it. 
    Incidentally, someone named Jim on another part of the forum mentioned that this problem has been fixed in the CC version of the program.  I am using the non-CC version because I am 68 years old and only do seminars and documentation video.  Don't need so many bells and whistles, and definitely don't need learning curves every few weeks.  CS6.0.3 works fine for me.  By the way, someone else said that maybe version 6.0.1 might work better and I should revert to that.  Not sure if it is the version i have on the disk upgrade to 5.5 that I purchased in December. 
    As it stands now, I have 7.5 hours of a seminar that is ready to go out the door.  If there is an upgrade I can get from Adobe, maybe you can tell me about it. If I have a setting incorrect in the video output format, maybe I can change that.  So far it just happens with clips in my video that have RGB color correction. 
    Rick

  • GOING TO KILL MYSELF!CLIPS STOP RENDERING! HELP!

    I am ready to jump off a tall builing! I created a movie, spend hours editing clips, then all of a sudden the clips stopped rendering. I gave it a whole day to try and complete, b/c I was terrified of closing the progam and losing everything. Well, it's like it just froze. The little red line stopped moving. So I ended up losing the entire movie. I tried to get it out of the trash, but the strangest things is that all of the clips were reduced to 00.00.01 secs. In other words, completely invisisble. I couldn't stretch them back to their original size of about 1.2 secs. So I decided to start the whold **** movie from scratch again. I HAVE TO FINISH THIS PROJECT! So I go to import all of my clips (still and movie), and sure enough, about half render, but the rest are stuck. The red bar stopped half-way in the middle of one picture. WHAT IS GOING ON? PLEASE HELP ME SOMEONE! THIS IS RUINING MY LIFE!!!

    Hi John -
    "...When you are in the middle of a project, never use Software Update...."
    That is sound advice, especially regarding iMovie itself. Not that it does create problems, but rather that it might.
    The original poster does not say whether or not recent updates have been installed, or even if they have, whether the project pre-dated that installation.
    And the wording of your comment suggested that it was necessary to return to earlier versions not only of QT but also of iMovie and the OS!
    I too have noted that some seem to have had problems after the latest QT update, indeed I initiated a topic to check out the extent of this. Most people who responded had no problems at all, so I up-dated my laptop version. It is running flawlessly, and yes, KB imports perfectly.
    My initial response to you was simply to point out that it was rather too dogmatic to state that the update was definitely the cause of the problem.
    By the way, just how many is 'countless'?:-)
    G5 Dual 2.0 ghz   Mac OS X (10.4.9)   1.5 GB RAM; VidCam: Sony DCR TRV80E

  • itunes:image stopped displaying?

    <itunes:image> stopped displaying?
    This podcast in iTunes Store displayed the same image provided in the RSS feed for a couple of years.
    This feed is generated by Quick Blogcast.
    I am not sure exactly when or why but at some point the iTS stopped displaying the image.
    I tried changing the image (300x300 .JPG) with different file name in the podcast feed source.
    Waited a few days.
    Image still not displaying in iTunes Store.
    Any suggestions - next steps?
    Thank you in advance for any guidance.
    iTunes Store Podcast link - ID:
    https://itunes.apple.com/us/podcast/highland-baptist-shelbyville/id356113607?mt= 2
    RSS Feed:
    feed://podcast.highlandbaptistky.com/podcasts-only/rss2.aspx
    Feed Validation:
    This is a valid RSS feed per feedvalidator.org
    Image tag reference found in validation result
       <itunes:image href="http://images.quickblogcast.com/0/6/5/1/3/241277-231560/DefaultImage/HBCTLS300.j pg" />
    If one goes to this URL directly - the expected image displays.
    <end of info>

    How long on average is "some days"?   I loaded a 1400x1400 about 8 days ago yet I do not see it via iTS.
    <itunes:image href="http://images.quickblogcast.com/0/6/5/1/3/241277-231560/DefaultImage/1400TLSHBCT LS.jpg" />

  • Image not rendering for html signature

    I've created a CSS signature for my Mail signature (found at http://allforces.com/2006/04/14/css-signatures/) But no matter what I do the image (my logo) won't appear in the message. it's as if it can't find it on the machine. But when I open the file in Safari to create a webarchive, the image is rendering there. But when I save that webarchive and replace the signature file the image doesn't appear in the signature.
    Anyone have any ideas?

    ok I tried the instructions in that link and you are right, it is broken but it worked for me in one situation. If I create an html file using locally stored images and then convert it to a signature as outlined in this link it shows up correctly in the signature window in Mail prefs but the images don't show inside the message when i actually try to use the signature. Bummer.
    However, when I made an html file using images stored remotely on a webserver, the effect was the opposite! The pictures didn't show in Mail prefs but they did work correctly in Mail composition window and on the recepient end. Very weird and certainly a bug but it's a semi workaround I guess.

  • Premiere Pro CC will not stop rendering

    Premiere Pro CC 7.2.1
    Windows 7
    In the past 2 weeks, PP will not stop rendering frames on the timeline. As the "frames rendering" amount increases, so does the frames to be rendered. It never ends and when I cancel the render, nothing has even rendered.
    Any ideas?
    Thanks in advance

    I have been editing in AVC - Intra 100 1080i and when rendering the sequence it does not stop. It will say "Rendering frame YYY of XXX." However, "XXX" quantity keeps growing and the whole process does not end. Additionally, the "Green Line" does not appear nor does the playback improve after extensive rendering. 
    After reading the above comments, I created another sequence in HDV 1080P and it seems to be working fine although the "Time Remaining" is a lie.
    Is there a preferred quality/format for editing? I typically will include various formats and still photography in my sequences.  
    Additionally, I have not found a way to change the preview file format as it is grayed out and un-selectable in the Sequence Settings dialogue box. How do I change it and what would be the preferred setting for laptop editing?

  • IMovie stops rendering photos in slideshow

    I was making a slideshow in iMovie when it stopped rendering all of a sudden. There are about 350 rendering tasks left and no response. I can que up more edits but it won't move the red bars at all. Can someone tell me how to fix this?

    Sounds like a fairly good sized project. Have you checked to make sure that you have sufficient free disk space on your start up disk for iMovie to operate? Should have at least 10GB, and more is better.

  • Files stop rendering after a while! both in media encoder and direct export from timeline

    hi there,
    getting very frustrated here need to deliver a file but each time it stops rendering (each time at the same moment)
    I tried several encodings (mpeg, H264, wmv) with the same disappointing results.
    What i found out is that the first preset i used worked. (i rendered a waveform file for mastering in my audio software)
    When starting te export a new file from the timeline you will see the latest preset you used (in my case windows media audio file)
    then any following preset you choose won't work. Encoding will stop. When restarting the program and going back to the export menu will
    show the first preset i had chosen (the only one that did work) which tells me that any other preset i choose won't work.
    I tried several tricks (import timeline in another one, save copy project etc) non succesfull.
    i work with PC/asus P6T SE/i7 - window 7 professional
    hope anyone can help me with a workaround!
    Frank
    P.S. i succeeded to render the previous file with specific H264 setting using CBR in stead of VBR encoding but can not reproduce it so far!

    hi Arjun,
    no third party plug-ins used.
    General
    Editing mode: Sony XDCAM HD/EX 1080i (SP)
    Timebase: 25,00fps
    Video Settings
    Frame size: 1440h 1080v (1,3333)
    Frame rate: 25,00 frames/second
    Pixel Aspect Ratio: HD Anamorphic 1080 (1.333)
    Fields: Upper Field First
    Audio Settings
    Sample rate: 48000 samples/second
    Default Sequence
    Total video tracks: 3
    Master track type: Stereo
    Audio Tracks:
    Audio 1: Standard
    Audio 2: Standard
    Audio 3: Standard
    Audio 4: Standard

  • Why do the images stop?

    I've recorded a piece of VO for a slide thats 1:15 min long.
    I added images to the timeline and overlapped them a couple seconds for nice transitions.
    Everything plays fine when I click the little play button on the bottom of the timeline.
    All the images transition perfectly as the timeline plays.
    The problem I'm having is when I publish the audio plays but the images stop after the first 3 sec. image plays it just sits on that image while the VO continues.
    I've checked the properties of the images and sound to see if something is stopping the images from playing but I just can't figure out why it won't go past the first image.
    Also is there a way to turn off the progress bar on the project? I don't feel it is needed for this.
    Please someone let me know what I might be doing wrong. I've spent most of the day trying to fix this.
    Best,
    Dan

    Hello and welcome to the forum,
    Could you please post a screenshot of the timeline? Perhaps you have an interactive object with a pausing point that causes the playhead to stop.
    Do you have the same effect when using a real preview (F4, F8, F10 or best of all F12)? Playing the slide doesn't generate a temporary SWF, it is not a real preview but mostly meant to do synchronizing on the timeline.
    Lilybiri

Maybe you are looking for

  • Settings are not saved.

    Every time i start the computer it's like if i'm doing it for the first time, and i have to set it up again. mouse configuration, apps in the dock, Apple ID... But all software installed still there and works good. how can i solve this?

  • CC Video Apps Get Serious Makeover

    I know at least a few folk here have full CC subscriptions, and use Adobe's video applications, so they will likely know that Premiere Pro and After Effects are about to release some very nice new features for CC subscription holders.  It's not direc

  • LR4 Edit in function will not open PSE9. The beta did work. Any fixes?

    I can export to photomatix . am considering LR4 over Aperature for ease of use with external editors. Currently aperature will be easier as file system more flexible unless this edit in function can be fixed

  • Problem with "take a snapshot"

    Hello All, I have a problem with the function "Take a snapshot" My snapshots are blurred, whatever the percentage of the page. It is a big problem for me when a try to take a pic for my presentation. What can I do? Could you help me ? Thanks a lot Em

  • Premiere Pro process won't end in Windows 7.

    When I exit Premiere Pro CS6, the process continues to run and I can't restart the program until I go into the task manager and end the process.  Any ideas what's causing that?