No response from the server after January 31, 2008

Hello

Earlier, came across a strange problem. I'm working on a flex application using Flex 2 SDK and the screens LCD with Tomcat. Everything was working fine until yesterday (January 31, 2008).
But when I run my application today (February 1, 2008), the request goes to the server and infact the server has processed the request (see leave log files) but the answer is not the client (result or fault).
If I change my local system date or before yesterday (January 31, 2008) and run the application, everything works fine.

I guess that's due to problem of license with LCDs, but I m using the Express version, which has no such restrictions. I'm looking at the same.

In the mean time I would, if I could get hints or solutions to the problem above.

Thank you
Mylene.

I found the problem.
It has nothing to do with any type of licenses.
There was a bug in date with Hibernate has been using our app and fix this problem solved this problem.

Tags: Flex

Similar Questions

  • Satellite Pro P100: Wlan with no response from the server proxy C-27

    I have a laptop model Satellete Pro P100 and tries to connect to a wireless router.
    I was able to connect to it over the past four months.

    Last week, I connected to a wired network and now he refuses to re - connect to my home wireless network. He acknowledges that I am connected but connectivity doctor says "there is no response from the server proxy (c-27).

    A friend in the House is able to connect to the internet with their computer without problem.
    I have tried everything I know, but need help please. Thank you

    Hello

    Have you checked in the properties of Wlan settings and the TCP/IP properties?
    Please check if the options: IP automatically get an address and get server address DNS are automatically set correctly.

  • Mailbox unavailable. The response from the server is: 5.7.1 error: content rejected

    I have an application that sends emails when running. Off late a user when he tries to send a mail it receives the following error message...

    "System.Net.Mail.SmtpException: unavailable mailbox." "The response from the server is: 5.7.1 error: content rejected '...

    Note that this happens when he tries to send mail to itself and not otherwise. Can someone here on which could mean the error? Thanks in advance... :))

    Error code is generated in the back-end.

    'System.Net.Mail.

    to System.Net.Mail.

    to System.Net.Mail.

    to System.Net.Mail.

    to System.Net.ClosableStream.

    to System.Net.Mail.MailWriter.

    to System.Net.Mail.SmtpClient.

    Hi guys,.

    Thanks for the reply!

    I contacted my sources by taking care of the servers and realized that the user was an id in which the address of the server was not set up with our servers in domain. He used to connect to our servers using the VPN client. This is why he could not send mails to id field not (in this case itself).

  • Cannot send an email "response from the server: Message contains spam...»

    One of my email accounts cannot send an email... And the message came

    "Response from the server: Message contains spam or virus or the sender is blocked: field32_1e2afb1a2cd02.

    It is said to select another off from server...

    I did something wrong, or is there a setting I need to change?

    Thank you

    Yes it has been fixed, thanks

  • No response from the server when you try to publish the page.

    My site was working fine last night but this morning that it does not load and im getting an error "no response from the server" when I try to publish it.

    www.joshuasisneyphotography.com

    I don't have much experience with that kind of stuff. Please help me. I don't know what I have to do. My internet connection seems to work very well and like I said the site was fine a few hours ago.

    Hello

    Please try to delete the temporary files for Muse and then try to publish the site again.

    Here's a post on the forum related on how to clear temporary files: http://forums.adobe.com/message/5086018#5086018

    Hope this helps you publish the site.

    Rgeards,

    Fox

  • receive the same response from the server - glued

    Hello

    I write a simple client/server application. I'm a little stuck on the same response from the server. Instead of sending and receiving plain text, I chose to wrap messages in the command objects (containing a statement and a list of values). He worked for a while, until I realized that I continue to create new objects for each request and response to and from the server. I thought that it's a waste, so I created a reset method (commands command) to update the same object instance instead of creating new command objects. And since I get the same response from the server.

    I've debugged client and the server, and I see that it is as if the server does not read a new order, but he is stuck on the last (which is the first).

    It's the class ServerThread run() method:
    @Override
        public void run() {
            try {
                out = new ObjectOutputStream(socket.getOutputStream());
                in = new ObjectInputStream(socket.getInputStream());
                Command fromClient = null, toClient = null;
                Protocol p = new Protocol();
                
                try {
                    //Reading input from Client
                    while ((fromClient = (Command) in.readObject()) != null) {
                        toClient = p.processInput(fromClient);
                        out.writeObject(toClient);
                        
                    }
                } catch (EOFException e) {
                    //Swallow this exception
                } catch (ClassNotFoundException e) {
                    e.printStackTrace();
                }
    
                out.close();
                in.close();
                socket.close();
                
            } catch (SocketException e) {
                //Swallow this exception
            } catch (IOException e) {
                e.printStackTrace();
            } finally {
            }
        }
    It's the processInput (...) method of the class of Protocol:
    public Command processInput(Command fromClient) {
    
    
            if (fromClient.getCommand() == Commands.REQ_GREET_ME) {
                currentCommand.reset(Commands.REPLY);
                currentCommand.addValue(new Value("Welcome to the Aardenon server."));
    
            } else if (fromClient.getCommand() == Commands.REQ_PLAYER_COUNT) {
                currentCommand.reset(Commands.REPLY);
                currentCommand.addValue(new Value("There are " + AcceptorThread.threadCount() + " players online."));
    
            } else if {
                //Some other commands...
            }
            return currentCommand;
            
        }
    It's the method of hand (...) (shortcut) to the customer class:
    public static void main(String[] args) {
    
            ClientUI clientUI = new ClientUI();
            clientUI.printWelcome();
    
            Socket socket = null;
            ObjectOutputStream out = null;
            ObjectInputStream in = null;
            BufferedReader stdIn = null;
    
            try {
                socket = new Socket("localhost", PORT);
                if (socket != null) {
                    clientUI.printConEstablished();
    
                    out = new ObjectOutputStream(socket.getOutputStream());
                    in = new ObjectInputStream(socket.getInputStream());
                    stdIn = new BufferedReader(new InputStreamReader(System.in));
    
                    Command currentCommand;
                    CommandCreator commandCreator = new CommandCreator();
                    Command toServer = new Command(), fromServer;
                    String fromUser;
    
                    try {
                        
                        toServer.reset(Commands.REQ_GREET_ME);
                        out.writeObject(toServer);
                    
                        fromServer = (Command) in.readObject();
                        if (fromServer != null) System.out.println(fromServer.getValue(0).get());
    
                        toServer.reset(Commands.REQ_PLAYER_COUNT);
                        out.writeObject(toServer);
    
                        fromServer = (Command)in.readObject();
                        if (fromServer != null) System.out.println(fromServer.getValue(0).get());
    
                        //Here some more conversation based on user input...
                        
                        //Handle exceptions  and finally...
    I hope that the code is self-explanatory.

    PR.

    Try to play with ObjectOutputStream.reset (). My understanding is that the same object to write to the stream of data twice causes some kind of optimisation whereby the second time that only a reference to the first serialized object is written. Reset() can cause the object to rewrite it completely in its new State.

    PS: Creating objects is cheap these days. Don't feel that you were running a premature optimization? I'm not saying you do, just be wary of him! You can already see a negative effect of it: more fragile code and more complicate.

  • No error response from the server when the file transfer

    Hi, I just changed my Web site a server based on windows to linux. I was not in trouble, and now I can't get my files to load on the server. I contacted the server provider who has tested the things to their end and say that the problem is with dreamweaver. This is the message I get...

    n response o server when the transfer of file... reconnection.

    It is said that it is to put the file, and then I get this message again...

    no response from the server during the transfer. 2 attempts.  Retry or cancel?

    If I hit Cancel, then he starts to put the file and it will sometimes, sometimes not.

    Now, if I managed to pass the file, when I post it on the web and click on the link it says the file is damaged or corrupted.

    Someone has any idea how to solve this problem? I'm new to web design and dreamweaver and I thought that maybe the problem is related to the definition of my site, but I don't see that there is a problem. I noticed that before I changed the definition of site for the linux server I could easily preview my pages in the browser without having to post it on the site. Now when I try to preview my page it says that I have to put on the site to view. Which could be related?

    I work on a Mac and you have not installed a firewall.

    Any help is very appreciated!

    Thank you!

    In the Site settings (Advanced Mode) it is an option when configuring the remote for passive mode FTP connection.  Try to check that box and see if you are able to connect.

  • I can't have the deleted messages from the server after that they landed in my box in. There was a checkbox in the settings of the server to "leave messages on server".

    My other 2 accts in THB have the checkbox to remove the message from the server. they are configured as a POP mail server The new account is IMAP if this has any bering.

    There. With IMAP, all mail is handled on the server. You can move messages from the server to your 'Local folders' account if that's what you want to do.

  • Response from the server Essbase does'nt KO: lots of running java process

    Hello

    We have an Essbase server in v11.1.1.3 installed on a HP - UX server, since a few days, we have a problem with the answer to Essbase.

    Many java processes multiply the server.

    These processes include response times can stop the Essbase server to work properly.

    part of the extract of a ps command:

    17689 1 0 14 dec epm11?         0:25 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    epm11 24179 12376 1 07:14:33 pts/0 0:00 ps - eadf

    23867 1 0 14 dec epm11?         0:26 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    13143 1 0 14 dec epm11?         0:21 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    21015 1 0 15 Dec epm11?         0:19 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    epm11 24180 12376 0 07:14:33 pts/0 0:00 grep epm11

    12811-1 epm11 = 0 pts/0 Dec 13 01:11 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - DSname = cmc_ui-DCMC_UI = true - DHYPERION_HOME / software/epm11 - Dhyperion.h

    22277 1 0 15 Dec epm11?         0:19 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    26674 1 0 14 dec epm11?         0:33 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    6733 1 0 14 dec epm11?         0:32 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    14741 1 0 14 dec epm11?         0:23 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    20374 1 0 14 dec epm11?         0:21 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    25858 1 0 14 dec epm11?         0:28 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    18711 1 0 14 dec epm11?         0:31 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    24206 1 0 15 Dec epm11?         0:18 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    6162 1 0 14 dec epm11?         0:21 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    epm11 7885 1 0 02:00:13?         08:50 / software/epm11/essbase_inst4/bin/ESSBASE-b-secure

    4818 1 0 14 dec epm11?         0:31 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    1593 1 0 14 dec epm11?         0:23 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    16204 1 0 14 dec epm11?         0:27 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    18654 1 0 14 dec epm11?         0:21 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    28649 1 0 15 Dec epm11?         0:18 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    27676 1 0 14 dec epm11?         0:24 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    14064 1 0 14 dec epm11?         0:24 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    755 1 0 14 dec epm11?         0:32 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    2447 1 0 14 dec epm11?         0:28 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    22555 1 0 14 dec epm11?         0:36 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    22846 1 0 14 dec epm11?         0:26 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    23586 1 0 14 dec epm11?         0:27 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    14844 1 0 14 dec epm11?         0:25 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    4721 1 0 14 dec epm11?         0:34 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    8433 1 0 14 dec epm11?         0:28 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    4418 1 0 14 dec epm11?         0:21 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    4012 1 0 14 dec epm11?         0:24 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    29684 1 0 14 dec epm11?         0:26 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    273 1 0 14 dec epm11?         0:28 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    14568 1 0 15 Dec epm11?         0:17 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    9494 1 0 14 dec epm11?         0:24 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    19084 1 0 15 Dec epm11?         0:19 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    8400 1 0 14 dec epm11?         0:33 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    epm11 14825 7885 0 06:05:02?         0:02 / software/epm11/essbase_inst4/bin/ESSSVR ITO_APP hgfedc NOCREATE 10000 65535 ' ' 1 4 2902458370 1 53 56 2 English_United /NODEBUG

    23775 1 0 14 dec epm11?         0:23 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    28221 1 0 14 dec epm11?         0:31 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    28334 1 0 14 dec epm11?         0:23 /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    The problem happened twice since last week.

    We must stop Essbase service and instance and after that, we have to kill ALL process dupliqued: /logiciel/epm11/common/JRE-64/HP/1.5.0/bin/IA64N/java - classpath /logiciel/epm11/scripts/lib/log4j-opc-1.0.2.jar:/logiciel/epm1

    Can you help us solve the problem.

    We need to understand why and how to solve the problem of client ower.

    TX for your answer.

    Kind regards

    Olivier.

    can you show the startup applications logs?

    -stop application

    clear log

    start the application.

    ER

  • Cannot publish - no response from the server

    Can I publish is no longer one of my Web sites. I get the message "no response from Server" for each of them. I waited a few hours, same result. I uninstalled and reinstalled Muse - still nothing.

    In its current wording, all my sites are now unnecessary toally - and I have some major updates to make.

    Everything was fine until that I've updated the product, now its totally redundant. This "useful" someday

    What can you do to correct the killer Adobe update?

    You are using IE or IE are the browser by default or not, you must do the following:

    (1) in Internet Explorer go to tools > Internet Options > advanced

    (2) scroll down the "settings."

    (3) find the boot options "use SSL... ' and 'use TLS... ". »

    Put 4) the option "Use SSL 3.0" (and any higher version number, if you have one).

    (5) turn on all the options "use TLS... "(versions 1.0, 1.1, etc..)

    6) click OK to the dialog box.

    Now stop Muse, if it is running. Launch, open your file and publish them.

  • BlackBerry smartphones, no Option to delete an e-mail from the server after getting a replacement Tour

    I was one of those people who had a problem with my new tour trackball. Verizon replaced. Since then, I noticed that when you delete emails I have more option to delete the server of mail also. Is there a setting I need to change?

    Open your Messages folder > Menu > Options > Email reconciliation > and set your preferences for each e-mail set up on your device address.

  • OBIEE 11 g parse error: error 500 - internal error from the server (after upgrade to 11.1.1.9)

    Hi, I have a problem after the update successfully from 11.1.1.7 to 11.1.1.9. All the upgrade steps are successfully completed. But the analysis is down with the error below. Presentation server seems to be down and will not start. Sometimes it starts and still the same error. Any help would be appreciated.

    Parse error:

    Error 500 - Internal server error

    bifoundation_domain.log / bi_server1 - diagnostics.log

    < 3a6e0f40214b390d:-386ebfa2:14e69d6303c: - 8000-0000000000000023 > < 1436294858264 > < OBI-SEC-00101 > < failed validation of the system – the system user profile user is not found in the identity store.

    oracle.bi.security.service.UserProfileNotFoundException

    at oracle.bi.security.service.URIdentityStoreProvider.getUserProfileHolder(URIdentityStoreProvider.java:378)

    at oracle.bi.security.service.SystemUserValidator.validateSystemUserProfile(SystemUserValidator.java:224)

    in oracle.bi.security.service.SystemUserValidator.access$ 100 (SystemUserValidator.java:32)

    to oracle.bi.security.service.SystemUserValidator$ 1.run(SystemUserValidator.java:116)

    to oracle.bi.security.service.SystemUserValidator$ 1.run(SystemUserValidator.java:110)

    Thank you

    RC

    The problem has been resolved by removing the Active Directory (MSAD) of the list of suppliers and creating a new bisystemuser in the defaultauthenticator.

  • ViewMail, no response from the server

    Hello

    I have a user that does not stop a server on its viewmail message response.  I uninstalled Viewmail and reinstalled, who worked for a day.  The next day, the same message that has happened.

    ViewMail Version: 9.0.0.2

    Variant of connecting the unit: 8.6.2.20000 - 76

    Office version: Office 2010

    Hello pjlehnert,

    If it worked before and is more I suggest you discover if the recent plug-ins (modules) have been installed in Outlook as it is known that some third-party modules will interrupt the VMO.

  • After update today no response from the computer after restart on June 6, 2009

    Hello. I just, I was wondering if someone who has updated XP today is having the same problems. I have updated the automatic updater and restarted as requested. The box came but no response no matter what, as if the hd was fried. All my fans turn on but nothing on the screen my DVD players don't openand even as the lights of the habit of my keyboard lights still. Any idea would be useful.

    Try unplugging al computer, power, cable make sure ther is not a CD or a DVD inserted and try again.
    If you get nothing on the screen is it possible that you're computer has hardware problems.
    Simply plug the necessary input devices and the power to run the diagnostic tests. (mouse, keyboard, scree)
    I wouuld also suggest to perform a complete diagnosis of a bootable CD.
    Your computer has an integrated video card? If you have an external disconnect and add plug the monitor cable onboard video card.

    Thank you

    Martin
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think

  • BlackBerry Smartphones retrieivng emails from the server after end of Verizon contract.

    I have my contract with Verizon has just ended, has got a new phone (not a BB), enabled and then realized after that I had no way to access any new e-mail that came to my acct vzw.blackberry off, it.

    How can I do that.

    My apologies in advance if I is a totally noob or the question that has been answered previously. just frustrated!

    Is an e-mail address '[email protected] '?

    These emails are visible ONLY using your BlackBerry, no other device or computer.

    Sorry... When you have removed your terminal BlackBerry and your account, you have lost your access to this mail.

Maybe you are looking for

  • Why my status check Plugin does not load, but instead it keeps spinning?

    I need to update my software Macromedia shockwave player, but I can't do it, since my status Plugin check page fails to display my plug ins, instead it just says: 'Verification with Mozilla on the status of your plugins' forever.

  • How do you remove Firefox computer, will not "remove hardware".

    Tried to remove firefox from computer. I tried "Add/Remove harware, programs" from the Control Panel, will be nothing continues to pop up. Several months ago firefox was crushed and computer would not let me connect to the internet. Returned to inter

  • surge in the House and now the pc does not start

    Despite beinbg plugged into a surge protector, it seems as if the power went out while I was away from home and this caused a wave (a conclusion). I guess it was a wave because now my HP 7250n media center pc will not start. Do not nothing fans. Just

  • processor ugrades

    I have a G60-213EM laptop with a celeron dual core cpu T1600 and wanted to upgrade to a better... someone knows who will work CPU. the cpu I was considering is a T7200 2.0 ghz, 4 mb cache 667fsb I had read that its an upgrade which is ideal for merom

  • Pls HELP blackBerry smartphones! BB 8520 froze

    My BB Curve 8520, carrier is Vodafone in India froze. It happened when I was upgrading level player id calling & mobile applications of SFC. The screen froze showing apps "allow / deny". mobile SFC. I removed the battery like the sim & reinserted, bu