BEFW11S4 Problems, Just read and try to help!

I have a BEFW11S4, i have one computer directly connected to the BEFW11S4, and the internet works fine, that is what i
am using now, but i have another coord going into a Netgear router, and i have 2 computers connected to the netgear router that
arent working at all, and i also have a wireless laptop that isnt working either, my question is why is the one computer working
but the other three not? and i also looked into the advanced settings, in the router, and it shows the INTERNET IP ADDRESS at
0.0.0.0, so i have no idea what could possible be wrong, and ideas?

First lets address the second NetGear router.  Make sure on that router you change its IP address to the same IP range that your Linksys router is using.  To do that you have to access the NetGear's user interface and change the IP to 192.168.2.1 and disable the DHCP.  If that router is set up to keep the two segments separate the assign a static IP in the Linksys router and set the IP in the NetGear to that IP.  That will give that segment (subnet) internet access and you will not see each other. 
Now on the wireless issue did you set up your SSID so you can identify it when you do a site survey from your laptop?  If their are other wireless networks in your area make sure your channel is set at least four away from the other wireless networks.  Also when or if you set up any security on the wireless network use either WPA or WPA2 (if your wireless devices support it) and make sure you can remember them or write them down so when you connect your laptop you can enter the settings exactly. If your laptop will not see your SSID then make sure you have broadcast SSID enabled and your antennas are firmly attached.
Richard Aichner (Ikester)

