My yahoo account won't connect for some reason?

My yahoo account is not connecting to mail but is accessible through the internet, any help?

Yahoo haven't replied.  To explain further, this is an existing account which was working one day and not the next! I have a mobile me account that still works next to it but there is an 'offline' sign on the yahoo account and it will not accept incoming.  Pressing the 'take online' doesn't do anything.  What is strange is that I have found that it can still send outgoing!

Similar Messages

  • The credit card info on the account has changed but for some reason there is no option for me to make the changes.  In addition, cloud has stopped working and all other programs that need to be updated cannot be.

    the credit card info on the account has changed but for some reason there is no option for me to make the changes.  In addition, cloud has stopped working and all other programs that need to be updated cannot be??

    Make sure that EVERY DETAIL is the same in every place you enter your information
    -right down to how you spell and punctuate the parts of your name and address
    Change/Verify Account https://forums.adobe.com/thread/1465499 may help
    -Credit card https://helpx.adobe.com/utilities/credit-card.html
    -email address https://forums.adobe.com/thread/1446019
    -http://helpx.adobe.com/x-productkb/global/didn-t-receive-expected-email.html

  • Can't create new pdfs from powerpoint; either form within Adobe or within powerpoint.  I could do this yesterday and today it won't work for some reason.  The error says "an unexpected error occurred.  PDFMaker was unable to produce the Adobe PDF.  How do

    Can't create new pdfs from powerpoint; either form within Adobe or within powerpoint.  I could do this yesterday and today it won't work for some reason.  The error says "an unexpected error occurred.  PDFMaker was unable to produce the Adobe PDF.  How do I fix this?

    Is there a log file in the document folder indicating what the problem was. There are a number of reasons that PDF creation may fail. You can try to print to the Adobe PDF printer to see if there is any indication in that process. The processing is different, but the same problems may show up with both processes.

  • Pse 13 for mac- Is there a digital download after you buy it disc won't read for some reason. using macbookpro.

    I bought the PSE 13 disc and put it in my laptop( macbookpro) and for some reason it won't read… all it does is run and then spit the disc out not sure what to do. Is there maybe a digital download since there is no customer service number to call…

    Download the trial version, install then enter your serial number
    http://www.adobe.com/cfusion/tdrc/index.cfm?product=photoshop_elements

  • This program won't work for some reason

    I'm having trouble with getting this program to do what I want. It reads in a file and identifies certain parts that follow the rules I've given. The first version below is one that works. It simply prints out the string if it meets the conditions in the if statements. The second one will compile but shows no data. I know it stores the values in the arrays sortstem and sortdg becuase I put the println statement directly after the code for storing them and it worked. However, when I put it where it is now, it will not work. Any suggestions? Also, I get an error after the program runs for both versions: It says exception in thread "main" Java.lang.NullPointerException at tokens.main(tokens.java.69) (this was for the first program).
    import java.io.*;
    import java.util.*;
    class tokens {
         public static void main(String args[]) throws IOException {
              int i;                                                       //int to read in the data from the text file
              int count = -1;
              int countt = -1;
              int countc = 0;                                                  //int to put data into a char array
              FileInputStream fin;                                             //input stream
              char array[] = new char[10000];                                        //array to hold chars from the text file
              String s;                                                  //chars are transfered to this String
              int index;                                                  //index of the names I'm searching for in the string
              String tokens[] = new String[10000];                    
              try {
                   fin = new FileInputStream(args[0]);
              } catch (FileNotFoundException e) {
                   System.out.println("File not Found");
                   return;
              } catch (ArrayIndexOutOfBoundsException e) {
                   System.out.println("Usage: ShowFile File");
                   return;
              do {
                   i = fin.read();
                   if (i != -1) {
                        if (count==array.length-1) {                              //this expands the array if more space is needed
                             char temp[] = new char[array.length+5000];
                             for (int j = 0; j < array.length; j++) temp[j] = array[j];
                             array = temp;
                             array[++count] = (char) i;
                        else
                             array[++count] = (char) i;                         
              } while(i != -1);
              fin.close();
              s = new String(array);
              StringTokenizer st = new StringTokenizer(s);                                                            
              while (st.hasMoreTokens()) {
                   if (countt==tokens.length-1) {                              //this expands the array if more space is needed
                             String temp1[] = new String[tokens.length+5000];
                             for (int j = 0; j < tokens.length; j++) temp1[j] = tokens[j];
                             tokens = temp1;
                             tokens[++countt] = st.nextToken();
                        else
                             tokens[++countt] = st.nextToken();     
              if (tokens[4].startsWith("stem")) {
                   if (tokens[4].equals(tokens[201])) {      //Skip this one
                   else
                        if ((tokens[9].equals("32")) && (tokens[15].equals("31"))
                        && (tokens[21].equals("30")) && (tokens[27].equals("29"))
                        && (tokens[33].equals("28")) && (tokens[39].equals("27"))) {
                             System.out.println(tokens[4]);
              for (int k = 201; k < tokens.length-198; k++) {
                   if (tokens[k].startsWith("stem")) {
                        if ((tokens[k].equals(tokens[k+197])) || (tokens[k].equals(tokens[k-197]))) {
                             //Skip this one
                        else
                             if ((tokens[k+5].equals("32")) && (tokens[k+11].equals("31"))
                             && (tokens[k+17].equals("30")) && (tokens[k+23].equals("29"))
                             && (tokens[k+29].equals("28")) && (tokens[k+35].equals("27"))) {
                                  System.out.println(tokens[k]);
    }This one below compiles but doesn't print to the screen.
    import java.io.*;
    import java.util.*;
    class tokenstest {
         public static void main(String args[]) throws IOException {
              int i;                                                       //int to read in the data from the text file
              int count = -1;
              int countt = -1;
              int countc = 0;                                                  //int to put data into a char array
              FileInputStream fin;                                             //input stream
              char array[] = new char[1000000];                                        //array to hold chars from the text file
              String s;                                                  //chars are transfered to this String
              int index;                                                  //index of the names I'm searching for in the string
              String tokens[] = new String[200000];
              String sortdg[] = new String[500];     
              String sortstem[] = new String[500];                         
              try {
                   fin = new FileInputStream(args[0]);
              } catch (FileNotFoundException e) {
                   System.out.println("File not Found");
                   return;
              } catch (ArrayIndexOutOfBoundsException e) {
                   System.out.println("Usage: ShowFile File");
                   return;
              do {
                   i = fin.read();
                   if (i != -1) {
                        if (count==array.length-1) {                              //this expands the array if more space is needed
                             char temp[] = new char[array.length+5000];
                             for (int j = 0; j < array.length; j++) temp[j] = array[j];
                             array = temp;
                             array[++count] = (char) i;
                        else
                             array[++count] = (char) i;                         
              } while(i != -1);
              fin.close();
              s = new String(array);
              StringTokenizer st = new StringTokenizer(s);                                                            
              while (st.hasMoreTokens()) {
                   if (countt==tokens.length-1) {                              //this expands the array if more space is needed
                             String temp1[] = new String[tokens.length+5000];
                             for (int j = 0; j < tokens.length; j++) temp1[j] = tokens[j];
                             tokens = temp1;
                             tokens[++countt] = st.nextToken();
                        else
                             tokens[++countt] = st.nextToken();     
              if (tokens[4].startsWith("stem")) {
                   if (tokens[4].equals(tokens[201])) {      //Skip this one
                   else
                        if ((tokens[9].equals("32")) && (tokens[15].equals("31"))
                        && (tokens[21].equals("30")) && (tokens[27].equals("29"))
                        && (tokens[33].equals("28")) && (tokens[39].equals("27"))) {
                             sortstem[countc] = tokens[4];
                             sortdg[countc] = tokens[3];
                             countc++;
              for (int k = 201; k < tokens.length-198; k++) {
                   if (tokens[k].startsWith("stem")) {
                        if ((tokens[k].equals(tokens[k+197])) || (tokens[k].equals(tokens[k-197]))) {
                             //Do nothing
                        else
                             if ((tokens[k+5].equals("32")) && (tokens[k+11].equals("31"))
                             && (tokens[k+17].equals("30")) && (tokens[k+23].equals("29"))
                             && (tokens[k+29].equals("28")) && (tokens[k+35].equals("27"))) {
                                  sortstem[countc] = tokens[k];
                                  sortdg[countc] = tokens[k-1];
                                  countc++;
              for (int z = 0; z < countc; z++) {
                   System.out.println(sortstem[z]);
              for (int z = 0; z < countc; z++) {
                   for (int y = z+1; y < countc; y++) {
                        if (sortdg[z].compareTo(sortdg[z]) > 0) {
                             String tdg = sortdg[z];
                             String tstem = sortstem[z];
                             sortdg[z] = sortdg[y];
                             sortstem[z] = sortstem[y];
                             sortdg[y] = tdg;
                             sortstem[y] = tstem;
              for (int j = 0; j < 20; j++) {
                   System.out.println(sortstem[j] + ": dG = " + sortdg[j]);
              System.out.println("Test");
    }

    I'm still having trouble with the println in this program. For some reason, in this section of the code, if I put System.out.println(sortstem[0]); inside the for loop, it works fine. But if I try to do it ouside of this loop, it will not work. The only thing I can think of is that the variable is only available inside the loop but I just can't figure it out. Can anyone enlighten me?
    for (int k = 201; k < tokens.length-198; k++) {
                   if (tokens[k].startsWith("stem")) {
                        if ((tokens[k].equals(tokens[k+197])) || (tokens[k].equals(tokens[k-197]))) {
                             //Do nothing
                        else
                             if ((tokens[k+5].equals("32")) && (tokens[k+11].equals("31"))
                             && (tokens[k+17].equals("30")) && (tokens[k+23].equals("29"))
                             && (tokens[k+29].equals("28")) && (tokens[k+35].equals("27"))) {
                                  sortstem[countc] = tokens[k];
                                  sortdg[countc] = tokens[k-1];
                                  countc++;
    [code/]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            

  • My iTunes won't open for some reason.

    So for some reason my iTunes will not openm, I've clicked the shortcut, gone to the location, opened as a dmin, and still nothing. I've re-installed it plenty times, and still nothing. I have no absolute idea what is wrong. Maybe it's Quicktime or mobileme, but someone please help. I run Windows 7 64bit.

    Try following steps one at a time:
    1. Check to see if this file APSDaemon.exe is the problem here.
    Close your iTunes.
    Press Ctrl-Alt-Del key and choose Task Manager. In the "Processes" Tab, select the file APSDaemon.exe and click End Prosses button, then close the task manager window.
    Now open itunes and see if it is working?
    If that works, to prevent having to do the same process everytime you restart Windows, go to. START button, type in
    MSCONFIG
    Hit ENTER
    Click STARTUP Tab, Uncheck "Apple Push", click OK.
    Restart Windows.
    2. If you don't see ApsDaemon.exe in the Processes, refer to following article to remove SC files:
    http://support.apple.com/kb/TS2363
    Then, repair your Quicktime. START / CONTROL PANEL / PROGRAMS N FEATURES / hightlight QUICKTIME and click REPAIR.

  • ITunes won't run for some reason... help me!!!

    I installed iTunes on my laptop in December 2005 (I got an iPod nano for Christmas). Recently, my laptop started making a funny clicking noise and, as the Best Buy guy said, "Your hard drive is shot." So, therefore, I have not been able to charge my iPod. I downloaded the updates for iPod on this desktop computer, but for some reason, iTunes wont show up. Do I have to download the software again? How do I get it working?? Please help me!!!
    eMachines   Windows 2000  

    for some reason, iTunes wont show up
    a few questions before proceeding.
    are you getting an error message? if so, what does it say? include error message numbers if you're getting any.
    or are you getting no error messages whatsoever when you try to launch itunes?
    if you're getting no error messages whatsoever, do you just see the wee hourglass for a few seconds, and then nothing? if so, do you also have Norton Internet Security 2005 installed on that PC?
    or are you seeing a brief "flash" of the itunes license screen (and then nothing)? if so, do you also see similar behavior when you try to launch your QuickTime?

  • Firefox crashes when im watching youtube... What should i do? i have a good connection, for some reason youtube doens't work in Firefox, because i tried on IE and it works there :S, Help Please

    This problem stared 2 days ago, and its not just me :S there's alot people with the same problem.

    Thanks for your response. There is no option to Add Security Exception (which there usually is from my past experience). All im trying to do is connect to Gmail, and so it already defaults to the https:// url, which then causes this issue.
    Im completely stumped on this one. Gmail is the only site that im having this problem with (my yahoo login pops right up) but its the one I need the most.
    Thanks.

  • My I pad won't charge for some reason

    My I pad won't charge I've plugged it into both wall and computer the battery symbol won't even come up it just stays blank and I no I didn't break it

    Which model? The original iPad?
    Have you tried another cable/connector? Another power adapter? Don't use the computer at all to charge it. That is the least effective way to charge the battery.
    Try resetting your iPad and see if that helps.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • I'm trying to download Mavericks. It appears in my launchpad with the progress bar underneath it. A tiny part has downloaded but the rest won't download for some reason. What is wrong?

    A fraction of the progress bar has filled up and won't go any further. What should I do? What is wrong with it? It is not my internet connection as I have downloaded three games off Steam today perfectly. I have also checked the specs and they're fine.

    Check the Purchases tab in the App Store. If it shows a Resume button, click on it. It should also show the progress there.

  • HT204135 My computer is connected to my Epson printer but for some reason it will not print, it has a wifi connection but is not connecting for some reason, what can I do to resolve this matter?.

    My printer is not connecting with my computer via Wi-Fi, want can I do to fix this problem?.

    Exactly what is going on with my Epson XP 810.  I will reset my modem and it will print one or two pages and then say "Searching for printer" and it will never find it unless I reset the modem.  Was working fine last week so I don't know what changed. 

  • I have one site in my browsing history that won't erase for some reason, and it's been crashing Firefox every time I try to erase it. I changed my security preferences to clear history before each session, and now I can't open Firefox at all. Help.

    The site in question was the homepage for Air BnB (http://www.airbnb.com/). It's never given me problems before, and didn't even after this particular instance. I would like to continue using Firefox, but it ill no longer open, I'm assuming because it gets stuck trying to clear the history (as per my changed preferences).
    Is there a way to uninstall the program without losing my bookmarks?
    Is there a way to manually clear this problem with my history outside the program?

    Have you looked for the previous render files? Show contents of your library and see if there are any files in the Render folder from last night.

  • Tunes won't sync for some reason

    I have been using the same Itunes library as my sister to download songs to my iphone. It worked when I first bought the phone- the songs from the library all managed to sync to my iphone no problem. I have since added a few albums of my own to the library, and when I put the cd in the computer it asks me if I want to import, which I do. The problem comes when I click to sync my iphone, the following comes along the top 'Syncing Martin's Phone --> Syncing Contacts --> Syncing Bookmarks --> Syncing Mail Accounts', but it does not sync the tunes from my library to my iphone. I've been on a few techy forums but can't seem to get anywhere. Anyone any ideas?

    Page 134 of the iphone manual addresses syncing problems:
    http://manuals.info.apple.com/enUS/iPhone_UserGuide.pdf

  • HT5085 Hey. Using iPhone 6 with an israeli account at Thailand. For some reason iTunes radio is not working. Please help

    ios 7
    i live in Thailand
    the he radio is not loading anything.
    Thanks a lot

    If you are in Thailand then you cannot use the Israeli store, you have to be in a country to use its store.
    From the page that you posted from :
    iTunes Radio is currently available in the United States and Australia.

  • For some reason I cannot access my account, and I get an error message saying it is disabled, can anyone help me?

    My account is currently disabled for some reason and I don't know why or how to fix it, please help. Thank you

    If changing your password does ot solve it, then contact itunes support.

Maybe you are looking for

  • IPhone 5 won't back up

    I have an iPhone 5, model A1429. Every few days I get a warning that states "iPhone not backed up. This iPhone hasn't been backed up. Backups happen when this iPhone is plugged in, locked, and connected to Wi-Fi." This warning has been happening sinc

  • HOWTO: Expose Entity Object Methods to Clients

    By design, clients cannot directly access entity objects. The view object layer provides an extra layer of security--you can choose exactly what data and methods you want clients to see. This HOWTO describes the process of exposing an entity object m

  • August 08 imac. Mighty Mouse wont scroll down.

    Hey, I have August 2008 iMac and since about Febuary the mighty mouse will not scroll down. I havent been using it much (Had major pc problems... Been working on my pc alot.) and am moving it to somewhere where it will get used more. How can I get th

  • OT: New Audio Editor: Fission

    I'm happy with Peak, but I must admit there are a couple of interesting features in this new editor. Lossless Audio Edits - Edit With No Quality Loss With Fission, you can edit MP3 and AAC encoded files without re-encoding them. This means you can tr

  • ITunes corrupting music?

    I've been using iTunes for a long time now, but am just so fed up with it and have naturally moved on to Enqueue. However, it still affects me because the other music software takes the files from the iTunes folder, and my iPhone still has to sync, s