JSF: Render a page after few seonds

Hi,
I am using 3 rich text editors along with many input text box, drop downs and uploadFile components on a page. So it takes sometime to load the page fully. And before the page loads fully, the users start to fill up the form.
Is there any way by which I can render the whole page after few seconds (may be 15-20 seconds) so that all the components are fully loaded before I show the page to user?

Perhaps a better design so the page loads faster is what you need. Like split the form up in different pages, turning it into a sort of wizard.
Just a thought.

Similar Messages

  • Safari fails to render Picasa page after downloading a photo

    Not sure where and how to report this...
    I download some photos from Picasa web interface to iPad local storage, using Safari as browser.
    After downloading each photo, I go back to the album view, but it won't render, the page is almost blank.
    Going up to album list and opening the album does not help.
    But, if I go to iPad task list (or whatever you name it) and close Safari, then open it again, the album view reloads and renders ok.
    So I'm inclined to think this is Safari bug rather than Google's.
    Having to close and reopen Safari to download each picture is very annoying.
    Thanks for reading.
    dd.

    Some new information (but still no resolution)...
    I created a new dummy user account. Safari worked there. So it's obviously something in my user account. However...
    I removed all plug-ins (~/Library/Internet Plug-Ins as well as /Library/Internet Plug-Ins). Didn't help, so I put them back. I again deleted caches and the com.apple.Safari.plist file. I deleted the entire ~/Library/Safari folder. Still consistenly won't render slashdot.org or hotmail.com and intermittently fails to render various apple.com pages.
    I even deleted the Safari app (v2.0.2) and re-installed from the Tiger DVD (v2.0). Same problems still exist.
    Are there any other preference files to try deleting? Any other suggestions?

  • Redirecting a page after few seconds

    Hi
    In my site, after the user enters his user name and password a welcome page is shown. what I need to do is to somehow redirect him from this page in 3 seconds and run a servlet that shows him some options. Could you please help me?
    Thank you very much
    Vajra
    Edited by: Vajra1987 on Dec 14, 2007 10:31 PM

    Add a meta head like this<meta http-equiv="refresh" content="3; url=anotherpage.jsp">

  • Page shows different data when saved after few minutes

    Hi,
    I have a peculiar problem to describe.
    I have a page which contains af:table inside af:panelCollection layout. I use a af:commandLink to drilldown to another page using setCurrentRowWithKey method.
    I am able to drill down to the correct data in another page which contains data that is editable. Once after editing the page when i click save button, i am able to save the data. This is working fine.
    But the problem is, once i drilled down to this edit page and edit some fields and save it after few minutes, say 5 minutes later, it is not saved. Also, the page is refreshed to bring some random record.
    Can anyone let me know why is this happening and how to resolve it?
    Thanks

    Hi Timo,
    Which jdev version?I am using jdev 11.1.1.3.0.
    Is it possible that the data has changed (e.g. by an other user) after you drilled to the one record you want to change?There is a possibility that the data can be changed by other user as well. But, for the time being we have implemented for the single user environment.
    When you click save after some time, do you get any error (on the screen or in the logs)?Yes. On the screen, it is displayed as "oracle.jbo.JboException: Document type mismatch (source INVOICE, type Sales)". It is a validation exception thrown at viewRowImpl level by me. But it validates the data perfectly when saved immediately after editing
    Which session timeout do you have configured in your web.xml?Session-timeout is given as 240
    Have you tried your use case with the HR schema?Yes. when i reproduce the situation in HR schema, it is getting saved perfectly
    Regards

  • How to Render A Page From beginning(even if it was rendered)?

    Hi there,
    our problem is like...
    we use popup windows in our jsf ERP application to fill some fields of opener window,
    like when we open the popup window, there are a few query fields and sorting part and datatable, selection fills the opener window's specific areas,
    lets come to the problem, after querying and closing the window,when we want to reopen that popup it shows the old page, with datas inside it....
    we solved the problem by resetting bean(session) in the page code and giving null values to the components in the components.
    but we want to bring a global solution, we have lots of different popups like this, and all these popups are opening via javascript with a 'reset' parameter.
    we want to render the page from beginning if it has 'reset' parameters.(this means if it was rendered before , render component tree from beginnin even if it exist)
    we tried to do this at phaseListener before restroView, but failed.
    any brilliant solution with code example?
    regards
    Edited by: etahan on Oct 30, 2008 2:21 AM

    what i find as a solution , to check these pages in a phaseListener. but at which phase?
    if u use before RestoreView u wont be able to get viewId , so it is better to check this at after RestoreView Phase,
    I already eliminate other phases
    Because I want only a fresh render from beginning so no need to tire the server for nothing.
    so second problem how to distinguish the popup query windows from others
    because i dont want this check to be done for every page:)
    when we call these popup windoes we send a parameter that u can pick up anything useful for u, we use “reset” here, and u can pick this code inthe
    public void afterPhase(PhaseEvent e) method.
    FacesContext context=FacesContext.getCurrentInstance();
    HttpServletRequest request = (HttpServletRequest)context.getExternalContext().getRequest();
    if(request.getParameter(“reset”)!=null)
    if(e.getPhaseId()==PhaseId.RESTORE_VIEW)
    { Application application = context.getApplication();
    ViewHandler viewHandler = application.getViewHandler();
    UIViewRoot viewRoot =viewHandler.createView(context,context.getViewRoot().getViewId());
    context.setViewRoot(viewRoot);
    }of course u have to register ur phase listener in your faces-config
    nowww whenever one of the pages with “reset” paramater
    it will be cleared and rendered in that way.
    but opppps probably u will get data in ur datatable! Probably because u use session bean ,
    u can sort this problem out doing like this
    in the Getter method of ur bean instance,
    check the “reset” parameter if it exists then
    set ur bean null, then u wont have data in ur binded fields.
    Edited by: etahan on Oct 30, 2008 8:14 AM

  • Can not refresh page after save properly(When not saving master record)

    I am using jdeveloper 11g R2 (11.1.2.3) JSF Facelet
    In some use case I have Address as master table and Person as detail table
    For some business reason I need to don't save same addresses
    eg:
    If +1 Test St+ is in database already and new user coming and adding this address with new person
    I need to use the row in database not creating a new address
    I do saving in doDML method of Address with some hashing algorithm and it is fine
    My problem is that I can not refresh page after save properly
    User coming to page think Adding a new address and a new person but in fact no new
    address added because of business I describe above
    Any ideas how I can implement this?
    Appreciate that
    Regards
    Mohsen

    Hi,
    from your description it is not clear why the page doesn't refresh. It could be a problem in your implementation code - who knows. What if you perform the address check on a command button that actually submits the new address? If the check returns true (address exists) you would call row.refresh(forget new row); and re-query the view object so the address coming from the database is displayed. If you wanted to use the doDML then yuou need to be aware that doDML doesn't help removing the row the user created. It just ignores the database update but the entity is still around, which in my suggested solution wont be the case.
    Frank

  • I try to purchase pages (after upgrading to maverick) and get this message: Failed to verify the preflight file. It is not signed by Apple.

    I try to purchase Pages (after upgrading to Maverick OS) and keep getting this message:
    Failed to verify the preflight file. It is not signed by Apple.
    How to I get past this?  I cannot find anything referencing preflight file.  Who can identify this?

    Back up all data.
    Launch the Keychain Access application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Keychain Access in the icon grid.
    From the menu bar, select
    Keychain Access ▹ Preferences ▹ Certificates
    There are three menus in the window. Change the selection in the top two to Best attempt, and in the bottom one to  CRL. Log out, log back in, and test.

  • Mozilla/Firefox not rendering MyYahoo page after update

    I did all the updates this week (10.4.4, Itunes, Quicktime) and also installed iLife 06. Now Mozilla 1.7.12 and Firefox refuse to render MyYahoo page correctly. It is completely unusable with object spread out far to the left and down the page.
    Safari, of course, works fine but I've never liked Safari and I like to stay consistent with my Solaris environment at work and on my laptop.
    I deleted the mozilla cache (both through Preferences and the finder) to no avail.
    Anyone else seeing this?

    Jim, trash Mozilla and Firefox, empty the trash, restart your computer,
    Go back to there site and re download them.
    Remember, always repair permissions before and after any update.
    http://discussions.apple.com/thread.jspa?messageID=607293
    This thread also applies to Tiger as well.
    Don

  • Superdrive ejecting discs after few seconds ...

    Hi,
    Everthing worked well for 5 months ... After last update of the Tiger to 10.4.5 I have noticed that whatever type of disc I insert superdrive is ejecting it after few seconds. I've tried CD Audio , DVD's ever Tiger installation discs .. all were ejected after few seconds ...
    Do you have any ideas what may be wrong ?
    it's strange ???
    Kind Regards
    Ralph

    hi ralph--
    i would try various things for this. first i would boot to open firmware holding apple-option-o-f and then type in the following commands--
    reset-nvram (hit return)
    set-defaults (hit return)
    reset-all (hit return)
    the last command restarts the computer. if that does nothing, then try an smu reset, which is quite simple for your model of computer. http://docs.info.apple.com/article.html?artnum=303446. also, install any available firmware updates for your computer. they are available on this page. http://docs.info.apple.com/article.html?artnum=303903 if that doesn't do anything, then i would try disk repair http://docs.info.apple.com/article.html?artnum=302672. and if that fails, then i would try the archive and install http://docs.info.apple.com/article.html?artnum=107120. but if you archive, make sure you repair the disk beforehand, and do software updates after. i would not archive and install without go through the other troubleshooting steps. hope this solves your problem. [ 8 ) ]

  • HT3702 I have paid once for one month subscription for al jazeera sport live app. I just released after few months that they are automatically charging me on monthly bases. How i can stop them charging me for something i did not use and i did not authoriz

    I have paid once for one month subscription for al jazeera sport live app. I just released after few months that they are automatically charging me on monthly bases. How i can stop them charging me for something i did not use and i did not authorize?

    You possibly set up an auto-renewing subscription with the app - there are instructions on this page on how to manage them, including how to stop them : http://support.apple.com/kb/HT4098

  • I have mavericks installed. my safari crush since this morning. to use it again i have to close the program and reopen it. after few clicks crushes again. any idea?

    i have mavericks installed.
    my safari crush since this morning (I can not scroll between pages, if I try to reopen the page, safari open in exactelly same point is blocked).
    to use it again i have to close the program and reopen it. after few clicks crushes again. any idea?

    Quit the application. Force quit if necessary.
    Relaunch it by holding down the shift key and clicking its icon in the Dock. From the menu bar, select
    Safari ▹ Preferences... ▹ Privacy ▹ Remove All Website Data

  • Safari won't display page after loading

    So the latest update of Safari is a few bricks short of a load...
    On many pages, I get a blank page after Safari finishes loading them in.  I thought it was internet problems, but when I resize the window even slightly, the content appears.
    Obviously something not right...

    From your Safari menu bar click Safari / Preferences then select the Security tab.
    Deselect:  Enable plugins.
    Quit then relaunch Safari. If pages load as they should, folllow the instructions for troubleshooting.
    Safari: Unsupported third-party add-ons may cause Safari to unexpectedly quit or have performance issues
    And check Safari / Preferences - Extensions. If you have any installed, turn that off, quit then relaunch Safari to test.
    If you have anti virus software installed, that could be the culprit also.

  • Why do I have to reload page every few minutes?

    Why do I have to reload page every few minutes?

    What app are you using? 
    Why are you reloading the page?  What is the problem that forces you to reload the page?
    A picture of the page might be helpful.
    How to show us a screen image.  Avoid personal identification.
    command + shift + 3   Will take entire screen.  You hear a click.
    command + shift + 4 Lets you decide what to take.  Mouse pointer changes. Move mouse to upper left corner of desire image.  Hold down left mouse key where to start image.  Drag mouse to lower left of where you want to stop image.  Release mouse.
    You will get a picture n.png file on the desktop.
    On the forum input panel you will see the camera icon.
    click on camera icon.
    another window will appear.
    Make sure you have selected the from your computer tab.
    click on Browse button
    An open file panel appears.  Select the file.
    After selection a file, I have this screen showing.
    You will have to click on Insert Image.  You may have to scroll down to see Insert Image button.

  • Blank page after submitting.

    Hi all the Java Geeks can any one help me with this,<br>
    <br>
    I am getting a blank page after hitting the submit button. can you help me finding a solution for this in the JSP page or tell me where the error is.
    <br>
    <br>
    <br>
    <br>
    <br>
    <%@page contentType="text/html;charset=UTF-8" %><br>
    <%@page import="oracle.portal.provider.v2.render.*" %><br>
    <%@page import="oracle.portal.provider.v2.render.PortletRenderRequest" %><br>
    <%@page import="oracle.portal.provider.v2.PortletDefinition" %><br>
    <%@page import="oracle.portal.provider.v2.http.HttpCommonConstants" %><br>
    <%@page import="java.sql.*, javax.sql.*, java.util.*, oracle.jdbc.*, oracle.jdbc.pool.*, oracle.jdbc.oci.*" %><br>
    <br>
    <%<br>
    PortletRenderRequest portletRequest = (PortletRenderRequest)request.getAttribute(HttpCommonConstants.PORTLET_RENDER_REQUEST);<br>
    RenderContext rc = portletRequest.getRenderContext();<br>
    PortletDefinition pd = portletRequest.getPortletInstance().getPortletDefinition();<br>
    %><br>
    <br>
    <%!
         String tree_descrip;<br>
         String tree_descrip_long;<br>
         String     curr_Scheme;<br>
         String     overl_gif;<br>
         String     curr_css_path;<br>
    // page param<br>
         String     p_number_val= "1";<br>
         String     p_period_val= "Day";<br>
    %><br>
    <br>
    <%<br>
         String     long_desc = "LONG";<br>
         String     Descrip = "SHORT";<br>
         String     treeDescrip= "%SUBMISS%OLDER%";<br>
         String     curr_treeCateg = "SUB";<br>
    <br>
    try<br>
    {<br>
              curr_Scheme = getInfo.getSchem.getSchem();<br>
              overl_gif = "/images/smmj_page_obj/" curr_Scheme "images/prefreshdefault.gif";<br>
              curr_css_path = "/images/smmj_page_obj/" curr_Scheme "css/param_jsp.css";<br>
    <br>
              tree_descrip = getInfo.getPortletTitle.getPortletTitle          ( Descrip , treeDescrip , curr_treeCateg);<br>
              tree_descrip_long = getInfo.getPortletTitle.getPortletTitle          ( long_desc , treeDescrip , curr_treeCateg);<br>
    }<br>
    catch(Exception e)<br>
    {<br>
    tree_descrip = "";<br>
    tree_descrip_long = "";<br>
    }<br>
    %>
    <br>
    <%
    // Get page param p_number_val
    try
    p_number_val = request.getParameterValues("p_number")[0];
    catch(Exception e)
    p_number_val = "1";
    // Get page param p_period_val
    try
    p_period_val = request.getParameterValues("p_period")[0];
    catch(Exception e)
    p_period_val = "Day";
    %>
    <br>
    <HTML>
    <HEAD>
    <link href="<%= curr_css_path %>" rel="stylesheet" type="text/css" media='' screen=''/>
    <SCRIPT LANGUAGE="JavaScript1.1" SRC="/images/smmj_page_obj/Popup/overlib.js"></SCRIPT>
    </HEAD>
    <BODY>
    <br>
    <TABLE WIDTH=100% summary="<%= tree_descrip %>" border="0" cellspacing="0" cellpadding="3" BGCOLOR="#FFFFFF" >
    <TR WIDTH="100%" height="6px"><td height="6px" COLSPAN="6" ></td></TR>
    <TR WIDTH="100%" >
         <td ALIGN="LEFT" nowrap ></td>
         <td ALIGN="LEFT"      style="font-family:Verdana; font-size:8pt;font-weight:normal"      nowrap class="smmjPort2HeadJS"><span>  CYCLE NAME</span></td>
         <td ALIGN="CENTER"     style="font-family:Verdana; font-size:8pt;font-weight:normal"     nowrap class="smmjPort2HeadJS"><span>ID</span></td>
         <td ALIGN="CENTER"     style="font-family:Verdana; font-size:8pt;font-weight:normal"     nowrap class="smmjPort2HeadJS"><span>FIRM NAME</span></td>
         <td ALIGN="CENTER"     style="font-family:Verdana; font-size:8pt;font-weight:normal"     nowrap class="smmjPort2HeadJS"><span>BILLING PERIOD</span></td>
         <td ALIGN="RIGHT"      style="font-family:Verdana; font-size:8pt;font-weight:normal"     nowrap class="smmjPort2HeadJS0"><span>AGE</span></td>
    </TR>
    <%= getOlderSubs( p_number_val, p_period_val , "dev", portletRequest.getUser().getName(), "close_connect") %>
    </table>
    <TABLE><TR><TD>
         <%=p_number_val%>
         <br>
         <%=p_period_val%>
         <br>
         <%=portletRequest.getUser().getName()%>     
    </TD></TR>
    </TABLE>
    </BODY>
    </HTML>
    <br>
    <br>
    <br>
    <%!<br>
         private String getOlderSubs( String cnumb, String cperiod, String cstring, String userid, String cState) throws SQLException<br>
         {<br>
              CallableStatement cstmt;<br>
              ResultSet cursor;<br>
              int spacerLine = 1;<br>
              int retStrC = 1;<br>
              String retStr = "f";<br>
              String retStr2 = "f";<br>
              String retStr3 = "f";<br>
              String retStr4 = "f";<br>
              String ALLretStr = " ";<br>
              String TempretStr = " ";<br>
    String userstring = getInfo.getPortlUser.getPortUsr("B", "1");<br>
    String pwstring = getInfo.getPortlUser.getPortUsr("B", "2");<br>
    String CNNstring = getInfo.getPortlUser.getPortUsr("B", "3");<br>
    <br>
              String PROXY_user_name = "test$" + userid;<br>
              //String PROXY_user_name = "test1$roger" ;<br>
                   String url= "jdbc:oracle:oci:@" + CNNstring;<br>
              Properties prop = new Properties();<br>
    <br>
    try {<br>
                        if ( userid.trim().toUpperCase().equals(getInfo.getCONN.chkPortal.trim().toUpperCase()) )<br>
                             {<br>
                                  ALLretStr = "<tr><td>Default user: " + userid + "</td></tr>";
                             }<br>
    <br>
                   else<br>
                   {<br>
                   // Create an OracleOCIConnectionPool instance with default configuration<br>
                   OracleOCIConnectionPool cpool = new OracleOCIConnectionPool(userstring, pwstring , url, null);<br>
                        Properties proxUserProp = new Properties();<br>
                        proxUserProp.setProperty(OracleOCIConnectionPool.PROXY_USER_NAME, PROXY_user_name);<br>
                        OracleConnection conn__OCI      = cpool.getProxyConnection<br>(OracleOCIConnectionPool.PROXYTYPE_USER_NAME, proxUserProp);<br>
                        cstmt = conn__OCI.prepareCall ("begin PORT_CURSOR.s_submission_wip( ?,?,?,?,? ); end;");<br>
                        cstmt.setString(2, cnumb);<br>
                        cstmt.setString(3, cperiod);<br>
    <br>
                        cstmt.setInt(4, retStrC);<br>
                        cstmt.setString(5, retStr3);<br>
    <br>
                        cstmt.registerOutParameter (4, Types.NUMERIC);<br>
                        cstmt.registerOutParameter (5, Types.VARCHAR);<br>
                        cstmt.registerOutParameter(1, OracleTypes.CURSOR);<br>
                        cstmt.execute();<br>
                        retStrC = cstmt.getInt (4);<br>
                        retStr3 = cstmt.getString (5);<br>
    <br>
                        retStr = "<tr class=OraDataText><td>  " + retStrC + "</td></tr>";<br>
                        retStr = retStr + "<tr class=OraDataText><td>  " + retStr3 + "</td></tr>";<br>
    <br>
    if ( retStrC == -1 ) { ALLretStr = ALLretStr + retStr; }<br>
                                  else<br>
                                  {<br>
    <br>                                   cursor = ((OracleCallableStatement)cstmt).getCursor(1);<br>
                        while (cursor.next ())<br>
    {<br>
    if (spacerLine >= 2)<br>
    {<br>
    ALLretStr = ALLretStr + "<tr><td ALIGN=LEFT nowrap ></td><td colspan=5 height=1 <div id=ssubLine> <div id=ssubLinet></div> </div> </td></tr>";<br>
              }<br>
    ALLretStr = ALLretStr + "<tr WIDTH=100% class=smmjPort2Text <br>><td ALIGN=LEFT nowrap ></td><td ALIGN=LEFT>  " + cursor.getString(1) + "</td><td ALIGN=CENTER>" + cursor.getInt(2) + "</td><td ALIGN=CENTER>" + cursor.getString(3) + "</td><td ALIGN=CENTER>" + cursor.getString(4) + "</td><td ALIGN=RIGHT>" + cursor.getString(5) + "</td></tr>";<br>
    spacerLine++;<br>
    }<br>
    }<br>
              if (cState != null )<br>
                   { //return(retStr);<br>
    if (conn__OCI != null)      conn__OCI.close();<br>
    if (cpool != null)           cpool.close();<br>
              }}<br>
              return(TempretStr);<br>
         }<br>
         catch (SQLException e )<br>
                   {<br>
    String retErrStr = retStr + "<P> SQL Error: <PRE> " + e + " </PRE> </P> \n";<br>
    return(retErrStr);<br>
                   }<br>
              }<br>
    %><br>
    <br>
    <br>
    <br>
    Vijay.

    Vijay,
    Do you see any error messages on your application server console or the error log files?
    Thanks,
    Rashmi

  • Firefox crashes after few seconds

    I have WIN 7 64bit , since last update i.e 33.0 version, i am facing a problem that firefox crashes after few seconds . I troubleshoot the same as mentioned on your site but it doesn't work ........
    kindly help .......

    We're sorry to hear that Firefox is crashing. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that turns off some settings, disables most add-ons (extensions and themes).
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu:
    * Click the menu button [[Image:New Fx Menu]], click Help [[Image:Help-29]] and select ''Restart with Add-ons Disabled''.
    If Firefox is not running, you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    When the Firefox Safe Mode window appears, select "Start in Safe Mode".<br>
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    Can you also try disabling hardware acceleration to see if that fixes your problem? You might need to restart Firefox in order for this to take effect, so save all work first (e.g., mail you are composing, online documents you're editing, etc.).
    Then perform these steps:
    #Open Firefox ''Options'' window as follows:
    #* Click the menu button [[Image:New Fx Menu]] and select ''Options''.
    #In the Firefox Options (or Preferences) window, click the ''Advanced'' tab, then select ''General''.
    #In the settings list, you should find the ''Use hardware acceleration when available'' checkbox. Uncheck this checkbox.
    #Now, restart Firefox and see if the problems persist.
    Additionally, please check for updates for your graphics driver by following the steps mentioned in the following Knowledge base articles:
    * [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]
    * [[Upgrade your graphics drivers to use hardware acceleration and WebGL]]
    If the above did not solve it, please follow the steps below to provide us crash IDs to help us learn more about your crash.
    #Enter ''about:crashes'' in the Firefox address bar and press Enter. A Submitted Crash Reports list will appear, similar to the one shown below.
    #Copy the '''5''' most recent Report IDs that start with '''bp-''' and then go back to your forum question and paste that into the "Post a Reply" box. (Please don't take a screenshot of your crashes, just copy and paste the ID's. The below image is just an example of what your Firefox screen should look like)
    [[Image:aboutcrashesFx29|width=520]]
    <br><br>
    Thank you for your help!
    If you don't have enough time to go to that page and collect the crash reports:
    #Press the following shortcut to get a Run window: [Windows] + [R]. This should bring up a window that contains a text field.
    #In that text field, enter %APPDATA% and press Enter. An explorer window should open.
    #From that explorer window, double-click on the ''Mozilla'' folder, then double-click on ''Firefox'' and then on ''Crash reports''. Double-click on ''submitted''.
    #Now, you should see a list of files that contain reports. Go to ''View'' > ''Arrange Icons by'' > ''Modified'' to get the most recent files at the top of the window.
    #Open the most recent 5 files with a text editor and copy the IDs.
    #Paste each ID with '''bp-''' into the reply window on the forums.
    Thanks in advance!
    You can find more information and troubleshooting steps in the [[Firefox crashes]] article or in the [[Firefox crashes - Troubleshoot, prevent and get help fixing crashes]] article.

Maybe you are looking for