HP 6180c has started power cycling, but only when I set up w wireless

This has worked fines wi fi for years. Now starts cycling on and off. When I reset using #and 6 it works great w egret but when I disconnect ethernet and set up wi fi, after about 5 mins starts cycling power again

Each has a p/w but it is input only once at when I set it up. I get no prompts for p/w since they are in prefs. Is this safe?
Yes, as long as the wireless network required you to enter a password the first time that you connected.

Similar Messages

  • Every time i go on the internet the sound starts messing up but only when connected to the internet.

    1- Product name and number: Compaq CQ57 302EA 4GB
    2- Operating system installed: Google Chrome, Windows 7 (was already onlaptop when got new from store)
    3- Error Message: From bullgaurd saying I have a virus but have sorted the problem and there is no virus no longer.
    4- Any changes made to your system before the issue occurred: I have installed games and music of the internet.
    5- In the subject title, include a brief, specific description of the problem, and your product information: Compaq Laptop. Every time i go on the internet the sound starts messing up but only when connected to the internet what can i do to fix this problem?

    #You need to check your home page settings if the pages open immediately everytime you start Firefox.
    #Sometimes, things that you download and install will change your home page. When installing anything, be observant, be sure to look for check boxes during install of anything that allows you to un-check items and not install toolbars and/or make changes to your home page.
    #Firefox can have multiple home pages separated by the "|" keyboard character.
    #It sounds as though your home page setting might be: "When Firefox starts: Show my windows and tabs from last time"
    #See: http://support.mozilla.com/en-US/kb/How+to+set+the+home+page
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You need to update some plug-ins:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.com/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]

  • My Ipod classic has started to play mono only through the headphones. I have tried different headphones with the same outcome. Is the device repairable or better to upgrade?

    My Ipod classic has started to play mono only through the headphones. I have tried different headphones with the same outcome. Is the device repairable or better to upgrade?

    Hey Grimeymouse, 
    Thank you for contributing to the Apple Support Communities. 
    It sounds like your iPod classic is only playing sound in mono when using multiple headphones. 
    Since you've likely isolated this behavior to the iPod by trying multiple headphones, see this advice from the "The headphones don't work" section of the iPod troubleshooting basics and service FAQ: 
    If the issue appears to be with the iPod, try resetting it. If that doesn't work, then restore iPod with the latest iPod software using iTunes 7 or later.
    All the best,
    Jeremy 

  • TS3297 I keep getting this message that has some words & meaningless letters and then it has a mobile something or other.. But only when I try to buy give me everything by pitbull ... Please help!!

    I keep getting this message that has some words &amp; meaningless letters and then it has a mobile something or other.. But only when I try to buy give me everything by pitbull ... Please help!!

    I keep getting this message that has some words &amp; meaningless letters and then it has a mobile something or other.. But only when I try to buy give me everything by pitbull ... Please help!!

  • My Macbook Pro (OSX 10.6.7 2.26 GHz Intel Core 2 Duo) has started misbehaving on me. When I'm working, the cursor will start spontaneously moving to the left in a straight line, and randomly right clicking on things.  If I close the computer and open it b

    my Macbook Pro (OSX 10.6.7 2.26 GHz Intel Core 2 Duo) has started misbehaving on me. When I'm working, the cursor will start spontaneously moving to the in a straight line, and randomly right clicking on things.
    If I close the computer and open it back up, it sometimes stops for a little while, then will spontaneously start again. Any help would be truly appreciated. Thanks!

    See this knowledge base article. Also, you might want to update to 10.6.8 (don't know that that will fix your problem, but it's the latest version of Snow Leopard).
    Clinton

  • I'm receiving all notifications, but only when I open my iPad, then I get them all at once...? How do I get the notifications immediately?

    I'm receiving all my notifications, but only when I open my iPad, then I get them all at once. Why am I not getting them immediatlely?

    Is this a wifi-only iPad?  If so, and unless it is plugged in, when you sleep the device, it shuts off the wifi radio to save battery power.  When you wake up the device, the wifi radio is re-activated, it connects and gets your notifications.  That is perfectly normal and simply a function of the design of the device.  The wifi will not shut off if the device is plugged into a power outlet (no need to conserve power then).
    A 3G iPad would allow for push notifications, if the 3G connection was left on all the time.
    P.S. if you do have a 3G iPad and have 3G enabled all the time, then I do not know why it is not working.

  • Get ORA-01031: insufficient privileges error, but only when using dbstart.

    I am getting ORA-01031: insufficient privileges error, but only when using dbstart. the listener starts but not the database. How come I can start it from SQL prompt but not from dbstart scripts as the oracle user?
    [oracle@mallard bin]$ ./dbstart
    Processing Database instance "gf44": log file /prod/oracle/10/startup.log
    [oracle@mallard bin]$
    Log file:
    Wed Aug 20 10:15:02 CDT 2008
    SQL*Plus: Release 10.2.0.1.0 - Production on Wed Aug 20 10:15:02 2008
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    SQL> ERROR:
    ORA-01031: insufficient privileges
    SQL> ORA-01031: insufficient privileges
    SQL>
    /prod/oracle/10/bin/dbstart: Database instance "gf44" warm started.
    >
    oratab file:
    gf44:/prod/oracle/10:Y
    dbstart file section:
    # See if it is a V6 or V7 database
    VERSION=undef
    if [ -f $ORACLE_HOME/bin/sqldba ] ; then
    SQLDBA=svrmgrl
    VERSION=`$ORACLE_HOME/bin/sqldba command=exit | awk '
    /SQL\*DBA: (Release|Version)/ {split($3, V, ".") ;
          print V[1]}'`
    case $VERSION in
    "6") ;;
    *) VERSION="internal" ;;
    esac
    else
    if [ -f $ORACLE_HOME/bin/svrmgrl ] ; then
    SQLDBA=svrmgrl
    VERSION="internal"
    else
    SQLDBA="sqlplus /nolog"
    fi
    fi
    Permissions of file:
    [oracle@mallard bin]$ ls -la dbstart
    -rwxrwxr-x 1 oracle oinstall 10407 Aug 19 12:27 dbstart
    [oracle@mallard bin]$
    User permissions:
    [root@mallard 10]# id oracle
    uid=503(oracle) gid=503(oinstall) groups=503(oinstall),504(dba)
    [root@mallard 10]#
    I can start the listener manually using "./lsnrctl start" and start the database manually from sql prompt using "SQL>startup" (as sysdba) with no problems. this only happens when using dbstart file. I am logged in as oracle user and all environment variables are set
    Thank you for any help you could provide.

    I have the same problem, but i don't want insert this string
    Connect sys/{password} as sysdbaI have deployed an Oracle 10g with os SunOS
    $ uname -a
    SunOS DB02 5.10 Generic_141444-09 sun4v sparc SUNW,Sun-Blade-T6320
    I can connect with sys/password, but I can't login with
    $ sqlplus /nolog
    SQL*Plus: Release 10.2.0.1.0 - Production on Thu Jan 7 15:19:50 2010
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    SQL> connect / as sysdba
    ERROR:
    ORA-01031: insufficient privilegesthe the startup and dbshut don't work.
    Someone maybe help me?
    Thanks,
    Regards.
    Lain

  • Iphone 4 keeps restarting every 3 min but only when being used

    Iphone 4 keeps restarting every 3 min but only when being used, it doesn't matter what I do with it, it has to restart itself during usage, it's so annoying. I have restored but still no luck, currently trying to update the software once I've finished downloading it but I know it will keep restarting when connected to itunes.
    Anyways when I do decided to bring it to the apple store would I need to bring the receipt with me?
    because i dont have it anymore only the phone, box charger and usb
    thanks

    Anyways when I do decided to bring it to the apple store would I need to bring the receipt with me?
    No. The warranty is tied to the device, not the individual & all iphone 4's are still under warranty.

  • The camera app on my iphone 4S is crashing and while using the rear video cam black wavy lines are appearing but only when exposed to flurescent light in addition to the front cam... can any one please tell me what is happening???

    the camera app on my iphone 4S is crashing and while using the rear video cam black wavy lines are appearing but only when exposed to flurescent light in addition to the front cam... can any one please tell me what is happening???

    Try resetting your phone by holding down the home and off button until the apple symbol comes up. Then if still doing, restore your phone in itunes from your backup.

  • Burned Image on screen, but only when using Safari

    I have a burned image on my IPhone's screen, but only when I use Safari. Additionally, when I open Safari's multiple window viewer feature, the image is there as well. The home screen and every other app is unaffected. Turning off and on the phone does nothing to fix the problem.
    I know removing the casing and battery is an adventure, so I am trying to avoid it if I can.
    Can anyone think of a way to fix this problem?
    Thanks for the help.

    Troubleshoot Safari extensions ..
    From the Safari menu bar click Safari > Preferences then select the Extensions tab. Turn that OFF, quit and relaunch Safari to test.
    If that helped, turn one extension on then quit and relaunch Safari to test until you find the incompatible extension then click uninstall.

  • Iphone 4 keeps rebooting... but only when plugged in

    My iphone keeps rebooting itself... but only when I have it plugged in to the wall.  When its not plugged in, it seems to work fine.
    We have two iphones in our house... and I have tried the  other wall charger... same result.
    I went through the recovery mode restore... and its still doing it.
    Any suggestions?

    If no change after restoring your iPhone with iTunes as a new iPhone or not from your iPhone's backup, when your iPhone is connected to your Mac, is it connected direct to a USB port on your computer - not connected to a USB hub?
    Since the buzzing/beeps continue when your iPhone is connected to the AC adaptor, do you have another USB dock connector cable to try to rule out a problem with your iPhone's USB cable?

  • I am having major problems with Firefox. About 3 weeks ago I started experiencing the display only when on Firefox for all web site, that the display would be shifted right about half a screen. It only happens on Firefox and happens for all web sites.

    I am having major problems with Firefox. About 3 weeks ago I started experiencing the display only when on Firefox for all web site, that the display would be shifted right about half a screen. It only happens on Firefox and happens for all web sites.

    This issue can be caused by the Babylon Toolbar 1.1.8 extension
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions 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.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • My macbook shut off and wont turn back on.  Im pretty sure it is charging.  The LED light is on but only when the laptop is closed.  Im in grad school and have lots saved.  Please Help!

    My macbook shut off and wont turn back on. Im pretty sure it is charging. The LED light is on but only when the laptop is closed. Im in grad school and have lots saved. Please Help!

    ronicr76,
    First it would be helpful if you post the exact model, year and OS version you have.
    > The LED light is on but only when the laptop is closed<
    So that light is the sleep indicator and tells us that the laptop is going to sleep when you close the lid. That would be normal behavior so the machine is still working. Possibly you're experiencing a backlight failure. With the machine supposedly "on" use a flashlight to carefully examine the screen. Do you see the desktop? Yes? machine is still running and something is wrong with the backlight.
    You should immediately backup your computer or at the very least pull vital files off. With the computer hooked to another Mac (The way this is done depends on the exact MacBook, E.g.FireWire 800 to FireWire 800.) Then you restart the computer and hold the "t" key down. This puts your MacBook into "target mode":
    How to use and troubleshoot FireWire target disk mode
    Once your files are off try an SMC reset:
    Intel-based Macs: Resetting the System Management Controller (SMC)
    Are you able to get the backlight back on by opening and closing the display? Yes? Broken backlight cable refer to qualified service place. Even if it doesn't come on and you can still see the desktop with a flashlight it is still probably the backlight. Could be the a backlight problem also.

  • My printer has started to print in only the top left quarter of the page. help

    My pixma MX310 printer has started to print the whole document in the upper left quarter of the page and i can't figure out what setting may need to be changed. in the print preview it shows the full page ready to print. i'm frustrated

    Hello wendolynsworld.
    It may be possible that the paper size is currently set to 4"x6" or 5"x7". 
    Before printing, please check the printer settings in the Print menu on your computer.  Make sure that the paper size is set to "Letter" or 8.5"x11".
    If you have any difficulties with finding the paper size setting, please tell us what version of Windows or Mac OSX is on your computer. 
    Also, tell us what programs are being used when this issue occurs.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • I get the erroor message 'couldn't load XPCOM' but only when i try to access my Netflix Desktop App . I have tried unsuccessfully to corect this. My OS is Linux

    After the last Firefox update to Firefox 19.0.2, I got the error message "Couldn't load XPCOM" when i attempted to open my Netflix Desktop App, I did not get that error message when starting Firefox only when trying to open Netflix. I thought it had something to do with Netflix so I removed it then reinstalled but the error message continued. I searched and asked questions to no avail. I did a command line search: "locate /xpcom" It came up with a list of files relating to xpcom, only one refering to Firefox itself and they all ended with xpcom.dll. When i did a search in the File folder I found this:
    usr/lib/firefox/libxpcom.so .
    One of the people trying to help told me this:
    "The error is caused by the lack of the path "/usr/lib" in the environment variable LD_LIBRARY_PATH
    Solution
    Add the /usr/lib path to the environment variable in this way:
    export LD_LIBRARY_PATH=/usr/lib:$LD_LIBRARY_PATH"
    I was informed to do the following:
    "Get to a command line prompt (CLP) and use gedit to add that line to your .bashrc file:
    your.account> gedit .bashrc
    when you're done, just save and exit. Log out and back in, and from then on whenever you log in, it will be in the LD_LIBRARY_PATH for you. You might also want to copy .bashrc to some sort of saved version; I use bashrc.sav."
    No change.
    I have done a reinstallation of Firefox and numerous reinstallation of Netflix all with no change.
    Is there a chance that a complete removal of Firefox followed by a reinstallation correct the problem? i don't want to do that unless it is the only solution.
    Oddsbodkin

    Hello Oddsbodkin,
    It looks like the creator of Netflix Desktop has a site for the project here:
    https://answers.launchpad.net/netflix-desktop/
    I would try posting your question there and see if anyone else has encountered this error and has a solution.
    Cheers, Patrick

