Sign in question for LINKSYS help

When I type "admin" in the username spot it then asks me for a password. I have NO idea what my password is. How can I still access all that I need to? Is there a way to reset it?
Thanks!
Sunshinelover

Hi,
We have had the same ADSL Router for a year now and we have not had this problem before. I was on the phone to LINKSYS support for 3 hours last night and they could figure this out.
PROBLEM: For some reason we can see the airport bars or if we connect via Ethernet we see it as a connection on our laptops but it doesn't allow us to connect to the internet.
The little green light on the router which sits bellow where it says internet isn't green and flashing anymore -  there is no light.
I called our ISP and they said that our modem had to be reconfigured by LYKSYS and gave me a really long list of letters and numbers. But LYNSIS didn't know what they meant???
Does anyone know what I am talking about????? PLEASE!!!  

Similar Messages

  • I can't open links like "sign in" "search for firefox help" "my account" this is a suddenly problem

    Firefox has been working fine. Today, I cannot sign into AOL, or Craigslist. I can't click on anything at the top of the page or on the side. I couldn't click into the search box for Firefox help.

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    *https://support.mozilla.org/kb/Cannot+log+in+to+websites
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • HT201303 i forgot my security questions for itunes help me

    hi how are you i make my id befor 6 month or 7 i don't remember and i forgot my security questions for itunes and i have the new pass and old and i'm ready for any questions to belive me and my email [email protected] and i have know iphone 5 and ipad 2 and mac air and i change my iphone every month i love apple aloooot please help meeeee

    You need to ask Apple to reset your security questions; ways of contacting them include clicking here and picking a method for your country, phoning AppleCare and asking for the Account Security team, and filling out and submitting this form.
    (99646)

  • More clear question  for slideshow help - Kin?

    Hi Kin,
    You have been very helpful in getting me this far - I know
    this last detail would be a very easy thing for you to do.
    I tried to get it to work for the dssmTitle by adding another
    dssmTitle.addObserver
    http://www.tsgraphics.net/slideshow_test/
    The mouseover function is fine the way it is. It's how it
    behaves during the slideshow that is a little wierd - it just sits
    on the first story. It would be great if it switched to each story
    like the small nav at the bottom highlights to each corresponding
    nav to its story during the slideshow.
    I hope this is more clear.
    Thanks!
    TS

    Hi TS,
    So it sounds like you want to change the current row of
    dschapters and stop the slide show on mouesover, and then re-enable
    the slideshow on mouseout right?
    Try something like this:
    var gTimerID = 0;
    var gInterval = 3000;
    function StartSlideShow()
    StopSlideShow();
    gTimerID = setInterval(function(){
    dschapters.setCurrentRowNumber((dschapters.getCurrentRowNumber() +
    1) % dschapters.getRowCount()); }, gInterval);
    function StopSlideShow()
    if (gTimerID)
    clearInterval(gTimerID);
    gTimerID = 0;
    dschapters.addObserver(function(nt,n,d)
    if (nt == "onPostLoad")
    StartSlideShow();
    <div id="nav" spry:detailregion="dschapters"
    spry:repeatchildren="dschapters" spry:choose="choose">
    <div spry:when="{ds_RowID} == {ds_CurrentRowID}"
    id="nav2" class="currentChapter" spry:setrow="dschapters"
    spry:hover="hoverRow"><img src="{thPhoto}"
    onmouseover="StopSlideShow();
    dschapters.setCurrentRow('{ds_RowID}');"
    onmouseout="StartSlideShow();" /> </div>
    <div spry:default="default" id="nav2"
    spry:setrow="dschapters" spry:hover="hoverRow"><img
    src="{thPhoto}" onmouseover="StopSlideShow();
    dschapters.setCurrentRow('{ds_RowID}')"
    onmouseout="StartSlideShow();" /></div>
    </div>
    On a side note, if you are trying to bring your question to
    the top of the forum again, post a message in your original thread
    ... that is don't create a new thread each time ... that way the
    context of your questions is preserved for others to read. If you
    post new threads each time, folks have to search for your previous
    posts/threads to get context.
    Thanks,
    --== Kin ==--

  • Question for apple help

    help me i need a f&*&&*(((ken email or phone number for sume F&()&((&^&(ken help
    with i tunes have asked for help here 3 times get no help
    help me

    If the iPhone has Activation Lock - that is, it's asking for the previous owner's Apple ID and password to activate the device - then you will need that information, or you'll need to get the previous owner to remove the device from his/her iCloud account:
    http://support.apple.com/kb/PH2702
    If you can't reach the previous owner or he/she is unwilling to cooperate, then the device is unusable by you. Return the iPhone for a refund if you can.
    Note also that the Japanese cell carriers will not unlock iPhones for use with carriers in other countries, so you probably cannot use the iPhone in Vietnam even if you can get Activation Lock cleared.
    Please be aware that you are not communicating with Apple when you post in these forums. These are user-to-user support forums, so in almost all cases the only people who will reply to your posts are, like me, your fellow users.
    Regards.

  • This is a question for Schillj HELP!!!!

    Last week you helped me with this code
    unfortunately I am so novice that I cant get it to work anywhere I understand it completely I just dont know where to put it in java code. Unfortutnately the logic is the easy part for me right now. I have researched everything that I dont understand in the code and understand it now. but the code and syntax make very little sense at this point.
    I have a program that allows to input a number and then hit a calculate button that would obviously run the number through this code but how do I implement this or place insert it into a program. HELP!!!!
    final static int MAXVALUES = 7;// 1, 5, 10, 50, 100, 500, 1000// is there a 5000 symbol and beyond?
    final static String[] Symbols ={"I", "V", "X", "L", "C", "D", "M"}; 
    String toRoman(int input) 
      if(input < 0)    
      throw new IllegalArgumentException("Error! value less  than 0");  
    if(input > 3999)     
    throw new IllegalArgumentException("Error! value exceeded 3999");   
    int[] values = new int[MAXVALUES];  
    int scale = 1;  
    int mult = 5;  
    for(int loop = 0; loop < values.length; loop++)  
       values[loop] = ( input % (scale * mult)) / scale;       scale *= mult;    
    mult = (mult == 5 ? 2 : 5);    }  
    // values are now set as per my last post   
    // the fives, fifties, five hundreds values can only be 0 or 1   
    StringBuffer buf = new StringBuffer("");  
    // now evaluate string   
    for(int loop = 0; loop < values.length; loop++)  
       switch(values[loop])    
        case 4:       
      // this can only happen on a 1s, 10s, 100s, etc      
       if(loop != values.length-1)      
    if(values[loop+1] == 1)          
         // special case, this does "IX", "XC", etc                  buf.append(Symbols[loop+2]).append(Symbols[loop]);          
       // now increment loop as we have taken care of the next symbol             
    loop++;          
       else          
    // this does "IV", "XL", etc.           
      buf.append(Symbols[loop+1]).append(Symbols[loop]);          
    break;      
    case 3:
    // this does "III", "XXX", etc        
    buf.append(Symbols[loop]);       
    case 2: // this does "II", "XX", etc        
    buf.append(Symbols[loop]);      
    case 1: // this does "I", "X", etc        
    buf.append(Symbols[loop]);         
    break;       
    case 0:       
      break;      }    }
        return buf.reverse().toString();  }

    I am sorry I am really not trying to scam anyone. here is my code.
    package newroman;
    * Title:        newRoman
    * Description:
    * Copyright:    Copyright (c) 2001
    * Company:
    * @author Matt Wilson
    * @version 1.0
    public class NewRoman {
       private int vNumber;
       public NewRoman()
       public NewRoman ( String roman, int number)
       this.setNumber(number);
       public int getNumber()
          return vNumber;
       public void setNumber ( int number )
          if ( number <= 0 )
          vNumber = number;
       public String getRoman()
          String strNumber = new String( String.valueOf(this.getNumber()));
          String romNum = new String();
          //find blank position in number
          int blankPos = strNumber.indexOf(" ");
          // get the number out of the string
          int stdNum = Integer.parseInt( strNumber.substring(0,blankPos));
          // determine thousands
          if ( stdNum >= 1000)
             romNum = threeDigits (stdNum / 1000);
          // determine hundreds, tens and ones
          romNum = romNum + threeDigits ( stdNum % 1000);
          return romNum;
       private String threeDigits ( int roman )
           String onesVal[] = {"", "I", "II", "III", "IV", "V", "VI", "VII", "VIII",
                              "IX", "X"};
           String tensVal[] = {"", "XX", "XXX", "XL", "L", "LX", "LXX", "LXXX", "XC"};
           String hunVal[] = {"C", "CC", "CCC", "CCCC", "D", "DC", "DCC", "DCCC", "CM"};
           String thouVal[] = {"M", "MM", "MMM", "MMMM"};
           int thouAmount = roman / 1000;
           int rem = roman % 1000;
           String romNum = new String();
           if (thouAmount > 0 )
              romNum = thouVal[thouAmount];
           int hunAmount = roman / 100;
           if (hunAmount > 0);
              romNum = hunVal[hunAmount];
           int tensAmount = rem / 10;
           if ( rem < 20 )
              romNum = romNum + onesVal[tensAmount];
           else
             // int tensAmount = rem / 10;
              int onesAmount = rem % 10;
              romNum = romNum + tensVal[tensAmount] + onesVal[onesAmount];
          return romNum;
    }If anyone can give me any pointers on how to make it better especially with jbuilder. I just want to learn it is my only goal not to scam anyone anywhere.
    thanks!

  • 2 Questions for Layout Help (new to DW)

    Hey All,
    I'm semi- new to dreamweaver, and although I know the basics, I'm having trouble creating the layout I had planned.
    Currently I'm working off a 2 column + header and footer template.
    I'm trying to make it so that the header, footer and sidebar are fixed, snapped to their respective sides of the browser no matter how the browser is resized. I would also like to make the main content offer a scroll bar if it exceeds the room between the header and footer. (so that the "room" look isn't ever changed. ie, the floor and ceiling, and dresser stay visable.)
    It looks pretty good here.
    figure A.)
    Though here when I resize the browser the dresser comes off of the floor, and I don't know why.
    Figure B.)
    So, most important questions are.
    1.) What kind of positioning method should I be using to keep the dresser snapped to the floor which is snapped to the bottom of the browser?
    2.) What should I change in the #mainContent CSS to offer a scroll bar if the content exceeds the room available?
    Bonus Questions if anyone feels extra awesome today.
    1.) I have 3 div boxes in the header, Roof_right, Roof_left are both absolutely positioned. The middle Div box has a background of the logo. If I resize the browser enough, the logo actually gets hidden behind the absolutely positioned pieces, which isn't good. How can I fix this?
    2.) I would like to stick the dresser about 50px down into the footer if possible, instead of sitting directly on top of it. Is this possible?
    Thank you
    B

    It comes down to how you slice your layout.
    http://alt-web.com/DEMOS/Image-slices-in-a-CSS-based-layout.shtml
    I would avoid APdivs if at all possible as they take content out of the normal flow and can trip you up if you're not careful.  I would start with the following basic CSS layout.
    CSS:
    #Container {width: value in pixels; margin:0 auto; /**centers on screen**/; background: url (page-background.jpg) repeat-y;}
    #headerWrapper {width: value in pixels; min-height: value in pixels or ems; background: url (roof.jpg) no-repeat;}
    #header-left {float:left; width: 25%;}
    #header-right {float:right; width: 25%;}
    #mainContent {margin-left: value in pixels; height: value in pixels; overflow: scroll; /**scrolling division**/}
    #SideBar {float:left; width: value in pixels; background: url (middle-dresser.jpg) repeat-y}
    #footer {background: #FFF url {dresser-feet.jpg) top left no-repeat; min-height: value in pixels; text-align:center}
    2-column, fixed width, centered
    http://alt-web.com/TEMPLATES/2-col-fixed-layout.shtml
    Floats & Margins demo - 3-boxes
    http://alt-web.com/DEMOS/3-CSS-boxes.shtml
    Good luck,
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • I don't remember my password and one of the security questions for my account. I also don't have the same email account now as i did when I signed up. Help?

    I don't remember my password and one of the security questions for my account. I also don't have the same email account now as i did when I signed up.
    I want to figure out my old password and/or change the new email to my current one.
    thanks

    You can try getting the password reset via this page : http://iforgot.apple.com
    If you can't then you will need to contact iTunes Support / Apple in your country to get the password and your questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps half-way down this page to add a rescue email address to your account for potential future use : http://support.apple.com/kb/HT5312

  • My mac's keyboard is not working with my mac.the green light blinks and i cannot get onto my mac. everything on the support questions does not help because i cant go on the mac and i cant sign in

    my mac's keyboard is not working with my mac.the green light blinks and i cannot get onto my mac. everything on the support questions does not help because i cant go on the mac and i cant sign in

    If you can't sign in, then you can't troubleshoot and/or pair the keyboard until after that........ so, for that, you will need to borrow someone's USB wired keyboard in order to get signed in and to the Keyboard Bluetooth Preferences.

  • The add ons i want to use are asking me to be able to continue to sign a liscense agreement...i dont know where they are to be able to sign them...one of the is WIRED-MARKER and the other is JUREEKA...thanx for the help

    Question
    the add ons i want to use are asking me to be able to continue to sign a liscense agreement...i dont know where they are to be able to sign them...one of the is WIRED-MARKER and the other is JUREEKA...thanx for the help edit
    Details

    Syncing to a "New" Computer or replacing a "crashed" Hard Drive: Apple Support Communities

  • I am now ina serious problem . i deleted my email id which i gave as apple id . And now i forgot the password of the apple id and the answer for the security question too. please help me :(

    i am now ina serious problem . i deleted my email id which i gave as apple id . And now i forgot the password of the apple id and the answer for the security question too. please help me

    Just go to this link:https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/         ...... In there,there will be written manage your account,click on that.There will be the option of sign in.At the bottom of the password box there will be written FORGOT YOUR PASSWORD? click on that and go through the information required and your password will be sent to your email account.

  • Z77a-GD65 - Thanks for the help before _ one last question

    -
    you guys were very helpful re - Pcie lanes , and we are probably going to move in future to one of the suggested boards:
    my problem is i have 4 cards in the GD65 all in 1X slots _ the encryption software runs them at a full type pace.
    1X is fine as I'm not gaming , just solving "xxxCoin" blocks .
    at the start everything ran for about 24 hours, but now within 8 hours i will notice that the Blue LED light system is full lit up and everything is frozen - i have been working on the program dialing down the intensity slowly to find the problem, but any suggestions?
    I have to power off manually if this happens , but all the fans on the cards stay at the same RPM (i.e as high) but the blue LED is full lit and everything is frozen.
    as opposed to now there are 2 leds lit in normal operation.
    any pointers?

    OK guys sorry about that.
    I should know better sorry i was rushing , OK i believe have figured out the general problem.
    the Blue Led represent HD activity normally when they get stuck solid the OS had frozen , I have narrowed that down to bad power..
    oh sorry I'll add MAX REVO 1500W PSU to my signature -
    I have a meter on the point, at full blast the 4 cards and the mobo etc are pulling around 1150 to 1200w oh the 1500w Max REVO.
    We have notoriously bad quality power where i live , (the whole suburb) (they have and actual sign up in the main street announcing they are working on it )
    SO here is my Question:
    Does the the Z77A-GD65 have what might be called "Watch dog" where the Bios polls the OS for a response and if it does not get one then restarts the system, my Brother is a Sys engineer he said a lot of Servers have it ?
    this would  be very beneficial to me as its always when i go out that of course the power screws up and i come back to find a frozen or switched off computer , but if i had this feature i could just run a . BAT at the start-up and be back online working again after reboot.
    thank you for any help !
     

  • I am going to buy unlocked iphone 5.. i will be going to india nxt months and will stay there for a while... so my question is will i get warrenty in india.. and will there be any problem with using indian sims..?? thnx for the help..

    i am going to buy unlocked iphone 5.. i will be going to india nxt months and will stay there for a while... so my question is will i get warrenty in india.. and will there be any problem with using indian sims..?? thnx for the help..

    The warranty for the iPhone is not and has never been International.
    Warranty and support are ONLY valid in the country of origin.  The only exception is the EU where the entire EU is treated as one country.
    If the device will be used in India, buy it in India.
    An unlocked iPhone will work on any supported GSM carrier world wide.  The LTE portion of a US purchased, unlocked iPhone is unlikely to work outside North America as it does not support the appropriate bands used in other countries.

  • I'm looking for some help connecting linksys IP Cameras to my home network to monitor my property when I'm travelling. I used to do this with linksys WAPS, but since I've discarded all my old linksys networking and standardized on airport, I can't get the

    I'm looking for some help connecting linksys IP Cameras to my home network to monitor my property when I'm travelling.  I used to do this with linksys WAPS, but since I've discarded all my old linksys networking and standardized on airport, I can't get these things working.  I know that I have to identify my camera through the DHCP table and set up port forwarding and there is the problem. 
    My network consists of 4  base stations set up in a roaming network - same network name and passwords.  I need to do it this way so I don't have to switch network when I move from one side of the house to the other, go to the cabana, or my shop in the barn.  The network works pretty well since I went to a roaming set up.  Good performance, yata, yata, yata.
    However, the roaming network requires the AEBS's to be set up in bridge mode, rather than sharing an ip address.  When the AEBS is set to  bridge mode, you don't see a DCHP table or have the ability to identify your IP Cam through the AEBS - and hence, no port forwarding. 
    I am able to identify and set up my Linksys IP Cam by locating the ip address on my FIOS router, even though, it's plugged into an AEBS.  I set it up, see the video, remove the ethernet cable from the IP Cam, restart - and I can't get to it from an AEBS.  In researching this, it appears, I should be setting up the AEBS to "share an IP Address", going to the DHCP table and identifying the camera's IP address and setting up port forwarding.  However, you don't see any of the DHCP or port forwarding options in Airport Network Utility when configuring in bridge mode. 
    I'm hoping I'm missing something here and that the solution isn't to set it up at the FIOS router level, but I'm beginning to think that's my only hope.  What concerns me there is that I should be able to see the IP cam on the network without port forwarding since I'm not coming from outside, and I can't even do this unless it's connected hard wire.
    I'd appreciate any insight into this that anyone might have.  I've hit the wall with what I know.
    Thanks.

    In a roaming network, your "main" router is the device that would require port mapping/forwarding to be configured in order to access the IP camera from the Internet. This router is also the one that would be provide the private IP address for the camera which you will want to be a static one.
    So as you described your network, the IP cameras should be getting an IP address or you assigned it a static one and this is the address that you would enter in the Private IP address (or equivalent depending on the router used) field when setting up port mapping.
    If you are not able to access this camera from the local network, then this should be troubleshot first.

  • Can anyone help or answer this question for me. Is there a way to have a private album for pictures sent to my phone? Don't exactly want kids ( niece and nephew ) to play on my phone and see private pictures of my girlfriend

    Can anyone help or answer this question for me. Is there a way to have a private album for pictures sent to my phone? Don't exactly want kids ( niece and nephew ) to play on my phone and see private pictures of my girlfriend

    What about this?
    https://itunes.apple.com/ru/app/best-secret-folder/id488030828?l=en&mt=8

Maybe you are looking for