Java is blocked. Don't know why. Error: Application Blocked Java Plug-In 10.51.2.13 using JRE version 1.7.0_51-b13 Java HotSpot(TM) Client VM

I keep receiving this message when trying to use http://www.exodus-chats.org/DolTerias . it uses a java based chat system, and won't allow me to open the application. I've tried checking through my options menus, but I've found no reason as to why this can be blocked. The only thing I've come up with is my plug ins, but it doesn't allow me to change anything to allow the app to be used.
Application Blocked
Details: Java Plug-In 10.51.2.13 using JRE version 1.7.0_51-b13 Java HotSpot(TM) Client VM

Starting in Java 7 Update 51, sites that would normally be blocked based on your Java Security settings can be added to an Exceptions list, via the Java Control Panel. See the Java Help page [http://www.java.com/en/download/faq/exception_sitelist.xml How can I configure the Exception Site List?] for details.
Ref: http://kb.mozillazine.org/Java#Java_security_prompts

Similar Messages

  • I get this message on my Facebook news feed when someone posts a YouTube video. Don't know why. It's worked fine for years. I am using Safari on my iPad. If I use the Facebook app it works fine. Any thoughts. Thanks,    Access Denied   You don't have

    I get this message on my Facebook news feed when someone posts a YouTube video. Don't know why. It's worked fine for years. I am using Safari on my iPad. If I use the Facebook app it works fine. Any thoughts.
    Thanks,
    Walid
    Access Denied
    You don't have permission to access "http://fbexternal-a.akamaihd.net/embed/?" on this server.
    Reference #18.3555facd.1362007289.6945153f

    Same thing on mine, it just started happening last weekend.

  • I don't know why but  I create a WEB site and my friends who use a pc windows, have a lot of trouble when they open my movies.  The other friends who use Apple, they don't have problem.  I have iMovie11 and my extension file is .m4v.  Is it because the ex

    I don’t know why but  I create a WEB site and my friends who use a pc windows, have a lot of trouble when they open my movies.  The other friends who use Apple, they don’t have problem.  I have iMovie11 and my extension file is .m4v.  Is it because the extension .m4v is bad for windows ?

    No web site expert here but I would suggest changing the .m4v to .mp4 and ask one of those friends if they still have problems.  .m4v is something I always associate with iTunes and don't really see it used elsewhere.

  • Something is happening to my applications downloaded from store......i don't know why. my applications(opened with launchpad) shows 5(4transparent and 1usable)iMovie icons.someone please help me

    something is happening to my applications downloaded from store......i don't know why. my applications(opened with launchpad) shows 5(4transparent and 1usable)iMovie icons.someone please help me

    Hey srihari4b6,
    Thanks for using Apple Support Communities.
    Since there are a few apps that this is happening to you may want to take a look at this article.
    Mac OS X: How to troubleshoot a software issue
    http://support.apple.com/kb/HT1199
    If the issue occurs in various applications, or in Mac OS X
    Have a nice day,
    Mario

  • Keep getting the message "An error occurred with the publication of album - Do you want to remove the album from your library?" don't know why

    I don't know why I keep getting the following messge for a recent album I created in iphoto:
    "An error occurred with the publication of album (name of album).  Do you want to remove the album from your library?" In smaller letters under that message, is "The feed could not be found or is invalid."  There are 2 buttons to click - either "Remove Album" or "Keep Album".  Never had this issue before, did not do anything different this time. 
    Mac OS X v. 10.6.8
    iphoto 09 v. 8.1.2 (424)

    Is this an album you're publishing as a MMe Gallery?  If so delete the album and gallery,  create a new album and  gallery and try publishing again.
    OT

  • Whenever I try to log into my itunes it says I have a -50 error, but I'm not downloading anything. I don't know why it won't let me log in.

    I don't know why my itunes won't let me log in. All the Apple website tells me is that it's an error when I'm downloading something, but I'm not downloading anything.

    Hey shelbylynn18,
    Thanks for the question. (-50) is a timeout error that can occur when downloading content or when simply trying to access the iTunes Store. If you have automatic downloads enabled, you may be experiencing this error when iTunes is attempting to automatically download available content.
    iTunes Store: "Error (-50)" when downloading purchased content
    http://support.apple.com/kb/TS1583
    This can happen when the connection timeout occurs while downloading purchased content from the iTunes Store. Certain types of software may also affect the way a computer sends and receives information from the internet. Here are a few examples of these types of software:
    - Firewalls
    - Web Accelerators
    - Ad Filters
    - Virus Protection Software
    Resolution
    If you have any of the software listed above, and you cannot access the iTunes Store or complete your download, you will need to configure these applications to allow iTunes to connect to the Internet.
    Refer to the documentation that came with that software, and if necessary contact the software's manufacturer. You will need to configure the software to allow the following domains to send and receive data from the Internet.
    - itunes.apple.com
    - ax.itunes.apple.com
    - albert.apple.com
    - gs.apple.com
    - deimos3.apple.com
    - phobos.apple.com
    If a web accelerator appears to be causing the issue, contact your Internet Service Provider (ISP) or the software manufacturer. If your computer is on a network, you may also want to try using a different computer on the network, or discuss the issue with the network administrator.
    Additional Information:
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/TS3297
    Thanks,
    Matt M.

  • My program stops and i don't know why...

    I am not sure if i have a problem with my code or the VM but I'm assuming it's my code and hoping someone can help. I already searched through the forums and the bug database and I found some things I thought could maybe be my problem but after more testing the fixes and workarounds didn't work...
    It is a middleware between clients and database server all in java.
    The main thread invokes a thread that accepts socket connections and adds them to a connection queue (LinkedList). Various worker threads in a ThreadGroup wait and work with the connections as they come in. All this works correctly. Unfortunately my app is now displaying the unwanted characteristic of coming to an abrupt stop (not shutting down correctly) in an erratic manner. If no clients ever connect the app will sit and wait just fine (over 30 hours in 1 test until I stopped it) as soon as one connection is made however the app appears to be doomed. It will just stop anywhere between instantly and 10 minutes after the last connection is closed. Usually the span is between 2 and 3 minutes but it varies widely. It also will stay alive if another client connects, basically if the server is busy things are fine but when it is twiddling its thumbs waiting it just halts.
    Here is what the orginal code looks like...
    while(qOpen){
      Socket s = null;
      try{
        s = ss.accept();
      }catch(IOException clientConnectError){
        continue;     
      try{
        rq.addConnection(s);
      }catch(ConnectionQueueException closed){
        // if the queue is closed attempt to close the socket either way set our flag to closed so we exit the loop
        try{
          s.close();
        }catch(IOException clientCloseError){}     
        qOpen = false;          
    // the next line does not show up when the server stops
    System.out.println("Server Shutting down...");i thought maybe my code was doing something bad somewhere and I had an uncaught exception or error such as outofmemory. So I altered the code slightly to trap any errors or exceptions that were possibly coming down so I would know where to debug.
    Altered code
    while(qOpen){
      try{
      Socket s = null;
      try{
        s = ss.accept();
      }catch(IOException clientConnectError){
        continue;     
      try{
        rq.addConnection(s);
      }catch(ConnectionQueueException closed){
        // if the queue is closed attempt to close the socket either way set our flag to closed so we exit the loop
        try{
          s.close();
        }catch(IOException clientCloseError){}     
        qOpen = false;          
      }catch(Throwable thrown){thrown.printStackTrace();}
    // the next line does not show up when the server stops
    System.out.println("Server Shutting down...");The server stops and prints out nothing.
    Finally I thought maybe something bad is happening to the thread group. So I added another thread that loops and prints out some information about the ThreadGroup....
    Thread Group Information
    Active Count : 8
    Is Daemon : false
    This prints out like this exactly the same each time including the iteration just before everything comes to a halt.
    So I am stuck, (1)the app is not shutting down properly, (2)I cannot find (or trap) an error that is causing it to stop and (3) nothing wierd seems to be happening to my group of workers. What else can I do to find this error. Is this possibly a vm bug or is it more likely a code problem. I am not asking for anyone to solve my code if that is the problem but I have no more ideas about how to find out what the problem is. In case it helps here is the output from java -version
    java version "1.3.1_01"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_01)
    Java HotSpot(TM) Client VM (build 1.3.1_01, mixed mode)

    case? If so, I suggest that -- if you haven't already
    done so -- that you build a prototype of your project
    consisting only of the socket code that you're having
    problems with. This will obviate the possibility that
    something else in some seemingly unrelated piece of
    code is causing the problem. If you get that to work,
    then add pieces to your prototype until it converges
    with what you have now. That will allow you to
    isolate the piece causing the problem.This is not my first work with sockets in java but I think I may have to do the speration you mention to isolate the problem.
    Secondly, I'm writing this because I have I had a
    similar problem with sockets in C when I was first
    playing with them, and I know that deep down in the
    OS, sockets are sockets, pretty much the same as they
    ever were, and so my advice might carry to JAVA.
    First of all, you need to find out if the connections
    you are creating are blocking or non-blocking,
    including the server socket. If they are blocking,
    which I believe used to be the default, that means
    that your code will stop there and appear to hang
    when what is really happening is that it is just
    waiting for the next piece of data (or next
    connection, for a queue socket). If you've already
    got all that worked out, I recall that C sockets
    would cause an error condition on the port which, if
    not caught and handled, would really gunk things up
    because the port would show up as readable (using the
    tools for handling non-blocking sockets) but there
    would never be any data on it, which originally
    caused my software to hang while trying to read the
    nonexistent data. Go check those things and come
    back.Yes there are blockng calls... s = ss.accept() is a blocking call. Here is the code with more comments as I understand what is happening.
    Socket s = null;
    try{
      // this next line is a blocking call. This thread (only the one) will be waiting until a connection attempt is made
      s = ss.accept();
    }catch(IOException clientConnectError){
      // the accept method may throw an IOException this is
    an error to trap in the client debugging stage and otherwise I don't care so ignore it and jump to the next iteration of the loop.
      continue;
    try{
      // here the whole socket is added to a queue of sockets. 
      rq.addConnection(s);here is my code for the ConnectionQueue of sockets...
    public class ConnectionQueue{
      private LinkedList lElements;
      private boolean bOpen;
      public ConnectionQueue(){
        lElements = new LinkedList();
        bOpen = true;
    /** Adds the socket to the end of the queue.
    @param s The socket to add to queue.
    @exception ConnectionQueueException If this queue has been closed.*/
      public synchronized void addConnection(Socket s)throws ConnectionQueueException{
        if(!bOpen){
          throw new ConnectionQueueException("Request Queue closed.");     
        lElements.addLast(s);
        notify();
    /**Returns the socket at the beginning of the queue.     
    @exception ConnectionQueueException If the queue is closed and empty.*/
      public synchronized final Socket getConnection()throws InterruptedException,ConnectionQueueException{
        if((!bOpen)&&(lElements.size()<=0)){
          throw new ConnectionQueueException("Request Queue Closed");
        while(lElements.size()<=0){
          wait();
          if((!bOpen)&&(lElements.size()<=0)){
            throw new ConnectionQueueException("Request Queue closed.");
        try{
          return (Socket) lElements.removeFirst(); 
        }catch(ClassCastException bad){
          throw new ConnectionQueueException(bad.getMessage());
    /** Closes the queue. A closed ConnnectionQueue will not accept any additional sockets through addConnecion(Socket s). Sockets will still be returned by getConnection() for a closed ConnectionQueue while there are still queued sockets.*/     
      public synchronized void close(){
        bOpen = false;
        notifyAll();
         Well all this code works as it is supposed to. Also the app only dies (and when I mean dies/stops it is dead no more process, no more vm, nothing) when nothing is happening as opposed to if it is really busy in which case it is fine.

  • Windows 8.1 Keeps crashing! Blue screens and I don't know why.

    My computer is crashing randomly. Happens once every few days or so. It started happening when I installed a new fan and heatsink. My cpu never goes over 50 C now so I don't know why it is crashing. Here is the dump file. Please help me :/
    Microsoft (R) Windows Debugger Version 6.3.9600.17298 AMD64
    Copyright (c) Microsoft Corporation. All rights reserved.
    Loading Dump File [C:\Windows\MEMORY.DMP]
    Kernel Bitmap Dump File: Only kernel address space is available
    ************* Symbol Path validation summary **************
    Response                         Time (ms)     Location
    Deferred                                       SRV*C:\Windows\symbol_cache*http://msdl.microsoft.com/download/symbols
    Symbol search path is: SRV*C:\Windows\symbol_cache*http://msdl.microsoft.com/download/symbols
    Executable search path is:
    Windows 8 Kernel Version 9600 MP (6 procs) Free x64
    Product: WinNt, suite: TerminalServer SingleUserTS
    Built by: 9600.17328.amd64fre.winblue_r3.140827-1500
    Machine Name:
    Kernel base = 0xfffff803`7a47e000 PsLoadedModuleList = 0xfffff803`7a754370
    Debug session time: Tue Nov 25 22:05:18.738 2014 (UTC - 5:00)
    System Uptime: 2 days 9:06:56.454
    Loading Kernel Symbols
    Loading User Symbols
    PEB is paged out (Peb.Ldr = 00000000`7ffdf018).  Type ".hh dbgerr001" for details
    Loading unloaded module list
    *                        Bugcheck Analysis                                   
    Use !analyze -v to get detailed debugging information.
    BugCheck 3B, {c0000005, fffff8037a52cba4, ffffd000220ab340, 0}
    Probably caused by : win32k.sys ( win32k!SEMOBJ::vUnlock+2c )
    Followup: MachineOwner
    4: kd> !analyze -v
    *                        Bugcheck Analysis                                   
    SYSTEM_SERVICE_EXCEPTION (3b)
    An exception happened while executing a system service routine.
    Arguments:
    Arg1: 00000000c0000005, Exception code that caused the bugcheck
    Arg2: fffff8037a52cba4, Address of the instruction which caused the bugcheck
    Arg3: ffffd000220ab340, Address of the context record for the exception that caused the bugcheck
    Arg4: 0000000000000000, zero.
    Debugging Details:
    EXCEPTION_CODE: (NTSTATUS) 0xc0000005 - The instruction at 0x%08lx referenced memory at 0x%08lx. The memory could not be %s.
    FAULTING_IP:
    nt!KxWaitForLockOwnerShipWithIrql+14
    fffff803`7a52cba4 48890a          mov     qword ptr [rdx],rcx
    CONTEXT:  ffffd000220ab340 -- (.cxr 0xffffd000220ab340;r)
    rax=0000000000000000 rbx=0000000000000000 rcx=ffffd000220abdf0
    rdx=8848800000000000 rsi=0000000000000000 rdi=ffffd000220abdf0
    rip=fffff8037a52cba4 rsp=ffffd000220abd70 rbp=ffffd000220abea0
     r8=ffffd000220abef0  r9=ffffe000da69ddb0 r10=ffffd000220abf80
    r11=fffff90145b03ce0 r12=fffff90140ad53f8 r13=fffff90140a00830
    r14=0000000000000000 r15=ffffe000d889d880
    iopl=0         nv up di pl zr na po nc
    cs=0010  ss=0018  ds=002b  es=002b  fs=0053  gs=002b             efl=00010046
    nt!KxWaitForLockOwnerShipWithIrql+0x14:
    fffff803`7a52cba4 48890a          mov     qword ptr [rdx],rcx ds:002b:88488000`00000000=????????????????
    Last set context:
    rax=0000000000000000 rbx=0000000000000000 rcx=ffffd000220abdf0
    rdx=8848800000000000 rsi=0000000000000000 rdi=ffffd000220abdf0
    rip=fffff8037a52cba4 rsp=ffffd000220abd70 rbp=ffffd000220abea0
     r8=ffffd000220abef0  r9=ffffe000da69ddb0 r10=ffffd000220abf80
    r11=fffff90145b03ce0 r12=fffff90140ad53f8 r13=fffff90140a00830
    r14=0000000000000000 r15=ffffe000d889d880
    iopl=0         nv up di pl zr na po nc
    cs=0010  ss=0018  ds=002b  es=002b  fs=0053  gs=002b             efl=00010046
    nt!KxWaitForLockOwnerShipWithIrql+0x14:
    fffff803`7a52cba4 48890a          mov     qword ptr [rdx],rcx ds:002b:88488000`00000000=????????????????
    Resetting default scope
    DEFAULT_BUCKET_ID:  WIN8_DRIVER_FAULT
    BUGCHECK_STR:  0x3B
    PROCESS_NAME:  AI Suite II.ex
    CURRENT_IRQL:  0
    ANALYSIS_VERSION: 6.3.9600.17298 (debuggers(dbg).141024-1500) amd64fre
    LAST_CONTROL_TRANSFER:  from fffff8037a4d9f8c to fffff8037a52cba4
    STACK_TEXT:  
    ffffd000`220abd70 fffff803`7a4d9f8c : ffffe000`da69ddb0 00000000`0000001e 00000000`00000000 ffffe000`db793c30 : nt!KxWaitForLockOwnerShipWithIrql+0x14
    ffffd000`220abda0 fffff803`7a4d93c2 : 00000000`00000000 fffff960`002172ec ffffd000`220ac002 fffff901`44ffe620 : nt!ExpReleaseResourceForThreadLite+0x64c
    ffffd000`220abee0 fffff960`001da2cc : 00000000`00000000 fffff960`001a7ef2 0000207f`e204207f 00000000`00000001 : nt!ExReleaseResourceAndLeaveCriticalRegion+0x12
    ffffd000`220abf10 fffff960`001d51a3 : fffff901`451e4ac0 ffffd000`220abfa0 00000000`00000000 fffff901`40ad53f8 : win32k!SEMOBJ::vUnlock+0x2c
    ffffd000`220abf50 fffff960`001e49ad : 00000000`0000163c fffff901`44ffe620 00000000`00000000 ffffe000`da69ddb0 : win32k!GreSelectVisRgnInternal+0x173
    ffffd000`220abfd0 fffff960`001ac21b : ffffffff`e204207f fffff901`00000d3a 00000000`00000001 ffffe000`da69ddb0 : win32k!ResetOrg+0x50d
    ffffd000`220ac100 fffff960`001e5a5d : ffffffff`e204207f fffff901`452e23e0 ffffd000`220acb00 ffff6b78`f79a9a37 : win32k!UserSetDCVisRgn+0x17b
    ffffd000`220ac140 fffff960`001ed3a4 : fffff901`40a58990 00000000`00000000 fffff901`40a58990 00000000`02000705 : win32k!zzzLockDisplayAreaAndInvalidateDCCache+0x14d
    ffffd000`220ac1a0 fffff960`003149cf : ffffe000`db7b2ba0 fffff901`428f7a80 00000000`00000000 fffff901`40b00ff0 : win32k!xxxCreateWindowEx+0x1824
    ffffd000`220ac4b0 fffff960`001ed82a : fffff901`428f7d28 00000000`00000000 00000000`00000000 ffffe000`db7b2ba0 : win32k!xxxCreateDefaultImeWindow+0x19b
    ffffd000`220ac5b0 fffff960`001d6ab5 : 00000000`00000000 00000000`00000000 e000d889`78747355 fffff803`7a4d7bc8 : win32k!xxxCreateWindowEx+0x1caa
    ffffd000`220ac8c0 fffff803`7a5d89b3 : 00000000`00000000 ffffd000`220ac940 ffffd000`220ac958 ffffd000`220ac968 : win32k!NtUserCreateWindowEx+0x4d2
    ffffd000`220aca10 00000000`777f611a : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiSystemServiceCopyEnd+0x13
    00000000`0abbe758 00000000`00000000 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : 0x777f611a
    FOLLOWUP_IP:
    win32k!SEMOBJ::vUnlock+2c
    fffff960`001da2cc ff158e023100    call    qword ptr [win32k!_imp_PsLeavePriorityRegion (fffff960`004ea560)]
    SYMBOL_STACK_INDEX:  3
    SYMBOL_NAME:  win32k!SEMOBJ::vUnlock+2c
    FOLLOWUP_NAME:  MachineOwner
    MODULE_NAME: win32k
    IMAGE_NAME:  win32k.sys
    DEBUG_FLR_IMAGE_TIMESTAMP:  54335e2a
    IMAGE_VERSION:  6.3.9600.17393
    STACK_COMMAND:  .cxr 0xffffd000220ab340 ; kb
    BUCKET_ID_FUNC_OFFSET:  2c
    FAILURE_BUCKET_ID:  0x3B_win32k!SEMOBJ::vUnlock
    BUCKET_ID:  0x3B_win32k!SEMOBJ::vUnlock
    ANALYSIS_SOURCE:  KM
    FAILURE_ID_HASH_STRING:  km:0x3b_win32k!semobj::vunlock
    FAILURE_ID_HASH:  {ec837e9a-fa14-dd77-d99c-f14b9fe89bf2}
    Followup: MachineOwner

    Hi,
    In order to assist you, we will need the .DMP files to analyze what exactly occurred at the time of the crash, etc.
    If you don't know where .DMP files are located, here's how to get to them:
    1. Navigate to the %systemroot%\Minidump folder.
    -- %systemroot% is the environment variable for your Windows directory. For example, C:\Windows.
    2. Copy any and all .DMP files in the Minidump folder to your Desktop, create a new folder on the Desktop to put these .DMP files in, and then zip the folder. You can then either use a 3rd party tool such as 7-Zip/Winrar, or you can use Windows'
    default method of zipping folders.
    Compress and uncompress files (zip files).
    Please note that any "cleaner" programs such as TuneUpUtilities, CCleaner, etc, by default will delete .DMP files upon use. With this said, if you've run such software, and your Minidump folder is empty, you will need
    to allow the system to crash once again to generate a crash dump.
    3. Upload the .ZIP containing the .DMP files to Onedrive or a hosting site of your choice and paste in your reply.
    Preferred sites: Onedrive, Mediafire, Dropbox, etc. Nothing with wait-timers, download managers, etc.
    4 (optional): The type of .DMP files located in the Minidump folder are known as Small Memory Dumps. In %systemroot% there will be what is known as a Kernel Memory Dump (if your system is set to generate). It is labeled MEMORY.DMP. The difference
    between Small Memory Dumps and Kernel Memory Dumps in the simplest definition is a Kernel Memory Dump contains
    much more information at the time of the crash, therefore allowing further debugging of your issue. If your upload speed permits it, and you aren't going against any strict bandwidth and/or usage caps, etc, the Kernel Memory Dump is
    the best choice. Do note that Kernel Memory Dumps are much larger
    in size due to containing much more info, which is why I mentioned upload speed, etc.
    If you are going to use Onedrive but don't know how to upload to it, please visit the following:
    Upload photos and files to Onedrive.
    After doing that, to learn how to share the link to the file if you are unaware, please visit the following link -
    Share files and folders and change permissions and view 'Get a link'.
    If your computer is not generating .DMP files, please do the following:
    1. Start > type %systemroot% which should show the Windows folder, click on it. Once inside that folder, ensure there is a Minidump folder created. If not, CTRL-SHIFT-N to make a New Folder and name it Minidump.
    2. Windows key + Pause key. This should bring up System. Click Advanced System Settings on the left > Advanced > Performance > Settings > Advanced > Ensure there's a check-mark for 'Automatically manage paging file size for
    all drives'.
    3. Windows key + Pause key. This should bring up System. Click Advanced System Settings on the left > Advanced > Startup and Recovery > Settings > System Failure > ensure there is a check mark next to 'Write an event to the
    system log'.
    Ensure Small Memory Dump is selected and ensure the path is %systemroot%\Minidump.
    4. Double check that the WERS is ENABLED:
    Start > Search > type services.msc > Under the name tab, find Windows Error Reporting Service > If the status of the service is not Started then right click it and select Start. Also ensure that under Startup Type it is set to Automatic rather than
    Manual. You can do this by right clicking it, selecting properties, and under General selecting startup type to 'Automatic', and then click Apply.
    If you cannot get into normal mode to do any of this, please do this via Safe Mode.
    Regards,
    Patrick
    “Be kind whenever possible. It is always possible.” - Dalai Lama

  • I keep getting "Unable to connect" for my firefox. It was working yesterday and I turned my computer off. I can get to the web using internet explorer 9. I don't know why my firefox is not working. Everything else is working. HELP....

    I keep getting "Unable to connect" for my firefox. It was working yesterday and I turned my computer off. I can get to the web using internet explorer 9. I don't know why my firefox is not working. Everything else is working.

    A possible cause is security software (firewall) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.com/kb/Server+not+found
    *https://support.mozilla.com/kb/Firewalls

  • I don't know why cannot purchase the Apps from my ID

    I don't know why cannot purchase the Apps from my ID
    <Email Edited By Host>

    It's difficult offer further advice when all you say is "can't". If you provide full details as ot the problem, inlcuding any error messages you may be getting, someone may be able to offer additional suggestions.
    Regards.

  • I don't know why win7 stop itunes working.

    Hello. I don't know why Windonws stops itune working when importing music.
    I considered what cause to do that,but I can't find out. Icould put music into ipod classic the day before yesterday. Now I can't.
    Pl give me right direction if anybody know this situation.
    thanks
    freakmeout

    There's a bug with 10.1.0.54 that is causing "iTunes has stopped working messages" (citing CoreAudioToolbox.dll in the Problem Reports for the error) for some folks when importing CDs with the AAC encoding, adding/converting files to AAC, and in some cases syncing devices (when the convert to 128 kbps AAC option is enabled).
    Short of rolling back your iTunes to 10.0.1.22 and your Apple Application Support to 1.3.2 (CoreAudioToolbox.dll is kept in the Apple Application Support program files), there's a few possible workarounds.
    (1) Change your importing prefs to use a different encoding (won't help with the device syncing variation though), and/or disable the convert to 128 kbps AAC when syncing option.
    (2) Replace your CoreAudioToolbox.dll version 7.9.4.0 with a 7.9.3.0 as per:
    http://discussions.apple.com/thread.jspa?messageID=12576816#12576816
    (3) Or, replace your CoreAudioToolbox.dll version 7.9.4.0 with a shadow copy of a 7.9.3.0 as per:
    http://discussions.apple.com/thread.jspa?messageID=12583499&#12583499
    (2 and 3 do help with the syncing variation.)

  • I can not hear any voice from the ear piece with my new Iphone 5. I don't know why.

    I just used the new iphone 5 for one week. Now, I found I can not hear anything from the ear piece. The speaker is ok, but it dose not work on the earpiece.
    I use it very carefully, I even use a good case for it.
    I don't know why!!!!!

    Did you remove the plastic protector that came on the front of the device?
    Is there a screen protector or case blocking the speaker on the device?

  • My iPod nano said it couldn't download a song and don't know why

    I was downloading my MC Solar songs to my iPod and it was able to download all but one song and said it wasn't able to download it. I don't see anything different about that song and I don't know why it would download the others but not just this one song. Can anyone offer any help?

    Did it give an error message? If so what did it say?

  • When i try to send email from my ipad i get the message The recipient "£)()&&£)" was rejected by the server. This has only just started to happen and I don't know why. Please help. I have tried lots of things now and cannot solve it.

    When i try to send email from my ipad i get the message The recipient "£)()&amp;&amp;£)" was rejected by the server. This has only just started to happen and I don't know why. Please can someone help. I have tried lots of things now and cannot solve it.

    "Your email account" means to tap on the name of your email account. Whatever it is listed as in the settings.
    In my mail settings, one of my email accounts is a Comcast account. I tap on the Comcast name and it brings up this window.
    Then I tap on the arrow under the Outgoing mail server smtp setting to get to the next window.
    In the resulting window, I then tap on the arrow next to the smtp server under the Primary Server setting.
    That brings up this window in which I check to make sure that my user name and password have been entered correctly. If those items are missing, enter them in the appropriate fields and then tap done.

  • In my Macbook Pro finder folder under All Images, there are duplicate files, but one is small and the other is full size. I wanted to clean up the files, but don't know why I have two of everything. Any Ideas?

    In my Macbook Pro, the Finder folder has duplicate images in the 'all images' file. One image is small and the other is full size. First question is why do I have two of every image? Why is one small and the other large. Do I need two of everything? If not, which do I delete?
    thanks, Jean

    Hello fane,
    Re: duplicate images in finder.
    Nearly all images are JPG with a few GIF and PNG sprinkled in.
    I opened the inspector so I do get info when opening each image, but it a slow process.
    It seems that one image is around 70k while its twin can be up to 4Mb which is what comes unedited from my camera. Sometimes there will be 3 or 4 identical images in finder, but when I open iPhoto to see what ‘s really in the file, I find only one image, and it’s full sized.
    Are all these extra images, even if they are aliases, taking up space on my drive? And should I delete them? The info bar says I have over 10,000 images, which is rather a lot  for what I do.
    I am unable to add the file size on the view menu as it is grayed out. Don’t know why it’s gray, but having that info on the screen would save a lot of time and fiddling with each image.
    I am trying to resize selected pix so I can upload them to e-bay, which requires less than 70k. I have looked at resizing programs but most are for PC platform and not Mac, so I am trying to resize in the finder window under tools. Tedious at best. Any suggestions will be appreciated
    Thanks for your help,
    jeanfromwilsonville

Maybe you are looking for