When i try to run my jsp i get "File Download Security Warning"

Hi,
I have created a jsp file which is called UpdateEmpDetails1.jsp
This jsp file picks up the employee id of the employee and transfers it to the backend servlet called UpdateEmpDetails1.java. The backend servlet looks up the table stored in the database and pulls up all the information stored corresponding to the employee id.Then the servlet stores the information in a session object and forwards it to the UpdateEmpDetails2.jsp
I display the information which has been forwarded by the servlet in the HTML fields of UpdateEmpDetails2.jsp.
Here the manager can also update the information. When he clicks on submit, the second serlvet UpdateEmpDetails2.java which is linked to UpdateEmpDetails2.jsp picks up the updated information and updates the database. The servlet also displays the message "Your information has been updated". But here is the real problem
The session variables are being transferred perfectly to the jsp file UpdateEmpDetails2.jsp.
But when i make any changes to this file and click on submit I get File Download Security Warning. It Says:
File Download Security Warning
Do you want to save this file
Name UpdateEmpDetails2
Type UnknownFileType
From LocalHost
Then I get another file which says
FileDownload
Getting FIle Information
UpdateEmpDetails2 from localhost
Estimated time left
Download to:
Transfer rate:
Close this dialog box when download is complete
I am just simply not able to update the employee information in the database due to this message.

this is what i am trying to do:
my UpdateEmpDetails1.jsp is as follows:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional //EN">
<html>
<head>
<title>UpdateEmpDetails1.jsp</title>
<link REL=STYLESHEET
HREF="JSP-Styles.css"
TYPE="text/css">
</head>
<body BGCOLOR="lightyellow" text="black">
<h2 align="left"><font color="black">Update Employee Details Page</font></h2>
<form action="UpdateEmpDetails2" Method="Get">
<h2 align="left">Please enter the Employee ID of the employee whose details you want to edit</h2>
<table width=50% align="center">
<tr><td>Employee ID : </td>
     <td><INPUT TYPE="TEXT" name="employeeid"><br></td></tr>
<tr><td><center><INPUT TYPE="SUBMIT" VALUE="SUBMIT"></center></td></tr>
<tr><td><center><INPUT TYPE="RESET" VALUE="RESET"></center></td></tr>
</table>
</form>
</body>
</html>
my update EmpDetails1.java is as follows:
package com.update;
import com.database.*;
import java.io.*;
import java.sql.*;
import javax.servlet.http.*;
import javax.servlet.*;
public class UpdateEmpDetails1 extends HttpServlet
     public void doGet(HttpServletRequest request,HttpServletResponse response)throws ServletException,IOException
          HttpSession session = request.getSession();
          String X = request.getParameter("employeeid");
          System.out.println("Employee ID:" + X);
          //Establishing the jdbc connection
          try
               Database db = new Database();
               Connection con = db.useConnection();
               String query = "Select * from employees where employeeid=?";
               PreparedStatement stat = con.prepareStatement(query);
               System.out.println(stat);
               stat.setString(1,X);
               ResultSet rs = stat.executeQuery();
               while(rs.next())
                    String A = rs.getString("employeeid");
                    String B = rs.getString("firstname");
                    String C = rs.getString("lastname");
                    String D = rs.getString("gender");
                    String E = rs.getString("dateofbirth");
                    String F = rs.getString("address");
                    String G = rs.getString("postalcode");
                    String H = rs.getString("phone");
                    String I = rs.getString("mobile");
                    String J = rs.getString("designation");
                    String K = rs.getString("joindate");
                    String L = rs.getString("leavedate");
                    String M = rs.getString("email");
                    String N = rs.getString("qualification");
                    String O = rs.getString("empstatus");
                         System.out.println("comparison successful");
                         session.setAttribute("employeeid",A);
                         session.setAttribute("firstname", B);
                         session.setAttribute("lastname", C);
                         session.setAttribute("gender", D);
                         session.setAttribute("dateofbirth", E);
                         session.setAttribute("address", F);
                         session.setAttribute("postalcode", G);
                         session.setAttribute("phone", H);
                         session.setAttribute("mobile", I);
                         session.setAttribute("designation", J);
                         session.setAttribute("joindate", K);
                         session.setAttribute("leavedate", L);
                         session.setAttribute("email", M);
                         session.setAttribute("qualification", N);
                         session.setAttribute("empstatus", O);
                         String url="/UpdateEmpDetails2.jsp";
                         RequestDispatcher dis = request.getRequestDispatcher("/UpdateEmpDetails2.jsp");
                         System.out.println("Dispatching" + dis);
                         dis.forward(request, response);
          catch(Exception e)
               System.out.println(e);
