I am sick of this SVC.... outages!

I live in Miami,FL ...Brought upgraded today from DROIDX to HTC Rezound so when came time u for activation my DROIDX stopped working and my Voice, Txt and Data went into limbo! My HTC cannot receive the activation because the network is DOWN AGAIN
[subject line edited]

How can we try to help you when you haven't given us any pertinent information about your problem?
Which version of Firefox? Do you have any addons installed? <br />
Which websites are causing that problem for you?
What firewall program or security suite are you using?
Right now, all we know is that you are frustrated and unhappy with Firefox, and that you have WinXP as your operating system.

Similar Messages

  • I am sick of this...It even does it with loggin in on their own site! When op

    I am sick of this...It even does it with loggin in on their own site! I canmot get furter than login pages and if I do, the pages don't go further than that. I really am sick of this and need an answer as to why this is happeing and how to fix it. It can be bookmarks, or we addresses from emails, etc. It even does it on this site. It won't let me log in...

    How can we try to help you when you haven't given us any pertinent information about your problem?
    Which version of Firefox? Do you have any addons installed? <br />
    Which websites are causing that problem for you?
    What firewall program or security suite are you using?
    Right now, all we know is that you are frustrated and unhappy with Firefox, and that you have WinXP as your operating system.

  • Hey, im really sick of this, how can i open folders but in the same windows, when i open a folder which is inside of another one, it just open me a new window, its so annoying, could anyone tell me what to do? im using mac os 10.7.2

    hey, im really sick of this, how can i open folders but in the same windows, when i open a folder which is inside of another one, it just open me a new window, its so annoying, could anyone tell me what to do? im using mac os 10.7.2

    Finder > Preferences > General > Always open folders in a new window: uncheck

  • Although I am new to mac, I am not new to computers and purchasing online.  I can't sign into the App store after installing Lion.  I have had to change my password 4 times in 2 days .  I am so sick of this.  I am trying to buy a tutorial for Lion.

    I recently downloaded Lion and since have had nothing but problems with my new i-Mac.  My problem with the App store is only one issue.  Has anyone out there had any trouble with their components after installing Lion 10.7???????   After several hours on the phone with a tech my situation isn't any better.  I think the tech is sick of talking with me.  He was supposed to call me today and the phone never rang.   He told me he was working on something to repair my problems and needed to talk with engineers.  How long could that take????   If it wouldn't hurt the person who gifted me this i-Mac, I would give it back. 

    your itunes accoutn have nothing to d with your computer
    you can go to any computer with internet access in the world and
    login into your itunes account if you have the appleID and password
    the itunes account is placed on apples itunes servers

  • Homework Help...I bet you guys are sick of this...

    OK....This problem has been on here before, and I know you are probably really sick of seeing it...sorry. Anyway, here it is... It's just an invoice program with an invoicetest to test the first's capabilities. I was doing pretty well (i thought) but have now hit a brick wall. The first part (invoice.java) goes as follows, and compiles just fine.
    //Invoice.java to represent an invoice for an item sold in a store
    public class Invoice
    private String partNumber;
    private String partDesc;
    private int partQuantity;
    private double partPrice;
    // constructor
    public Invoice( String number, String desc, int quantity, double price )
    partNumber = number;
    partDesc = desc;
    partQuantity = quantity;
    partPrice = price;
    if (partQuantity < 0 )
    partQuantity = 0;
    if (partPrice < 0 )
    partPrice = 0.0;
    // method to set the part number
    public void setPartNumber( String number )
    partNumber = number;
    // method to set the part description
    public void setPartDesc( String desc )
    partDesc = desc;
    //method to set the part quantity
    public void setPartQuantity( int quantity )
    partQuantity = quantity;
    // method to set the part price
    public void setPartPrice( double price )
    partPrice = price;
    // method to retrieve the part number
    public String getPartNumber()
    return partNumber;
    // method to retrieve the part description
    public String getPartDesc()
    return partDesc;
    // method to retrieve the part quantity
    public int getPartQuantity()
    return partQuantity;
    // method to retrieve the part price
    public double getPartPrice()
    return partPrice;
    // method to calculate the invoice amount
    private double amount;
    public double getInvoiceAmount()
    amount = partQuantity * partPrice;
    return amount;
    So, we move on to the second part (invoicetest.java) which goes as follows.
    //InvoiceTest.java to test Invoice.java
    import java.util.Scanner;
    public class InvoiceTest
    public static void main( String args [] )
    // create a Invoice object
    Invoice myInvoice = new Invoice();
    // create Scanner to obtain input
    Scanner input = new Scanner( System.in );
    String pNumber;
    String pDesc;
    int pQuantity;
    double pPrice;
    System.out.print( "Enter the part number: " );
    pNumber = input.nextLine();
    myInvoice.setPartNumber( pNumber );
    System.out.println();
    System.out.print( "Enter the part description: " );
    pDesc = input.nextLine();
    myInvoice.setPartDesc( pDesc );
    System.out.println();
    System.out.print( "Enter the part quantity: " );
    pQuantity = input.nextInt();
    myInvoice.setPartQuantity( pQuantity );
    System.out.println();
    System.out.print( "Enter the part price: " );
    pPrice = input.nextDouble();
    myInvoice.setPartPrice( pPrice );
    System.out.println();
    // display part information
    System.out.printf( "Part number: %s\n",
    myInvoice.getPartNumber() );
    System.out.printf( "Part description: %s\n",
    myInvoice.getPartDesc() );
    System.out.printf( "Part quantity: %d\n",
    myInvoice.getPartQuantity() );
    System.out.printf( "Part price: $%.2f\n",
    myInvoice.getPartPrice() );
    System.out.printf( "Invoice amount: $%.2f\n",
    myInvoice.getInvoiceAmount() );
    and i get this error message: (yes, ^ should be under "new"
    InvoiceTest.java:10: cannot find symbol
    symbol : constructor Invoice()
    location: class Invoice
    Invoice myInvoice = new Invoice();
    ^
    I know you all hate doing other people's homework, because it really doesn't help the person. But, I really have given this a try, and I'm running out of time. Any help would be greatly appreciated!

    Ok, one more question...this one is probably pretty simple. This is the employee.java program (i wrote the employeetest.java) program also, but it's useless unless I can get this figured out. It'll probably be really simple for all you studs out there, but I've scoured this thing and can't figure out where I'm missing a brace or where I have an extra one...someone help PLEASE.
    public class Employee
         // Constructor
         public Employee ( String fname, String lname, double monthlySalary )
              firstName = fname;     // initialize firstName
              lastName = lname;     // initialize lastName
              if ( monthlySalary != 0.0 )
                   monthlySalary = salary; // initialize monthlySalary
         public void setFirstName( String fname )
              firstName = fname;
         public void setLastName( String lname )
              lastName = lname;
         public void setMonthlySalary( double salary )
              monthlySalary = salary;
         public String getFirstName()
               return firstName;
         public String getLastName()
               return lastName;
         public double getMonthlySalary()
               return monthlySalary;
         }it says { expected in last line...oh, i know this is silly, but i just seem hopeless!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Ipod Touch 4G Camera... Getting sick of this

    Sorry if I sound a bit rude... I'm just completely frustrated with trying to get this thing fixed...
    Alright. I've asked this on various sites, and i'm constantly getting sick of the fact that no one will answer, or tells me the exact same thing, to restore the Ipod to Factory Settings, or Power it off for a while. None of it works...
    I've had my Ipod Touch 4G since the end of Summer, because my old one died out, and for a month or so, the Camera / Video Camera worked fine. After a month ( and it still continues now ) the camera doesn't work anymore...
    If I click on Camera, it won't open up, it'll stay frozen, and the bottom will flicker.
    I've seen MULTIPLE threads on various sites about this issue, and no one gives an answer that helps at all. Restoring the Ipod, or powering it off, doesn't work. Period.
    Can someone please give me an answer here as to how I can fix the camera, and get it to open ( Also, I bought various apps to see if they would work, they don't. )

    If multiple apps don't work with the camera, chances are it's a hardware issue, which means nothing you can fix yourself. Since you said you just bought it this Summer, it should still be under warranty so you can have the part replaced at the Apple Store.

  • Im sick of this, when is the release of the fix of this big problem?

    sick of the ios 8.0 , apple had a lot of time to make it and check if this was perfect to launch , this is what happens when apple try to copy android

    Apple will be releasing iOS 8.0.2 "in the next few days".
    We are also preparing iOS 8.0.2 with a fix for the issue, and will release it as soon as it's ready in the next few days.

  • I cannot update iTunes. In instructions for updating it says to go to help and then click check for updates. Guess what! No help options within iTunes. I need to be able to syn my iPod touch 5 but I cant without the newest iTunes. I am sick of this crap.

    I am EXTREMELY tired of having to deal with this. iTunes has been an issue since I got it and unfortunately whenever I want to update my computer's iTunes account it demands I download a new format (which has continually gotten worse and WORSE over time). I wish things would not be updated so frequently. As soon as I have the new format working decently (ONLY decently, I have never had an apple product that has worked as it is stated it should) another update comes along. And THIS time, I cannot download it. First problem: I open iTunes. It says I need to update for my ipod to work. I think "great. I click ok and it will do it automatically!" Oh boy was I wrong. I don't do anything. I search up how to update things. It says ON THIS SITE: Go to help in the itunes store. THERE. IS. NO. CLEARLY. VISIBLE. HELP. SECTION. I have looked for FAR to long for this to be worth my time.

    Okay - let's cut to the chase...
    If the Menu Bar (File, Edit... Help) shown in my screenshot below is not visible, use CTRL+B to display it. Then click on Help/Check for Updates. If one is available, you will be able to select it at this time.
    Note the item at the bottom of the list; About iTunes. Selecting that will show you which version of iTunes you are using.
    An alternative method to display the Menu Bar is click on the box in the top left of your iTunes window...

  • Why is it that each time I upgrade my iPad, half of my apps won't work properly but worst of all my email won't send after the latest "patch" today, wake up Apple I am a new user and getting sick of this problems

    WHy is it that each time I get an upgrade some of my Apps won't work when they did with the previous version. I have just upgraded to v7.01 and now I cannot send email, wake up Apple and get it right as I am a new user of Apple technology and not impressed.

    That's one of the weird things.. it recognizes it maybe 10% of the time. And usually, only after I do the two-button reset. Problem is.. since it won't charge above 2%, anytime I try to do a restore or anything like that using iTunes, my device shuts off and I lose whatever progress I'd made.
    So, an update... after reading through a bunch of similar complaints (there are literally 1000's of them so there's NO WAY this isn't somehow ios7 related, thanks a lot APPLE ) I decided to try a restore in recovery mode. After 3 hours and several disconnections... I ended up having to just set it up as a new iPad, as the restore did nothing. Weirdly though... as I was doing the restore in recovery mode.. I noticed I'd gotten up to a 10% charge.. higher than it's been since September, so after setting it up as a new device, I turned it off and plugged it in using the wall charger. 2 hours later and I was up to 38%. Still not great, as my iPad, before ios7 could've fully charged twice in the amount of time it took for me to now get 28% more of a charge. And that's with a fully cleaned out device.. so that really ***** and I'm now more confused than ever.
    But I'm gonna leave it overnight charging and see what I come up with tomorrow. Sadly, when I paid $600 for it in February, I never expected to have to play "wait and see" with it...

  • So sick of this - Creative Cloud in OSX Mission Control

    I'd like to summarize this problem briefly, and only briefly because I know adobe is already "aware of this issue and working on fixing it" (Adobe 2013) because of tons of other posts about this.  You see, I am, like many other poor, tortured human beings, subscribed to the Creative Cloud service.  One of the many problems with that is, when I switch desktops on my mac, the creative cloud window pops up.  In addition, it shows up in my Mission Control even though its not even open or a traditional application in the first place.  This wouldn't be a huge problem if not for 2 reasons.
    A. This is a small issue that is EASILY fixable for Adobe that affects me constantly
    B.  I pay $50 a month for this.
    Also, I know about the tweak where you switch it to windowed mode, which is just as bad because it shows up in my dock for some reason and even forgets that I've switched to windowed mode.  I'd like to mention also that this is not strictly speaking, an error.  This happens on EVERY Mac that has Creative Cloud installed as far as I can tell.  It has happened since I first downloaded the software OVER A YEAR AGO.  I mean there are posts dating back to 2013 by Adobe employees saying they're going to fix this.
    I just think it's weird how I bought an app for a dollar the other day that gives me system stats from the menu bar, and it has exactly none of these problems, yet I give you people $50 a month and I can't expect a fraction of the quality.
    TLDR: I'm considering admitting myself because I've been having thoughts of switching to Inkscape.

    I may have not read your post correctly. In the pinned mode, the CC Desktop window does not show up when I switch workspaces, and it does not show up in Mission Control, at least not on my Macbook (10.9.5)  Might act differently in your setup.
    I would suggest quitting the CC app until you need it, but you might be using your Typekit, Portfolio and Storage and can't simply exit.
    However clicking on the CC Cloud Storage icon in your Finder will bring it back up instantly.
    Sorry. For a second, I thought I had a workaround.
    Gene

  • Disk is too slow (Record)(-10004) error..so sick of this.

    Hello all,
    I can no longer record more than three tracks in logic without getting the error message "Disk is too slow (Record)(-10004)". When this happens, recording is stopped.
    At first I suspected my drive was faulty, maybe slowing down. So being in the middle of a session that took me 2 hours to set up, I called for a break and rushed off and bought an external Seagate 7200rpm firewire 800 drive. I installed it and set it as the recording path for the project. There was no change, the same error occured.
    I then switched the target drive to another internal one I use for Time Machine - same problem occured.
    It seems to me that this problem has nothing to do with my drives. I am at a loss to explain it. I have looked for hours online for a solution but while many have experienced this there seem to be few answers out there.
    Unless I find a solution this will be my last project with Logic. I tried and tried for the last 5 years to use this program but things like this keep happening. It's glitchy with UAD cards, Duende, RME interfaces, Midi controllers, Hard Drives, RAM and external clocks. I've had problems with them all over the years. I will most likely switch to Cubase which I feel is inferior for editing and loops, but at least it seems to be stable.
    If anyone has any insight I'll try and fix it, but I just can't keep shelling out money for a program that just doesn't work.

    I am experiencing a similar problem & have been receiving the same messages, even while recording as little as one track and playback has become an issue as well. However, THIS WAS NOT ALWAYS THE CASE. I have heard of people with this same problem, where they receive this message out of nowhere after logic has been working perfectly for them.
    I also would like to note that I am running all settings in logic for optimized recording and playback (audio & buffer settings etc etc etc)
    THIS IS NOT A HARDWARE ISSUE, at least in my situation as I am running a fast internal HD & have ample memory. Please reach out if you feel like you have a pragmatic solution to this issue.
    This may be a possible lead on the fix... I remember reading this post from a user "soundsgood" in 2008 who was having a similar issue..I don't understand completely his solution, but if someone could enlighten me, I feel that this might be the solution to our issue
    +"Okay - forgive me 'cause I'm a newbie on this forum and if somebody else has already figgered this out, I'm sorry.... I've been having the same problem all of the sudden after many years of crash-free and error-free recording. I've read everything. I've pulled my hair out. I've done dozens of clean installs. I've repaired permissions so many times I can do it blindfolded. And sitting here tonight, it dawned on me.... there are TWO places Logic is sucking data from: wherever you've got your SONG files stashed, of course.... but it ALSO NEEDS TO ACCESS THE STARTUP DRIVE (or wherever else you might have your Apple Loops installed). I was watching my drives being accessed during a playback of a fairly complicated tune (most tracks were frozen of course), and both of the afore-mentioned drives were going berserck with accesses. We're all focusing on our dedicated audio drives, but forgetting about our boot drives (where Logic usually resides along with most or all of our loops). I carbon copy cloned my boot / operating system (including Logic) to a different (in my case, an external firewire) drive and the problem disappeared. Could've been because the cloning process de-fragged all the loops & stuff, or maybe my OS just likes snatching its sample/loop info from an external drive. Worked for me... so far....... let me know if it works for others....."+

  • OSX *****. I'm sick of this crap.

    I don't know what happened, must have been from one of those OSX software updates. But now OSX thinks it's ok to hide all my windows if they aren't part of the active application. So much for being able to watch a video, while working in another application. Too much for OSX to handle. Can't even display another application window while working in another. It's not like anyone would ever want to view anything from two applications at the same time, right? I'm on 10.6.7. This isn't even exclusive to 3rd party apps, Apple's own apps do this now too, like preview. So say you want to reference a PDF open in preview, while working on another application. Not possible. You are only allowed to view one application at once now, apparently.

    What you describe is not the default behavior.  Fred probably has you covered, but if not, you should consider re-posting with a different title and a bit less attitude.  This one is guaranteed to turn off most of the folks here.  A lot of them won't even consider looking at it, since the subject makes you sound like a troll.

  • I AM SO SICK OF THIS !!! HELP PLZ

    my computer was workign fine. everything rolling ok until I ran an update for OSX and Outlook 11.
    If I type something it takes a good 10 seconds to realize what i did. all these errors you see now (typos) is bc of this lag I am talking about.
    If i open a new tab in firefox it takes a good 15 seconds and so on.
    NO it is not my RAM I have 4 GB of ram .
    < Edited by Host >

    After reading through your other posts (most in Snow Leopard 10.6 area) and issues
    remain, you may have to consider making a complete backup of your user folder &
    account info, and any saved or created content, from your computer to an external
    device, drive, clone or other means of archiving off of the computer.
    {Read through to the end, since not any one idea is the complete course of action.}
    Then, when you have saved and verified as retrievable said contents, get your
    stuff together and totally wipe the computer's hard disk drive, zero content, use
    Disk Utility on booted Install DVD and choose a partition map, then reformat to
    HFS+; and install a new system on a wiped clean hard disk drive. Update it.
    Then migrate your previous user account into the Mac.
    If the problem(s) in your computer which go back over months, are not resolved
    by attacking their source or cause, they will be masked by other activity which may
    not solve their root cause. Could be just a matter of corruption in a User account.
    If the problem is in a user account, an Archive & Install (if space exists in HDD)
    may bring in the problem to a new system.
    Since the problem goes back to November 2010 in some form or another, this
    job may include extensive review of what maintenance you perform regularly
    to keep the computer running healthy; like: what you do, when, why, etc.
    Perhaps it is time to actually restore full original function to the computer, and
    hope the process will tell you if the hard disk drive or other component is failing.
    A too full hard disk drive, or corruption of the content on the hard disk drive, can
    cause slowness and other things to grind to a halt. You may need to boot from
    the Installer disc and run Disk Utility from there, and have it Verify the HDD, and
    if there is an issue, see if the utility can Repair the hard disk drive. If it can't, then
    you may have to get a third-party disk utility such as DiskWarrior, on disc media.
    If you have and use an externally enclosed hard disk drive unit with a chipset
    controller within it to allow Mac OS X booting from that unit, then you can make
    a full computer content clone (to a large external HDD) large enough to have
    more than one partition so you can have more than one bootable clone on there
    and also use it as a backup/storage for stuff on another partition in that drive.
    You can get a great and free-running clone utility from Bombich software; it is
    called Carbon Copy Cloner, a download. And get/use an externally enclosed
    hard disk drive, one that is self-powered (not computer-bus powered) to do it.
    Even starting the computer in SafeBoot mode, if it will, (shift key held down
    on start up, wait while holding the key down, until a startup dialog box appears
    to be sure you are really getting into SafeBoot; it may take 10 minutes) and
    then when in SafeBoot, run Disk Utility's 'repair disk permissions' on the Mac HD
    and when that's done, quit Disk Utility. Check the amount of used capacity of
    the computer's hard disk drive against the total amount it had when new, and
    note or write down the numbers. When done, restart the Mac normally.
    You can also look into Activity Monitor (utility) to see what, if anything, is using
    the computer's resources when the machine is running slower than expected,
    and this can tell you what Apps and system bits are using Virtual Memory
    (hard disk drive space used for swap files and temporary in/out memory) and
    this is where free space available to the OS X is critical. This may be part of
    the problem, if the hard disk drive is TOO full for the system & apps to work.
    Hopefully this helps somewhat, and that someone else will have better ways
    of writing shortcuts. I did not add outside links to this post, it is long enough...
    Good luck & happy computing!
    +{ edited }+

  • Sick Of This - Creative Zen Vision:M isn't recognized by SO

    Hi everyone,
    My PC doesn't recognice my Creative Zen Vision:M 30GB, it used to show my mp3 player as connected before, but since last week neither my PC nor the Creative Media Explorer can't connect to the player.
    I have reverted the Microsoft Windows Media Player to the v0.
    My SO is XP SP3.
    I already have installed the Creative Media Source.
    I couldn't get into "reboot mode" on my mp3 player 'cause it has run out of battery.
    Thanks in advance.

    Zen Vision M 309Well, I had my zen for going on 3 years...Strangest things is that it will not turn on at all.. I tried all the online documents
    -Resetting it with the USB (nothing plugged in , using the back ports)<-- in which my computer does not recognize the device even if i change to another computer or another USB port; i even purchased another USB cord and same results
    - I bought a wall charger (left it plugged in overnight); nothing i only see the CREATIVE screen that displays, doesn't respond to any buttons I push
    Same two?effects will wall charging/ computer charging
    -When plugged into computer or wall sometimes it will show the CREATIVE screen, or sometimes it will show a blinking light above where the power is...
    I tried also to reset it while it powers on and it doesn't do anything
    When trying to update the firmware, a message says that the device is not connected when it is..
    This is becoming expensi've, and i cannot find my receipt to even get a warranty,,, please help

  • I'm sick of this

    I have to say.  Every time a new version of CS comes out I sit at my desk and think, is this going to be worth the trouble?  It's
    gotten so bad with installation trouble and bugs that I skipped CS4 altogether.  CS 3 Bridge still randomly crashes and was never solved.  Adobe, you need to get installation tested so it works for everyone.  You need to tell us what to do with our older versions of Photoshop, how to move settings, etc.  I think you are shooting yourself in the foot when people get reluctant to upgrade.  Take more time, fix the bugs, test. 
    I just attempted to upgrade to Photoshop extended from CS5.  Not much worked as described during the download/upgrade process.  I finally found the expanded files in My Documents where I found the setup.exe file.  (would have been nice if the help mentioned this)  After that, it would not take my old serial number as a valid upgrade.  Turns out even though Photoshop CS3 is part of CS3 Suite Standard, it's not considered a viable upgrade path, I would have had to have only bought Photoshop by itself.  Seems strange.  So after being informed the phone hold was 30-40 minutes, I tried the live chat.  That was instant, thank you.  But bottom line is that I have to return pshop CS5 extended.  At this point, again, wondering if I should spend my time nurturing my business and skip the upgrade yet again. 
    This is ultimately great software when it gets stable, and I appreciate all the hard work Adobe employees puts into this, but there needs to be some top down changes to how these products are tested and released.   ... akiley

    As Bart rightly points out, there are a number of factors in play, and Adobe isn't directly to blame for all the installation hang-ups. BUT...
    This is all a symptom of a much bigger problem. The way corporations are run nowadays, there is relentless insistence on growth. Just sustaining a business is now tantamount to failure. Any real-life shortfall to sales projections is considered a LOSS, regardless of whether those projections were realistic. So, companies like Adobe are forced to grow no matter what it takes. This is why there is so much outsourcing of production and customer service rampantly reducing the quality of the products we all buy and use. Any idiot knows they can't just keep selling more and more, year over year, in perpetuity, so every other consideration is given to feeding the bottom line. In the case of software makers, shortening the upgrade cycle is one way they do it. For a suite of apps the scope of CS, launching a new and significantly upgraded version every, what; 18 months(?), is a ludicrous amount of pressure to put on the development process, (and of course there is just as much pressure applied concurrently to continually reduce development costs). The only possible result of this recipe is short-term growth, and the inevitable drop in quality drop. There is no way around it. It's half-a-miracle CS is still the ridiculously good product that it is.

Maybe you are looking for