No connection - outage?

I am not able to use my phone at all suddenly. I have an iPhone 4S. Yesterday the device worked perfectly for 3G usage and wifi. This morning it worked fine with wifi. When I got to a non-wifi area, the phone won't make calls, wont send or receive messages/texts, and won't connect to the internet or any apps. It says "3G" at the top, and I know that my bill, etc. are current and that the services are working for others on my plan who live in different geographic areas. It won't work whether cellular data is turned on or turned off. Is there some type of service outage? I live in northeastern Pennsylvania.

    Hello Jbarl1656. We're here to help get your phone and the network communicating again! Since this first started, has service returned to your phone? What zip code are you located in where this issue is being experienced?
Not sure if you have tried this, but try powering off your phone like normal, but then remove the SIM card from your phone.
http://support.verizonwireless.com/support/devices/knowledge_base.html/49046/
For this test, please place the tray back into your 4s without the SIM card, and power it back on again. Did service return? If yes, go ahead and power off your phone , and place the SIM card back inside, and restart your 4s once again.
We look forward to hearing back from your jbarl1656. Thank you, and have a great day.
NicandroN_VZW
Follow us on twitter @VZWSupport

Similar Messages

  • Internet connection (sometimes) slow to come back after wake up

    Hi all,
    I started having a strange problem few days ago. First time it happened my husband gave the iBook back to me after using it, and I logged into my user account - and internet connection was gone. I checked the airport settings, the bars were there - went and checked internet connection from the other computer and it was ok. Rebooted, twice, fiddled with the internet connections - and suddenly, without changing anything, the connection was back.
    So I though it was weird, but since my iBook has been fine since I got it 7 months ago I didn't think more of it. Then it happens again - this time I opened it up from sleep, and again no internet connection, couldn't even contact the router although bars were there and it claimed that it was connected to the network. This time I didn't even change the settings, but just looked at them, and after 5 minutes or so the connection came back. Then it happened again, same symptoms and same solution - wait for 5 minutes and it will sort itself out. But of course it doesn't happen every time - yesterday it was fine.
    Anyone has any ideas what's going on, and possibly even solve the issue?
    Any help would be appreciated.
    12" iBook G4   Mac OS X (10.4.3)  

    Hi.
    Sorry that the simple fix doesn't do it. There are other things you can try, since WiFi can be cranky in many ways. First, are you running an Airport base station or some other wireless router? If it is "other", then you might try changing the broadcast channel on it. WiFi operates on 11 different channels in the 2.4 MHz band, and you might get more reliable connections on a different channel.
    The Airport base station is smart enough to switch itself to the best channel, but you may have to do your own adjustments with other routers. Most use channel 6 by default; if you are in a neighborhood with lots of other WiFi access points around all running on channel 6, you can get significant interference. Try switching to channel 1 or channel 11. Other devices in the 2.4MHz band can also be a problem: garage door openers, cordless phones, or baby monitors.
    Note your own router could have strong signal, but it would be fighting all the other signals coming in. If you are in an apartment building or in a block of houses fairly close together, such noise could be an issue. My neighbor was having WiFi connection outages, and it turned out that he had five detectable signals from his neighbors, all but one running on channel 6 along with him (I was on channel 3).
    The location of your router can also be important. According to experts on the web, it is better to have your base station higher than your iBook. My neighbor had another strike against him when he put his base station into the basement while he tried to work in the bedroom above with a laptop.
    Anyway, there are many things that can go wrong. You may indeed have a hardware problem, but let's rule some more easily fixable problems first.
    Good luck.

  • Safari Can't Find Server But I Have an Internet Connection

    Hello and thank you for your help ahead of time,
    My current situation is extremely frustrating, especially considering I have a background in computer diagnostics and repairs.
    After upgrading to the new Safari 4.0 I have been having random connection outages that last about 5 minutes before the issue repairs itself. What happens is, despite me being connected to the internet and other programs actively downloading files/mail messages, I displays a message that it cannot connect to the server of any site. It is completely random and has nothing to do with my router, it is most defintley something on my mac. It is ubsurdly frustrating because I will click a read link then the message will display and I will have to wait 5 minutes before I can open a webpage. Same thing happens occasionally on FireFox but not nearly as bad as on Safari. All this leads me to beleive it is something with my TCP/IP settings but on a mac i have no idea how to reset those all like I can on a windows.
    So, please help!
    Thanks

    Greetings,
    Before I go watch television in ten minutes, have you tried changing your DNS servers to use those from OpenDNS? If not, quit Safari and open System Preferences > Network > Advanced and in the DNS window, enter these two addresses:
    208.67.222.222
    208.67.220.220
    click Apply Now and quit System Preferences.
    Restart Safari and test to see if the problem continues. If it does continue, then it could be an issue with your router possibly overheating or needing to be reset by shutting both it and your Mac down for a few minutes, then restarting the router and your Mac.

  • Resilient connection to server

    I'm trying to maintain a permanent connection with an imap server.
    I use the following code to connect:
            String protocol = "imap";
            url = new URLName(protocol, server, -1, mbox, user, password);
            Properties props = System.getProperties();
            session = Session.getDefaultInstance(props);
            try {
                folder = session.getFolder(url);
                // add connection and messagecount listeners to the folder
                folder.open(Folder.READ_WRITE);
            } catch (Exception e) {
                throw new IOException("Couldn't connect..");
            }And periodically poll the connection with the following method:
        void poll() throws Exception {
            if (!folder.isOpen()) {
                folder.open(folder.READ_WRITE);
        }The method above seems to reopen my folder just fine after a disconnection, even the listeners are still there, but is this by design or just a lucky coincidence?
    I'm writing a server app that should ideally run 'forever' and not need manual intervention. Should I be doing something differently?
    Thank you,
    Isak

    That approach should prevent the server from deciding
    that the
    connection is not being used and close it, but of
    course there's
    lots of other reasons the connection could be closed,
    and lots
    of other places in your code where that might happen,
    and your
    app probably needs to consider these other failure
    modes as well.Hmm.. my initial post wasn't too clear.
    The polling thing isn't relevant, only how that method seems to reconnect my folder just fine after connection outages. Is this really all it takes to get back up and running?
    As for the rest of my app (may as well get an evaluation on that now that i'm posting here) it goes something like this:
    I aquire a (closed) Folder and add two listeners to it. A ConnectionListener that responds to opened() events, and a MessageCountListener that responds to messageAdded(), and then open the folder for read/write.
    My listeners hand off each message they see to a method which deletes them from the inbox after processing - the method just fails silently on IO errors.
    I do not track disconnects, as I need to poll the connection regularly anyway for message events to occur (IMAP), and the poll method hopefully reconnects me to the server as needed.
    Sounds reasonable?

  • Any way to get app available for sale when iTunes Connect is down?

    I have an app that was reviewed and approved yesterday and didn't make it out of "Processing for App Store" before today's iTunes Connect outage. Normally I could wait for this outage to pass but this app is for an event this weekend where 50k+ people will be visiting and it starts on Thursday. Is there anway I can get this made ready for sale without iTunes Connect?

    Never plan an event that relies on an app being in the store, much less approved.
    Apple does on occasion respond to requests for expedited reviews, but if the backend, which is part of the process, is unavailable, there isn't much you can do but reschedule and wait for approval.

  • Agent Lost Connection Alert

    Hi,
         How will I set up an email alert whenever the agent lost connection to the master?
    Thanks!

    The master looses connection to the agent not the other way around. 
    We use SCOM (replace with whatever tools is appropriate to your platform) to monitory that the Tidal master services and Tidal failover services themselves do not go down. 
    Keep in mind you'll need to work with your mail administrator to add your Tidal servers into an SMTP mail message allowed if working with Exchange.
    Two system events you should define for every Tidal master are:
    1) se public connection status - one action email followed by an alert action (Security Level=Warning) :
    An error alert has been generated for an unplanned connection outage:
    Job Connection Name: <SysConnect>
    Job Agent: <JobAgent>
    Status: <JobStatus>
    2) se admin failover complete - define a system event on Backup master took over with an action email associated titled "Failover Notice on <SysDate.M/d/yyyy>" with message as follows:
    The primary Tidal master has failed over to the backup Tidal master.  
    Before the end of the next business day, investigate the reason and as soon as practical restore service to use to the primary Tidal master.
    Tidal Administrator
    For our connection messages down, we use something like this:
    Subject=FYI: Connection Down: <SysConnect> on <SysName>
    Message:
    The Tidal connection mentioned in the subject line has gone down, please investigate.  
    Possible Root Causes:
    1) maintenance was performed without a defined Tidal outage when a server or service was brought down.
    2) server or service is down ( remote into your server to verify if the server is down, is so, escalate with Infrastructure ext ZZZZ rather than with our Tidal Administrators )
    Take appropriate action contacting a Tidal Administrator or Infrastructure Administrator as necessary if the connection remains inactive for more than 15 minutes.

  • IWeb losing, and then corrupting photos in Blog entries

    I have an odd problem, and really need some help!
    I've been posting blog entries with pictures at the end of the text for many months now (over 150 entries), and only recently have run across this problem. After creating a new blog entry, I post the site, and after the site is published, will go to the site and see that the picture in the blog index is fine, but when anyone visits the page of that blog entry, the pictures at the end of the text are gone, and the picture at the start of the blog has a box with an X in it. When I go back into iWeb, the file will either be fine, or will have the X and all of my past posts will have it as well. When I try to re-drag the picture in, it is saying the picture is corrupt. Yet somehow, the next day on the web, the pictures magically appear and all seems fine (after trying to republish several times). This has happened for the past week or so, but seems to be worse as of late.
    I don't know if this is because of occassional connection outages (which seem to happen fairly often) and pictures not completely loading, even though iWeb thinks they are, or if this is from problems on the .mac servers, or problems on my computer with iWeb. I've tried quitting and rebooting, which worked the first time or two that this happened, but no longer helps.
    It's one thing if iWeb is not working correctly, but if this is now corrupting my photos in iPhoto, this is a serious defect! Apple, PLEASE make the next version more stable - we're I just getting started and seeing this, I would have dumped iWeb, but after 4 months and many many entries, it is not easy to move this to a TypePad or other site.
    iMac 24"   Mac OS X (10.4.8)   MacBook Pro, 5.5G iPod Video, G4 Titanium Powerbook

    I'm having this same problem. Is this a known bug?
    On my iWeb site, the pictures in my blog keeping getting "corrupted" and are unusable, and the only way I can get iWeb to accet them again is to export them from iPhoto, do a save-as, and re-import them into iPhoto.
    Please tell me there is some sort of fix.

  • BT Infinity Speed drops

     Hey guys, 
         So around a month or two ago, we had a stint of connection outages and instability, in which our connection dropped out several times a day over the course of a few days, which was then followed an occasional drop every other day or so. During the course of this, speed steadily fell from it's usual ~30-35mpbs, to ~5mbps, which it has been at for the past few weeks without change, tested with a direct connection to the router. 
    Is this an issue that could be solved with getting an IP profile reset or would I need to get an engineer out to have a look at this issue?
    Any help is appreciated. Stats below.
    Thanks,
     BT Infinity 2 Package:
    1. Product name:
    BT Home Hub 3.0B
    2. Serial number:
    +058721+123330QQ9A
    3. Firmware version:
    V100R001C01B036SP05_L_B. Last updated 15/11/13
    4. Board version:
    VER.D
    5. WAN:
    PPP Connected
    6. Data sent/received:
    3158419821/568887599 B
    7. Broadband username:
    [email protected]
    8. BT FON:
    Yes
    9. Wireless network/SSID:
    BTHub3-4GXJ
    10. Wireless connections:
    Enabled (b/g/n, 20M, WPS Disabled)
    11. Wireless security:
    WPA and WPA2
    12. Wireless channel:
    Automatic/1
    13. Firewall:
    Default
    14. MAC Address:
    88:534:93:30:EB
    15. Software variant:
    05_L_B
    16. Boot loader:
    1.0.37-106.5
    Telephone Number *********** on Exchange AYCLIFFE is served by Cabinet 3 
    Featured ProductsDownstream Line Rate(Mbps)Upstream Line Rate(Mbps)Downstream Range(Mbps)Availability Date  High Low High Low    
    FTTC Range A (Clean)
    54.4
    35.5
    13.9
    8.4
    Available
    FTTC Range B (Impacted)
    46.8
    25.7
    13.9
    6
    Available
    WBC ADSL 2+
    Up to 2.5
    1 to 4
    Available
    WBC ADSL 2+ Annex M
    Up to 2.5
    Up to 0.5
    1 to 4
    Available
    ADSL Max
    Up to 2
    1 to 3.5
    Available
    WBC Fixed Rate
    1
    Available
    Fixed Rate
    1
    Available
    Other Offerings
    Fibre Multicast
    Available
    Copper Multicast
    Available

    The diagnostics test does not seem to work with me. I've attempted it a few times over the last few weeks on different devices and browsers and get the same message everytime.
    1. Best Effort Test:
    Download Speed : 5.47 Mbps
    2. Upstream Test:
    Upload Speed : 3.51 Mbps
    Your speed test has completed and the results are shown above, however during the test an error occurred while trying to retrieve additional details regarding your service. As a result we are unable to determine if the speed you received during the test is acceptable for your service. Please re-run the test if you require this additional information.
    Anything else I can do?

  • Service Endpoint Interface and RemoteException question on the server

    Hello,
    I would like to be able to log and track RemoteExceptions when the network goes down when an attempt to send a response back to the client. I understand that Weblogic will handle the RemoteException but especially on a network failure I would like to be able to resend the message or at least notify a group that the connection is down.
    Can I have pointer on how to do this on the server as I'm sending back the reponse back to the client.
    This is an example of what I would like to do:
    public String getInformation(String xmlReq) throws RemoteException {
    String xmlRes ="";
    try {
    xmlRes = doTask(xmlReq);
    return xmlRes;
    } catch (RemoteException remoteEx) {
    handleCommunicationFailure(xmlRes); // do what I need to do
    throw new RemoteException (); // send the exception back to weblogic
    Yes, I'm new at this.
    Thanks!

    Please understand that Exception you're throwing from the body of your method you're creating the WS operation out of is mapped to SOAP fault. It is not meant to deal with network failure from the server side where your service endpoint is hosted.
    Also, in case of synchronous WS invocation, when/if the network outage takes place during the invocation, the SOAP proxy will throw a SOAPException with such information, but it won't convey any error conditions reported from the service (after all, the network has been disconnected, and there is no way to send SOAP response or fault message)
    On the server side, the service implementation business logic should/can not deal with network outage condition. However, on the client side, it's possible to have a retry-mechansim when network connection outage is temporary.
    Regards,
    Pyounguk

  • EIGRP summarization don't works

    Hello everyone.
    I have a lot of branches with a lot of small networks (around 14 networks at each branch):
    C 10.0.0.112/28 is directly connected, FastEthernet0/0.7
    C 10.0.0.96/29 is directly connected, FastEthernet0/0.2
    C 10.0.0.80/28 is directly connected, FastEthernet0/0.11
    C 10.0.0.64/28 is directly connected, FastEthernet0/0.4
    C 10.0.0.56/29 is directly connected, FastEthernet0/0.21
    C 10.0.0.48/29 is directly connected, FastEthernet0/0.8
    C 10.0.0.32/28 is directly connected, FastEthernet0/0.51
    C 10.0.0.24/29 is directly connected, FastEthernet0/0.20
    C 10.0.0.16/29 is directly connected, FastEthernet0/0.16
    C 10.0.0.8/29 is directly connected, FastEthernet0/0.5
    C 10.0.0.4/30 is directly connected, FastEthernet0/0.3
    C 10.0.0.0/30 is directly connected, FastEthernet0/0.15
    C 10.0.0.192/26 is directly connected, FastEthernet0/0.50
    C 10.0.0.128/26 is directly connected, FastEthernet0/0.17
    So I want to use route summarization to send 1 route insteand of 14. After using command "ip summary-address eigrp" at the interface I see that branch router create a summarization route:
    D 10.0.0.0/24 is a summary, 15:26:01, Null0
    The sceme of connection looks like this:
    But the central router still gets routes from branch router like this:
    D 10.0.0.0/30 [90/1286912] via 172.2.0.68, 12:30:09, Tunnel1
    D 10.0.0.4/30 [90/1286912] via 172.2.0.68, 12:30:09, Tunnel1
    D 10.0.0.8/29 [90/1286912] via 172.2.0.68, 12:30:09, Tunnel1
    D 10.0.0.16/29 [90/1286912] via 172.2.0.68, 12:30:09, Tunnel1
    D 10.0.0.24/29 [90/1286912] via 172.2.0.68, 12:30:09, Tunnel1
    D 10.0.0.32/28 [90/1286912] via 172.2.0.68, 12:30:09, Tunnel1
    D 10.0.0.48/29 [90/1286912] via 172.2.0.68, 12:30:09, Tunnel1
    D 10.0.0.56/29 [90/1286912] via 172.2.0.68, 12:30:09, Tunnel1
    D 10.0.0.64/28 [90/1286912] via 172.2.0.68, 12:30:09, Tunnel1
    D 10.0.0.80/28 [90/1286912] via 172.2.0.68, 12:30:09, Tunnel1
    D 10.0.0.96/29 [90/1286912] via 172.2.0.68, 12:30:09, Tunnel1
    D 10.0.0.112/28 [90/1286912] via 172.2.0.68, 12:30:09, Tunnel1
    D 10.0.0.128/26 [90/1286912] via 172.2.0.68, 12:30:09, Tunnel1
    D 10.0.0.192/26 [90/1286912] via 172.2.0.68, 12:30:09, Tunnel1
    Configuration of EIGRP at the branch side:
    interface Tunnel1
    ip summary-address eigrp 1 10.0.0.0 255.255.255.0 90
    router eigrp 1
    passive-interface default
    no passive-interface Tunnel1
    network 10.0.0.0 0.0.255.255
    network 172.2.0.0 #Tunnel interface network
    no auto-summary
    eigrp stub connected
    Configuration of EIGRP at central router:
    interface Tunnel1
    no ip split-horizon eigrp 1
    router eigrp 1
    passive-interface default
    no passive-interface Tunnel1
    network 172.2.0.0 #Tunnel interface network
    no auto-summary
    Additional information: I'm using DmVPN (without spoke to spoke connections) for connection between the routers. Central router is 3925 (IOS c3900-universalk9-mz.SPA.152-4.M6a) and branch router is 2801 (IOS c2800nm-advsecurityk9-mz.151-4.M7).
    Thanks in advance for any help.
    Best Regards.

    Hello,
    Your EIGRP stub routers (the branch routers) are currently configured with eigrp stub connected command. This command allows the stub router to advertise only directly connected networks. Even if address summarization is configured, the stub is not allowed to advertise the summary address.
    The correction should be fairly simple: replace the eigrp stub connected command with eigrp stub connected summary on your branch routers. This should do the trick.
    Please be aware that your EIGRP adjacencies may momentarily flap when you enter the eigrp stub connected summary - please accomodate the time of this change to a period of day where the connectivity outage of a couple of seconds is acceptable.
    Best regards,
    Peter

  • Is OAE H-A? Can it sustain a database crash?

    A recent database crash caused HTMLDB 1.6 to crash, showing "Service unavailable" even after the database was back up.
    Is it designed to sustain a brief database outage? Can it be configured to recover, failback, failover, without a restart of the application server? We are running htmldb on oAS 10.1.2. The J2EE part is designed to use DataSource that retries the connections and therefore can sustain a connection outage.

    HTML DB does not need/utilize Oracle Application Server. All it needs is Apache and the database.
    It is as H-A as Oracle itself since it "lives" inside the database.
    If your database goes down, HTML DB goes down. When the database comes up, HTML DB is back up. [Provided, of course, Apache is up and running all the time]
    Not that I don't believe you, but when you got ""Service unavailable" even after the database was back up", what did the Apache logs show?

  • Yahoo! Mail on N79 keeps refreshing completely

    My Yahoo IMAP push-mail on my N79 Nokia, it used to work quite perfect until monday or so. Since then, everytime I connect to my mailbox, it starts reloading every message into my mailbox (all folders, but always a maximum of 10 or 15 for 2 folders with the rest empty), which means I loose all the content I just retreived.
    So the first time I see all my messages in the folder, then I choose Connect and all emails are disappearing shortly, after which the emails start to be loaded (Header only) into the inbox, one by one.
    Some recent checks/changes/settings:
    It's peculiar that these last days, the account remains connect for much longer times than formerly.
    Automatic retrieval is disabled as it has always been.
    I have 2 email accounts, checked them both. I added a Sync-email account. I removed all accounts and reinstalled only 1 account. I deselected the other folders except so only the Inbox is showing.  I checked the settings with Nokia and Yahoo-website. Nothing changed.
    We had a connection-outage of my provider last monday in the Netherlands, I remember I switched around in my Packet Data connection settings to see what was wrong but I saved the Packet Data-settings from the provider again.
    Did a firmware-check, no updates but I still re-installed the firmware via OVI suite.
    I am using the free Yahoo service, don't hope I have to switch to Yahoo Plus suddenly (because everything used to work perfectly until this week).

    Just found a solution that worked for me: 1) delete the email-inbox on our phone 2) create a new account, but MISSPELL the ending of your mail-adress (-> yuhuu.com or t-noline.de) so the nokia configurator can NOT automatically download settings, instead you need to type them in manually in the next step) 3) now define your correct mail adress, your password, the inbox- and outbox settings (e.g. pop.mail.yahoo.com, smtp.mail.yahoo.com)... 4) connect *problem solved* seems like the automatic settings always define IMAP , but lately there's some bugs. POP works fine with me because i always manually let my phone search for new mails in my yahoo account.

  • Is there a known issue with Mac Mail and adding Yahoo! email accounts?

    My Mac Mail application already as one account it in - my iCloud account.  It works just fine.  Every time I add a second account - Yahoo! (automatic setup), the account is created fine with all fields populate correctly, but after a few seconds the account and all it's contents disappears.  Just as if I had manually deleted it myself.  I did many tests, and sometimes the account stays, and sometimes it disappears.  I'm not accidentally hitting a '-' or 'remove' or 'erase' or 'delete' buttons.
    Mail Version 7.3 (1878.2)

    Check Console.app (Applications > Utilities) for any mail-related errors getting logged, when the newly-added account vaporizes.
    Try configuring the Yahoo! connection manually; set the smtp and pop settings explicitly?
    Yahoo is also reporting some connectivity outages today, due to a cable cut.  That's probably not related to this, but it might cause problems.
    FWIW, OS X 10.9.4 has Mail.app Version 7.3 (1878.6).  Might see if that upgrade helps here, too.
    If Mail.app is crashing, try configuring Mail.app in a completely separate (new) login — see if there's something in the saved mail preferences that's corrupted.

  • My iPhone 5S has not connected to 4G LTE service in the last few days? Is there an outage/issue with 4G in my area (Pittsburgh) or is this a device specific issue?

    My iPhone 5S has not connected to 4G LTE service in the last few days? Is there an outage/issue with 4G in my area (Pittsburgh) or is this a device specific issue?

        JHblues Let's get your data working again. There are not any reported issues in the area. Try this step:  http://vz.to/1kUSSk2
    Sheritah_vzw
    Follow us on Twitter
    @VZWSupport

  • I AM UNABLE TO CONNECT TO ANY WEBSITE USING FIREFOX. EVEN THOUGH, I HAVE BEEN USING FIREFOX ON THE SAME COMPUTER FOR YEARS WITH NO DIFFICULTY. THE PROBLEM AROSE AFTER COMCAST, MY ISP, RECOVERED FROM A WIDESPREAD OUTAGE THAT LASTED 5 HOURS.

    I SUCCEEDED IN TRANSFERING ALL MY BOOKMARKS TO GOOGLE CHROME. THIS WILL ALLOW ME ACCESS TO WEBSITES WHILE I WAIT FOR A METHOD TO REPAIR MY FIREFOX PROGRAM. IN A PREVIOUS MESSAGE, I EXPLAINED THAT I WAS UNABLE TO ACCESS ANY WEBSITE USING FIREFOX AFTER COMCAST, MY ISP, RECOVERED FROM AN OUTAGE THAT LASTED 5 HOURS. WHENEVER I TRIED TO CONNECT TO A SITE, A POP-UP MESSAGE APPEARED INDICATING: "UNABLE TO INITIALIZE THE APPLICATION'S SECURITY COMPONENT. THE MOST LIKELY CAUSE IS PROBLEMS WITH FILES IN YOUR APPLICATION'S PROFILE DIRECTORY. CHECK THAT THIS DIRECTORY HAS NO READ/WRITE RESTRICTIONS." I EVEN REMOVED FIREFOX FROM MY COMPUTER AND DOWNLOADED IT AGAIN, FIGURING THAT BY NOT MERELY USING AN UPGRADE, I WOULD BE INSTALLING A COMPLETELY FRESH DOWNLOAD. UNFORTUNATELY, I RECEIVED THE SAME DISAPPOINTING RESULT, WITH THE SAME POP-UP MESSAGE RE-APPEARING. HOWEVER USING BOTH GOOGLE CHROME AND INTERNET EXPLORER, I WAS ABLE TO CONNECT TO WEBSITES. SO I HAVE TO CONCLUDE THAT THE PROBLEM IS NOT WITH MY INTERNET CONNECTION.

    Press '''START + R''' in keyboard to open the '''Run''' box(or '''start''' then '''run''') , type in the RUN box '''%APPDATA%''' (or copied in just i wrote, bold text) then click '''OK'''. A Windows Explorer window will appear, in this window, choose '''Mozilla''' then '''Firefox''' then '''Profiles'''. Each folder in the "Profiles" folder (e.g., "xxxxxxxx.default") is a profile on your computer (maybe is one file if you have only one profile).
    see for more info : [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile folder - Firefox ]
    try it, good luck
    thanks again

Maybe you are looking for

  • Displaying pdf in browser when using Windows 7 Beta & AR 9

    Early indications are that "Adobe Air" and/or "Acrobat.com" are breaking the display in browser function in Windows 7 Beta when using Adobe Reader 9. On a fresh install of Windows 7 Beta, I installed Adobe Reader 9, and as everyone is finding out, yo

  • Command (⌘) 5, 6, 7, 8, 9 and 0 do not function

    The command key (⌘) works fine with most commands (e.g. ⌘C, ⌘V) but will not work with the numbers 5, 6, 7, 8, 9 and 0. I am typing this from the my macbook so obviously the numbers by themselves work fine. Here's the even stranger part: I can go to

  • Programmatic to change the Frame title

    Hi all It's not possible programmatic to change the Frame title. Is there any way (not-documented) to change it?

  • Linking to files stored on Verizon

    The are many message boards that allow you include pictures in your posts by inserting the URL to where the file is located. I have searched all over Verizon's websites and can't find out how to do it. At Comcast, there was a utility to upload and st

  • About Calendar on iPhoto 09

    Is there any way to change the color of "Sunday" or any date from black to red?