Maybe you are looking for

  • Field output trancated regardless of the field length assigned

    i have assigned 1000 characters to the output field in the output structure. Now in the report output, the field only displays upto 128 characters, it doesnt go beyond that. what could be the cause of this. Even when i put it on debug mode, this fiel

  • SAP Query on Custom Infotypes

    Dear friends,    Is it possible to generate SAP Query on Custom Infotypes.    As I am trying them and while creating Infogroup on my custom Infotype fields, It is not getting generated.    Could you please suggest how to proceed. Thanks in Advance, R

  • Save for web & devices' Full page instead of content

    I have updated from CS3 to CS5. When I save using "save to web & devices"  it brings it up in full page rather than content size, which I am accustomed to in CS3. No, I do not have the artboard ticked in the export dialog box. I am at a loss, please

  • When typing in a fillable form, when I enter text on one line it automatically enters it on a previous line. How do I fix this?

    Using fillable forms, there is one question where it asks to enter the date. When I enter the date, it automatically puts it in another place too.  If I delete, it deletes them both!! Help!

  • SQL Developer 가 9i 이상만 지원하나요?

    Oracle SQL Developer 의 최신 버전인 1.0.0.15 를 다운받아서 설치하고, 8i 버전의 DB에 접속하려니깐 아래 메세지가 뜨네요... Database Versions 9.x and above are supported. 그래서 안되는 줄 알았는데, 확인 버튼 누르고 SQL문 실행해보니깐, 되네요... 그리고, SQL Developer 에서도 TOAD의 schema browser 와 비슷하게 좌측에 보였던 것 같은데... 또 갑