Problem setting up WEP password w/ Wireless B router BEFW11S4

I got this router used from someone.  When I first set it up, everything worked.  My internet worked fine.  However, there was no security password associated with the network he had previously named.  I reset the router, went to the setup page, changed the name of the router from linksys to my own, and selected WEP security.  I put in a Passphrase, pressed generate, and it gave me 4 WEP keys (default was set on #1).  I carefully copied down this first key, pressed save settings.  When I select the name of my network on the list of choices on my computer, it asks for the WEP key.  I carefully type it in, but then get messages saying it is having trouble connecting to my network. I have reentered the password, reset the router 4 additional times, and tried other types of security (WPA personal).  Nothing seems to work.  HELP!  I have followed all the instructions on this website numerous times.

Thank you.  I tried connecting without the security enabled.  After reseting the router, restarting the computer, modem, and router, my airport icon at the top of the screen says it's receiving a full signal and connected to my network.  However, I can't get the internet to work.   I have a second laptop, a backup and one I never attached physically to the router.  The crazy thing is that this computer picks up my network's signal, and I can access the internet with it.  I can't figure out why my main laptop won't work.  On my main laptop, I can connect to someone else's unprotected wireless network and access the internet with no trouble, so that makes me think it is not my computer that has the problem.  Any more ideas?

Similar Messages

  • Wireless-B router BEFW11S4

    I am using the Wireless-B router BEFW11S4 with the latest firmware version 1.52.02. I am trying to use Dynamic DNS. However, the only options availabe are DynDNS.org and TZO.org.
    I am using DNSExit as the DDNS. Is there any way to get around this problem?

    Simply put DNS servers only accept ddns updates from supported DDNS client software or hardware.
    setup an free yourname.dyndns.org domain, configure your router to update at dyndns. if it works good then tranfer your domain to dyndns.
    other wise use a DNSexit supported software client, set to a really low interval.

  • Problems setting up username & password for SQL

    Due to the outstanding advice I recieved from this excellent forum, I have managed to overcome my first problem with declaring a new Class.
    This leads me to request help with my next biggest problem:
    Setting up a user GUI that takes a "username" & "password" that will be used to access a password protected database.
    I am a simple bloke, with simple thought processes, so please, go easy on me...
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.sql.*;
    public class DBQuery1 {
         String username = "" , password = "";
         public static void main(String[] arguments) {
              PassDB UPass = new PassDB();
              String data = "jdbc:odbc:JavaTestDataBase";
              try {
                   Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                   Connection conn = DriverManager.getConnection(data, "" + username, "" + password);
                   Statement st = conn.createStatement();
                   ResultSet rec = st.executeQuery(
                        "SELECT Title, ContactID, First, Last, Dear FROM Contacts "
                        + "WHERE (Title='Mr') ORDER BY ContactID");
              /*     ResultSet rec2 = st.executeQuery(
                        "SELECT Subject, ContactID FROM Calls "
                        + "WHERE (Subject Is Not Null) ORDER BY ContactID");
              System.out.println("\nFirst Name\tSurname\t\tNick Name\t\tSubject\n");
              while(rec.next()) {
                   System.out.println(rec.getString(3) + "\t\t" + rec.getString(4) + "\t\t" + rec.getString(5) /* + rec2.getString(1) */ );
              st.close();
              catch (SQLException s) {
                   System.out.println("SQL Error: " + s.toString() + " " + s.getErrorCode() + " " + s.getSQLState());
              catch (Exception e) {
                   System.out.println("Error: " + e.toString() + e.getMessage());
    class PassDB extends javax.swing.JFrame implements ActionListener {
         String username = "", password = "";
         JTextField uname = new JTextField(10);
         JTextField pword = new JTextField(10);
         // JPasswordField pword = new JTextField(10);
         PassDB() {
              super("duBe's database logon");
              setSize(220, 160);
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              JPanel pane = new JPanel();
              JLabel unameLabel = new JLabel ("Username: ");
              JLabel pwordLabel = new JLabel ("Password: ");
              JButton submit = new JButton("OK");
              submit.addActionListener(this);
              pane.add(unameLabel);
              pane.add(uname);
              pane.add(pwordLabel);
              pane.add(pword);
              pane.add(submit);
              setContentPane(pane);
              setVisible(true);
         public void actionPerformed(ActionEvent evt) {
              PassDB clicked = (PassDB)evt.getSource();
              username = uname.getText();
              password = pword.getText();
    This code generates two errors, stating:
    C:\Java_progs>javac DBQuery1.java
    DBQuery1.java:14: non-static variable username cannot be referenced from a static context
    Connection conn = DriverManager.getConnection(data, "" +
    username, "" + password);
    ^
    DBQuery1.java:14: non-static variable password cannot be referenced from a static context
    Connection conn = DriverManager.getConnection(data, "" +
    username, "" + password);
                    ^
    2 errors*****************************
    The code works when I remove the reference to the variables "username" & "password" in Connection "conn" call & replace them with the actual username & password, but this is not exactly what I was after. I was hoping to make the program responsive to each individual user, not set in code.
    I also would like to make the program pause after the call in "main" to "PassDB" to wait for "PassDB" to exit before continuing.
    I would also like to make "PassDB" destroy itself after the "OK" button is pressed & the "username" & "password" set.
    If that isn't enough for you, I would really like the program to search 2 different database tables, return their values & compare them to be sure that they are the same.
    When I try & search 2 different tables, as in:
    ResultSet rec = st.executeQuery(
                        "SELECT Title, ContactID, First, Last, Dear FROM Contacts "
                        + "WHERE (Title='Mr') ORDER BY ContactID");
                   ResultSet rec2 = st.executeQuery(
                        "SELECT Subject, ContactID FROM Calls "
                        + "WHERE (Subject Is Not Null) ORDER BY ContactID")javac tells me that "ResultSet" is set to null 0
    As always, I am extremely appreciative of any assistance you are able to offer.
    Kind regards
    duBedat
    [email protected]

    This is where I'm at now:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.sql.*;
    public class DBQuery {
         static String username = "" ;
         static String password = "" ;
         public static void main(String[] arguments) {
         PassDB UPass = new PassDB();
         String data = "jdbc:odbc:JavaTestDataBase";
         try {
              Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
              Connection conn = DriverManager.getConnection(data, "" + DBQuery.username, "" + DBQuery.password);
              Statement st = conn.createStatement();
              ResultSet rec = st.executeQuery(
              "SELECT Title, ContactID, First, Last, Dear FROM Contacts "
              + "WHERE (Title='Mr') ORDER BY ContactID");
              /*     ResultSet rec2 = st.executeQuery(
                   "SELECT Subject, ContactID FROM Calls "
                   + "WHERE (Subject Is Not Null) ORDER BY ContactID");
              System.out.println("\nFirst Name\tSurname\t\tNick Name\t\tSubject\n");
              while(rec.next()) {
                   System.out.println(rec.getString(3) + "\t\t" + rec.getString(4) + "\t\t" + rec.getString(5) /* + rec2.getString(1) */ );
              st.close();
         catch (SQLException s) {
              System.out.println("SQL Error: " + s.toString() + " " + s.getErrorCode() + " " + s.getSQLState());
         catch (Exception e) {
              System.out.println("Error: " + e.toString() + e.getMessage());
    class PassDB extends javax.swing.JFrame implements ActionListener {
         static boolean getOut = false;
         JTextField uname = new JTextField(10);
         JTextField pword = new JTextField(10);
         // JPasswordField pword = new JTextField(10);
         public PassDB() {
              super("duBe's database logon");
              setSize(220, 160);
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              JPanel pane = new JPanel();          
              JLabel unameLabel = new JLabel ("Username: ");
              JLabel pwordLabel = new JLabel ("Password: ");
              JButton submit = new JButton("OK");
              submit.addActionListener(this);
              pane.add(unameLabel);
              pane.add(uname);
              pane.add(pwordLabel);
              pane.add(pword);
              pane.add(submit);
              setContentPane(pane);
              while(getOut == false)
                   setVisible(true);                         
         public void actionPerformed(ActionEvent evt) {
              PassDB clicked = (PassDB)evt.getSource();
              DBQuery.username = uname.getText();
              DBQuery.password = pword.getText();
              getOut = true;               
    }          Any advice is greatly appreciated
    duBe

  • Am having problems setting up the Deskjet J6450 wirelessly​.

    I am trying to diagnose a problem with the Deskjet J6450 printer to print wirelessly.
    This printer worked fine for a couple of years. I have since purchased two Dell latitude Laptops (32 bit machines) that use Windows 7.  The wireless printing was spotty at best and stopped working all together after a few months.
    The drivers were installed and there was connection to the printer. However I had duplicate device icons on Printers and Devices and defaulted to the one that worked and deleted the other. This worked for a couple of months, until one printer job of 6 or more pages stalled and would not work after that.
    I have purged the printer jobs, and also removed the device from the laptops. (I have not done anything to the printer itself).
    I have since reinstalled the drivers for this printer and in setting up wirelessly, there claims to be a connection error.
    I am remote supporting someone on this so I do not have access to the printer.
    The users have at netgear WGR614v8 router.
    One laptop worked for a month longer than the other, so I figured the problem is probably laptop specific. Now both laptops are having issues. 
    A) Does anyone have some info if the J6450 has problems with Windows 7, would there need to be a firmware update on the printer?
    B) Can anyone identify this issue?

    Download and run this utility: http://h20180.www2.hp.com/apps/Nav?h_pagetype=s-92​6&h_lang=en&h_client=s-h-e17-1&h_keyword=dg-NDU&ju​...
    Let me know what it says.
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • Problem setting an Open Password on an Adobe Interactive Form

    Hi,
    I'm generating a series of Adobe Interactive Forms using data pulled from R3 via BAPIs.  The PDFs are created without an issue but I want to put an Open Password on them (a password the user must enter in order to open the PDF). 
    From my reading of the APIs the following code should do this, however it doesn't.  The PDF which is created simply has no password protection at all.
    Does anyone have any suggestions?
                IWDPDFDocumentCreationContext creationContext = WDPDFDocumentFactory.getDocumentHandler().getDocumentCreationContext();
                creationContext.setTemplate(templateSourceOutputStream);
                creationContext.setData(dataSourceOutputStream);
                creationContext.setDynamic(true);
                creationContext.setProtection("openpasswordalias", null, null);
                IWDPDFDocument pdfDoc = creationContext.execute();
    Edit: My apologies, this should have been posted in the   Expert Forums  » SAP NetWeaver  » SAP Interactive Forms by Adobe  forum rather than here.  I have reposted this question there:
    Edited by: David Michell on May 9, 2008 9:02 AM

    sure you can. you can create that pdf within a webdynpro compoment with interface. that way information can be passed back and forth between the pdf and the webdynpro context and the gp context. how to create a pdf within webdynpro is very well documented on sdn as well as how to create a webdynpro with gp interface.

  • Wep password not connecting to router

    I have a Powerbook G4 12" running OSX 10.4.11. I usually have no problems connecting to wireless routers. I am currently in Europe and the place I am staying at has a wireless router through ADSL network and I can pick it up on my wireless menu and the password they gave me is good. It works for their Windows laptops without any problems, but when I connect I get a message of Unable to connect. I read on another forums to try and put a $ in front of the password and that did not work either. Any help would be greatly appreciated.

    As you haven't had any traffic on this subject, allow me to suggest that you repost in either the PowerBook G4 forums here:
    http://discussions.apple.com/category.jspa?categoryID=120
    (select your machine's sub-forum by type and screen size), or in the Tiger OS Networking sub-forum here:
    http://discussions.apple.com/forum.jspa?forumID=755
    You've ended up in the forum for late-model G4 mini-towers like the one pictured under my name at the left. You are better off posting in the areas I linked.

  • Help~ need to set up security lock on wireless-G router.

    This may be a silly ? but we cant find the manual anywhere.  We have had router up and running for quite some time but would like to add the security feature.
    Is there an easy way to do this?  I have found some generic "how-tos" on line but thought it would be easiest to get it from the manufacturer site.. any links with
    directions or wisdom in how to do this?  Thanks much~! 

    To setup the security on Linksys router...Open an Internet Explorer browser page on your wired computer(desktop).In the address bar type - 192.168.1.1 and press Enter...Leave Username blank & in Password use admin in lower case...
    Click on the Sub tab under Wireless > Wireless Security...Change the Wireless security mode to WPA, For Encryption, select TKIP...For Passphrase input your desired WPA Key...and click on save settings.
    NOTE : Passphrase should be more that 8 characters...

  • WEP Password Only Works on 2 out of 3 Computers

    I'm having trouble with one of three computers connecting wirelessly to the internet.
    The three computers are MacBookAir, iPad and PowerBook G4.  The first two connect fine.  The PB does not.
    The router is a plain vanilla Linksys WRT54G.  I have it set for WEP Password protection.  The wireless network name appears on all three computers.  I have entered the 10-digit password on each.  The PB keeps returning the not-very-helpful "There was an error" when trying to connect.
    I tried trashing network and internet config prefs.  When running the network assistant on this PB, it says the password is incorrect. 
    I have checked the password multiple times, and it is correct.  I have typed it again, and the same error occurs.
    I also checked the MBA to see if I could see the password, but for whatever reason the "show password" box is grayed out.  I have retyped the correct password, however, and connectivity is still good.  I have no idea how to review the password on the iPad; I just typed it in and it works.  There are no network diagnostic tools available that I can find or any visible place where the number may be verified.
    I have turned off and turned on airport.  I have deleted all network choices in the airport networking settings, shut down and restarted with the same result.  (Airport Status in the network pane has a red dot and says, "Airport is turned on but not connected to a network."
    I'm out of ideas.  Does anyone have a suggestion?
    The PB is a 1.5G G4 running 10.4.11

    First, why use WEP? It's next to useless as an encryption techology which can be broken in less than 15 minutes with commonly available tools on the internet. Use WPA or WPA2 Personal.  All 3 of your systems support both of those.
    That aside, did you try using the Powerbook and WRT54G with no encryption, as a starting point? If that doesn't work, then there's a different non-encryption-related issue. If that works, try WPA or WPA2 Personal. 

  • Entered 9 digit WEP password, locked out of network/router.

    Hello,
    I was setting a WEP key on a WRT54G router and forgot to put the 10th digit. I put 123456789 real fast and forgot to think, hit submit then I got locked out...I figured the router would not accept a 9 digit key but aparently it does. Trying to connect to the router via that key does not work either, Windows will not accept it as a password. Does the WEP key default to something? or does it place a letter/number before/after if 10 digits was not present? Any help is greatly appriciated. Thanks

    Stop trying to connect to 192.168.1.1  wirelessly!   You should not try to access the router setup pages wirelessly, this often fails.   Instead, wire your computer to the WRT54G, and then login to your router's setup pages at 192.168.1.1  and make whatever changes you need to make.
    For WEP, enter WEP "key 1"  (found in the router) into your computer, not the WEP password or passphrase.
    Message Edited by toomanydonuts on 10-12-2009 07:34 AM

  • Password for Wireless Connection

    I am trying to use EasyLink to set up my new Linksys Wireless-N router. When I type in my SSID it is asking for password. I typed what I thought was the password, but it did not recognize it. I can't go any further and I don't want to lose the connectivity of all my other wireless computers and devices. Is there a way around the password?
    (Edited subject to appropriate one. Thanks!)
    Message Edited by JOHNDOE_06 on 12-30-2007 11:20 AM

    The password it is asking at Easy link tool is Login password for router ....
    It is not accepting any password .... use admin as default or just skip that screen.....
    See it above step works ....

  • Set An Access Password on My Time Capsule to Require Password Before Granting Access to a Device?

    I just purchased a 2TB Time Capsule and connected it to my Cable Modem as a bridge.  I want to prevent unauthorized devices from connecting to my network.  How can I configure the TC so it requires unknown/unauthorized devices to provide a password to access my network?
    I appreciate any help/insight any of you can provide.

    ShizenOne wrote:
    I just purchased a 2TB Time Capsule and connected it to my Cable Modem as a bridge.
    Then the cable modem must also be the router.. if the TC is in bridge it has no routing and no control of the network. It has to be the main router to actually do anything in the network other than exist.
    How can I configure the TC so it requires unknown/unauthorized devices to provide a password to access my network?
    I appreciate any help/insight any of you can provide.
    Does this mean to the hard disk.. You can set a disk password.
    If you mean your local network, there is no password for ethernet access.. only wireless.
    Set WPA2 Personal password for wireless.
    There is very limited options on the TC even in router mode.. you cannot really block access.
    Also all security on the TC is illusionary since physical access to the TC requires a simple press of the reset and poof.. all passwords disappear.

  • Why is Wireless G router slower than Wireless B?

    I have a wireless B router (BEFW11S4 V4) that is dropping my internet connection sometimes on a daily basis.  To restore it, I have to unplug the power and plug it back in.  It's a pain and interferes with my work, so I purchased a wireless G router (WRT54G2) to replace it.  Setting it up was quick and painless, but slowed my internet to a crawl.  I know that wireless connections are slower than wired, but a direct connection was about 10 times faster (according to several online speed tests) which I find unacceptable.
    I have since removed it and gone back to the older faulty router to restore my internet connect to a speed that at least allows me to do my work.  I was not unhappy with my connection speed before.  I only replaced the router because it was dropping the connection, but I cannot understand why the new router was so much slower.
    Any thoughts, hints, or suggestions before I return the new router to the store?
    Thanks!

    1) What Internet connection speed are you paying for?
    2) What Internet connection speed do you get when you wire your computer directly to your modem?
    3) What Internet connection speed do you get when you wire your computer to the WRT54G2?
    4) What Internet connection speed do you get through a wireless connection to the WRT54G2?
    5) Is your computer's wireless adapter a wireless b?  g?  n?
    There are many causes for poor wireless connections, and many solutions:
    First of all, give your network a unique SSID. Do not use "linksys". If you are using "linksys" you may be trying to connect to your neighbor's router. Also set "SSID Broadcast" to "enabled". This will help your computer find and lock on to your router's signal.
    Poor wireless connections are often caused by radio interference from other 2.4 GHz devices. This includes wireless phones, wireless baby monitors, microwave ovens, wireless mice and keyboards, wireless speakers, and your neighbor's wireless network. In rare cases, Bluetooth devices can interfere. Even some 5+ GHz phones also use the 2.4 Ghz band. Unplug these devices, and see if that corrects your problem.
    In your router, try a different channel. There are 11 channels in the 2.4 GHz band. Usually channel 1, 6, or 11 works best. Check out your neighbors, and see what channel they are using. Because the channels overlap one another, try to stay at least +5 or -5 channels from your strongest neighbors. For example, if you have a strong neighbor on channel 9, try any channel 1 through 4.
    Also, try to locate the router about 4 to 6 feet above the floor, in an open area. Do not locate it behind your monitor or near other computer equipment or speakers.  If you have external antenna, they should be vertical.
    Also, in the computer, go to your wireless software, and go to "Preferred Networks" (sometimes called "Profiles" ). There are probably a few networks listed. Delete any network named "linksys". Also delete any network that you do not recognize, or that you no longer use.   Delete your current network  (this will remove any old settings.)  Reboot computer.  Return to "Preferred Networks" and re-enter your current network info (SSID, encryption (if any), and key (if any) ). Then select your current network and make it your default network, and set it to automatic login. You may need to go to "settings" to do this, or you may need to right click on your network and select "Properties" or "settings".  Reboot computer.  You should connect automatically (it can take up to 2 minutes).  If you have trouble connecting, in the computer, temporarily turn off your computer software firewall, and see if that helps.
    If the above does not fix your problem, download and install the latest driver for your wireless card.
    Some users have reported improved wireless performance by switching from WEP to WPA encryption.
    If you continue to have problems, try the following:
    For wireless g routers, try setting the "Transmission Rate" to 54 Mbps.
    If you still have trouble, download and install the latest firmware for your router. After a firmware upgrade, you must reset the router to factory defaults, then setup the router again from scratch. If you saved a router configuration file, DO NOT use it.
    Hope this helps.
    Message Edited by toomanydonuts on 01-07-2009 05:14 AM

  • Lynksys E900 Wireless-N300 Router - Help needed to share internet connection from PC to home network

    Hi, I'm hoping someone can help me out with a problem I have:
    I am currently connecting my PC to a mobile phone as a Wireless Access Point to give that PC access the internet. I also have a small home network, with one other PC and a Game Console. I own a Linksys E900 Wireless-N300 Router. My problem is this. How do I share that internet connection with the rest of the home network?
    To the best of my knowledge its not possible to connect my mobile phone directly to my Linksys E900 Wireless-N300 Router, although if anyone has any ideas how to do this I'd love to hear!
    So my alternative idea is to connect to the internet via one PC, set up that internet connection as "Shared." and then allow the other devices on the home network to connect thru this. My question is how do I set up my  Linksys E900 Wireless-N300 Router to allow my other PC and game console connect to the internet? Bridge Mode? PPPoE? Any help or suggestions would be greatly appreciated! PS: both PC's are running on Windows 8

    I have Cisco Linksys E900 router. I want to make my home Wi-Fi zone. But I don’t have Static IP. One more thing is that Service provider have web page Authentication. I have username and pass.
    I am able to make SSID and security for my WI-FI LAN. I can use internet on one device. If I tried from second device again it’s asking me for username and password. While login it’s showing your first session in not logout. (Means I have to logout from 1st device and have to login on 2nd device.)
    Is there any option that I can Use my all devices at same time?   

  • Wireless B router

    I have a Wireless-B router (BEFW11S4 v.4).  I have to reset numerous times daily as the internet connection is lost.  There are no firmware updates available.  The router is approximately 9 years old.  Do I just need to purchase a new router?

    I just went to the Linksys site and there is no available firmware for that model. Did you check your connection directly from the modem if it's stable? You have to check that first to isolate your case.

  • Wireless problem - WEP password doesn't work - connection timed out

    The problems with leopard connecting to wireless networks is documented all over the forums
    But anyway, below is a solution from fred (Genius!!) it comes from
    http://forums.macrumors.com/archive/index.php/t-375266.html
    You have to do this through SAFARI (then for me camino worked perfectly as well)
    1. When you awaken Leopard you get the "None of your preferred networks are available" message.
    Cancel it.
    2. Ask Safari to open any page. It will, of course, hang with the message "You are not connected to the Internet."
    Click on the "Network Diagnostics..." button in the message box.
    3. You should get a dialog box titled "Network Diagnostics". The list of "locations" should have the name of your usual network setup highlighted in gray. All the network status signals down the left side will be red.
    Click on the "Continue" button in the dialog box.
    4. You should see a fresh Network Diagnostics box subtitled "Choose network port configuration"
    Click on the AirPort radio button.
    Then click on continue.
    5. The Network Diagnostics box should be refreshed. You should now see "Select AirPort network" as a subtitle, and one or more wireless network names listed.
    Click on your wireless network name (the one your AirPort knows).
    Click the Continue button.
    6. Type your password in the Password box in the next refresh. (No need for a $. Just your password.) (Don't bother checking the Remember password... box. It seems non-functional.)
    7. Click the Continue button.
    8. The Network Fairy awakens, makes all the status signals on the left green, turns on your wireless signal strength icon in the top bar, loads your Safari page, and leaves you with the message: "Your Internet connection appears to be working correctly."
    9. Beats me why the "other" WEP password entry process consistently fails.
    Fred

    I must have missed something the first time around with the G3....
    I changed the encryption to WPA/WPA2 Personal and all my Expresses AND my G3 iBooks all connect just fine. I still can't get my iPaq 2495b to connect however... It "sees" the router, but just wont connect. As I mentioned before, it does connect if unencrypted with no password, so the problem obviously lies with the password.
    The iPaq Authentication choices are: Open,Shared, WPA, and WPA-PSK. There is a second box for Data Encryption with choices of: WEP or TKIP.
    I have tried every combination, all to no avail. I have NOT tried stuff like inserting "$" signs, etc.
    Any ideas?

Maybe you are looking for

  • ALE / IDOC setup

    I did ALE setup to Send Idoc from R/3 to XI. I generated Idoc and sent to XI. Idoc status on R/3 is 03 - Idoc sent to R/3 System or external program ). In XI I did setup Port for R/3 system using IDX1. However the Idoc sent from R/3 to XI did not rea

  • Mac Running Slow after Yosemite

    I have upgraded this machine but now applications hang.  I have cleared the cache, deleted applications such as Chrome, repaired  permissions and turned off any start up applications. This is the EtreCheck output.  I am not sure how to read it - are

  • HT5278 How do I download the operating system ios 5 to my iphone 4s?  The ios 6 will not let me use my bluetooth in my car.

    How do I download the operating system ios 5 to my iphone 4s.  The ios 6 will not let me use my bluetooth in my car.

  • JSTL error not running

    my tomcat 5 apps.... i have a jsp in myapps\hello.jsp i put JSTL .jar in myapps\WEB-INF\lib dir and tried to browse hello.jsp but got error.... org.apache.jasper.JasperException: The absolute uri: http://java.sun.com/jstl/core cannot be resolved in e

  • Whenever i use the blur brush it just crashes

    whenever i use the blur brush it just cashes the program is there anything i can do to solve this?