My email keeps signing out whats wrong with my email.

Whenever i do something my macbook freezes and the wheel of death appears. Whats wrong with my computer.

Same thing here. Must be update related. Who knows. Tried to go into ventrilo today and nada. Can hear people fine, microphone not picking. In my devices it says my Anvex Virtual Audio is "not available", same with the "IDT High Definition Audio Codec. Now I'm starting to get a little agitated. No diagnostics have come back with a ping on the issue. All settings seem fine. I HAVE AUDIO, as in my speakers are working so **bleep**.
 I'm lost. No clue how to fix it. Guess I'm no longer raiding and that if this isn't working I'm going to go buy a Dell and rage beat this piece of **bleep** in the yard. That's right. I am taking 3 years of continual frustration out with HP errors, Vista complications and overall disatisfaction.
 If you can fix this problem I will offer you pictures of fluffy kittens and circus acrobats/contortionists. Now fix my ventrilo. lol

Similar Messages

  • When i sign in it says i sign out whats wrong

    when i sign in it says i sign out whats wrong

    Hi johnny valdez,
    Please refer to the help document to fix the issue:
    You are no longer signed into your Creative Cloud applications
    You may also refer to the threads below where this issue has been addressed:
    1. "You've been signed out" error every time I try to sign into Creative Cloud desktop application.
    2. You've been signed out
    Regards,
    Sheena

  • My sound is fine but my mic isnt working. how do i fix or figure out whats wrong with it

    Title says it. I just did a clean wipe on my computer and now my mic isnt working on vent or skype, i dont know what is wrong with it.  When i go to my sound hardware it says my external mic, IDT high def audio codec is enabled..

    Same thing here. Must be update related. Who knows. Tried to go into ventrilo today and nada. Can hear people fine, microphone not picking. In my devices it says my Anvex Virtual Audio is "not available", same with the "IDT High Definition Audio Codec. Now I'm starting to get a little agitated. No diagnostics have come back with a ping on the issue. All settings seem fine. I HAVE AUDIO, as in my speakers are working so **bleep**.
     I'm lost. No clue how to fix it. Guess I'm no longer raiding and that if this isn't working I'm going to go buy a Dell and rage beat this piece of **bleep** in the yard. That's right. I am taking 3 years of continual frustration out with HP errors, Vista complications and overall disatisfaction.
     If you can fix this problem I will offer you pictures of fluffy kittens and circus acrobats/contortionists. Now fix my ventrilo. lol

  • Can't figure out whats wrong with this IF statement

    Hey.
    I must be tired cause I just can't figure out why this IF statement doesn't work. It's probably something silly but please help me get it right. The user is prompted with a form (textfield) and I'm gonna check if its the right password (this is not the reason im doing this but it works good for this example).
    if(displayable == form){
              String correctPassword = "abcd";
              System.out.println("Input: " + textfield.getString());
              System.out.println("Correct: " + correctPassword);
              if(textfield.getString() == correctPassword) {
                   System.out.println("Password is correct");
                   Display.getDisplay(this).setCurrent(mList);
              else {
                   System.out.println("Wrong password");
                   destroyApp(true);
                   notifyDestroyed();
    }Even though i enter the correct password, it still thinks it is incorrect. This is how the WTK compiler outputs the above statement.
    Input: abcd
    Correct: abcd
    Wrong passwordObviously the passwords DO match, so what am I doing wrong?

    The == comparison operator returns true for equal primitives OR for variable references to the same object.
    Classes (usually) override the .equals (Object obj) method inherited from Object to return true when objects of the class are essentially equivalent.
    Run this java code segment and try to understand the output.String aStr = "A string";
    String bStr = aStr;
    if (aStr == bStr) System.out.println ("== true");
    else System.out.println("== false");
    if (aStr.equals (bStr)) System.out.println (".equals true");
    else System.out.println(".equals false");
    System.out.println();
    bStr = new String ("A string");
    if (aStr == bStr) System.out.println ("== true");
    else System.out.println("== false");
    if (aStr.equals (bStr)) System.out.println (".equals true");
    else System.out.println(".equals false");
    System.out.println();
    bStr = new String ("Some String");
    if (aStr == bStr) System.out.println ("== true");
    else System.out.println("== false");
    if (aStr.equals (bStr)) System.out.println (".equals true");
    else System.out.println(".equals false");Ask again if it's not clear enough. But first, read the API for Object.equals (Object obj) to understand the contract of .equals (...)
    db

  • Cant figure out whats wrong with my applet, help pls??

    this applet checks a string against one in a database then if passwords match, a new url is opened. the applet loads in webpage with no problems. it just doesnt seem to work. have granted full access to code base in policy file.
    heres the code:
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import java.applet.*;
    import java.sql.*;
    import java.net.*;
    public class LoginApplet extends Applet implements ActionListener
        Panel top;
        Panel bottom;
        TextField nameField;
        TextField passField;
        Label userNameLabel;
        Label passwordLabel;
        Button loginButton;
        public void init()
            setSize(230,200);
            setBackground(Color.white);
            // Create panels, labels, and text fields
            top                = new Panel(new FlowLayout(FlowLayout.LEFT));
            bottom                = new Panel(new FlowLayout(FlowLayout.LEFT));
            nameField           = new TextField(15);
            passField           = new TextField(15);
            userNameLabel      = new Label("User Name:", Label.LEFT);
            passwordLabel      = new Label("Password:   ", Label.LEFT);
            loginButton          = new Button("Login:");
            loginButton.addActionListener(this);
            // Mask the input so that people looking over your shoulder
            // won't be able to see the password
            passField.setEchoChar('*');
            // Add items to their panels
            top.add(userNameLabel);
            top.add(nameField);
            top.add(passwordLabel);
            top.add(passField);
            bottom.add(loginButton);
            // Set the applet layout
            setLayout(new GridLayout(3,3));
            // Add the panels to the applet (skip this
            // part and you won't see the panels on screen)
            add(top);
            add(bottom);
        public void actionPerformed(ActionEvent e)
                   String name      = nameField.getText();
                   String pass      = passField.getText();
                   try
                        Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                        // set this to a MS Access DB
                        String filename = "e:/iain/College/Y4/SWP/Program/website/database/loginDetails.mdb";
                        String database = "jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ=";
                        database+= filename.trim() + ";DriverID=22;READONLY=true}"; // add on to the end
                        // now we can get the connection from the DriverManager
                        Connection con = DriverManager.getConnection( database ,"","");
                        Statement s = con.createStatement();
                        s.execute(" SELECT [password] FROM logindetails WHERE [username] = '" + name + "' "); // select the data from the table
                        ResultSet rs = s.getResultSet(); // get any ResultSet that came from our query
                        if (rs != null) // if rs == null, then there is no ResultSet to view
                             while ( rs.next() ) // this will step through our data row-by-row
                                  String passtmp = "";
                                  passtmp = passtmp + rs.getString(1);
                                  if(passtmp.equals(pass))
                                       String url = "E:/iain/College/Y4/SWP/Program/website";
                                       Runtime rt = Runtime.getRuntime();
                                       String[] callAndArgs = {"\"C:\\Program Files\\Internet Explorer\\iexplore.exe\"", url };
                                       try
                                            Process child = rt.exec(callAndArgs);
                                            nameField.setText("");
                                            passField.setText("");
                                       catch (Exception eee)
                                            eee.printStackTrace(System.err);
                                  else
                                       System.out.println("Invalid Password " +name);
                                  s.close(); // close the Statement to let the database know we're done with it
                                 con.close(); // close the Connection to let the database know we're done with it
                   catch (Exception ee)
                        System.out.println("Error: " + ee);
    }

    this is the initial error, when applet is run:
    java.security.policy: error adding Entry:
    java.net.MalformedURLException: unknown
    unknown protocol: eI don't know where that's from that code, but e isn't a protocol. If it's a file, you should append "file:///" to the full path.
    then when trying to read from db:
    Error: java.security.AccessControlException: access
    denied (java.lang.RuntimePer
    mission accessClassInPackage.sun.jdbc.odbc)
    didnt think of running it through applet viewer.
    the whole thing will be running on the same server
    using IIS over a LANYou don't connect to a local file system thru an applet without a signed applet. Period.

  • I cant figure out whats wrong with my flash player

    I am trying to watch a tv show on cwtv.com...it is not working. it starts off showing me the logo and the cw song but when it is time for the show to play it will  not play..I have a windows 8
    Verify if Flash Player is installed
    If you see clouds moving in the animation below, congratulations, you have successfully installed Flash Player!
    I can see the clouds moving, so I know it is installed right

    "Green screen"
    99.9% of the time.. corrupted video drivers are the cause.
    Update them from the manufacturer, NOT Windows Update.
    Installed video drivers may not always support the functionality of the latest Flash Player.  If Flash Player does not function correctly, updating the video drivers to the latest available version is one of the first steps to try.  Below are instructions how to update the video drivers on Windows systems.
    identify the manufacturer and type of your video card
    open Device Manager: Start | Run | enter devmgmt.msc
    open the Display Adapters drop-down; this will show you the installed video card:
    identify the device driver version
    right-click on your display adapter entry and select Properties
    click on the Driver tab; this will show you the driver version and date:
    go to the device manufacturer's support site and download the latest driver
    NVIDIA cards: NVIDIA driver download page, or auto-detect
    ATI cards: ATI driver download page, or auto-detect
    Intel cards: Intel driver download page, or auto-detect
    Matrox cards: Matrox driver download page
    VIA cards: VIA Arena driver download page (redirects to 3rd-party download site)
    SiS cards: SiS driver download page, or auto-detect
    S3 cards: S3 driver download page, or auto-detect (option 2 on the download page)
    follow the instructions on the manufacturer's support site
    Note: some of the auto-detect utilities linked above will only run on Internet Explorer.

  • HT204053 I put my husbands apple id in when i started to set up icloud, but i really want to use my own.  Now i'm stuck at the point where I'm supposed to tell it what to link and I don't want to link anything, just sign out and restart with my own.  How

    I put my husband's apple id in when I started to set up icloud in error.  I realized I needed to change this right away and tried to sign out and restart with my own apple id, but it won't let me sign out in the middle of setting up.  It says something about if I don't sync documents, all documents will be deleted from this computer, but I don't want to download all his work documents.  Is there any way for me to start over and fix this?

    Having signed out as suggested above, go to http://appleid.apple.com and create a new Apple ID if you don't already have one. You will need a working email address which is different from that in the ID already in use.
    The set up your Mac/device(s) as indicated here:
    http://www.apple.com/icloud/setup/

  • My Macbook air keeps getting a message saying that the startup disk is full. I don't have picture, music, or movies on it. Im not sure whats wrong with it.

    My Macbook air keeps getting a message saying that the startup disk is full. I don't have picture, music, or movies on it. Im not sure whats wrong with it.

    The first step is to check and see how much space really is there.  From the desktop right click on the drive in the upper right corner (at least it's there by default) and select "Get Info" to see how much space it reports as free.
    It's not just media files that eat up disk space, though they are often a major contributor.  Do you happen to be running one of the virtual machine programs (Parallels or VMWare Fusion)?  When you create a guest drive there you normally have a fairly decent amount of disk space dedicated to it and that can fill the drive.
    As well, a quick fix that may buy you some time is to empty the trash if you've not done so recently.  Click on the trash folder in your dock and then in the window that comes up select the option to empty the trash.
    If you can free up some space, there are programs that will help you find what files and directories are using disk space.  I've used Space Gremlin (in the App store) for that sort of thing, though there others.  If you run that sort of utlity you'll get some idea about what is really eating up the drive space.

  • My imac screen works fine but it keeps flikering and freezing whats wrong with it

    my imac screen works fine but it keeps flikering and freezing whats wrong with it? theres no crack or problem with it it just freeze's ande flikers

    It sounds as if your graphics chip (on the logic board) is failing.  The other answer could be that your screen is not well, but I lean more towards the graphics chip.  If you have Apple care or are still under warranty, call Apple.

  • CAN ANYBODY TELL ME WHAT WRONG WITH THIS RSS FEED IT WONT WORK

    CAN ANYBONE TELL ME WHATS WRONG WITH THIS FEED BECAUSE IT WONT WORK AND ALSO HOW DO I GET A LINK TO THE PODCAST RSS FEED FOR THE SUBMIT PODCAST PAGE ON ITUNES,
    ANY HELP WILL BE MUCH APRECIATED
    <?xml version="1.0" encoding="UTF-8"?>
    <rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
    <channel>
    <title>DJ Hybrid Coventry Drum n Bass Podcast</title>
    <link>http://www.djhybridcoventry.com/podcast.htm</link>
    <language>en-us</language>
    <copyright>℗ & © 2007 DJ Hybridb& </copyright>
    <itunes:subtitle>DJ Hybrid Drum n Bass Podcast brings you all the latest and greatest from the Drum n Bass scene, updated every two weeks</itunes:subtitle>
    <itunes:author>DJ Hybrid</itunes:author>
    <itunes:summary>The DJ Hybrid Coventry Drum n Bass Podcast will showcase a selection of the latest and greatest tunes that are getting rinsed on the scene, mixed down with sharp cuts and nasty double drops by Dj Hybrid the podcast will also feature other DJ's and Mc's on different shows. Updated every two weeks this is guarenteed to be an original style of drum n bass mashup, for more info check www.djhybridcoventry.com</itunes:summary>
    <description>DJ Hybrid Drum n Bass Podcast brings you all the latest and greatest from the Drum n Bass scene, updated every two weeks</description>
    <itunes:owner>
    <itunes:name>DJ Hybrid</itunes:name>
    <itunes:email>[email protected]</itunes:email>
    </itunes:owner>
    <itunes:image href="http://i100.photobucket.com/albums/m8/djhybrid/PODCASTLOGOBLUE.jpg" />
    <itunes:category text="Music">
    <itunes:category text="Drum n Bass"/>
    </itunes:category>
    <itunes:category text="music"/>
    <item>
    <title>DJ Hybrid Podcast - 1st Show 03/6/07</title>
    <itunes:author>DJ Hybrid</itunes:author>
    <itunes:subtitle>The first show of the new drum n bass podcast from DJ Hybrid</itunes:subtitle>
    <itunes:summary>Welcome to the 1st show from DJ Hybrid because its the first show im goin to play what tunes i think represent me as a DJ aswell as my favourite drum n bass tunes at the moment for tracklistings check www.djhybridcoventry.com</itunes:summary>
    <enclosure url="http://fs06n5.sendspace.com/dl/603942da730253766c5157920e810d3e/46771dd931 3f824d/v3adp4/DJ%20Hybrid%20Podcast%201%20%20-%20%203rd%20June%202007.mp3" length="8727310" type="audio/x-m4a" />
    <guid>http://fs06n5.sendspace.com/dl/603942da730253766c5157920e810d3e/46771dd9313f824d /v3adp4/DJ%20Hybrid%20Podcast%201%20%20-%20%203rd%20June%202007.mp3</guid>
    <pubDate>Sun, 03 Jun 2007 20:00:00 GMT</pubDate>
    <itunes:duration>53:36</itunes:duration>
    <itunes:keywords>DJ, Hybrid, Podcast, Drum, Bass, Jungle, Coventry, Double Drop, Latest, Tunes, Vinyl, Liquid, Rave, Reggae, Urban</itunes:keywords>
    </item>
    </channel>
    </rss>

    First...Stop screaming. It's rude.
    Next...there are some minor problems with your feed. "Drum n Bass" is not a iTunes category. Stick with <itunes:category text="Music" /> remove the others.
    Not required, but recommend to add an <itunes:explicit> tag with a Y or N depending on what suits your podcast. The iTunes staff will remove your feed if it isn't tagged properly.
    MP3 audio files should have a type="audio/mpeg".
    Keep the Podcast spec handy...the categories and other info listed in the spec.
    Test your feed with http://www.feedvalidator.org it will point out problems with your feed.
    The bigger problems stem from your podcast enclosure, specifically the URL.
    The URL you have listed to the podcast mp3 apparently has changed so iTunes can't download the file. It also appears that you are using a "free download" kind of service that uses web page based downloads, which might account for why the URL keeps changing. Don't think that iTunes will be able to properly download the file.
    Erik

  • My lap top is extremly slow. It studders. It kind of sounds like there is a fan inside and it constantly stopping and starting. And, it takes a really long time for it too start up. Whats wrong with it?

    My lap top is extremly slow. It studders. It kind of sounds like there is a fan inside and it constantly stopping and starting. And, it takes a really long time for it too start up. Whats wrong with it?

    Do you have current backups?
    Those symptoms could indicate a failing Hard drive. If it dies, all your documents go with it unless you have Backups.
    I have had very good luck with physical and battery problem diagnosis at the Genius Bar. Those guys put their hands (and their ears) to these machines, all day every day, and they know immediately what all those sounds mean.
    Your appointment for an evaluation is FREE, in warranty or out.

  • EBay keeps signing out from MBP

    Hi all
    I don't know whether this is everybody's problem or just mine but my eBay account keeps signing out by itself. It does this constantly, i signed in to my ebay account and after browsing some stuffs just it signed out automatically. I didn't press sign out button, all the item. Can you guys please help me? Thx a lot.

    hey,
    that's not your macbook's fault ...it's safari. use firefox instead and you should be fine. i had the same issue plus i couldn't upload pictures. with firefox everything worked out.

  • I just got a ipod nano 6th gen, and ive been using it for 2 days, and it seems that the battery just lasts about half a day, on playing 1 to 3 songs in intervals of 1-2 hours. Whats wrong with my ipod?

    I just got a ipod nano 6th gen, and ive been using it for 2 days, and it seems that the battery just lasts about half a day, on playing 1 to 3 songs in intervals of 1-2 hours. Whats wrong with my ipod?

    Your nano would really have nothing to do with it at that point. It is really something between iTunes and whatever server out there on the internet that it is trying to connect to for the update.
    Try posting this one in the iTunes forum, they might have a solution for you.
    i

  • I recently bought a macbook pro retina and while I'm using it a yellow triangle pops up then disappears. I don't know what it says. How do I find out whats wrong?

    I recently bought a macbook pro retina and while I'm using it a yellow triangle pops up then disappears. I don't know what it says. How do I find out whats wrong?

    Oh, by all means. Uninstall it using its uninstaller if you have one. Do not install any anti-malware software as it's unneeded with OS X Lion or Mountain Lion.
    Uninstalling Software: The Basics
    Most OS X applications are completely self-contained "packages" that can be uninstalled by simply dragging the application to the Trash.  Applications may create preference files that are stored in the /Home/Library/Preferences/ folder.  Although they do nothing once you delete the associated application, they do take up some disk space.  If you want you can look for them in the above location and delete them, too.
    Some applications may install an uninstaller program that can be used to remove the application.  In some cases the uninstaller may be part of the application's installer, and is invoked by clicking on a Customize button that will appear during the install process.
    Some applications may install components in the /Home/Library/Applications Support/ folder.  You can also check there to see if the application has created a folder.  You can also delete the folder that's in the Applications Support folder.  Again, they don't do anything but take up disk space once the application is trashed.
    Some applications may install a startupitem or a Log In item.  Startupitems are usually installed in the /Library/StartupItems/ folder and less often in the /Home/Library/StartupItems/ folder.  Log In Items are set in the Accounts preferences.  Open System Preferences, click on the Accounts icon, then click on the LogIn Items tab.  Locate the item in the list for the application you want to remove and click on the "-" button to delete it from the list.
    Some software use startup daemons or agents that are a new feature of the OS.  Look for them in /Library/LaunchAgents/ and /Library/LaunchDaemons/ or in /Home/Library/LaunchAgents/.
    If an application installs any other files the best way to track them down is to do a Finder search using the application name or the developer name as the search term.  Unfortunately Spotlight will not look in certain folders by default.  You can modify Spotlight's behavior or use a third-party search utility, EasyFind, instead.
    Some applications install a receipt in the /Library/Receipts/ folder.  Usually with the same name as the program or the developer.  The item generally has a ".pkg" extension.  Be sure you also delete this item as some programs use it to determine if it's already installed.
    There are many utilities that can uninstall applications.  Here is a selection:
        1. AppZapper 2.0.1
        2. AppDelete 3.2.6
        3. Automaton 1.50
        4. Hazel
        5. AppCleaner 2.1.0
        6. CleanApp
        7. iTrash 1.8.2
        8. Amnesia
        9. Uninstaller 1.15.1
      10. Spring Cleaning 11.0.1
    For more information visit The XLab FAQs and read the FAQ on removing software.

  • What wrong with the buttery ?

    hallow
    my question about the buttery i don't know what wrong with it . the buttery get finish after one and half hour using .
    please help me
    my Email
    [email protected]
    my mobile
    +966554302679

    Hi kamranh,
    I'd try starting Firefox in [[Safe Mode]]. If you don't have the issue while all of your add-ons, extensions, and themes are disabled, you can try adding them back in one by one until you find the culprit. You should look at the [https://support.mozilla.org/en-US/kb/Troubleshooting-extensions-themes Extensions and Themes troubleshooting guide ] and the [[Troubleshooting plugins]] article as well.
    From the looks of it though, your issue may be because you've been hit with some [https://support.mozilla.org/en-US/kb/Is%20my%20Firefox%20problem%20a%20result%20of%20malware?s=malware&r=0&e=sph&as=s#w_how-do-i-get-rid-of-malware Malware].
    If isn't malware or a plugin issue, you should take a look at the Knowledge Base article [[Search bar]]. Your default search might have been changed by a particular site. Sites like MSN, Yahoo, etc have been know to ask to become your homepage and change your search engine.
    If the address bar search has been changed as well, you might want to take a look at [[Location bar search]].
    If that doesn't work you should look at the article [[Preferences are not saved]].
    Hopefully this helps!

Maybe you are looking for