my UpdateEmpDetails2.jsp is as follows:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>UpdateEmpDetails2.jsp</title>
<link REL=STYLESHEET
HREF="JSP-Styles.css"
TYPE="text/css">
</head>
<body BGCOLOR="lightblue" text="black">
<h1 align="center"><font color="black">Update Employee Details Page</font></h1>
<form action="UpdateEmpDetails2" Method="Get">
<table width=50% align="center">
<tr><td>EMPLOYEE ID:</td>
     <td><INPUT TYPE = "HIDDEN" name="employeeid" value=<%=session.getAttribute("employeeid")%> ></td></tr>
<tr><td>FIRST NAME :</td>
     <td><INPUT TYPE = "TEXT" name="firstname" value=<%=session.getAttribute("firstname")%> ></td></tr>
<tr><td>LAST NAME :</td>
     <td><INPUT TYPE = "TEXT" name="lastname" value=<%=session.getAttribute("lastname")%> ><br></td></tr>
<tr><td>GENDER :</td>
     <td><INPUT TYPE = "TEXT" name="gender" value=<%=session.getAttribute("gender")%> ><br></td></tr>
<tr><td>DATE OF BIRTH (IN MM/DD/YYYY FORMAT) :</td>
     <td><INPUT TYPE = "TEXT" name="dateofbirth" value=<%=session.getAttribute("dateofbirth")%> ><br></td><tr>
<tr><td>ADDRESS :</td>
     <td><INPUT TYPE = "TEXT" name="address" value=<%=session.getAttribute("address")%> ><br></td></tr>
<tr><td>POSTALCODE:</td>
     <td><INPUT TYPE = "TEXT" name="postalcode" value=<%=session.getAttribute("postalcode")%>><br></td></tr>
<tr><td>PHONE:</td>
     <td><INPUT TYPE = "TEXT" name="phone" value=<%=session.getAttribute("phone")%> ><br></td></tr>
<tr><td>MOBILE:</td>
     <td><INPUT TYPE = "TEXT" name="mobile" value=<%=session.getAttribute("mobile")%> ><br></td></tr>
<tr><td>DESIGNATION : </td>
<td><INPUT TYPE="TEXT" name="designation" value=<%=session.getAttribute("designation")%> > <br></td></tr>
<tr><td>JOIN DATE:</td>
     <td><INPUT TYPE = "TEXT" name="joindate" value=<%=session.getAttribute("joindate")%> ><br></td></tr>
<tr><td>LEAVE DATE:</td>
     <td><INPUT TYPE = "TEXT" name="leavedate" value=<%=session.getAttribute("leavedate")%> > <br></td></tr>
<tr><td>EMPLOYEE EMAIL:</td>
     <td><INPUT TYPE = "TEXT" name="email" value=<%=session.getAttribute("email")%> ><br></td></tr>
<tr><td>EMPLOYEE QUALIFICATION:</td>
     <td><INPUT TYPE = "TEXT" name="qualification" value=<%=session.getAttribute("qualification")%> > <br></td></tr>
<tr><td>EMPLOYEE STATUS:</td>
     <td><INPUT TYPE = "TEXT" name="empstatus" value=<%=session.getAttribute("empstatus")%> > <br></td></tr>
