Hi, can any one know how to resolve this error

Compilation of JSP File '/index.jsp' failed:
index.jsp:180:16: com.bea.plateng cannot be resolved
<% if (com.bea.plateng.common.util.RegistryCheck.isComponentInstalled(
^------------^

Please find the lines of the code here.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<%@ page import="java.util.Locale,
java.net.URL,
java.net.HttpURLConnection"%>
<%
String url = "http://"+request.getLocalName()+":"+request.getLocalPort();
Locale currentLocale = request.getLocale();
String currentLanguage = currentLocale.getLanguage();
String currentCountry = currentLocale.getCountry();
if (currentLanguage != Locale.ENGLISH.getLanguage()) {
try {
String redirectPath = "";
if (currentLanguage == Locale.CHINESE.getLanguage()) {
redirectPath = "index" + "_" + currentLanguage + "_" + currentCountry + ".jsp";
} else if (currentLanguage == Locale.JAPANESE.getLanguage() ||
currentLanguage == Locale.KOREAN.getLanguage()) {
redirectPath ="index" + "_" + currentLanguage + ".jsp";
} else {
// Do nothing.
if (redirectPath != "") {
URL aURL = new URL("http", request.getLocalName(), request.getLocalPort(), redirectPath);
HttpURLConnection conn = (HttpURLConnection)aURL.openConnection();
if (conn.getResponseCode() == HttpURLConnection.HTTP_OK) {
response.sendRedirect(redirectPath);
} catch (Exception ex) {
// Do nothing.
%>
<html>
<head>
<title>WebLogic Server Examples</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="ootb.css" rel="stylesheet" title="Style" type="text/css" />
<style type="text/css">
<!--
.style1 {font-family: "Courier New", Courier, mono}
.style2 {font-size: 80%}
-->
</style>
</head>
<body >
<!-- header table begin -->
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td background="images/splash_filler_short.gif" width="470">
<img src="images/splash_server_90_short.gif" width="410" height="153" border="0">
</td>
<td width=100% align="left" valign="top" background="images/splash_filler_short.gif" >
<nobr>
<p style="text-align:left;color:white; margin-top:95;font-size:120%"> |  Sample Applications, Code Examples, and Test Domain </p>
</nobr></td>
<td align="left" valign="bottom">
<img src="images/spacer.gif" width="1" height="1">
</td>
</tr>
</table>
<!-- header table end -->
<!-- Nav Buttons -->
<table width=100%>
<tr>
<td width="50%">
<nobr>
<p style="margin-top:2px">
Getting Started | <strong>Samples</strong> | 
Fast Track | 
Documentation | 
Oracle Technology Network
</p>
</td>
<td width=50% align="right">
<nobr>
<p style="margin-top:2px;margin-right:10px;">Controls:
Start the Administration Console 
Shut Down Server  
</p>
</nobr>
</td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="5">
<tr>
<td valign="top" width="50%">
<h3>Try These WebLogic Server Features</h3>
<p><img src="images/title_line.gif" width="100%" height="4"> </p>
<h4>EJB 3.0 Persistence</h4>
<p style="margin-top:2px">These examples show how EJB 3.0 persistence can be used with Java Persistence Architecture (JPA), session EJBs, and asynchronous JavaScript-based Web applications.
<p><a href="<%=url%>/reviewService/ target="_blank" class="button">Run the example</a>
  |  Instructions </p>
<hr>
<h4>HTTP Pub/Sub Server</h4>
<p style="margin-top:2px">This example demonstrates the usage of the WebLogic HTTP Pub/Sub Server utilizing the Dojo Toolkits which provides the support of Bayeux protocol.</p>
<p>Run the example
  |  
Instructions </p>
<hr>
<h4>Java Web Service Metadata Annotations</h4>
<p style="margin-top:2px">This example shows how to create a simple WebLogic Web Service using Java Web Service (JWS) metadata annotations. Metadata annotations are a new JDK 5.0 feature, and the set of annotations used to annotate Web Service files are called JWS annotations. WebLogic Web Services use standard JWS annotations, as defined by the <i>Web Services Metadata for the Java Platform 2.0</i> specification, as well as WebLogic-specific ones for added value.</p>
<p>Run the example
Instructions </p>
<hr>
<h4>XML: Data Binding Using XML Beans</h4>
<p>This example illustrates how to use XML Beans to bind data between XML and Java representations of the data. The example uses the <span class="style1">patientSchema.xsd</span> XML schema file as its starting point.</p>
<p><a href="<%=url%>/xml_xmlBean/xmlBean.jsp target="_blank" class="navbutton">Run the example</a>  |  Instructions</p>
<hr>
<h4>EJB 2.1: Basic, Bean-Managed Enterprise JavaBean </h4>
<p>This example demonstrates how to use an Entity EJB 2.1 to access data using bean-managed persistence.</p>
<p><a href="<%=url%>/ejb20_beanManaged/EJBeanManagedClient.jsp target="_blank" class="button">Run the example</a>  |  
Instructions
</p>
<hr>
<h4>JSP: Simple Tags</h4>
<p>Simple tags are a new JSP 2.0 feature that use a much simpler invocation protocol than do classic tag handlers. Also, simple tag extensions do not rely directly on any servlet APIs, which allows for potential future integration with other technologies.</p>
<p> <a href="<%=url%>/jsp_simpleTag/SimpleTag.jsp target="_blank" class="button">Run the example</a>  |  
Instructions
</p>
<hr>
<h4>Servlet: WebLogic Extended annotations</h4>
<p>This example demonstrates how to use WebLogic extended Servlet annotations @WLFilter and @WLInitParam to configure Servlet and Servlet Filter. By using these annotation, one avoids the need to configure Servlet and Server Filter in the web.xml deployment descriptor file..</p>
<p> <a href="<%=url%>/ext_servlet_annotations/session target="_blank" class="button">Run the example</a>  |  
Instructions
</p>
<hr>
<h4>Servlet: AbstractAsyncServlet</h4>
<p>The implementations of AbstractAsyncServlet can prevent hung threads by decoupling response from incoming request and timing out unresponsive
requests.</p>
<p> <a href="<%=url%>/asyncServlet/main.jsp target="_blank" class="button">Run the example</a>  |  
Instructions
</p>
<hr>
<h4>Database Connectivity: JDBC Rowsets</h4>
<p>A Java RowSet is an extension of a Java ResultSet. Using a rowset to hold the data rather than a result set minimizes the number of database round trips required to filter and sort the data, and improves application performance. This example demonstrates how to use cached, filtered, and sorted rowsets. </p>
<p><a href="<%=url%>/jdbc_rowsets/RowSetsServlet target="_blank" class="button">Run the example</a>  |   Instructions </p>
<hr> <h4>WebLogic Scripting Tool (WLST)</h4>
<p>The WebLogic Scripting Tool (WLST) is a command-line scripting interface that you use to automate WebLogic Server configurations and deploy applications. These sample scripts demonstrate how to use WLST to configure and manage WebLogic Server instances and domains while connected to a running Administration Server. </p>
<p>Instructions for running sample scripts</p>
<p>  </p>
<p> </p></td>
<td valign="top" width="50%"><h3>Sample Applications and Code Examples</h3>
<p><img src="images/title_line.gif" width="100%" height="4"> </p>
<h4>Test Domain</h4>
<p>Use the default domain (called wl_server) to try out your own applications!</p>
<p>You can use the WebLogic Server instance you are running right now to try out your JSPs, servlet or other Java Platform, Enterprise Edition (Java EE) Applications. See the Fast Track Deployment and Administrator Guide.</p>
<% if (com.bea.plateng.common.util.RegistryCheck.isComponentInstalled(
"C:/Oracle/Middleware",
"C:/Oracle/Middleware/wlserver_10.3",
"WebLogic Server",
"Server Examples" ) ) { %>
<h4>WebLogic Server API Examples </h4>
<p>The API examples demonstrate Java EE and WebLogic Server features. Each example comes with source code, instructions for building and running the examples, and ant scripts to automate the build process. </p>
<ul>
<li>View the WebLogic Server API Examples Documentation </li>
</ul>
<h4>Avitek Medical Records Sample Application</h4>
<p> The Avitek Medical Records application is
an educational tool for all levels of Java EE developers. It
showcases the use of each Java EE component, and illustrates best practice
design patterns for component interaction and client development. MedRec also
illustrates best practices for developing and deploying applications with
WebLogic Server. Complete source code and documentation is available for
this application. </p>
<ul>
<li>View the Avitek Medical Records Sample Application Documentation</li>
</ul>
<p> To launch the Medical Records Application, first shut down the current WebLogic Server instance using the <strong>Shut Down Server </strong>button in the top right corner of this page. Then select <strong>Start Medical Records Ser ver</strong> from the Windows Start-&gt;All Programs-&gt;Oracle WebLogic Products-&gt;WebLogic Server-&gt;Examples-&gt; menu. On UNIX, run the <code>startWebLogic.sh</code> script from the <code><em>MW_HOME</em>/wlserver_10.3/samples/domains/medrec</code> directory, where <code><em>MW_HOME</em></code> is the directory containing your WebLogic Server installation.</p>
<% }else {%>
<h4>Additional Examples</h4>
<p>If you select the option
to install samples when you install WebLogic Server, you can also access the following examples: </p>
<ul>
<li><strong>API examples<br>
</strong>WebLogic Server API examples demonstrate Java EE and WebLogic Server features. Each example
comes with source code, instructions for building and running the examples,
and ant scripts to automate the build process. </li>
<li><strong>Avitek Medical Records</strong> <strong>sample application </strong><br>
This application showcases the use of each Java EE component and illustrates best practice
design patterns for component interaction and client development. Avitek Medical Records also
illustrates best practices for developing and deploying applications with
WebLogic Server. Complete source code and documentation is available for
this application. </li>
</ul>
<%} %>
<h4>Oracle WebLogic Server How Tos, Demos, News, and Community</h4>
<ul>
<li>Oracle WebLogic Server Product Information<br>
Visit Oracle WebLogic Server on the OTN to find articles about WebLogic Server programming, additional code examples, and much more. </li>
</ul></td>
</tr>
</table>
<!-- FOOTER -->
<br>
<p><img src="images/title_line.gif" width="100%" height="4"></p>
<p>  Copyright &copy; 1996,2009, Oracle and/or its affiliates. All rights
reserved. <br>
  Oracle is a registered trademark of Oracle Corporation and/or its affiliates.
<br>  Other names may be trademarks of their respective owners.</p>
<p> </p>
</body>
</html>

Similar Messages

  • Does any one know how to resolve the error while flat file upload

    Hey guys, I am so struck with this problem, please do let me know if anyone has any suggestions and ideas.
    1. I created three InfoObjects, Material Number, Name and Price,which is  a keyfigure and has data type DEC and fixed currency USD.
    Material Number is "With Master Data ", "With Text" and i added Name and Price as attributes to that.
    2.
    After that i created an Application component, and therafter a data source for Master data Attibutes.
    Now i select my flat file which is .csv file, in this data source. When I click "Load Example Data", i get all the fields from flat file, but the data type for PRICE changes to FLTP with length 16 instead of remaining DEC.
    Does anyone have any idea why on earth is this change of Data type taking place ?
    Please do me a favour by answering if you know about this problem. Thanks, appreciate it . Byee. And yeah, m just starting off in SAP so I am a total amateur unlike most of the people here.

    Am workin on BI 7.0.
    Let me put it in another way :
    Created Infoobjects:      1) Material No , 2) Material Name  3 ) Price which is the Key Figure
    Material No -
    has attributes Material Name and Price and " WIth Master Data", With ' Text"
    Price: -
    data type DEC, fixed currency - USD
    After doing things.
    Created Application Component:
    then, Right Click - Create Data Source,
    Selected -- Master Data Attributes
    After that from "EXTRACTIO' tab , selected the flat file, which is *.csv
    and then in DATA FORMAT - " SEPERATED WITH SEPERATOR"
    Then from "PROPOSAL" tab, when i click Load example data, the data from flat file shows up here, but the field PRICE now has Data Type -- " FLTP" and lenght "16"
    I hope i was clear enough. thanks

  • Can't use down key because it opens automator. Does any one know how to disable this short cut?

    Everytime I press down on down key it opens automator. It doesn't let me delete the app. I don't know what to do, it is very frustating to fill in a chart when I can't use the down key. Does any one know how to disable this short cut?

    Are you talking about the Down Arrow key? To my knowledge there is no way to use that key as a shortcut for anything. But look in the Keyboard section of System Preferences and the Keyboard shortcut tab.

  • When updating to  itune 10.5 I get this error message ,older version of bonjour can not be removed, and older version of apple mobile support cannot be removed, any one know how to fix this.

    When updating to  itune 10.5 I get this error message ,older version of bonjour can not be removed, and older version of apple mobile support cannot be removed, any one know how to fix this.

    1) The older version of Bonjour can not be removed. Contact your technical support group.
    Unfortunately, this sort of trouble has gotten more complicated to deal with ever since Microsoft pulled the Windows Installer CleanUp utility from their Download Center on June 25. First we have to find a copy of the utility.
    Let's try Googling. (Best not to use Bing, I think.) Look for a working download site for at least version 3.0 of the Windows Installer CleanUp utility. After downloading the utility installer file (msicuu2.exe), scan the file for malware, just in case. (I use the free version of Malwarebytes AntiMalware to do single-file scans for that.)
    If the file is clean, to install the utility, doubleclick the msicuu2.exe file you've downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any Bonjour entries and click "Remove".
    Quit out of CleanUp, restart the PC and try installing iTunes again. Does the install go through properly now?
    (If you do find a clean download site for the correct version of CleanUp, please don't tell me where it is. Without wishing to sound paranoid (although I grant it does sound paranoid), there is a non-zero chance that posting links to download locations for the utility here at Discussions leads to that download location being shut down.)

  • Can any one know how do restrict that fields in mm

    hi gurus
    can any one know how do we restrict the fields in the material master.  Where do we control  do any one know the transaction code for that.
    Thanks in advance

    OMSR
    and
    OMS9
    Help for OMSR
    Assign Fields to Field Selection Groups
    To define whether a field is hidden or displayed, or whether an entry is mandatory or optional in material master maintenance, you must assign the field to a field selection group. You may assign a field to one field selection group only.
    Before including customer-defined fields in a field selection group together with standard fields, or assigning standard fields to a different field selection group, familiarize yourself with the assignment of fields to field selection groups in the standard R/3 System.
    Standard settings
    The values of the field selection groups have been preassigned as follows:
    001-110 Material master for industry
    111-120 Reserved for customers (except where the values are already in use)
    121-150 Material master for industry
    151-210 Material master for retail
    211-240 Reserved for customers
    Recommendation
    If possible, use the setting in the standard R/3 System. No further action is then required. If you want to make individual fields inaccessible, the easiest way is to group them together in a single field selection group and to set it to Display or Hide.
    Activities
    1. Check the setting in the standard R/3 System.
    For this, you need to know the data screen on which the relevant field appears in the material master, and the name of the screen field, for example, MARA-MEINS in the case of the base unit of measure.
    2. If necessary, change the assignment of fields to field selection groups as required.
    Further notes
    In the case of long texts, you define whether the entire screen is hidden or displayed, or whether entries are mandatory or optional. For this reason, each screen has been assigned to one of the following dummy fields:
    LTEXT_BEST Purchase order text
    LTEXT_GRUN Basic data text
    LTEXT_IVER Internal comment
    LTEXT_PRUE Inspection text
    LTEXT_VERT Sales text
    help for OMS9
    Maintain Field Selection for Data Screens
    In this IMG activity, you create and maintain field references. You can see where a field reference is used by choosing Where-used list.
    Activities
    Define or change the field references as required (except for field references with the prefix SAP which must not be changed). New field references must begin with Y or Z.
    Changing the Field Selection Options for a Field Selection Group
    1. Specify the field selection group.
    2. Select the field selection option (hide, display, required entry, or optional entry) for each field reference as required.
    3. Save your data.
    Creating a Field Reference
    1. Choose New entries.
    2. Specify a field reference beginning with Y or Z.
    3. Select the field selection option for each field selection group as required.
    4. Save your data.
    Changing a Field Reference
    1. Double-click the relevant field reference.
    2. Change the field selection option for each field selection group as required.
    3. Save your data.
    reward if usefull
    Message was edited by:
            Umakant Bhangale

  • Can any one knowing how do you trouble shooting in alert config

    Hi,
    in my scenario i am using alert configaration..but i am not able to find the errors ..but error are there.can any one knowing how do you trouble shoot in alert config
    thanks for rply..

    Hi,
    XI CCMS Alert Monitoring : Overview and Features                              
    XI CCMS Alert Monitoring : Overview and Features                              
    Triggering XI Alerts from a User Defined Function                              
    Triggering XI Alerts from a User Defined Function                              
    Alert Management - the Ideal Solution for Monitoring Your System                              
    Alert Management - the Ideal Solution for Monitoring Your System                              
    Thanks,
    Madhu
    Edited by: Madhu sudhan Reddy on Jul 24, 2008 12:07 PM

  • In previous versions of Firefox I was able increase the display size on Flickr which remained unless I altered it again. Does any one know how to do this on Firefox 4?

    Question
    In previous versions of Firefox I was able increase the display size on Flickr which remained unless I altered it again. Does any one know how to do this on Firefox 4

    Make sure that you not run Firefox in (permanent) [[Private Browsing]] mode.
    * You enter Private Browsing mode if you select: Tools > Options > Privacy > History: Firefox will: "Never Remember History"
    * To see all History and Cookie settings, choose: Tools > Options > Privacy, choose the setting <b>Firefox will: Use custom settings for history</b>
    * Uncheck: [ ] "Permanent Private Browsing mode"
    You can use one of these extensions to adjust the default font size and page zoom on web pages:
    * Default FullZoom Level - https://addons.mozilla.org/firefox/addon/6965
    * NoSquint - https://addons.mozilla.org/firefox/addon/2592

  • Iphone 4 is hiting in ios 5.1.1. any one know how to solve this problem??

    iphone 4 is hiting in ios 5.1.1. any one know how to solve this problem??

    This sounds like a hardware problem and should be taken to Apple if the heating / "hiting" becomes disturbing to you. If you feel that your iPhone has a heating / "hiting" problem and needs to be repaired, please contact Apple Support and they can further assist you in having it inspected, repaired, or even replaced. In the past, the overheating of Apple products has been known to cause harmful problems to a few particular users. Please evaluate your situation and take further action if you feel necessary.
    http://www.apple.com/support/contact/

  • Does any one know how to fix this? My adobe Acrobat 10.1.12 opens and then crashes after about 5 seconds.  Just upgraded to Yosemite.

    I downloaded Yosemite and I use CS5.5. after much wrangling with Java I can now open photoshop, illustrator and indesign.
    However acrobat 10.1.12 as soon as I open a document it crashes 5 seconds later. Any one know how to fix this?

    Hi ,
    Try Un installing and reinstalling the program and make it up to date.

  • My safari browser seems to have been taken over by a malicious program called only-search.  Does any one know how to uninstall this program from safari?  I am running osX 10.10.

    My safari browser seems to have been taken over by a malicious program called only-search.  Does any one know how to uninstall this program from safari?  I am running osX 10.10.

    There is no need to download anything to solve this problem.
    You may have installed the "VSearch" trojan. Remove it as follows.
    Malware is always changing to get around the defenses against it. These instructions are valid as of now, as far as I know. They won't necessarily be valid in the future. Anyone finding this comment a few days or more after it was posted should look for more recent discussions or start a new one.
    Back up all data before proceeding.
    Step 1
    From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Extensions
    Uninstall any extensions you don't know you need, including any that have the word "Spigot," "Trovi," or "Conduit" in the description. If in doubt, uninstall all extensions. Do the equivalent for the Firefox and Chrome browsers, if you use either of those.
    Reset the home page and default search engine in all the browsers, if it was changed.
    Step 2
    Triple-click anywhere in the line below on this page to select it:
    /Library/LaunchAgents/com.vsearch.agent.plist
    Right-click or control-click the line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item named "com.vsearch.agent.plist" selected. Drag the selected item to the Trash. You may be prompted for your administrator login password.
    Repeat with each of these lines:
    /Library/LaunchDaemons/com.vsearch.daemon.plist
    /Library/LaunchDaemons/com.vsearch.helper.plist
    Restart the computer and empty the Trash. Then delete the following items in the same way:
    /Library/Application Support/VSearch
    /System/Library/Frameworks/VSearch.framework
    ~/Library/Internet Plug-Ins/ConduitNPAPIPlugin.plugin
    Some of these items may be absent, in which case you'll get a message that the file can't be found. Skip that item and go on to the next one.
    The problem may have started when you downloaded and ran an application called "MPlayerX." That's the name of a legitimate free movie player, but the name is also used fraudulently to distribute VSearch. If there is an item with that name in the Applications folder, delete it, and if you wish, replace it with the genuine article from mplayerx.org.
    This trojan is often found on illegal websites that traffic in pirated content such as movies. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect more of the same, and worse, to follow.
    You may be wondering why you didn't get a warning from Gatekeeper about installing software from an unknown developer, as you should have. The reason is that the Internet criminal behind VSearch has a codesigning certificate issued by Apple, which causes Gatekeeper to give the installer a pass. Apple could revoke the certificate, but as of this writing has not done so, even though it's aware of the problem. This failure of oversight has compromised both Gatekeeper and the Developer ID program. You can't rely on Gatekeeper alone to protect you from harmful software.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • Hi i am getting an error like this while installing Live Cycle Server " The file merge_modules\lc11_common_iam_zip does not exist This file is required sucessfullly run the  Live Cycle Installer.Can any one help me on resolving this issue it would be of g

    Hi i am getting an error like this while installing Live Cycle Server " The file merge_modules\lc11_common_iam_zip does not exist This file is required sucessfullly run the  Live Cycle Installer.Can any one help me on resolving this issue it would be of great help..thanks .

    I think in your situation it would be worth trying the things listed under the event. It does have to do with FRS and it's easy to do. I've used it to fix journal errors after a server unexpectedly restarts and sysvol stops replicating.  I
    could see where it could fix your issue, and if it doesn't, you're out 5 minutes. :)
    The listed registry key does not exist
    Expand HKEY_LOCAL_MACHINE. 
    Click down the key path: 
       "System\CurrentControlSet\Services\NtFrs\Parameters" 
    Double click on the value name 
       "Enable Journal Wrap Automatic Restore" 
     

  • When ever I try to export to Perfect Effects 8 a DNG Photo this is the Error message "Unable to complete the export. One or more files could not be found" Any one know how to fix this?

    When ever I try to export to Perfect Effects 8 a DNG Photo this is the Error message "Unable to complete the export. One or more files could not be found" Any one know how to fix this?@

    Adobe web chat come up with a solution.
    Open the PP project.
    Export your sequence or project as a Final Cut Pro XML file.
    Set up a new PP project.
    Import the Final Cut Pro XML file.
    This will get you back up an running.
    Since getting back to editing this project I have found that some things will be lost or change in using XML:
    You will lose position key framing, black video clips, dissolve fx, audio levels, audio dynamic fx, the ability to open a multi camera clip and change the camera view.
    You will keep cut points, crop fx.
    Not perfect but only took a couple of hours to save 3 days work.

  • My touch screen is acting irratic as if an invisible finger is touching it any one knows how to fix this or what's wrong?

    My touch screen is acting irratic as if an invisible finger is touching it any one knows how to fix this or what's wrong?

    Do a
    Reset: Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Note: You will not lose any data

  • TS3694 i keep getting error 1015 does any one  know  how  to fix this problem thanks

    i keep getting a error 1015 on itunes  does  any one know how i can  fix this problem it would be  of much help thank you

    Error 1015: This error is typically caused by attempts to downgrade the iPhone, iPad, or iPod touch's software. This can occur when you attempt to restore using an older .ipsw file. Downgrading to a previous version is not supported. To resolve this issue, attempt to restore with the latest iPhone, iPad, or iPod touch software available from Apple. This error can also occur when an unauthorized modification of the iOS has occurred and you are now trying to restore to an authorized, default state.
    http://support.apple.com/kb/TS3694#error1015.

  • I need to delete the entire browsing history so when i type in a webpage it soes not bring up previuosly visited sites.  deleting the history does not do this.  any one know how to do this

    I need to delete the entire browsing history so when i type in a webpage it soes not bring up previuosly visited sites.  deleting the history does not do this.  any one know how to do this

    Judy-
    If Private Browsing doesn't do it, try Settings-Safari-Advanced-Website Data-Remove All Websitre Data.
    Or changing Settings-Safari-Autofill to OFF.
    You might also try Settings-Safari and Clear History and Clear Cookies and Data.
    As you can see, there are several controls for Safari.  Which one works depends on what your problem is.
    Fred

Maybe you are looking for