Cannot use instant messenger in Yahoo Mail anymore and don't know why

when I go into my Yahoo Mail, I cannot use instant messenger. If I click on someone on line nothing happens at all. I have been told to delete and reload this program (IM) but have tried repeatedly and cannot find it anywhere. Also tried contacting someone on facebook and got no response so I assume it's not working on the chat feature either

Known issue, our QA team working on it, See
* https://bugzilla.mozilla.org/show_bug.cgi?id=713014
you can follow the bug by opening bugzilla account and add to CC list :)

Similar Messages

  • On certain websites, I cannot use instant messenger. It comes up as a "connection error". If I use IE8, I do not have this problem... I have the latest Java and Adobe Flash player downloads... what gives?

    When attempting to use an instant messenger on certain websites, I keep getting a "connection error" message.... The IM pops up, it appears to start loading then I get the "connection error".

    Mark Leary:
    As TXGuy posted above:
    See:
    https://support.mozilla.com/en-US/kb/Unexpected+installation+error+-203+when+installing+add-ons
    http://kb.mozillazine.org/Unable_to_install_themes_or_extensions_-_Firefox#Unexpected_installation_error_-203
    Also see:
    http://support.mozilla.com/en-US/kb/Profiles#How_to_find_your_profile
    http://kb.mozillazine.org/Show_hidden_files_and_folders

  • I lost my HOME and REFRESH buttons and don't know why. Since I can't have them anymore please tell me in detail how I get rid of Mozilla Foxfire and let me know what all I'm going to lose in the process. Thanks, Neil

    I have used Mozilla Firefox for almost a year and it was good. Now I make on stupid mistake by upgrading to the new version and I lose my Home button, Refresh button and I don't know how many other buttons.
    Since I can't have WHAT I USED TO HAVE please explain in detail how I rid of Mozilla Firefox and what I'm all going to lose in the process.

    The home icon by default has moved to the right hand side of the navigation toolbar.
    In Firefox 4 by default the Stop, Go and Reload (Refresh) buttons are combined and attached to the right hand edge of the location bar.
    When you are typing in the location bar it will show the Go button. When a site is loading it shows the Stop button. At other times it shows the Reload button.
    If you want separate buttons stop/go/reload buttons, or want to move the home button, right-click on a toolbar and choose Customize, you can then drag and drop the buttons and place them elsewhere. If you place them in the order "Reload-Stop" on the right hand edge of the location bar they will be combined again. For more details on customizing the toolbar see https://support.mozilla.com/kb/How+to+customize+the+toolbar

  • Cannot bring program window into main screen... don't know why?!?!?

    hi all... any help would be greatly appreciated on the below:
    I am using a music program (torq by m-audio) and did not have any problems with it. Last night, when I tried to open the application, it is bouncing in the dock when it is loading. after it loads, the program name is showing on the top left corner of the screen. However, the actual program window/browser was not showing up. I thought there was an issue with the program so I restarted computer several times, and also reinstalled program several times, to no avail. After hitting some random buttons, I had hit F9 to bring up all windows running in the background AND I COULD SEE THE PROGRAM RUNNING. However, when I try clicking on it, it slides to the right of the screen and disappears. Can someone help me out as I cannot seem to figure out what the problem is... I have also tried changing the screen resolution and for it to detect displays in case it somehow thought i had another monitor hooked up. Its driving me nuts!!! Thanks in advance!

    It sounds like you might have had Spaces enabled and the program got assigned to a particular Space.
    I've seen problems reported by people who turn off Spaces so that they can't see the extra desktops, but a program still launches to the "unseen" desktop.
    If this is the case, you could turn Spaces back on to see if you can see your application on one of the desktops. If so, change the Spaces preferences for the program to make it only come up on desktop #1, then remove the program from the Spaces list of programs, then turn off Spaces again.

  • Problem with uploading files to SharePoint 2013 in cloud using web services. Keep getting error message and don't know why.

    Hello everyone. I am having trouble writing a utility that uses SharePoint web services to upload a file and metatag it. It keeps throwing the following error message:
    "The request failed with the error message: -- <html><head><title>Object moved</title></head><body> <h2>Object moved to <a href="/_forms/default.aspx?ReturnUrl=%2fsites%2fgk%2f_vti_bin%2fcopy.asmx">here</a>.</h2>
    </body></html> --."
    Not sure why. I pass the file that I am going to upload to the subroutine and it is suppose to upload it to the appropriate library. I have burned several days on this problem and I am not sure what is going on. I would appreciate anyone that can point me in
    the right direction. Below is the subroutine that I have that is causing the problem. Obviously, I have stripped the name from the example.
    Thanks
    Mike
    ******** <Begin snip of code> **********************
    Public Shared Sub CreateNewDocumentWithCopyService(ByVal fileName As String)
    Dim c As New copyservice.Copy
    c.PreAuthenticate = True
    c.Credentials = New System.Net.NetworkCredential("[email protected]", "mypassword")
    c.Url = "https://x.sharepoint.com/sites/gk/_vti_bin/copy.asmx"
    Dim myBinary As Byte() = System.IO.File.ReadAllBytes(fileName)
    Dim destination As String = "https://x.sharepoint.com/sites/gk/Gatekeeper%20Reference/" & System.IO.Path.GetFileName(fileName)
    Dim destinationUrl As String() = {destination}
    Dim info1 As New copyservice.FieldInformation
    info1.DisplayName = "Title"
    info1.InternalName = "Title"
    info1.Type = copyservice.FieldType.Text
    info1.Value = "new title"
    Dim info2 As New copyservice.FieldInformation
    info2.DisplayName = "Modified By"
    info2.InternalName = "Editor"
    info2.Type = copyservice.FieldType.User
    info2.Value = "-1;#servername\\testmoss"
    Dim info As copyservice.FieldInformation() = {info1, info2}
    Dim resultTest As New copyservice.CopyResult
    Dim result As copyservice.CopyResult() = {resultTest}
    Try
    ' When creating new content use the same URL in the SourceURI as in the Destination URL argument
    c.CopyIntoItems(destination, destinationUrl, info, myBinary, result)
    Catch ex As Exception
    MsgBox(ex.Message)
    End Try
    End Sub
    ******** <End snip of code> **********************

    Hi,
    If you want to upload a file to a library in SharePoint 2013 online, I suggest you use Client Object Model or REST API.
    The code snippets in the two threads below will be helpful:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/deac7cb7-c677-47b0-acdc-c56b32dfaac8/uploading-bigger-files-using-csom
    http://stackoverflow.com/questions/17057074/how-to-download-upload-files-from-to-sharepoint-2013-using-csom
    Uploading Files Using the REST API
    http://blogs.msdn.com/b/uksharepoint/archive/2013/04/20/uploading-files-using-the-rest-api-and-client-side-techniques.aspx
    You can handle the authentication with
    SharePointOnlineCredentials object:
    http://www.vrdmn.com/2013/01/authenticating-net-client-object-model.html
    Best regards
    Patrick Liang
    TechNet Community Support

  • HT6117 Hi I want to attach word documents to yahoo mail app  and some job portals using iPad  I don't know how to attach it can u ppl help

    Hi I want to attach word documents to yahoo mail app  and some job portals using iPad  I don't know how to attach it can u ppl help me thru this issue

    would I be able to "upload" (not sure how else to say it) my existing folders and subfolders containing all my emails so that they are all available on my new IMAP service, while still being available on my Mac?
    Not easily, no. There's no direct transfer option between POP and IMAP, especially across email providers. The best you could do would be to forward all of your emails to your new address, although it's not clear that you need to - dropping your sbcglobal.net account doesn't instantly render all your existing mail void - it'll still be in your Mail client, you can still read it, search it, etc., it just won't be on your provider's server.
    I have toyed with the idea of getting a MobileMe account. Would that solve my issue/question above?
    MobileMe would be viable, especially if you're interested in synching your various iOS devices. It's not free, of course, unlike Yahoo and Gmail, although you've already discounted them...
    I have also toyed with purchasing my own URL, but it's hard to tell from the sites (1and1, Namecheap, etc.) if they come with IMAP email accounts included.
    Some registrars offer email hosting bundles with a domain registration. This could be a good way to go. GoDaddy, for example, have a email hosting option for domains you register with them.

  • I have just recently brought the blackberry curve 8310 and i am not able to access the internet, MSN etc. I rang my phone company(Crazy Johns) and they saif i cannot use the internet on this phone because they don't sell it anymore and i need a setting fo

    I have just recently brought the blackberry curve 8310 and i am not able to access the internet, MSN etc.
    I rang my phone company(Crazy Johns) and they saif i cannot use the internet on this phone because they don't sell it anymore and i need a setting for it to work.
    Can you please help me with this?
    Thanks Matthew.

    Hello,
    The services you listed in your post will require a data plan which is provisioned by your wireless provider. You may want to contact your wireless provider to see if you have the correct plan.
    Cheers,
    -FB
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click "Accept as a Solution" for posts that have solved your issue(s)!

  • Can't attach documents to yahoo mail anymore

    hey, everyone. i used to be able to attach files to my yahoo email by clicking attach file and choosing the file (whether it's a photo, pages doc, numbers file, etc).
    now, for some reason, when i choose attach file from the yahoo mail page and the finder window pops up, all of my pages and numbers documents can't be chosen. they're in a light gray color and i can't click on them. i have no idea what could've caused this. i did search around the forums and ran disk utility and repaired disk permissions but that didn't do a thing.
    i'd appreciate any advice y'all could give me.

    fyi, so i call apple care support and find out that this is a normal security feature of leopard. they told me that it's designed to help keep mac users from passing on a virus to others via email. just hit file, compress to create a zip version of the file and then attach the zip file.

  • Can't use "Insert addresses" in Yahoo mail.

    I can't use "Insert addresses" in Yahoo mail using Firefox. Nothing happens at all when I click on it. However, I can using Internet Explorer and it also works in Linux so it must be a problem with Firefox only! I have rebooted many times and even started up in "Debugging Mode". No luck so far with anything. Help PLEASE!

    Yahoo may want to make their site work with Firefox. Please contact Yahoo for further assistance. Or check your plug-ins.
    Please check if all your plugins are up-to-date. To do this, go to the [http://mozilla.com/plugincheck Mozilla Plugin Check site].
    Once you're there, the site will check if all your plugins have the latest versions.
    If you see plugins in the list that have a yellow ''Update'' button or a red ''Update now'' button, please update these immediately.
    To do so, please click each red or yellow button. Then you should see a site that allows you to download the latest version. Double-click the downloaded file to start the installation and follow the steps mentioned in the installation procedure.

  • I can't send emails through Yahoo using Firefox. Already contacted Yahoo and they don't know why it's happening.

    I can't send emails through Yahoo using Firefox. Already contacted Yahoo and they don't know why it's happening.
    == This happened ==
    Every time Firefox opened
    == a month agao

    I also cannot send email through Yahoo using Firefox 3.6.8. I can receive emails and surf the web just fine. I have also contacted Yahoo and have gotten no where.

  • "This message cannot be sent at this time."  I have been getting this pop-up for 3 days when trying to send out mail.  I don't know what to do!  I cannot send mail from this account on any ISP. Please help!

    "This message cannot be sent at this time."  I have been getting this pop-up for 3 days when trying to send out mail.  I don't know what to do!  I cannot send mail from this account on any ISP. Please help!

    lots of people seem to be havgin a problem sending email from iCloud webmail.
    does your email address have uppercase characters in it?
    if so, try creating an alias in lowercase (go to preferences in iCloud webmail and select 'accounts') and see if email sends okay from that

  • I'm not receiving e-mail on my "New" iPad, and I want tdeleted my yahoo mail account and reinstall it.  When I go to settings to delete the account, it says I will lose everything in notes, calendars, reminders, etc.  Can I delete ONLY the e-mail account?

    I'm not receiving e-mail on my iPad (3).  I want to try deleting my yahoo mail account and reinstalling it, but when I go to settings to do this, it appears that I will lose my notes, calendars, reminders, etc.  Is this right, or is there another way to do this?

    Give it time. Yahoo has had persistent issues the past few weeks. wait 24 hours or so and then try again.

  • My mac mail will not search mail anymore and doesn't load attachments anymore

    Does anyone know why this would be happening?
    My mac mail will not search mail anymore and doesn't load attachments most of the time.  When I enter some text in the search box no results come up and I know there are messages that contain the phrase that I've entered.
    Also about 3 weeks ago attachments only get loaded about 1/4 of the way - if that.  So I have to log onto my web based mail program from the host and retrieve attachements or check the messgae with my iphone.
    Please - does anyone know how to fix this?

    I figureed out that spotlight was turned off via terminal -  I shut it off to unmount a disk (which didn't work anyways)
    sudo mdutil -a -i on
    that's the termianl command to turn spotlight back on.  As far as my attachments not fully loading in mac mail on my iMac that still baffles me.

  • I cannot use the type tool in Photoshop CC it goes black. Why?

    I cannot use the type tool in Photoshop CC it goes black. Why?

    What goes black?
    What OS version are you using?
    And have you updated your video card drivers from the GPU maker's website? (bugs in video drivers being the most common cause of display issues)

  • I want to use an old iphone as an itouch and don't have the sim card anymore and I just updated to the new software

    I want to use an old iphone as an itouch and don't have the sim card anymore (cut it to fit into 4G) and I just updated to the new software.... How do I reload the phone with apps and music?

    You'll need to get a SIM card. It can be an old one.

Maybe you are looking for

  • Error in BAM active studioOnly an adminstrator can impersonate another user

    Hi I have installed Oracle BAM on XP and tried to create a simple report using BAM Active studio. I have selected an object from sample folder ('Employees') and selected a simple report layout.I have done all the necessory steps mentioned in Develope

  • Can't uninstall quicktime

    I recently got a nano for christmas and it said I needed the newest version of itunes in order to use my nano. When I tried to download itunes an error message popped up saying the older version of quicktime cannot be uninstalled. Please contact your

  • Can't replace a stale dependency in a LV project with correct dependency​?

    I have a LV project which contains a VI called "Main_Panel.vi".  there is a typedef which it is depends on (let's call it typedefAversion1).  I had to move the file which defines typedefAversion1 to another location in the file system.  Let's call th

  • New Book on SAP BW Performance Tuning

    Hi All, Just thought of sharing this info on SDN... A new book on SAP BW Performance Tuning is available... http://www.erpguides.com/books/bwperformance.htm Shreekant W Shiralkar & Bharat Patel have authored a book on SAP BW Performance Tuning. The b

  • Sum of the column

    HI All    This is krishna, I created one user defined field in existing matrix. I want total sum of the column for that field.  per suppose, i entered four rows.. when i click the the fifth row of that column, it will be shows, total four coumns resu