<tr><td><center><INPUT TYPE="SUBMIT" VALUE="SUBMIT"></center></td></tr>
<tr><td><center><INPUT TYPE="RESET" VALUE="RESET"></center></td></tr>
</table>
</form>
</body>
</html>
my UpdateEmpDetails2.java is as follows:
package com.update;
import java.io.*;
import java.sql.*;
import javax.servlet.http.*;
import javax.servlet.*;
import com.database.*;
public class UpdateEmpDetails2 extends HttpServlet
     public void doGet(HttpServletRequest request,HttpServletResponse response)throws ServletException,IOException
          PrintWriter out = response.getWriter();
          response.setContentType("texthtml");
          String A = request.getParameter("employeeid");
          out.println(A);
          String B = request.getParameter("firstname");
          out.println(B);
          String C = request.getParameter("lastname");
          out.println(C);
          String D = request.getParameter("gender");
          out.println(D);
          String E = request.getParameter("dateofbirth");
          out.println(E);
          String F = request.getParameter("address");
          out.println(F);
          String G = request.getParameter("postalcode");
          out.println(G);
          String H = request.getParameter("phone");
          out.println(H);
          String I = request.getParameter("mobile");
          out.println(I);
          String J = request.getParameter("designation");
          out.println(J);
          String K = request.getParameter("joindate");
          out.println(K);
          String L = request.getParameter("leavedate");
          out.println(L);
          String M = request.getParameter("email");
          out.println(M);
          String N = request.getParameter("qualification");
          out.println(N);
          String O = request.getParameter("empstatus");
          out.println(O);
          try
          Database db = new Database();
          Connection con = db.useConnection();
          String query= "update employees set employeeid=?,firstname=?,lastname=?,gender=?,dateofbirth=?,address=?,postalcode=?,phone=?,mobile=?,designation=?,joindate=?,leavedate=?,email=?,qualification=? where employeeid=?";
          PreparedStatement stat = con.prepareStatement(query);
          stat.setString(1, B);
          stat.setString(2, C);
          stat.setString(3, D);
          stat.setString(4, E);
          stat.setString(5, F);
          stat.setString(6, G);
          stat.setString(7, H);
          stat.setString(8, I);
          stat.setString(9, J);
          stat.setString(10, K);
          stat.setString(11, L);
          stat.setString(12, M);
          stat.setString(13, N);
          stat.setString(14, O);
          stat.setString(15, A);
          System.out.println(stat);
          int i = stat.executeUpdate();
          if (i!= 0)
          System.out.println("The record has been updated");
          else
               System.out.println("Sorry ! failure");
          ResultSet rs = stat.executeQuery("select * from employees");
          System.out.println(rs);
          while(rs.next())
               out.print("<table border='1'>");
               out.println(rs.getString(1) + "<br>");
               out.println(rs.getString(2) + "<br>");
               out.println(rs.getString(3) + "<br>");
               out.println(rs.getString(4) + "<br>");
               out.println(rs.getString(5) + "<br>");
               out.println(rs.getString(6) + "<br>");
               out.println(rs.getString(7) + "<br>");
               out.println(rs.getString(8) + "<br>");
               out.println(rs.getString(9) + "<br>");
               out.println(rs.getString(10) + "<br>");
               out.println(rs.getString(11) + "<br>");
               out.println(rs.getString(12) + "<br>");
               out.println(rs.getString(13) + "<br>");
               out.println(rs.getString(14) + "<br>");
               out.println(rs.getString(15) + "<br>");
               out.print("<br>");
          catch (Exception e)
               System.out.println(e);
               e.printStackTrace();
Now as soon as i click on the submit button of the first jsp i get "File Download security warning message"
I am new to jsp and i am not able to troubleshoot this

