White screen for jspx files

Hello,
I'm trying to deploy a basic Hello World ADF Faces Rich Client application.
Any .html files are being served up fine, but any jspx files are just giving me a white screen in the browser. For example:
http://server1/TestApp/index.html - works fine.
http://server1/TestApp/faces/testPage.jspx - gives white screen.
I'm sure I'm missing something ridiculous, but any help gratefully received.
Running JDeveloper 11.1.1.6 on WLS 11.1.1.6 using either integrated WLS or standalone managed server.
Thanks

Timo,
Many thanks, that seems to have fixed Hello World for me, although I'm unclear from your blog as to why having the bindings set should be causing me a problem, other than potentially memory utilisation.
The reason I wrote Hello World was because I couldn't get my original demo to work - specifically the one from http://www.oracle.com/webfolder/technetwork/tutorials/obe/jdev/obe11jdev/ps1/ria_application/developriaapplication_long.htm
My page code is as follows:
<?xml version='1.0' encoding='UTF-8'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
  <jsp:directive.page contentType="text/html;charset=UTF-8"/>
  <f:view>
    <af:document id="d1" binding="#{backingBeanScope.backing_DeptEmp.d1}">
      <af:messages binding="#{backingBeanScope.backing_DeptEmp.m1}" id="m1"/>
      <af:form id="f1" binding="#{backingBeanScope.backing_DeptEmp.f1}">
        <af:pageTemplate viewId="/oracle/templates/threeColumnTemplate.jspx"
                         id="pt1">
          <f:facet name="center">
            <af:panelSplitter binding="#{backingBeanScope.backing_DeptEmp.ps1}"
                              id="ps1" orientation="vertical">
              <f:facet name="first">
                <af:panelCollection binding="#{backingBeanScope.backing_DeptEmp.pc1}"
                                    id="pc1">
                  <f:facet name="menus"/>
                  <f:facet name="toolbar"/>
                  <f:facet name="statusbar"/>
                  <af:table value="#{bindings.EmpView3.collectionModel}"
                            var="row" rows="#{bindings.EmpView3.rangeSize}"
                            emptyText="#{bindings.EmpView3.viewable ? 'No data to display.' : 'Access Denied.'}"
                            fetchSize="#{bindings.EmpView3.rangeSize}"
                            rowBandingInterval="0"
                            filterModel="#{bindings.EmpView3Query.queryDescriptor}"
                            queryListener="#{bindings.EmpView3Query.processQuery}"
                            filterVisible="true" varStatus="vs"
                            selectedRowKeys="#{bindings.EmpView3.collectionModel.selectedRow}"
                            selectionListener="#{bindings.EmpView3.collectionModel.makeCurrent}"
                            rowSelection="single"
                            binding="#{backingBeanScope.backing_DeptEmp.t1}"
                            id="t1">
                    <af:column sortProperty="Empno" filterable="true"
                               sortable="true"
                               headerText="#{bindings.EmpView3.hints.Empno.label}"
                               id="c6">
                      <af:outputText value="#{row.Empno}" id="ot9">
                        <af:convertNumber groupingUsed="false"
                                          pattern="#{bindings.EmpView3.hints.Empno.format}"/>
                      </af:outputText>
                    </af:column>
                    <af:column sortProperty="Ename" filterable="true"
                               sortable="true"
                               headerText="#{bindings.EmpView3.hints.Ename.label}"
                               id="c2">
                      <af:outputText value="#{row.Ename}" id="ot4"/>
                    </af:column>
                    <af:column sortProperty="Job" filterable="true"
                               sortable="true"
                               headerText="#{bindings.EmpView3.hints.Job.label}"
                               id="c3">
                      <af:outputText value="#{row.Job}" id="ot6"/>
                    </af:column>
                    <af:column sortProperty="Mgr" filterable="true"
                               sortable="true"
                               headerText="#{bindings.EmpView3.hints.Mgr.label}"
                               id="c1">
                      <af:outputText value="#{row.Mgr}" id="ot8">
                        <af:convertNumber groupingUsed="false"
                                          pattern="#{bindings.EmpView3.hints.Mgr.format}"/>
                      </af:outputText>
                    </af:column>
                    <af:column sortProperty="Hiredate" filterable="true"
                               sortable="true"
                               headerText="#{bindings.EmpView3.hints.Hiredate.label}"
                               id="c7">
                      <f:facet name="filter">
                        <af:inputDate value="#{vs.filterCriteria.Hiredate}"
                                      binding="#{backingBeanScope.backing_DeptEmp.id1}"
                                      id="id1"/>
                      </f:facet>
                      <af:outputText value="#{row.Hiredate}" id="ot7">
                        <af:convertDateTime pattern="#{bindings.EmpView3.hints.Hiredate.format}"/>
                      </af:outputText>
                    </af:column>
                    <af:column sortProperty="Sal" filterable="true"
                               sortable="true"
                               headerText="#{bindings.EmpView3.hints.Sal.label}"
                               id="c4">
                      <af:outputText value="#{row.Sal}" id="ot10">
                        <af:convertNumber groupingUsed="false"
                                          pattern="#{bindings.EmpView3.hints.Sal.format}"/>
                      </af:outputText>
                    </af:column>
                    <af:column sortProperty="Comm" filterable="true"
                               sortable="true"
                               headerText="#{bindings.EmpView3.hints.Comm.label}"
                               id="c8">
                      <af:outputText value="#{row.Comm}" id="ot11">
                        <af:convertNumber groupingUsed="false"
                                          pattern="#{bindings.EmpView3.hints.Comm.format}"/>
                      </af:outputText>
                    </af:column>
                    <af:column sortProperty="Deptno" filterable="true"
                               sortable="true"
                               headerText="#{bindings.EmpView3.hints.Deptno.label}"
                               id="c5">
                      <af:outputText value="#{row.Deptno}" id="ot5">
                        <af:convertNumber groupingUsed="false"
                                          pattern="#{bindings.EmpView3.hints.Deptno.format}"/>
                      </af:outputText>
                    </af:column>
                  </af:table>
                </af:panelCollection>
              </f:facet>
              <f:facet name="second">
                <af:panelTabbed binding="#{backingBeanScope.backing_DeptEmp.pt2}"
                                id="pt2">
                  <af:showDetailItem text="showDetailItem 1"
                                     binding="#{backingBeanScope.backing_DeptEmp.sdi3}"
                                     id="sdi3">
                    <af:panelFormLayout binding="#{backingBeanScope.backing_DeptEmp.pfl2}"
                                        id="pfl2">
                      <af:inputText value="#{bindings.Empno.inputValue}"
                                    label="#{bindings.Empno.hints.label}"
                                    required="#{bindings.Empno.hints.mandatory}"
                                    columns="#{bindings.Empno.hints.displayWidth}"
                                    maximumLength="#{bindings.Empno.hints.precision}"
                                    shortDesc="#{bindings.Empno.hints.tooltip}"
                                    binding="#{backingBeanScope.backing_DeptEmp.it1}"
                                    id="it1">
                        <f:validator binding="#{bindings.Empno.validator}"/>
                        <af:convertNumber groupingUsed="false"
                                          pattern="#{bindings.Empno.format}"/>
                      </af:inputText>
                      <af:inputText value="#{bindings.Ename.inputValue}"
                                    label="#{bindings.Ename.hints.label}"
                                    required="#{bindings.Ename.hints.mandatory}"
                                    columns="#{bindings.Ename.hints.displayWidth}"
                                    maximumLength="#{bindings.Ename.hints.precision}"
                                    shortDesc="#{bindings.Ename.hints.tooltip}"
                                    binding="#{backingBeanScope.backing_DeptEmp.it2}"
                                    id="it2">
                        <f:validator binding="#{bindings.Ename.validator}"/>
                      </af:inputText>
                      <af:inputText value="#{bindings.Job.inputValue}"
                                    label="#{bindings.Job.hints.label}"
                                    required="#{bindings.Job.hints.mandatory}"
                                    columns="#{bindings.Job.hints.displayWidth}"
                                    maximumLength="#{bindings.Job.hints.precision}"
                                    shortDesc="#{bindings.Job.hints.tooltip}"
                                    binding="#{backingBeanScope.backing_DeptEmp.it3}"
                                    id="it3">
                        <f:validator binding="#{bindings.Job.validator}"/>
                      </af:inputText>
                      <af:inputDate value="#{bindings.Hiredate.inputValue}"
                                    label="#{bindings.Hiredate.hints.label}"
                                    required="#{bindings.Hiredate.hints.mandatory}"
                                    shortDesc="#{bindings.Hiredate.hints.tooltip}"
                                    binding="#{backingBeanScope.backing_DeptEmp.id2}"
                                    id="id2">
                        <f:validator binding="#{bindings.Hiredate.validator}"/>
                        <af:convertDateTime pattern="#{bindings.Hiredate.format}"/>
                      </af:inputDate>
                      <af:inputText value="#{bindings.Sal.inputValue}"
                                    label="#{bindings.Sal.hints.label}"
                                    required="#{bindings.Sal.hints.mandatory}"
                                    columns="#{bindings.Sal.hints.displayWidth}"
                                    maximumLength="#{bindings.Sal.hints.precision}"
                                    shortDesc="#{bindings.Sal.hints.tooltip}"
                                    binding="#{backingBeanScope.backing_DeptEmp.it4}"
                                    id="it4">
                        <f:validator binding="#{bindings.Sal.validator}"/>
                        <af:convertNumber groupingUsed="false"
                                          pattern="#{bindings.Sal.format}"/>
                      </af:inputText>
                      <f:facet name="footer">
                        <af:commandButton text="Submit"
                                          binding="#{backingBeanScope.backing_DeptEmp.cb5}"
                                          id="cb5"/>
                      </f:facet>
                    </af:panelFormLayout>
                  </af:showDetailItem>
                </af:panelTabbed>
              </f:facet>
            </af:panelSplitter>
          </f:facet>
          <f:facet name="header">
            <f:verbatim>
              D
            </f:verbatim>
          </f:facet>
          <f:facet name="start">
            <af:panelAccordion binding="#{backingBeanScope.backing_DeptEmp.pa1}"
                               id="pa1">
              <af:showDetailItem text="Departments"
                                 binding="#{backingBeanScope.backing_DeptEmp.sdi1}"
                                 id="sdi1">
                <af:panelFormLayout binding="#{backingBeanScope.backing_DeptEmp.pfl1}"
                                    id="pfl1">
                  <af:panelLabelAndMessage label="#{bindings.Deptno.hints.label}"
                                           binding="#{backingBeanScope.backing_DeptEmp.plam1}"
                                           id="plam1">
                    <af:outputText value="#{bindings.Deptno.inputValue}"
                                   binding="#{backingBeanScope.backing_DeptEmp.ot1}"
                                   id="ot1">
                      <af:convertNumber groupingUsed="false"
                                        pattern="#{bindings.Deptno.format}"/>
                    </af:outputText>
                  </af:panelLabelAndMessage>
                  <af:panelLabelAndMessage label="#{bindings.Dname.hints.label}"
                                           binding="#{backingBeanScope.backing_DeptEmp.plam2}"
                                           id="plam2">
                    <af:outputText value="#{bindings.Dname.inputValue}"
                                   binding="#{backingBeanScope.backing_DeptEmp.ot2}"
                                   id="ot2"/>
                  </af:panelLabelAndMessage>
                  <af:panelLabelAndMessage label="#{bindings.Loc.hints.label}"
                                           binding="#{backingBeanScope.backing_DeptEmp.plam3}"
                                           id="plam3">
                    <af:outputText value="#{bindings.Loc.inputValue}"
                                   binding="#{backingBeanScope.backing_DeptEmp.ot3}"
                                   id="ot3"/>
                  </af:panelLabelAndMessage>
                  <f:facet name="footer">
                    <af:panelGroupLayout layout="horizontal"
                                         binding="#{backingBeanScope.backing_DeptEmp.pgl1}"
                                         id="pgl1">
                      <af:commandButton actionListener="#{bindings.First.execute}"
                                        text="First"
                                        disabled="#{!bindings.First.enabled}"
                                        partialSubmit="true"
                                        binding="#{backingBeanScope.backing_DeptEmp.cb1}"
                                        id="cb1"/>
                      <af:commandButton actionListener="#{bindings.Previous.execute}"
                                        text="Previous"
                                        disabled="#{!bindings.Previous.enabled}"
                                        partialSubmit="true"
                                        binding="#{backingBeanScope.backing_DeptEmp.cb2}"
                                        id="cb2"/>
                      <af:commandButton actionListener="#{bindings.Next.execute}"
                                        text="Next"
                                        disabled="#{!bindings.Next.enabled}"
                                        partialSubmit="true"
                                        binding="#{backingBeanScope.backing_DeptEmp.cb3}"
                                        id="cb3"/>
                      <af:commandButton actionListener="#{bindings.Last.execute}"
                                        text="Last"
                                        disabled="#{!bindings.Last.enabled}"
                                        partialSubmit="true"
                                        binding="#{backingBeanScope.backing_DeptEmp.cb4}"
                                        id="cb4"/>
                    </af:panelGroupLayout>
                  </f:facet>
                </af:panelFormLayout>
              </af:showDetailItem>
              <af:showDetailItem text="More info"
                                 binding="#{backingBeanScope.backing_DeptEmp.sdi2}"
                                 id="sdi2"/>
            </af:panelAccordion>
          </f:facet>
          <f:facet name="branding"/>
          <f:facet name="copyright"/>
          <f:facet name="status"/>
          <f:attribute name="startColumnSize" value="350"/>
        </af:pageTemplate>
      </af:form>
    </af:document>
  </f:view>
