Help! i cannot find internet

i pulled up the moniter and it sed "you are connected to the acsess point, but cannot find internet"
i need fast. please and thank you

Could be a couple of things. Depending on your modem type, you may have an address conflict - I had to change the IP address on the router. Again, depending on your modem and connection type, you may need to bridge your modem. If you haven't contacted your ISP's support people, I would make that my next step. They know best the ins and outs of the modem that their service uses -or at least they should. Good luck!

Similar Messages

  • WMP54G - Help! Cannot find Internet

    Good Morning!
    I can say that, because I have not yet wrestled with this problem for 6 hours (like yesterday)!
    I recently installed the WMP54G onto my computer (Windows XP). The install went fine, however I get this message: "You are connected to the access point, but the internet cannot be found." I was using the WPA-Personal security with TKIP Encryptian and passphrase - I could get no connection. I contacted Linksys and they informed me to get then Router Static IP Address along with the Primary and Secondary DNS numbers. When I insert the numbers into the Internet Protocol and then Ping it - I get this error message: "Unable to initialize Windows Sockets interface, error code 0." The support technician said he could offer me no more help and indicatd that I had a PCP IP Stacks problem and to contact  Microsoft. I do not have a lot of computer knowledge - and thought before I contact Microsoft I'd contact you guys. Hopefully there is someone that couldn offer me some sound advice???
    Thanks!

    to refrsh the TCP/IP stack, visit this:
    http://support.microsoft.com/kb/299357
    "a helping hand in a community makes the world a universe"

  • I actually need help but cannot find the answer. Please.......Lately when open a new tab it does not open with a blank page. I don't want to set my homepage as

    I actually need help but cannot find the answer.
    Please.......Lately when open a new tab it does not open with a blank page. I don't want to set my homepage as blank as when I first open Firefox, it automatically loads my hotmail page. But then if I open other pages I don't get a blank page. Help, please?
    Thank you.
    ''[Personal information removed by moderator. Please read [[Forum and chat rules and guidelines]], thanks.]''

    hello, please refer to [[New Tab Page – show, hide and customize top sites]] in order to switch the feature off.

  • Why is my ipad doesnt have a software update?please help,i cannot find it.. :(

    why is my ipad doesnt have a software update?please help,i cannot find it..

    The ipad 1 (no camera) can't be updated beyond IOS 5.1.1.

  • Cannot find Internet Connect Icon

    I am using Leopard 10.5.4.
    I want to setup a VPN connection and found an article which describes how to go about setting the VPN connection. But it uses Internet Connect icon and according to the article it is found in the 'Applications' folder. I cannot find the 'Internet Connect' icon in Applications.
    Please can someone help ?
    Zapp

    Internet Connect has (thankfully) been removed from Leopard. You can now set up a VPN with the Network Preferences. Click on the + icon below the list of network services to get a window with popup menu that has VPN as one of the interface choices.

  • Activation - computer crashed, reinstalled Adobe 8, but unable to submit activation info to adobe - "cannot find internet."  Tried deactivating/reactivating, partly successful, but cannot get print to adobe pdf to work, says program needs to be activated

    My computer crashed a few years ago, and I called Adobe and received help getting the software reinstalled and activated.  Computer messed up again in January and I had to reformat/reinstall everything.  This time I loaded Acrobat and am able to view and edit files, but cannot print to Acrobat pdf.  Error message says it has to be activated.  I try to activate but get an error message
    When I try to register I get this
    I cannot get past this message to try submitting again.  Telephone support is apparently no longer available.  I go to online registration and find I'm already registered and cannot find a way to get this resolved.
    I'm having to use a cheesy, free pdf creator program to print to pdf and I'm missing my full acrobat, even though it's old and decrepit.  someday I'll be able to buy the current version, but cannot budget it for now.  Help!

    Looks like we have the exact same problem. Thank you for the description, now let us wait for a solution. Except three computers got fried at the same time at my end, there are four products lost and I have no idea what was where.

  • Itunes 7.1 cannot find internet

    I just installed the new version of Itunes 7.1 and the program starts it says it cannot find itunes store please check internet connections. I have loaded and reloaded this soft ware twice with the same results. Anyone have a solution to this. With the older versions I did not have any error messages.

    As your iTunes program has changed, you may need to update your firewall settings to allow the new versions of iTunes and Quicktme to access the internet.

  • Please help. Cannot find symbol Error!

    I have been working on this code for days now. It keeps coming up with errors. The error says cannot find symbol. I will bold the areas that say that. I got it down to 23 from 42 but now I have no idea what the problem is. any help is greatly appreciated!! I only added a couple of them mainly because it is overwhelming. I can add the rest of someone replies. Thank you again. Oh and the Classpath is set right. I am compiling from the desktop where I have the file also. That was the first thing I checked after reading other threads related to this issue. :O)
    import javax.swing.*;
    import java.awt.event.*;
    public class InventoryPart4 extends JFrame
         private JTextArea text;
         private Inventory inv;
         private int view;
         public InventoryPart4() {
              super("Product");
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); // quit if the window is closed
              view = 0; // current one showing
              Product product;
              inv = new Inventory(4);
              product = new Product(1, "Salad", 3, 4.95); here
              inv.add(product, 0);
    product = new Product(2, "Dressing", 6, 3.00); here          
    inv.add(product, 1);
    product = new Product(3, "Bacon Bits", 2, 1.75);*here*
              inv.add(product, 2);
    product = new Product(4, "Croutons", 1, 1.75); here
              inv.add(product, 3);
              // sort
              inv.sort();
              // output
              for (int i = 0; i < 4; i++) {
                   System.out.println(inv.get(i));
              // total val
              System.out.printf("Total=$%.2f", inv.totalValue());
              //gui
              JPanel panel = new JPanel();
              panel.setLayout(new BoxLayout(panel,BoxLayout.Y_AXIS));
              text = new JTextArea(10,50);
              text.setEditable(false);
              panel.add(text);
              showProduct();
              JButton next = new JButton("Next");
    here          next.addProduct(new Product() {
                   public void actionPerformed(ActionEvent e) {
                        if (view < inv.size()-1) view++;
                        else view = 0;
                        showProduct();
              panel.add(next);
              getContentPane().add(panel);
         // view an item
         public void showProduct() {
              text.setText("Product Details:\n");
              text.append(inv.get(view).toString()+"\n");
              text.append(String.format
                        ("Value of all the Contents: $%.2f", inv.totalValue()));
         public static void main(String args [])
              InventoryPart4 invt = new InventoryPart4();
              invt.pack();
              invt.setVisible(true);
         } //end main
    } // end class InventoryPart1
    class Product {
    private int ProductItem;
    private int ProductStock;
    private double ProductPrice;
    public Product(int item, int stock, double price) {
    ProductItem = item;
    ProductStock = stock;
    ProductPrice = price;
    } //end three-argument constructor
    // set Product Item
    public void setProductItem(int item) {
    ProductItem = item; here
    } //end method set Product Item
    //return Product Item
    public int getsProductItem() {
    return productItem;
    } //end method get product Item
    //set Product Stock
    public void setProductStock(int stock) {
    productStock = stock;
    } //end method set Product Stock
    //return Product Stock
    public int getProductStock() {
    return productStock;
    } //end method get Product Stock
    public void setProductPrice(double price) {
    productPrice = price;
    } //end method setproductPrice
    //return Product Price
    public double getProductPrice() {
    return ProductPrice;
    } //end method get Product Price
    //calculate inventory value
    public double value() {
    return productPrice * productStock;
    }// end method get productPrice and productStock
    @Override
    public String toString() {
    return String.format("item=%3d units=%d price=%.2f value=%.2f",
    productItem, productStock, productPrice, value());
    }//end class Product
    class Inventory {
         private Product[] list;
         // constructor
         public Inventory(int size) {
              list = new Product[size];
         // complete value
         public double totalValue() {
              double val = 0.0;
              for (int i = 0; i < list.length; i++) {
                   val += list.value();
              return val;
         // add an item
         public void add(Product i, int p) {
              list[p] = i;
         // get an item
         public Product get(int i) {
              return list[i];
         // sort by name
         public void sort() {
              // bubble sort
              int n = list.length;
              for (int search = 1; search < n; search++) {
                   for (int i = 0; i < n-search; i++) {
                        if (list[i].getProductItem().compareToIgnoreCase(list[i+1].getProductItem()) > 0) {
                             // swap
                             Product temp = list[i];
                             list[i] = list[i+1];
                             list[i+1] = temp;
         public int size() {
              return list.length;
    //extended class
    class Contents extends Product {
         private String Contents;
         // constructor
         public Contents(int item, String name, int units, double price) {
              super(item,name,units, price);
              this.contents = contents;
         // getter
         public String getContents() {
              return Contents;
         // total value with the 5% fee
         public double value() {
              return super.value()*1.05;
         // just the 5% fee
         public double fee() {
              return super.value()*0.05;
         // setter
         public void setContents(String contents) {
              this.contents = contents;
         public String toString()
              return super.toString() + String.format(" fee=%.2f contents=%-20s",
                        fee(), contents);

    The error says cannot find symbol.It says more than that. It says what symbol it cannot find, and it points to the line of code where the symbol was used.
              product = new Product(1, "Salad", 3, 4.95); *here*So it can't find a class called Product with an accessible constructor Product(int, String, int, double).
    product = new Product(2, "Dressing", 6, 3.00); *here*          
    inv.add(product, 1);
    product = new Product(3, "Bacon Bits", 2, 1.75);*here*
              inv.add(product, 2);
    product = new Product(4, "Croutons", 1, 1.75); *here*
              inv.add(product, 3);Ditto.
              JButton next = new JButton("Next");
    *here*          next.addProduct(new Product() {JButton doesn't have an addProduct() method.
    public Product(int item, int stock, double price) {This constructor doesn't match the constructor you are calling above, and there are no other constructors.
    ProductItem = item; *here*You must have a typo. But don't use inital capitals on field names: use them only on class names.
    return productItem;Here is evidence that you have a typo. Java is case-sensitive. Either the field is caled 'ProductItem' or it is called 'productItem', not both.
              // bubble sortDo you have to do this for the homework? Bubble sort is never used in real code except by people who don't know what they're talking about. Use Collections.sort().
              super(item,name,units, price);You should be getting a compile error here too. Ther is no such constructor for Product.
              return Contents;And here.

  • Please help with cannot find symbol error. Been struggling all day :(

    Hi all. :)
    Writing a game for my phone with KToolbar and have been getting a cannot find symbol error for every variable and method I try to use across Classes. I've looked all over and though it seems a common problem I always either don't understand or can't get working the various solutions. Example of my errors:
    C:\...\BTK800i.java:197: cannot find symbol
    symbol : variable youSayWhat
    location: class HelloCanvas
              youSayWhat=key;
              ^
    If I try BTK800i.variable or BTK800i.message I get a new error.
    C:\...\src\BTK800i.java:184: non-static method newOrdersSarge() cannot be referenced from a static context
              BTK800i.newOrdersSarge();
              ^
    Both these errors apply to both variables and methods. It only happens when I'm using methods/variables of one class in another, am I using public and private incorrectly? It doesn't seem to make a difference if I make variables public or leave them private, I'm trying to get to them with a public method within a private class. Is it something else? I really have no idea. :(
    Here's my code, it's long enough to be a tiresome read so I've tried to skip what I know isn't relevant.
    public class BTK800i extends MIDlet {
         private Display myDisplay;
         private HelloCanvas myCanvas;
         public int youSayWhat;
            //a whole bunch more skipped here, but I'm fairly certain it's not anything that'll help find a solution
         public BTK800i() {
              paused=false;
    public void startApp() throws MIDletStateChangeException {
              if( paused ) {
                   myCanvas.repaint();
              else {
                   myDisplay=Display.getDisplay(this);
                   myCanvas=new HelloCanvas();
                   myDisplay.setCurrent(myCanvas);
                   myCanvas.setFullScreenMode(true);
                   youSayWhat=0;
                           //again with the skipping, more code not related
    public void newOrdersSarge() {
    //whole bunch of code
    //other methods skipped
    class HelloCanvas extends Canvas {
         public void keyPressed (int key) {
              youSayWhat=key;
              repaint ();
    //skippage
    }The stuff I skipped is mainly either more of the same sorta thing or maths/writing to screen stuff.
    Thanks alot to anyone who helps. I'm really struggling with this. :(
    Dan.

    But I have been reading them :(
    My next-door neighbour unfortunately is an 80-something married man, but I will go have a looksie about static and instances.
    I thought the point of public variables was that other classes could use them, is this wrong?
    Also does this mean that to use the variables from my BTK class in the HelloCanvas class I need to first instantiate BTK? I don't understand how that works as the code starts running from the BTK class in the first place :S I guess more reading will help with this.
    Thanks very much for replying. :)
    Edit:
    OK I have read up on it but I don't think I found anything I hadn't read before. I tried to make a new class which I could instantiate to hold all the variables and methods I wanted everything to be able to access, but that went disastrously. Am I right in understanding that there are no global variables in Java? :s
    Edited by: Dan69 on Apr 17, 2010 1:15 PM

  • Cannot find Internet for RESTORE but can go to ITunes Library

    I have the 40gig IPod attached and seen by ITunes. I am able to go to the ITunes store without a problem. But when I want to Restore or Check for Upgrade, message says it cannot find connection to the Internet. Yet I can get on the Internet with Windows Internet Explorer immediately.
    I am running Windows XP. Any suggestion would be appreciated.

    There could be a few issues here...
    First: Is this a business computer? If so, you may want to check in with your IT department and have them up the security level of Itunes...
    I'm guessing you may have updated itunes recently...
    Secondly: If its a personal computer check your firewall... When you update itunes it is considered a new program by your firewall programs...(IE Mcafee/norton/windows firewall) What you will need to do is adjust your itunes security levels, allowing itunes to have full access to the internet.
    Thirdly: If you arent the Administrator on this computer it may be a simple setting in your accessibility options.
    If you have any more info i may be able to be of more service to ya.

  • Help with 'cannot find symbol' error

    Ive written the following code. It is an excerpt from my entire class.
    When I try to compile the code I get the error:-
    cannot find symbol
    Symbol: variable playerRun1
    location: this class
    public void analysePlayerMove()
              if (playerGo == true)
                   if (playerMove.getComponentCount() == 0)
                        JOptionPane.showMessageDialog(this, "You Have Not Made A Move", "Empty Move", JOptionPane.ERROR_MESSAGE);
                   else
                        if (areTherePickUps == false)
                             for (int j=0; j<playerMove.getComponentCount(); j++)
                                  //reversing the players hand, because what is displayed on the GUI is reversed
                                  Component[] playerRun = playerMove.getComponentsInLayer(playerMove.DEFAULT_LAYER);
                                  Component[] playerRun1 = new Component[playerRun.length];
                                  int reverse = playerRun.length-1;
                                  for (int k=0; k<playerRun.length; k++)
                                       playerRun1[k] = playerRun[reverse];
                                       reverse--;
                             if (acePlayed == true && playerRun1.length == 1)
                                  if (playerRun1[0] != acePlayedSuit)
                                       JOptionPane.showMessageDialog(this, "Your Move Is Not Valid", "Invalid Move", JOptionPane.ERROR_MESSAGE);
                                  else
                                       //remove the cards from the players move hand and add them to the bottom of the shredded deck
         }I dont understand why I am getting this error, I clearly define the variable.

    Yes, but the variable is declared inside a block and so it's local to that block. You can't use it outside its scope, which is the block in which you declared it. Re-read the section of your book about variable scope.

  • HELP! Cannot find Laserwriter in Print Center w/AppleTalk

    I can connect to the Internet through ethernet, but cannot add a printer. When I go to Network prefs, AppleTalk is enabled, although the Zones pulldown is grayed out.
    I read some posts and already tried fixing permissions, but no luck. I also upgraded to 10.4.4 and it is still grayed out.
    Finally, my other mac connects fine so the printer and cable are both ok.
    Please help! I really need this to work asap!

    The Archive & Install option in the OS X installer does what you want - but we're not anywhere close to reinstalling OS X yet!
    I'm still not clear on how the printer, the computer and the DSL modem are connected. Is it USB to the DSL modem and ethernet direct to the printer?
    In OS X, appletalk can't work unless ethernet is set up. You must have a non-self-assigned IP address for ethernet to be working. Self-assigned IP addresses start with 169.
    Does this help?

  • HT1338 How to get rid of Apple Support Community notices, my box is full I receive thousand a day and I really cannot handle it.  Please help, I cannot find the notification tad in my "preferences"  I have Mac OS X 10.7.5.  Please help it is urgent

    How to get rid of Apple Support Community notices?  my box is full as I receive thousand of messages a day.  I cannot handle it anymore, please it is urgent.  Help!  I have Mac OS X 10.7.5 and unable to find the "notification tab" in my "preferences"  I need a image if possible to better understand.  Thanks a lot.

    Thank you, but I just  tried everything you said, my apple id account (icloud) continues and still is receiving the email from ASC each second.  My i phone and macpro (i cloud account) is full of messages that I have difficult to erase at once.  I have to do it one by one which can take me the whole day.  How can i unsucribe from ASC, just get ride of my account, I mean cancel the ASC account, so I will not get any messages.  Please help.  Thanks.

  • HELP: ClassLoader cannot find .class file

    Hi,everybody:
    I'm working on a project of auto-testing, and need the java.lang.ClassLoader to load the to-be-tested java file.
    It can be simply described as the following code:
    public class tt {
    public static void main(String[] args) throws Exception{
    Class testClass;
    String testClassName="TestExample";
    String path = System.getProperty("java.io.tmpdir");
    URL[] urls = {new URL("file://" + path )};
    ClassLoader testCaseLoader = new URLClassLoader(urls);
    testClass = testCaseLoader.loadClass(testClassName);
    The process is that, put the to-be-tested file to a certain directory, compile it, and finally load it. For example, in the above code, i want to load the class "TestExample".
    But it always report the exception: java.lang.ClassNotFoundException: TestExample .
    Note, cannot put the to-be-loaded .class file in the same directory with the loading-code, or the loading-code will defaultly find the to-be-loaded .class file , and there would be no exception.
    I use jdk6.
    I really cannot figure out the problem. Could anyone help me? Thanks a lot.

    MyCoy wrote:
    To malcolmmc:
    thanks. but what is FQN ?
    Fully Qualified Name
    That is, the class name including the package name. Eg java.lang.Object

  • Help JDeveloper cannot find package

    Hi,
    I am using JDeveloper 9.0.3.4.
    In the project settings -->Configurations -->Development --> Libraries, I add JSP Runtime, J2EE, Servlet Runtime. But When I tried to rebuild my project, I got errors like:
    (1) package javax.servlet.jsp does not exist;
    (2) cannot resolve symbol on import javax.servlet.http.HttpServletRequest;
    (3)javax.servlet.http.HttpServletRequest is not public in javax.servlet.http; cannot be accessed from outside package.
    Can you help?
    Many thanks,

    Add lib/j2ee.jar from the J2sdkee installation in the project Classpath with Paths>Additional Paths in the project properties frame.

Maybe you are looking for

  • Betcha you all didnt know Best Buy has a few digital download sites did ya?

    Best Buy operates two sites. One powered by Digital River and the other one powered by Oberon Games. Here are the two sites and their specialties: Best Buy Software Game Download Center : http://games.bestbuy.com (Digital River, specializes more of d

  • How to prevent libraries from being default save location

    Scenario: Users start IE10 as a published Xenapp Application. From there, they should be able to save pages, etc, but only to a network drive. They have no access to the local computer. I've succeeded in removing network, Libraries and favorites from

  • Sun Java Application Server 8.1 Upgrade Solaris 9 to Solaris 10

    I have Sun Java Application Server 8.1 (version 8.1_02 (build b06-fcs) ) and HA which are currently installed on Solaris 9 box (Sparc). Now, I plan to upgrade Solaris 9 to Solaris 10. What should I need to do before and after migration? Thanks.

  • Quicktime has taken over Image Icons

    For some reason Quicktime has taken control of my image file icons and I can't seem to make the change stick when I go to Quicktime's preferences, use the default settings, confirm that the files I don't want QT to open are not checked and press the

  • My phone cannot receive file from pc using bluetoo...

    I got problem with my phone that cannot receiving file from my pc via bluetooth, but there's no any trouble if i send or receiveing file from other mobile phone, someone please explain and give me the solution