Similar Messages

  • "File download - security warning" when running a report

    Hi all,
    Few of our users are having an error on their PCs when trying to run a report in Internet Explorer 8 with Adobe Reader 10.1.3 installed on their PCs. The error is:
    "File Download - Security Warning"
    Do you want to save this file, or find a program online to open it?
    Name: rwservlet
    Type: Unknown File Type
    Find Save Cancel
    Other users are able to run the reports. They have IE8 and Adobe Reader 10.1.2 installed. Any ideas why this problem might occur?
    Any help is appreciated.

    Hi,
    what is the behavior if you leave adobe Reader opened and running before running the report?
    Thanks, Roberto

  • I can download and it goes to my download file but when I try to Run to install, I get nothing. I'm on Windows 8.

    I have download in my download file but I can do nothing with it. When I try to delete it, I get the message that it can't be deleted because it is open. If I click run from the start button, it does nothing. I've tried troubleshooting and it just sits and does nothing.

    The installer might be crashing and hanging in memory.
    If the installer you downloaded has the word "stub" in the name or is not a very large file, try downloading the full installer from this page (scroll down to your preferred language):
    https://www.mozilla.org/firefox/all/
    Sometimes after numerous installs or install attempts the Windows Installer seems to become a bit constipated. You can shut down Windows and start it up again to clear any backlog of deferred actions (i.e., actions that can only be taken when certain files are not in use).

  • When I try to run a form I get a message of Jinitiator version too Low

    I've run my first form of Oracle Forms on google chrome but I get the following message:
    "FRM-92095; Oracle Jinitiator Version too Low. Please install version 1.1.8.2 or higher"
    I can't understand.
    From the control pannel of Windows XP I see "Jinitiator 1.3.1.22"
    I use Forms 10.1.2 on Oracle vers. 10gXE
    Thanks in advance!

    The Oracle Jinitiator is not compatible with modern browsers. In fact, Oracle has discontinued Jinitiator and no longer supports it's use. Michael is right, you should install the latest Java 6 runtime (JRE 1.6.0_33) and use it instead of Jinitiator.
    Since Oracle Forms 10g defaults to using the Jinitiator, you will need to modify your configuration to tell the Forms to use the JRE Plug-In (JPI) instead of Jinitiator. Take a look at Oracle 10gR2 Forms Services – Using Sun's Java Plug-in for information on how to update your configuration to use the JPI.
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Download went fine but I get an error message about rights (even logged in as Administrator) and disk space (even though there's plenty) when I try to run the .exe and extract files.

    IT help said the installer was corrupted. Back I go to see if I can download it again and get a clean version.

    Banjo Seth if you are receiving messages that you have insufficient file permissions then please have your I.T. department attempt the install utilizing a local administrator account.

  • Aperture crashed on me, then it did a rebuild but now when I try to open it all I get is the message: Warning.There was an error opening the database for the library "/Users/[Folder name]/Pictures/Aperture Library.aplibrary".Only option is to press 'Quit'

    I'd be grateful for any suggestions as to how I can re-open Aperture again.  It has been increasingly flaky recently and this isn't the first time it has done a rebuild but is the first time it has failed to start up.  Most of my photos are referenced.  Many thanks for any help you can give.

    Dave-
    You can try opening the old (problem) library by launching Aperture into Library First Aid mode and choosing to Repair (first option) or Rebuild the library. Before doing this, make a backup copy of the old library, since both Repair or Rebuild will write changes to the library database.
    Repair is the faster and less drastic option, so try that first: After backing up your library, hold down both the Option and Command keys while dragging and dropping the problem library on the Aperture icon. The Photo Library First Aid window appears. Select Repair Database, then click Repair. After some time Aperture should open the library, if possible.
    If that fails launch Aperture back into Library First Aid and select Rebuild Database. Depending on the size of your library this operation could take some time, up to several hours for a very large library. When the main window appears you may have some extra Recovered folders/projects. This operation rebuilds the library from scratch and is usually successful at reviving problem libraries.

  • Hi folks! When I try to run BF3, i get this error at startup - d3dcompiler_43.dll is missing, why?

    Product Name and Number:
    HP Pavilion DV7-6151
    OS:
    Windows 7, 64-bit
    Error message:
    When I try to run Battlefield 3, I get this error d3dcompiler_43.dll is missing, anyone know what to do?
    I bought the laptop 4 days ago, and I have made no changes to is, its fresh from the factory.
    I hope you can help me out
    This question was solved.
    View Solution.

    Hi,
    On the BF3 CD, there should be a folder called DirectX. Use it to reinstall the directX runtime files.
    Else, you may get it here
    http://www.microsoft.com/downloads/en/details.aspx?FamilyID=2da43d38-db71-4c1b-bc6a-9b6652cd92a3&dis...
    Say "Thanks" by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as "Accepted Solution"
    (Although I am employed by HP, I am speaking for myself and not for HP)

  • Error when i try to run ARI_INVOICE_PAYMENT_PAGE.xml on local jdeveloper

    Hi,
    I brought all the files from server to local machine and when I try to run ARI_INVOICE_PAYMENT_PAGE.xml the project, I am getting the following error messages.
    Error:
    Error(320,17): final method getClass() in class java.lang.Object cannot be overridden by method getClass() in class oracle.apps.ar.irec.accountDetails.cmreq.server.CMRequestVORowImpl
    Then i change the method name getClass() to getXclass(),I run ARI_INVOICE_PAYMENT_PAGE.xml the project error message not displayed in jdeveloper but I am getting the following error in application page.
    Exception Details.
    oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation. Statement: SELECT customer_id, currency_code, total_due_original, total_due_remaining, total_discount, total_service_charge, total_payment_amount, (total_due_remaining - total_discount - total_payment_amount) as total_balance_due, TO_CHAR(total_due_original , FND_CURRENCY_CACHE.GET_FORMAT_MASK( currency_code , 30 )) || ' ' || currency_code as total_due_original_formatted, TO_CHAR(total_due_remaining , FND_CURRENCY_CACHE.GET_FORMAT_MASK( currency_code , 30 )) || ' ' || currency_code as total_due_remaining_formatted, TO_CHAR(total_service_charge , FND_CURRENCY_CACHE.GET_FORMAT_MASK( currency_code , 30 )) || ' ' || currency_code as total_service_charge_formatted, TO_CHAR( -total_discount , FND_CURRENCY_CACHE.GET_FORMAT_MASK( currency_code , 30 )) || ' ' || currency_code as total_discount_formatted, TO_CHAR(total_payment_amount , FND_CURRENCY_CACHE.GET_FORMAT_MASK( currency_code , 30 )) as total_payment_amount_formatted, TO_CHAR( (total_due_remaining - total_discount - total_payment_amount) , FND_CURRENCY_CACHE.GET_FORMAT_MASK( currency_code , 30 )) || ' ' || currency_code as total_balance_due_formatted, TO_CHAR(TO_NUMBER(TO_CHAR(SYSDATE, 'MM'))) current_month, TO_CHAR(SYSDATE, 'YYYY') current_year, TO_CHAR( (total_service_charge + total_payment_amount) , FND_CURRENCY_CACHE.GET_FORMAT_MASK( currency_code , 30 )) || ' ' || currency_code as grand_payment_total_formatted, :1 as customer_site_use_id, total_number_of_installments, trunc(sysdate) as receipt_date, TO_CHAR( (dispute_amt), FND_CURRENCY_CACHE.GET_FORMAT_MASK( currency_code , 30 ))||' '||currency_code as dispute_amt FROM (SELECT customer_id, currency_code, sum(amount_due_original) total_due_original, sum(amount_due_remaining) total_due_remaining, sum(discount_amount) total_discount, sum(service_charge) total_service_charge, sum(payment_amt) total_payment_amount, sum(number_of_installments) total_number_of_installments, sum(dispute_amt) dispute_amt FROM ar_irec_payment_list_gt WHERE customer_id = :2 AND customer_site_use_id = nvl(:3, customer_site_use_id) GROUP BY customer_id, currency_code ) at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:888) at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:862) at oracle.apps.fnd.framework.OAException.wrapperInvocationTargetException(OAException.java:985) at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:210) at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:132) at oracle.apps.fnd.framework.server.OAViewObjectImpl.invokeMethod(OAViewObjectImpl.java:1123) at oracle.apps.ar.irec.accountDetails.pay.webui.QuickPaymentCO.processRequest(QuickPaymentCO.java:53) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:581) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.beans.layout.OAHeaderBean.processRequest(OAHeaderBean.java:389) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.beans.layout.OAFlowLayoutBean.processRequest(OAFlowLayoutBean.java:351) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.beans.layout.OAFlowLayoutBean.processRequest(OAFlowLayoutBean.java:351) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processRequest(OAStackLayoutBean.java:350) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1095) at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353) at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2298) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1711) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418) at _OA._jspService(OA.jsp:40) at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56) at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317) at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465) at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106) at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803) at java.lang.Thread.run(Thread.java:534) ## Detail 0 ## java.sql.SQLException: ORA-01008: not all variables bound at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134) at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:289) at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:583) at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1983) at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:1141) at oracle.jdbc.driver.OracleStatement.doExecuteQuery(OracleStatement.java:2487) at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2854) at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:622) at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:550) at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:627) at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:515) at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:3347) at oracle.jbo.server.OAJboViewObjectImpl.executeQueryForCollection(OAJboViewObjectImpl.java:825) at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQueryForCollection(OAViewObjectImpl.java:4465) at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:574) at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:538) at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2369) at oracle.jbo.server.ViewRowSetIteratorImpl.first(ViewRowSetIteratorImpl.java:1250) at oracle.jbo.server.ViewRowSetImpl.first(ViewRowSetImpl.java:2363) at oracle.jbo.server.ViewObjectImpl.first(ViewObjectImpl.java:5231) at oracle.apps.ar.irec.accountDetails.pay.server.MultipleInvoicesPayListSummaryVOImpl.isSingleInstallment(MultipleInvoicesPayListSummaryVOImpl.java:186) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:189) at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:132) at oracle.apps.fnd.framework.server.OAViewObjectImpl.invokeMethod(OAViewObjectImpl.java:1123) at oracle.apps.ar.irec.accountDetails.pay.webui.QuickPaymentCO.processRequest(QuickPaymentCO.java:53) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:581) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.beans.layout.OAHeaderBean.processRequest(OAHeaderBean.java:389) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.beans.layout.OAFlowLayoutBean.processRequest(OAFlowLayoutBean.java:351) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.beans.layout.OAFlowLayoutBean.processRequest(OAFlowLayoutBean.java:351) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processRequest(OAStackLayoutBean.java:350) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1095) at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353) at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2298) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1711) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418) at _OA._jspService(OA.jsp:40) at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56) at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317) at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465) at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106) at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803) at java.lang.Thread.run(Thread.java:534) java.sql.SQLException: ORA-01008: not all variables bound at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134) at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:289) at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:583) at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1983) at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:1141) at oracle.jdbc.driver.OracleStatement.doExecuteQuery(OracleStatement.java:2487) at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2854) at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:622) at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:550) at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:627) at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:515) at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:3347) at oracle.jbo.server.OAJboViewObjectImpl.executeQueryForCollection(OAJboViewObjectImpl.java:825) at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQueryForCollection(OAViewObjectImpl.java:4465) at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:574) at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:538) at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2369) at oracle.jbo.server.ViewRowSetIteratorImpl.first(ViewRowSetIteratorImpl.java:1250) at oracle.jbo.server.ViewRowSetImpl.first(ViewRowSetImpl.java:2363) at oracle.jbo.server.ViewObjectImpl.first(ViewObjectImpl.java:5231) at oracle.apps.ar.irec.accountDetails.pay.server.MultipleInvoicesPayListSummaryVOImpl.isSingleInstallment(MultipleInvoicesPayListSummaryVOImpl.java:186) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:189) at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:132) at oracle.apps.fnd.framework.server.OAViewObjectImpl.invokeMethod(OAViewObjectImpl.java:1123) at oracle.apps.ar.irec.accountDetails.pay.webui.QuickPaymentCO.processRequest(QuickPaymentCO.java:53) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:581) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.beans.layout.OAHeaderBean.processRequest(OAHeaderBean.java:389) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.beans.layout.OAFlowLayoutBean.processRequest(OAFlowLayoutBean.java:351) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.beans.layout.OAFlowLayoutBean.processRequest(OAFlowLayoutBean.java:351) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processRequest(OAStackLayoutBean.java:350) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1095) at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353) at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2298) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1711) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418) at _OA._jspService(OA.jsp:40) at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56) at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317) at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465) at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106) at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803) at java.lang.Thread.run(Thread.java:534)
    Thanks,
    Siddhu

    Is IE your default browser?
    The address in that error is somewhat peculiar, in that it points to a process running on your computer (127.0.0.1 is a loopback address that points to your own system).
    I suggest that after downloading and saving the Flash installer to a folder, you completely exit Firefox, and do the installation with Firefox closed in case having Firefox open is interfering in some manner.
    Of course, make sure you get the official installer from Adobe, and '''uncheck the box for any tag-along software that you do not want''':
    http://get.adobe.com/flashplayer/

  • 5200 T128. my computer freezes when i try to run games

    OK.. the thing is:  i just bought a Geforce FX 5200 T128, with 128 MB DDR (the one without a cooling fan), and when i try to run my DirectX 9 games (GTA: Vice city, NFS: Underground, Hitman: Contracts) my computer locks up in the game's loading screen. These lock-ups occur also, when i set the anisotropic filtering at values higher than 2x, and/or when i turn the V-sync on, but only when i start a game..
       ALSO...... the same lock-up occurs when i try to RENAME A FILE ------- the cursor is still blinking, but EVERYTHING else freezes.
          So? whats up guys.... last time i checked the FX 5200 had support for DX9, didn't it?
          Well, i can't tell exactly if the problem is common to all DX9 games, because i didn't tryed many of them... but the games listed above, all require DX9. Furter more, those games ran on my older Geforce2 MX400, witch doesn't have support for DX9. All my other non DX9 games work fine (well not to the max, because i still have a mainboard witch supports only AGP 4x). If i change my mainboard to one with AGP 8x will the problem be solved?
         Also, the videocard, out of my opinion, gets  too hot after i play a game, but i don't think this should be the problem, because when i try to start those games, my computer still locks up, even though i just started it, and the videocard didn't have time to overheat.
          The problem occurs with both the driver from the CD that came with the card, and the new Forceware 56.72. I haven't tryed oder drivers. The videocard is not overclocked, and the frequencies are on the standard 200 Mhz (GPU), and 400 Mhz (RAM)
          So, can you help me out here.. give me some suggestions? I have written here all the information i beleive are relevant to the problem. My processor is a 1200 Mhz AMD Duron, and 256 MB SDRAM
    -------------  -------------

    Obi One,
    Have you tried changing the AGP voltage in your bios to 1.6V?  Got the same problem before when running 3D games.  My system doesn't lock up but it gives me weird display (lot of greens).  It was solved when I increased my AGP voltage setting from 1.5V to 1.6V.  You may want to post your power supply specs too because the FX cards are really power hungry.
    Good Luck  

  • I have PS 6 and just purchased an iMac and am running OS 10.10.1 (Yosemite).  When i try to Save or Save As a file I get the following message:  Could not save as "Whatever.psd" because this file is locked, you do not have necessary access permissions, or

    I have PS 6 and just purchased an iMac and am running OS 10.10.1 (Yosemite).  When i try to Save or Save As a file I get the following message:  Could not save as "Whatever.psd" because this file is locked, you do not have necessary access permissions, or another program is using the file.  Use the Get Info command in the Finder to ensure the file is unlocked and you have permission to access the file.  If the problem persists, save the document to a different file or duplicate it in the Finder.  Any suggestions?  Thanks.

    Photoshop: Basic Troubleshooting steps to fix most issues
    Look under Troubleshoot User Permissions.
    Gene

  • Firefox will not open on my computer, even after reinstall, with no error message or when I try to run "C:\Program Files\Mozilla Firefox\firefox.exe" -p. Help?

    I recently installed firefox so I could use an adblocker. It installed just fine, and it worked just fine for about three days. Then yesterday it stopped opening. I'm on a Toshiba running Windows 7. The icon highlights when I click on it, but then it stops and won't open the browser at all. When I try to run it with the manual command "C:\Program Files\Mozilla Firefox\firefox.exe" -p, I get the error message, "C:\Program Files\Mozilla Firefox\ refers to a location that is unavailable. It could be on a hard drive on this computer, or on a network. Check to make sure that the disk is properly inserted, or that you are connected to the Internet or your network, and then try again. If it still cannot be located, the information might have been moved to a different location." I installed it to that location, and I don't need a disk. I'm connected to the Internet just fine and my other browsers (Chrome and IE) work the same as always. But they're swamped with ads and I really was happy wih Firefox when it was opening...how can I fix this issue?

    Certain Firefox problems can be solved by performing a ''Clean reinstall''. This means you remove Firefox program files and then reinstall Firefox. Please follow these steps:
    '''Note:''' You might want to print these steps or view them in another browser.
    #Download the latest Desktop version of Firefox from http://www.mozilla.org and save the setup file to your computer.
    #After the download finishes, close all Firefox windows (click Exit from the Firefox or File menu).
    #Delete the Firefox installation folder, which is located in one of these locations, by default:
    #*'''Windows:'''
    #**C:\Program Files\Mozilla Firefox
    #**C:\Program Files (x86)\Mozilla Firefox
    #*'''Mac:''' Delete Firefox from the Applications folder.
    #*'''Linux:''' If you installed Firefox with the distro-based package manager, you should use the same way to uninstall it - see [[Installing Firefox on Linux]]. If you downloaded and installed the binary package from the [http://www.mozilla.org/firefox#desktop Firefox download page], simply remove the folder ''firefox'' in your home directory.
    #Now, go ahead and reinstall Firefox:
    ##Double-click the downloaded installation file and go through the steps of the installation wizard.
    ##Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    Please report back to see if this helped you!

  • The application maps is not working. When I try to run it opens for a few seconds with a blank screen and then closes

    The application maps is not working. When I try to run it opens for a few seconds with a blank screen and then closes.

    Try a reset by pressing the home and sleep buttons until you see the Apple logo, ignoring the slider. Takes about 5-15 secs of button holding and you won't lose any data or settings.

  • I can download firefox, but when I try to run it, windows 7 asks me to select a program type to run the *.exe file

    I am running windows 7 with IE 10. I want to switch to Firefox as my browser. I am able to download the Firefox Setup 22 0 exe, but when I try to open or run it, windows prompts me to "choose the program you want to use to open this file". This happens with both the Firefox Setup Stub 22 0 exe (274kb) and the Firefox Setup 22 0 exec (21,239Kb). I can't find any program on Windows to run this exe. Same thing happens when I try to run the troubleshooter exe.

    Hello annsboland
    Do you have also problem with others exe files ?
    try to create a new user account in Windows 7 and check it again
    see if the next articles in the links helps to create the new account:
    http://www.bleepingcomputer.com/tutorials/create-new-user-account-in-windows-vista-7/
    http://www.pcadvisor.co.uk/how-to/windows/3326039/how-add-new-user-account-in-windows-7/
    thank you

  • I have  a iphn 3gs running on ios 6.1.3  i buy it frm my frnd ..........n it has one prblm that safari mail n maps does't wrk it crashes all time when i try to run these ......plzzz help me what shoud i do ......i have tried reset many times bt it does't

    i have  a iphn 3gs running on ios 6.1.3  i buy it frm my frnd ..........n it has one prblm that safari mail n maps does't wrk it crashes all time when i try to run these ......plzzz help me what shoud i do ......i have tried reset many times bt it does't

    use a computer and restore the phone http://support.apple.com/kb/ht1414

  • When I try to run iTunes I receive the following error message: "Apple Application Support was not found.  Apple Application Support is required to run iTunes helper.  Please unistall iTunes, then install iTunes again". I have done this twice.  What now?

    When I try to run iTunes I receive the following error message: "Apple Application Support was not found.  Apple Application Support is required to run iTunes helper.  Please unistall iTunes, then install iTunes again". I have done this twice and continue to get the error message.  What now?

    Hi texasslagle,
    It sounds like you are having issues installing iTunes on your Windows 7 PC, a frustrating situation I am sure.
    There is an article that you may want to use to try to complete your install here -
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/ts5376
    Thanks for using Apple Support Communities.
    Best,
    Brett L

Maybe you are looking for

  • Stop PO idoc

    Based on a condition, I need to stop a Purchase order IDOC (orders05) from being generated.. Any ideas?

  • How to transport the  text elements

    hi guru's,   i need answer to this question.   how to transport the text elements in the sap script?

  • Creation of multiple PR with using BADI BBP_SC_TRANSFER_BE

    Hi, I have implemented the BADI BBP_SC_TRANSFER_BE. I want to create multiple PR with criteria in using method GROUP_RQ. But I don't understand what are the parameters use to create several PR. Dear, Julien

  • URGENT!!Aggregation In Query!!

    Hi I am using aggrgn in Backend as follows & so how tht particular KF looks on FRONT END???or I can change the aggrgn part only in Front end??? KF1---Aggrgn as SUMMATION          EXCEP aggrgn as MIN         REF char.  as PUR GRP. SPO   TRANS.   P.GRP

  • Why did my podcasts suddenly become garbled? Music is fine.

    I'm using ipod nano 6th gen. My downloaded podcasts suddenly became garbled, but all my downloaded music is fine. Can anyone help? I've had the ipod for 8 months. -Gary