</jsp:root>Do I just remove all bindings or is there something more subtle that I need to know?
Thanks

Similar Messages

  • White screen with flashing file icon with question mark mean

    What does this mean.   We are getting a white screen with flashing file icon with question mark inside the file. 

    It almost certainly means it can't find a bootable volume (one with OS X on it).
    Which means most likely you will have to find your original system installation DVD and install it. Then you should figure out what caused the problem.
    Read this to diagnose it before resorting to reinstalling the OS:
    http://support.apple.com/kb/TS1440
    Excerpt:
    Additional steps
    If your Mac still starts to a flashing question mark, follow the steps below. If any step resolves the issue, you don't need to continue to the next one.
    Select your Mac OS X startup disk with Startup Manager by restarting and holding the Option key. After your Mac starts up, restart again to verify that the flashing question mark does not appear.
    If the issue persists, insert your Mac OS X installation disc. Be sure to either use the disc that came with your Mac, or, if you installed a later Mac OS X version from disc, use the newer disc.
    MacBook Air note: On a MacBook Air, there are two options for starting up from Mac OS X media: Either connect a MacBook Air SuperDrive to the MacBook Air via the USB port and restart the computer, holding down the C key during startup, or use Remote Install Mac OS X to startup from a system software DVD that's located on a partner computer. Once started up from Mac OS X media, skip to step 3.
    Restart the computer, then hold the C key during startup.
    From the Utilities menu, choose Disk Utility. Don't click Continue.
    Select your Mac OS X disk (named "Macintosh HD" by default) in the left side of the Disk Utility window.
    Click the First Aid tab.
    Click Repair Disk to verify and repair any issues with your Mac OS X startup disk.
    After repairing the disk, try to start up normally.
    Important: If Disk Utility finds issues it cannot repair, you may need to back up as much of your data as possible (or use Time Machine to back up to a different disk), then erase the disk and reinstall Mac OS X. You should back up important files and data before erasing a drive. Erasing deletes everything on the hard disk (including things on your desktop). Also, you can install Mac OS X onto an external disk, start from the external disk, and use Migration Assistant to transfer items from your usual internal Mac OS X startup disk to the external disk, then erase the internal disk and reinstall Mac OS X.
    If the issue persists, and Disk Utility didn't find any irreparable issues, quit Disk Utility, quit the Installer, select your disk when prompted, and restart.
    If the issue continues, reset PRAM. Note: After resetting PRAM, if the computer starts up normally, reselect the startup disk in the Startup Disk preferences.
    If none of these steps resolve the issue, start up from the Mac OS X Installation disc and reinstall Mac OS X.

  • White screen with flashing file with ?

    had trouble with iMac not booting up. Read disk and did the hold the D down at start up. fixed the problem for about 30min. then got the gray screne that said I needed to shut down and restart my iMac. Did as told now have a white screen with blinking file with ? on it.
    new to mac not sure what OS X I have.
    Please help, thanks

    Thanks for your help ok I got more infor off my iMac
    It is
    iMac5,1
    OS X 10-6.3 but I put snow leopard on it
    2.16 GHZ intel Core
    16B 667 HHZ DDR2 SDRAM
    The problem started about two weeks ago but I have been away from home to try to fix it. My son has informed my that you can be working on the computer when screen becomes shadded over then that message in a large squar come up that saids You need to turn off your computer by holding the button till all turns off the push the button again to turn it back on.
    I have done this and that when the white screen with the blinking file with ?. If you turn off the computer for a few hours it might start back up but some times you just get a white screen like it is trying to log on but never does. you just have to turn the computer off again.
    When it does come back up it works great for about an hour then the same thing happens again.
    please tell me it something simple

  • Email not opening This is a sudden thing, Email had been working fine for two months then today would not stay open now it will not open at all. after trying to open mail I receive a white screen for a nano second and the app closes

    Email not opening on my iPad2 This is a sudden thing, email had been working fine since purchasing the device then today would not stay open,  now it will not open at all. After trying to open mail I receive a white screen for a nano second and the app closes.

    Have you tried closing the Mail app completely ? From the home screen (i.e. not with Mail 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Mail app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work then you could try a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Got a white screen with flashing file icon

    Why do I have a white screen with flashing file icon with question mark inside?

    It means your iMac cannot located a valid system to boot.
    Insert the CD that came with the iMac and allow it to boot. Once it gets the point where it's offering to install the OS, go to the top menu and choose diskutility. Perform a repair on the main drive "Macintosh HD".

  • Iphone 3gs shows white screen for a second and reboots.

    While I play games, watch videos or do anything, the iphone displays a totally white screen for less than a second and then it reboots. After this it starts normally and then this all happens again after about 10-20 mins.
    Plz give me any suggestions to fix it. What is the problem? any hardware prob??

    Hello, noyz23il.
    I would agree that this is a unique issue.  I have attached an article that goes over basic troubleshooting that may help.  In this article, see the sections referring to display, camera and blank white screen.  If this does not resolve the issue, please see the last section regarding "issue not resolved".
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/ts2802
    Cheers,
    Jason H.

  • What does a white screen with a file folder and question mark indicate?

    what does a white screen with a file folder and question mark indicate upon start up?

    That the computer can't find a useable boot volume.
    Boot from your grey installer DVD disc 1 (hold down the C key on startup or hold down Alt/option on start and choose the installer disc).
    OK the language page (if present). From the installer screen, go to the menu bar and choose Disk Utility; depending on the OS version it may be in the Utilities menu or Tools menu.
    In DU, select your internal drive in the sidebar (the top item with the makers name and serial no.). Run Repair Disk (not Disk permissions). If problems are reported as repaired, run it again until you get a message in green "the volume seems to be OK".
    If it says it can't repair the disc, you may need heavier guns such as DiskWarrior or TechTool to attempt a rescue.
    Hope you have backups; retrieving data from adead drive can be expensive and tricky.

  • Yosemite my iMac stuck on white screen for 18 hours so far

    DDownloading Yosemite the software has, I believe, downloaded I have progressed but have now been stuck on white screen for 18 hours. I have my mouse arrow working but nothing to point at. Please how may I tell if anything happening?

    Start your computer with the original DVD that came with system and repair your disk with disk utility, also repair permissions.  http://support.apple.com/kb/TS1417

  • IMac 27" 3.06ghz white screen for 40 seconds on start up before grey apple

    when i start up my iMac 27" 3.06GHZ i get a white screen for 40 seconds before the grey apple appears and it boots up.
    If anyone else is experiencing this or has a solution it would be great if you could reply.
    Cheers.

    Hi guys,
    I'm new to the forum, i have recently bought a new imac 27" i7, i don't have any problems with white screens when starting up, the imac runs great, however when i try playing any games thats when the problems start. i installed X-plane it first worked without any problems but not in full resolution, i upgraded the resolution to the maximum imac resolution and from that moment every time i start the game the screen turns white you can hear the imac starting the game and even for a while sound appears, but then after 30 seconds the programs fails and you get a typical apple message.
    i have also tried installing need for speed, here i didn't change anything to the graphics however the problem occurred straight away. white screen then the sound of the games menu and crash. did anyone else have this problem? is there a solution to this? i would like to apologize if this matter has been discussed in earlier forums. However i hope there is someone whom is able to give me a helping hand here. Whats wrong???? thanks ruben

  • I have a white screen for imessage.  Everything else works but I can't do anything on imessage.

    I have a white screen for imessage.  Everything else works but I can't do anything with imessage.  How can I fix this?

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Go to Settings>Messages>Send and Receive and sign out and sign back in
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up                             
    - Restore to factory settings/new iOS device.

  • No Audio and White screen for mpeg layer 3 Avi files

    I reinstalled OSX on my macbook which previously played all avi files with no difficulties. Now I am having difficulties playing Avi files with quicktime PRO that use the Mpeg layer 3 codec. I have done the following with no success: downloaded flip 4 mac, divx, xvid, 3ivx, Xvid codecs, changed MIME settings, and deleted and reinstalled. The files still play using VLC but I would like to use quicktime pro. PLease help!

    I reinstalled OSX on my macbook which previously played all avi files with no difficulties. Now I am having difficulties playing Avi files with quicktime PRO that use the Mpeg layer 3 codec. I have done the following with no success: downloaded flip 4 mac, divx, xvid, 3ivx, Xvid codecs, changed MIME settings, and deleted and reinstalled.
    Depending on the specific version and sometimes the ordering in which they were installed, you may have created a conflict among the components here. While most current VidX components should be able to play MPEG Layer-3 audio, v5.1.1 is the only free VidX codec that is bi-directional. If that is not a problem, then I would recommend you remove (or "hide") all components in the main "Library > QuickTime" folder. Next I would determine if one (or more) of the AVI associated components can actually play the specific files mentioned on their own. You do this by installing a compenent to be tested, opening the player with one of the problem movies, and checking for correct audio and video playback. Log your results, close the player, remove the tested component, and move on to the next component to be tested. Once you deterime which component(s) may function correctly, I would then move on to determine which specific components are in conflict by repeating the tests but leaving the components installed after each test. In this case start with a component that is known to work and is the one you most desire to use (if more than one works). If the player stops working, then you have located a potential conflict. Set the offending component aside and continue testing until all components have been tested and are either installed or set aside. The last step is to simply evaluate component alternatives and configure you system for those files most often played. In my case the VidX v6 Pro components did not seem to get along with the 3ivX D4 v4.5 and/or Casio AVI and/or XVIDDelegate component combination.

  • 24" iMac - white screen - with a file folder in the centre that has a '?'

    When I awakened my iMac, I wished to open iPhoto but when I clicked on it in the dock a screen came down from the top darkening the screen and superimposed on it was a message telling me to shut down. However, when I rebooted all I got was a white screen and after a minute a grey file folder bearing a query mark (?) appeared. This iMac has only been used a couple of weeks since having its hard drive replaced and now this ! What does the file folder represent ? Thanks.

    Thanks everyone. I was able to reboot successfully after I disconnected the power cable, waited for 30 seconds, and then reconnected the cable. (Page 42 of Everything Mac.)

  • Cannot get into mac. I get a white screen and flashing file folder with question mark inside. What can I do?

    2012/13 MacBook Pro froze up, so I did a hard shut down. Now, when I try to start up, it makes 3 unusual beeps, then I get a white screen. After a couple minutes, a flashing file folder with a question mark appears and remains. What is wrong and what can I do to fix it.

    Three beeps usually means a RAM or RAM slots problem. The Question Mark means there is no bootable system found.
    A flashing question mark or globe appears when you start your Mac
    Question (?) Mark, Blinking Folder, or Gray Screen at Startup
    These are related but not identical issues. Their causes are outlined in Intel-based Mac- Startup sequence and error codes, symbols. Solutions may be found in:
    A flashing question mark or globe appears when you start your Mac
    Mac OS X- Gray screen appears during startup
    In most cases the problems may be caused by one or more of these:
    a. Problem with the computer's PRAM - See Resetting your Mac's PRAM and NVRAM.
    b. Boot drive's directory has been corrupted - Repair with Disk Utility.
    c. Critical system files are damaged or deleted - Reinstall OS X.
    d. The disk drive is physically non-functional - Replace the hard drive.
    Note that the information I have provided is what Apple recommends, If other users suggest different solutions than found here, then be sure what they recommend does not impact on your warranty, if any, or ability to get continuing Apple service.
    Please don't start removing drives or changing cables unless you know what you are doing and have exhausted other non-invasive alternatives outlined here. If you perform any work yourself that is unapproved by Apple, then you will void any warranty you may have and lose all further Apple Support.
    Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    The main difference if you are using Lion or Mountain Lion is that you must first boot from the Recovery HD. Simply boot from the Recovery HD to perform the above.
    Reinstall Snow Leopard Without Erasing The drive
    1. Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. Reinstall Snow Leopard
    If the drive is OK then quit DU and return to the installer.  Proceed with reinstalling OS X.  Note that the Snow Leopard installer will not erase your drive or disturb your files.  After installing a fresh copy of OS X the installer will move your Home folder, third-party applications, support items, and network preferences into the newly installed system.
    Download and install Mac OS X 10.6.8 Update Combo v1.1.
    Reinstalling Lion/Mountain Lion Without Erasing The Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu.
    Reinstall Lion/Mountain Lion: Select Reinstall Lion/Mountain Lion and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.

  • When I turn on my macbook pro, the white screen displays a file with a question mark in the middle. What does this mean?

    Suddenly, my macbook pro has experienced problems. When I turn on my computer, the white screen displays a flashing file folder icon with a quesrion mark in the middle. Has my hard drive burnt out? Thank you in advance for any helpful suggestions..

    It means your computer is search for a start up volume.  You need to reboot into recovery mode and attempt to repair your disk.  To do this restart the computer and hold the keys:
    <command> + r
    Then open Disk utility.
    http://support.apple.com/kb/ts1417

  • White screens for quicktime movies upon upgrade

    Just in case anyone runs into this..
    I just upgraded my macbook to 10.4.8 and as soon as I did I couldnt watch any .mov files.. not off my drive, not off a cd, not off the quicktime website.
    Just a blank white screen came up. These were not non native quicktime codecs.
    Reinstalling quicktime from apple's website directly did fix the problem.

    QuickTime Pro now includes an "Export for Web" feature (File menu).
    This method makes a "reference movie" that can "detect" your page visitors connection device (and speed) and serve up just the right file. It also makes the "poster" image file and writes the correct html page code to copy/paste into a new or existing Web page.
    The poster image also show the "mouse hand" when the cursor move over it and includes a "click to play" graphic.

Maybe you are looking for

  • How to get the values multiple times for the specified element - ABAP IXML.

    Hi all,          i have requirement to get the values for the specified elements multiple times. eg:., if the element is used in the xml 4 times then i need to get all the 4 values.  here is the sample xml, <View mmRelease="6.30" mmVersion="2.0" mmTi

  • How can I transfer pictures from my PC to my Android?

    I'd like to see if I can xfer pics from my pc to my phone. I connected it to pc w/usb cable but after it updated the phone software the icon disappeared from the Device list in the "My Computer" window.

  • Software update doesn't find new iTunes

    For a while now when I open iTunes, it tells me there is an update available. When I click download, it sends me to Software Update. Software Update tells me "Your software is up to date". I check that iTunes was not an "ignored update" and it is not

  • Getting the File Path of file attached to Document(CV03N)

    Hi, We are migrating DOCUMENTS(Document Info Record)data from SAP 3.1i Version to SAP ECC6.0 Version. Here i want to transfer file path of file attached in 3.1i(From DRAW-FILEP) but, i can not able to find complete path of that particular file in FIL

  • [pcmanfm] How to deactivate no-icon-theme-message [solved]

    Hello guys, I don't need any icon theme because I use a shell in most of the cases. But as I have to use pcmanfm it always appears that annoying message. Can it be deactivated in any way? Thank you in advance orschiro Last edited by orschiro (2009-06