Similar Messages

  • AS3 Big Problem please read and suggest or help maybe?

    how can i make this using split or other codes or way?
    i mean  i create a keyword
    for example my keyword is "HELLO"
    then if you input "HELLO" the output will be "HI"
    even if i output "HELLO THERE" the ouput will be still "HI" because my keyword is HELLO
    its for our thesis project PLEASE HELP US

    Although your description doesn't clarify exact use cases it feels like you need to create a map of strings and read map on user entry. Here is an example - just paste it on timeline:
    var systemText:TextField;
    var inputText:TextField;
    var wordMaps:Dictionary;
    var keyword:String = "hello";
    init();
    function init():void
              drawTextFields();
              setMaps();
    function setMaps():void
              wordMaps = new Dictionary();
              wordMaps["hello"] = {response: "HI", inputs: ["hi", "how are you", "what's up"]};
              wordMaps["good bye"] = {response: "babye", inputs: ["bye", "fairwell", "get lost"]};
    function drawTextFields():void
              systemText = new TextField();
              systemText.defaultTextFormat = new TextFormat("Arial", 12);
              systemText.width = 300;
              systemText.height = 200;
              systemText.multiline = true;
              systemText.border = true;
              inputText = new TextField();
              inputText.defaultTextFormat = new TextFormat("Arial", 12);
              inputText.width = 300;
              inputText.height = 22;
              inputText.type = TextFieldType.INPUT;
              inputText.border = true;
              inputText.multiline = inputText.wordWrap = false;
              addChild(systemText);
              addChild(inputText);
              systemText.x = systemText.y = inputText.x = 10;
              inputText.y = systemText.y + systemText.height + 10;
              inputText.addEventListener(Event.CHANGE, onInput);
    function onInput(e:Event):void
              var re:RegExp = new RegExp(wordMaps[keyword].inputs.join("|"));
              systemText.text = "You: " + keyword + "\n\nSystem: " + (re.test(inputText.text) ? wordMaps[keyword].response : "");

  • Having problems opening a pdf file with reader 10/11 get error msg cannot open close reader and try again any ideas

    having problems opening a pdf file with reader 10/11 get error msg cannot open close reader and try again any ideas

    Hi George ,
    Is it happening with all the PDF' or any specific one?
    Could you please share the error message so that we can replicate at our end ?
    Try repairing reader  once and see if that fixes the issue.
    Launch Reader>Navigate to Help>Repair Adobe Reader Installation
    Regards
    Sukrit Dhingra

  • Trying to print says " problem with adobe acrobat/reader exit try again help?

    I keep trying to print a document, which has been working up until today, it has to be in PDF format to print, but when I push print a box comes on the screen and it says "there is a problem with adobe acrobat/reader, please exit adobe acrobat/reader and try again. What do I do? Thank you

    Hi tanjam38435898,
    Please refer this thread Links as it seems relevant to your query : Re: Error Code 0:104
    hope that helps
    Regards,
    Rahul

  • There is a problem with adobe acrobat reader please exit adobe acrobat reader and try again 101:101

    I'm trying to access some web PDF files via SharePoint Application but i got this error message "there is a problem with adobe acrobat reader please exit adobe acrobat reader and try again 101:101"
    my operating system is Win 7 and I'm using Adobe Acrobat Pro 11.0

    I'm having the same problem. Only I have Windows XP and at the end of the error message it shows 103.103. Please let me know if and when you get an answer or remedy to this problem. Thanks!

  • There is a problem with Adobe Acrobat/Reader. Please exit Adobe Acrobat/Reader and try again.

    We have Adobe Reader 8.1.3 set to open in the browser.
    We are trying to open PDF files within IE Browser. While opening multiple documents in the IE Browser, we get "There is a problem with Adobe Acrobat/Reader. Please exit Adobe Acrobat/Reader and try again." error, once we click on the "OK" button, PDF file opens in the Adobe reader. This happens randomly while some files open up in IE Browser and some files get the above mentioned error message and open in the Adobe Reader.
    We need to open all the PDF files in the IE Browser. Any input is greatly appreciated.

    I may be better off without the tool bar, but I have found anohter solution;
    .  Open Adobe Reader,
                go to edit menu,
                under Preferences
                go to Internet, uncheck "Display pdf in browser"
    The pdf files then open, but not in the browser

  • Problem on reading and writing from from a *.txt file

    I get Problem on reading and writing from from a *.txt file. The following is the read() method...
    The software said the DataInputStream is depreciated. Can anyone help me please?
    public void read()
        File file = new File("C://Documents and Settings//Charles//My Documents//Brunel//EE2065//Assignment and Lab//Assignment 4 and Lab 4//data.txt");
        FileInputStream in = null;
        String str = "";
        try
          in = new BufferedReader(file);
          //in = new FileInputStream(file);
          for(;;)
            str = new BufferedReader(in).readLine();
            //str = new DataInputStream(in).readLine();
            if(str == null)
              break;
            System.out.print(str);
        in.close();
        catch(IOException e)
            System.err.println("execution error: " +e);
      }

    Thank you for your reply. I have made some change. However, there is an incompetable type found error.
    in = new BufferedReader(new InputStreamReader(in));The following are all of the code.
    public void read()
        File file = new File("C://Documents and Settings//Charles//My Documents//Brunel//EE2065//Assignment and Lab//Assignment 4 and Lab 4//data.txt");
        FileInputStream in = null;
        //BufferedReader in = null;
        String str = "";
        try
          in = new BufferedReader(new InputStreamReader(in));
          //in = new FileInputStream(file);
          for(;;)
            BufferedReader Bstr = new BufferedReader(new InputStreamReader(in));
            //str = new BufferedReader(in).readLine();
            //str = new DataInputStream(in).readLine();
            if(str == null)
              break;
            System.out.print(str);
        in.close();
        catch(IOException e)
            System.err.println("execution error: " +e);

  • Problems while reading and displaying .pdf-Documents from Bfile

    Hi
    I want to read and display .pdf-Documents in Adobe-Reader that are stored as BFile. While displaying the Document Adobe Reader is showing several Errors like " ..less Picture-Data read than expected.. ". Is this a Buffer-Problem? or whatelse ??
    Thanks for help
    null

    PrintStream wr = new PrintStream(socket.getOutputStream());
    wr.close();I suspect this is the problem. You could try socket.shutdownOutput() - or you could just leave the streams alone and let socket.close() shut things down.
    Grant

  • Multithreaded problem in read and write thread

    This is a producer consumer problem in a multi-threaded environment.
    Assume that i have multiple consumer (Multiple read threads) and a
    single producer(write thread).
    I have a common data structure (say an int variable), being read and written into.
    The write to the data sturcture happens occasionally (say at every 2 secs) but read happens contineously.
    Since the read operation is contineous and done by multiple threads, making the read method synchronized will add
    overhead(i.e read operation by one thread should not block the other read threads). But when ever write happens by
    the write thread, that time the read operations should not be allowed.
    Any ideas how to achive this ??

    If all you're doing is reading an int, then just use regular Java synchronization. You'll actually get a performance hit if you're doing simple read operations, as stated in the ReadWriteLock documentation:
    Whether or not a read-write lock will improve performance over the use of a mutual exclusion lock depends on the frequency that the data is read compared to being modified, the duration of the read and write operations, and the contention for the data - that is, the number of threads that will try to read or write the data at the same time. For example, a collection that is initially populated with data and thereafter infrequently modified, while being frequently searched (such as a directory of some kind) is an ideal candidate for the use of a read-write lock. However, if updates become frequent then the data spends most of its time being exclusively locked and there is little, if any increase in concurrency. Further, if the read operations are too short the overhead of the read-write lock implementation (which is inherently more complex than a mutual exclusion lock) can dominate the execution cost, particularly as many read-write lock implementations still serialize all threads through a small section of code. Ultimately, only profiling and measurement will establish whether the use of a read-write lock is suitable for your application.

  • BEFW11S4 Problems with Laptop and Xbox 360

    For the past few weeks my Linksys BEFW11S4 has been malfunctioning. When I try to connect to the wireless network from my laptop, it says "Not Connected" but I can still access the internet for a few minutes before it really disconnects. Unplugging the router and plugging it back in lets me connect again, but still it gives the "Not Connected" message and boots me off within a few minutes. It has also been causing problems with my Xbox 360. It is connected with an ethernet cable to the router, but every time I turn the Xbox on it says that it is not connected. After I unplug the router and plug it back in, the problem is fixed, and I can go online on my Xbox for as long as I want. Anyone know how to fix this?

    It seems that router is not configured properly ..... checkthe firmware version on the status page of router ..... .
    Upgrade the firmware if required .....

  • Callable statement Clob problem..reading and writing

    Hi,
    I am having problem ,,trying to read and write a clob object ...
    DB Server is oracle 9i and app server is WAS5.1
    I am geting exception...
    java.sql.SQLException: Missing IN or OUT parameter at index::
    pls check the code below..
    Connection connection = null;
    CallableStatement csmtObj = null;
    Clob clob = null;
    try {
    connection = getConnection();
    csmtObj = connection.prepareCall("{call MYPROC(?,?,?)}");
    csmtObj.registerOutParameter(1,Types.CLOB);
    csmtObj.setString(2,"xxx");
    csmtObj.setString(3,"YYY");
    csmtObj.execute();
    clob = csmtObj.getClob(1);
    } catch (Exception exception){
    exception.printStackTrace();
    throw exception;
    Regards

    Thanks
    I was able to resolve the reading part but ...I am getting exception while writing ..
    it says parameter type conflict..
    This is the code
    public static boolean putStringAsCLOB(String strContent, String strDataType,
              String strOperType) {
         boolean operationStatus=false;
         Connection connection = null;
         CallableStatement csmtObj = null;
    String clob = strContent;
    ByteArrayInputStream bais = new ByteArrayInputStream(pfoAsBytes);
    InputStreamReader reader=new InputStreamReader(bais);     
    try {
              connection = getConnection();
              csmtObj = connection.prepareCall("{call MYPROC(?,?,?)}");     
              csmtObj.setCharacterStream(1,reader,pfoAsBytes.length);
         csmtObj.setString(2,strDataType);
              csmtObj.setString(3,strOperType);
              operationStatus=csmtObj.execute();
         } catch (Exception exception){
              exception.printStackTrace();          
         } finally{
              if(connection != null){
                   try {
                        connection.close();
                   } catch (SQLException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
         return operationStatus;
    Regards
    Message was edited by:
    user606712

  • Help.  After updating my software my external disc is "read" only.  How do I change this back to read and write?, help.  After updating my software my external disc is "read" only.  How do I change this back to read and write?

    Help.  After updating my software my external disc is "read" only.  How do I change it back to Read and Write?
    Thanks

    Have you formatted it for Mac using Disk Utility?
    If not, open Disk Utility (Applications>Utilities folder) and select the drive to the left. Make sure that you select "Mac OS Extended (Journaled)" and then the erase button.
    If you have already formatted the drive, call back...
    Clinton

  • HT4623 My ringer and music volume is very low!! The problem just started today can someone help?

    Can someone one help me, I just started having problems with my volume. My music and my ringtone are very low!

    As a first step, do a hard reset by holding down Sleep/Wake and Home buttons until you see the Apple logo on the screen. If a red power slider appears on the screen, just ignore it and keep holding the buttons down until you see the Apple logo.

  • Problem with Java and Oracle Database -  help !

    i keep getting a NullPointerException when trying to
    update a resultSet in a servlet. i am bringing in the data
    just fine from an Oracle database. but it chokes when trying
    to update it. can anybody tell me what is happening?
    thanks for any help
    Owen
    ResultSet rs = stmt.executeQuery( "select * from sw_assets" );
    rs.next();
    rs.updateString("name","XXX"); <--- BOOM !
    java.lang.NullPointerException
    at sun.jdbc.odbc.JdbcOdbcBoundCol.setRowValues(JdbcOdbcBoundCol.java:240)
    at sun.jdbc.odbc.JdbcOdbcResultSet.updateChar(JdbcOdbcResultSet.java:3767)
    at sun.jdbc.odbc.JdbcOdbcResultSet.updateString(JdbcOdbcResultSet.java:3257)
    at sun.jdbc.odbc.JdbcOdbcResultSet.updateString(JdbcOdbcResultSet.java:3848)
    at _0002fopen_0002ejspopen_jsp_3._jspService(_0002fopen_0002ejspopen_jsp_3.java:87)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:177)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:318)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:391)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.tomcat.core.ServletWrapper.doService(ServletWrapper.java:404)
    at org.apache.tomcat.core.Handler.service(Handler.java:286)
    at org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java:372)
    at org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:797)
    at org.apache.tomcat.core.ContextManager.service(ContextManager.java:743)
    at org.apache.tomcat.service.http.HttpConnectionHandler.processConnection(HttpConnectionHandler.java:210)
    at org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java:416)
    at org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java:498)
    at java.lang.Thread.run(Thread.java:484)

    ResultSets based on a wildcard are generally treated as views by Oracle, meaning they are not updatable no matter how you create your statement. Try either "select swa.* from sw_assets swa" or "select all from sw_assets swa", that should get around the problem.
    Also (just being thorough) make sure that you specifically created your statement as being updatable (stmt = conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE) ).
    I would not normally expect a NullPointerException when encountering this "feature", but then I don't often use the ODBC bridge.
    Good luck! I hope this helps.

  • HELP!!!!!!! Please look at this and try to help me...Please

    Okay I just recently got an Ipod whih is gret and all but my problem is with this Itunes I bought four shows 1 song and a video. But 2 three shows and a video only downloaded . The other four would download then start all over again.This is really ticjing me off because I've been trying to get these shows on my ipod for hours and my computer has been on for hours. Also the process to recievethe shows take extremely long so what am I to do??? Someone Please help me..

    The iTunes store has been unavailable for more than three hours or more (6pm EST until now - 9:20 pm), so I expect this is where your problem lies. I guess we will just have to wait for Apple to fix the fault.
    Part downloads should resume when the store becomes available. You will see the 'unavailable' message if you go to the Store menu in iTunes and then scroll to Check For Purchases... you may have to log in if you do not have auto log in enabled.

Maybe you are looking for