Can someone translate this HTTPD error?

This log is from when I start the webserver from server app, I have two virtual host created that should work on port 80 and the default that runs on port 443.
Aug 25 14:11:52 myserver servermgrd[36879]: servermgr_web: enabling
Aug 25 14:11:55 myserver com.apple.launchd.peruser.70[37300]: Background: Bug: launchd_core_logic.c:3063 (24984):3
Aug 25 14:11:55 myserver com.apple.launchd.peruser.70[37300]: Background: job_mig_intran() was confused by PID 37105 UID 70 EUID 70 Mach Port 0x1a07:
Aug 25 14:11:55 myserver com.apple.launchd.peruser.70[37300]: Bug: launchd_core_logic.c:8528 (24984):3: j != NULL
Aug 25 14:11:55 myserver org.apache.httpd[37303]: [Thu Aug 25 14:11:55 2011] [warn] NameVirtualHost 83.246.3.34:80 has no VirtualHosts
Aug 25 14:11:56 myserver servermgrd[36879]: servermgr_web: Disabling port forwarding for port 80
Aug 25 14:11:57: --- last message repeated 1 time ---
Aug 25 14:11:57 myserver servermgrd[36879]: servermgr_web: waiting for pid, file /private/var/run/httpd.pid.
Aug 25 14:11:57 myserver org.apache.httpd[37310]: [Thu Aug 25 14:11:57 2011] [warn] _default_ VirtualHost overlap on port 80, the first has precedence
Aug 25 14:11:57 myserver org.apache.httpd[37310]: [Thu Aug 25 14:11:57 2011] [warn] _default_ VirtualHost overlap on port 443, the first has precedence
Aug 25 14:11:57 myserver com.apple.launchd[1] (org.apache.httpd[37310]): Exited with code: 1
Aug 25 14:11:57 myserver com.apple.launchd[1] (org.apache.httpd): Throttling respawn: Will start in 10 seconds
Aug 25 14:11:58 myserver servermgrd[36879]: servermgr_web: waiting for pid, file /private/var/run/httpd.pid.
Aug 25 14:12:02: --- last message repeated 3 times ---
Aug 25 14:12:02 myserver servermgrd[36879]: servermgr_web: Enabling port forwarding for port 80
Aug 25 14:12:02: --- last message repeated 1 time ---
Aug 25 14:12:02 myserver servermgrd[36879]: servermgr_web: Cannot confirm Apache was started; missing or invalid pid file
Aug 25 14:12:07 myserver org.apache.httpd[37321]: [Thu Aug 25 14:12:07 2011] [warn] _default_ VirtualHost overlap on port 80, the first has precedence
Aug 25 14:12:07 myserver org.apache.httpd[37321]: [Thu Aug 25 14:12:07 2011] [warn] _default_ VirtualHost overlap on port 443, the first has precedence
Aug 25 14:12:07 myserver com.apple.launchd[1] (org.apache.httpd[37321]): Exited with code: 1
Aug 25 14:12:07 myserver com.apple.launchd[1] (org.apache.httpd): Throttling respawn: Will start in 10 seconds
Aug 25 14:12:17 myserver org.apache.httpd[37325]: [Thu Aug 25 14:12:17 2011] [warn] _default_ VirtualHost overlap on port 80, the first has precedence
Aug 25 14:12:17 myserver org.apache.httpd[37325]: [Thu Aug 25 14:12:17 2011] [warn] _default_ VirtualHost overlap on port 443, the first has precedence

Let's go to end of the universe!! step by step =)
Aug 25 14:11:55 myserver org.apache.httpd[37303]: [Thu Aug 25 14:11:55 2011] [warn] NameVirtualHost 83.246.3.34:80 has no VirtualHosts
That means that "below your NamedVirtualHost specification there is no Virtual Host defined"
VirtualHost are here to allow you to have multiple web pages below the same IP.
A common Virtual Host definition is:
NameVirtualHost *
    <VirtualHost *>
    ServerName www.domain.tld
    DocumentRoot /www/domain
    </VirtualHost>
    <VirtualHost *>
    ServerName www.otherdomain.tld
    DocumentRoot /www/otherdomain
    </VirtualHost>
Following your Log, you have a "NameVirtualHost 83.246.3.34:80" definition without any following "<VirtualHost 83.246.3.34:80>" directive.
All site's configuration files are in /etc/apache2/sites/
Aug 25 14:11:57 myserver org.apache.httpd[37310]: [Thu Aug 25 14:11:57 2011] [warn] _default_ VirtualHost overlap on port 80, the first has precedence
Aug 25 14:11:57 myserver org.apache.httpd[37310]: [Thu Aug 25 14:11:57 2011] [warn] _default_ VirtualHost overlap on port 443, the first has precedence
That two messages means the same, that "there are two identical VirtualHost definitions, so i'll use the first one"
That means that you have two "<VirtualHost XXX>" directives with the same or missing "ServerName" definition.
The Web Server a.k.a. Apache uses the "ServerName" to forward request to one or other definition.
Let's see an example with this missconfiguration:
NameVirtualHost 83.246.3.34:80
  <VirtualHost 83.246.3.34:80>
  ServerName www.domain.com
  DocumentRoot /www/domain
  </VirtualHost>
  <VirtualHost 83.246.3.34:80>
  ServerName www.domain.com
  DocumentRoot /www/otherdomain
  </VirtualHost>
... when a connection is made to www.domain.com resoults in going to 83.246.3.34 port 80
Then Apache doesn't know where to go (/www/domain or /www/otherdomain) so it will go to the first definition
Aug 25 14:11:57 myserver com.apple.launchd[1] (org.apache.httpd[37310]): Exited with code: 1
Aug 25 14:11:57 myserver com.apple.launchd[1] (org.apache.httpd): Throttling respawn: Will start in 10 seconds
This means "Apache process exit with errors, will try to restart it in 10 sec".
Note that previous errors should not make Apache process die.
Aug 25 14:11:58 myserver servermgrd[36879]: servermgr_web: waiting for pid, file /private/var/run/httpd.pid.
Aug 25 14:12:02 myserver servermgrd[36879]: servermgr_web: Cannot confirm Apache was started; missing or invalid pid file
The ".pid" file is just a text file with the process number in it (in this case, 36879).
This file helps other process to kill or restart the Apache's process if needed.
That say that "no .pid file was created, or invalid file was created, for example an empty one".
Stop the Web Server and check that the .pid file is not there (/private/var/run/httpd.pid).
Start the Web Server and check that the .pid file is there and has the propper content.
You can get the PID (Process ID) for a process performing a "ps" command from the command line:
#ps aux | grep http
make the force b with u!

Similar Messages

  • Can someone translate this vi to LV 5.0?

    Can someone translate this vi to LV 5.0?
    Thanks
    Gorka
    Attachments:
    Write_Table_and_Chart_to_XL.llb ‏240 KB

    Try this one.
    Hope it works!
    Brian
    Attachments:
    Write_Table_and_Chart_to_XL50.llb ‏163 KB

  • Can someone translate this?, Can someone translate this?

    Hello everyone, is there anyone who can make sense of the following information?
    Mon Feb  4 11:57:29 2013
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x000000001B613018 PC=0x00000000000A9AE4
    Latest crash info for cpu 0:
       Exception state (sv=0x381B9A00)
          PC=0x000A9AE4; MSR=0x00003030; DAR=0x1B613018; DSISR=0x40000000; LR=0x00003820; R1=0xFC14FC27; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
             backtrace terminated - unaligned frame address: 0xFC14FC27
    Proceeding back via exception chain:
       Exception state (sv=0x381B9A00)
          previously dumped as "Latest" state. skipping...
    Kernel version:
    Darwin Kernel Version 8.11.0: Wed Oct 10 18:26:00 PDT 2007; root:xnu-792.24.17~1/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 0:
          Backtrace:
             0x000954F8 0x00095A10 0x00026898 0x000A8204 0x000ABB80
    Proceeding back via exception chain:
       Exception state (sv=0x381B9A00)
          PC=0x000A9AE4; MSR=0x00003030; DAR=0x1B613018; DSISR=0x40000000; LR=0x00003820; R1=0xFC14FC27; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
             backtrace terminated - unaligned frame address: 0xFC14FC27
    Kernel version:
    Darwin Kernel Version 8.11.0: Wed Oct 10 18:26:00 PDT 2007; root:xnu-792.24.17~1/RELEASE_PPC

    I was running BOINC, Safari, and Vuze at the time.  Maybe iTunes too but thats really all I have on the computer right now.  I sprayed the inside with canned air and now one stick of RAM is not reconized.  Here is the full report.
    Sun Feb  3 23:58:01 2013
    panic(cpu 0 caller 0x0001D1D8): ipc_mqueue_receive_results: strange wait_result
    Latest stack backtrace for cpu 0:
          Backtrace:
             0x000954F8 0x00095A10 0x00026898 0x0001D1D8 0x000A9714
    Proceeding back via exception chain:
       Exception state (sv=0x3868A280)
          PC=0x9000AF48; MSR=0x0000F030; DAR=0x060B4000; DSISR=0x42000000; LR=0x9000AE9C; R1=0xF1E3B360; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.11.0: Wed Oct 10 18:26:00 PDT 2007; root:xnu-792.24.17~1/RELEASE_PPC
    Mon Feb  4 00:16:07 2013
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x0000000000000004 PC=0x00000000000630F4
    Latest crash info for cpu 0:
       Exception state (sv=0x37D7F780)
          PC=0x000630F4; MSR=0x00009030; DAR=0x00000004; DSISR=0x42000000; LR=0x00063064; R1=0x21F03DB0; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x00062FDC 0x000A865C 0x000ABB80
    Proceeding back via exception chain:
       Exception state (sv=0x37D7F780)
          previously dumped as "Latest" state. skipping...
       Exception state (sv=0x37CA3C80)
          PC=0x9FB068C4; MSR=0x0200F030; DAR=0x0DF75000; DSISR=0x42000000; LR=0x9FB06640; R1=0xBFFF7B50; XCP=0x0000000C (0x300 - Data access)
    Kernel version:
    Darwin Kernel Version 8.11.0: Wed Oct 10 18:26:00 PDT 2007; root:xnu-792.24.17~1/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 0:
          Backtrace:
             0x000954F8 0x00095A10 0x00026898 0x000A8204 0x000ABB80
    Proceeding back via exception chain:
       Exception state (sv=0x37D7F780)
          PC=0x000630F4; MSR=0x00009030; DAR=0x00000004; DSISR=0x42000000; LR=0x00063064; R1=0x21F03DB0; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x00062FDC 0x000A865C 0x000ABB80
       Exception state (sv=0x37CA3C80)
          PC=0x9FB068C4; MSR=0x0200F030; DAR=0x0DF75000; DSISR=0x42000000; LR=0x9FB06640; R1=0xBFFF7B50; XCP=0x0000000C (0x300 - Data access)
    Kernel version:
    Darwin Kernel Version 8.11.0: Wed Oct 10 18:26:00 PDT 2007; root:xnu-792.24.17~1/RELEASE_PPC
    Mon Feb  4 00:28:11 2013
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x0000000000000008 PC=0x00000000000754C0
    Latest crash info for cpu 0:
       Exception state (sv=0x382D1000)
          PC=0x000754C0; MSR=0x00009030; DAR=0x00000008; DSISR=0x40000000; LR=0x00078EBC; R1=0x21F13550; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x00000000 0x0028AA98 0x000E8B10 0x00223174 0x00228AB8 0x00228D54
             0x000FBA54 0x000E249C 0x000E2030 0x000EEDF8 0x000EF05C 0x000EF0FC 0x002ABDB8 0x000ABD30
             0x028D3CE0
    Proceeding back via exception chain:
       Exception state (sv=0x382D1000)
          previously dumped as "Latest" state. skipping...
       Exception state (sv=0x37D1FC80)
          PC=0x90005EAC; MSR=0x0200F030; DAR=0x05C05E2D; DSISR=0x40000000; LR=0x00015AE0; R1=0xBFFFEE90; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.11.0: Wed Oct 10 18:26:00 PDT 2007; root:xnu-792.24.17~1/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 0:
          Backtrace:
             0x000954F8 0x00095A10 0x00026898 0x000A8204 0x000ABB80
    Proceeding back via exception chain:
       Exception state (sv=0x382D1000)
          PC=0x000754C0; MSR=0x00009030; DAR=0x00000008; DSISR=0x40000000; LR=0x00078EBC; R1=0x21F13550; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x00000000 0x0028AA98 0x000E8B10 0x00223174 0x00228AB8 0x00228D54
             0x000FBA54 0x000E249C 0x000E2030 0x000EEDF8 0x000EF05C 0x000EF0FC 0x002ABDB8 0x000ABD30
             0x028D3CE0
       Exception state (sv=0x37D1FC80)
          PC=0x90005EAC; MSR=0x0200F030; DAR=0x05C05E2D; DSISR=0x40000000; LR=0x00015AE0; R1=0xBFFFEE90; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.11.0: Wed Oct 10 18:26:00 PDT 2007; root:xnu-792.24.17~1/RELEASE_PPC
    Mon Feb  4 11:57:29 2013
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x000000001B613018 PC=0x00000000000A9AE4
    Latest crash info for cpu 0:
       Exception state (sv=0x381B9A00)
          PC=0x000A9AE4; MSR=0x00003030; DAR=0x1B613018; DSISR=0x40000000; LR=0x00003820; R1=0xFC14FC27; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
             backtrace terminated - unaligned frame address: 0xFC14FC27
    Proceeding back via exception chain:
       Exception state (sv=0x381B9A00)
          previously dumped as "Latest" state. skipping...
    Kernel version:
    Darwin Kernel Version 8.11.0: Wed Oct 10 18:26:00 PDT 2007; root:xnu-792.24.17~1/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 0:
          Backtrace:
             0x000954F8 0x00095A10 0x00026898 0x000A8204 0x000ABB80
    Proceeding back via exception chain:
       Exception state (sv=0x381B9A00)
          PC=0x000A9AE4; MSR=0x00003030; DAR=0x1B613018; DSISR=0x40000000; LR=0x00003820; R1=0xFC14FC27; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
             backtrace terminated - unaligned frame address: 0xFC14FC27
    Kernel version:
    Darwin Kernel Version 8.11.0: Wed Oct 10 18:26:00 PDT 2007; root:xnu-792.24.17~1/RELEASE_PPC
    Mon Feb  4 13:07:53 2013
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x000000001B613018 PC=0x00000000000A9AE4
    Latest crash info for cpu 0:
       Exception state (sv=0x381B9A00)
          PC=0x000A9AE4; MSR=0x00003030; DAR=0x1B613018; DSISR=0x40000000; LR=0x00003820; R1=0xFC14FC27; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
             backtrace terminated - unaligned frame address: 0xFC14FC27
    Proceeding back via exception chain:
       Exception state (sv=0x381B9A00)
          previously dumped as "Latest" state. skipping...
    Kernel version:
    Darwin Kernel Version 8.11.0: Wed Oct 10 18:26:00 PDT 2007; root:xnu-792.24.17~1/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 0:
          Backtrace:
             0x000954F8 0x00095A10 0x00026898 0x000A8204 0x000ABB80
    Proceeding back via exception chain:
       Exception state (sv=0x381B9A00)
          PC=0x000A9AE4; MSR=0x00003030; DAR=0x1B613018; DSISR=0x40000000; LR=0x00003820; R1=0xFC14FC27; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
             backtrace terminated - unaligned frame address: 0xFC14FC27
    Kernel version:
    Darwin Kernel Version 8.11.0: Wed Oct 10 18:26:00 PDT 2007; root:xnu-792.24.17~1/RELEASE_PPC
    Thanks!
    (Safari quit while I typed this the first time so I took the opportunity to swap the Sonnet 1.4 for the origional 733.)

  • Can someone translate this short kernel panic report for me?

    I got this after my internet suddenly went down (Safari stopped loading pages, but my Adium messenger was still working). And then, I think, the internet for my area went down (snow storm) and I'm hoping this kernel panic had something to do with that and not with defective hardware. Here it is below:
    panic.log:
    Description: Panic (system crashes) log
    Size: 851 bytes
    Last Modified: 1/31/07 1:44 AM
    Location: /Library/Logs/panic.log
    Recent Contents: Wed Jan 31 01:44:27 2007
    panic(cpu 0 caller 0x0033096E): fdfree: found fp with UF_RESERVED
    Backtrace, Format - Frame : Return Address (4 potential args on stack)
    0x252c3db8 : 0x128d08 (0x3c9afc 0x252c3ddc 0x131de5 0x0)
    0x252c3df8 : 0x33096e (0x3e79f0 0x4261a90 0x26 0x31f3be)
    0x252c3e38 : 0x337f4e (0x4a4ddac 0x8 0x0 0x352ea000)
    0x252c3ec8 : 0x13b4f4 (0x4a4ddac 0x1 0x252c3ef8 0x199a51)
    0x252c3ef8 : 0x13cd1a (0x39b55d0 0x0 0x252c3f28 0x1a1ec0)
    0x252c3f38 : 0x13cb77 (0x39b55f0 0x39b5348 0x397ecfc 0x397ecb8)
    0x252c3f78 : 0x127406 (0x1 0x398a000 0x1 0x4)
    0x252c3fa8 : 0x1a1e3d (0xffffffff 0x1 0x19ad60 0x3e0f880)
    0x252c3fc8 : 0x19a866 (0x0 0x0 0x10 0x3e0f880) Backtrace terminated-invalid frame pointer 0x252c3f58
    Kernel version:
    Darwin Kernel Version 8.8.2: Thu Sep 28 20:43:26 PDT 2006; root:xnu-792.14.14.obj~1/RELEASE_I386

    Hardware test said there was no problem, system information:
    Memory Slots:
      ECC:          Disabled
    BANK 0/DIMM0:
      Size:          4 GB
      Type:          DDR3
      Speed:          1333 MHz
      Status:          OK
      Manufacturer:          0x06C1
      Part Number:          0x5353413330324730382D45444A3143202020
      Serial Number:          0x000001C5
    BANK 1/DIMM0:
      Size:          2 GB
      Type:          DDR3
      Speed:          1333 MHz
      Status:          OK
      Manufacturer:          0x80CE
      Part Number:          0x4D34373142353637334648302D4348392020
      Serial Number:          0x9450084C
    BANK 0/DIMM1:
      Size:          4 GB
      Type:          DDR3
      Speed:          1333 MHz
      Status:          OK
      Manufacturer:          0x0000
      Part Number:          0x000000000000000000000000000000000000
      Serial Number:          0x00000000
    BANK 1/DIMM1:
      Size:          4 GB
      Type:          DDR3
      Speed:          1333 MHz
      Status:          OK
      Manufacturer:          0x04CB
      Part Number:          0x414437334931433136373445562020202020
      Serial Number:          0x010D0200
    Ram has been like that for about 8 months or so.

  • Can someone translate these broadcast file specs?

    Hi -
    I'm totally confused by these Comcast broadcast specs -  http://vpcinc.net/ftp/RCA/Masons Spots/OMC Encoding Standards.doc
    Over the past years I've made some AE animations (CS5/Mac10.6) that were posted on the web.  Now the question is, "can I do the same for TV?".  But the spec sheet doesn't even mention After Effects!  Suddenly I have to make decisions that I've never made before and I hope  I can get some clear insight from the experienced folks here.
    The spot will contain a short video (7-9 seconds) but the rest of the 30sec will be audio with stills and text.
    If the spec sheet doesn't mention After Effects does that mean I have to use FCP - which IS mentioned?  (How do I make animations in FCP??)
    Let's say, for simplicity sake, I decide to work in SD.  That means that the short video clip should be shot at... what camera settings?  The spec sheet shows 720x486, 720x480 and 720x512.... so do I shoot at 4:3 or 16:9 (or what is NTSC-CCIR 601/DV ??).
    Can someone translate this for me and help me grasp the specs to follow for shooting and outputing this project?
    TIA your patience and input.
    JL

    The SD specs are all 4:3 formats (look at the aspect ratio row). You can shoot in 16x9, but will need to letterbox it. I think Final Cut is mentioned just because its so widely used. And the fact they accept Quicktime & ProRes is important to know (it's arguably the best quality delivery format of the four choices they give you, but will also be the biggest files to upload.)
    Use the AE NTSC D1 or NTSC DV preset and you'll be golden.
    Be sure to render using the DV Render Setting to get correct field rendering. Configure the Output Module to Quicktime movie with ProRes 422. with uncompressed 16bit / 48KHz audio (if there is audio). Tell ProRes it's interlaced footage by clicking the 'Format Option' button, then the 'Codec Option' button in the Output Module settings.
    Or render to an uncompressed format and use another media encoder. (iFFMPEG is my favorite for MPEG-2, Handbrake for h.264)

  • Multithreading - Can someone explain this ...

    Hi Java Gurus:
    Can someone explain this to me why my multithreading worked in once case and not in the other.
    First a little background:
    My application lets the user create multiple JInternalFrames. Each frame has an OK button. When the user presses the OK button, the frame goes about it's business in a new thread, thus returning control to the use, so he/she can press the OK button on the second frame .. and so on.
    Following is the event handler for the OK button that creates the new thread:
    case1 - doesn't work:
          btnTranslate.addActionListener(
             new ActionListener() {
                public void actionPerformed( ActionEvent e ) {
                             txtOutput.setText("");
                             txtBadParts.setText("");
                   Translation trans = new Translation(inst);
                   trans.run();
          );case2 - works:
          btnTranslate.addActionListener(
             new ActionListener() {
                public void actionPerformed( ActionEvent e ) {
                             txtOutput.setText("");
                             txtBadParts.setText("");
                       new Translation(inst).start();
          );Thanks,
    Kamran

    Calling the run method makes the run method run in the current thread. You need to call the start method to get the thread to start its own thread.

  • Can someone execute this program?

    Can someone execute this program for me and tell me if it works correctly? My DOS is acting funny.
    look for these things:
    - accepts input from keyboard and places them into an array
    - continues to accept names until a blank name is entered
    - array can contain up to 15 names
    - after all names are entered, it displays the contents of the array
    and writes them to a file
    - output should be in 2 columns
    if you see a problem, please tell me how to fix it.
    import java.io.*;
    * the purpose of this program is to read data from the keyboard
    * and put it into a sequential file for processing by ReadFile
    * @author Maya Crawford
    public class Lab0
    * this function will prompt and receive data from the keyboard
    * @return String containing the data read from the keyboard
    * @param BufferedReader that is connected to System.in
    */ (keyboard)
    public static String getData(BufferedReader infile)
    throws IOException
    System.out.println("enter a name");
    return infile.readLine();
    * this is the main program which will read from the keyboard and
    * display the given input onto the screen and also write the data
    * to a file
    * @param Array of Strings (not used in this program)
    public static void main(String[] args)
    throws IOException
    int i;
    String[] outString = new String[16];
    DataOutputStream output=null;
    // this code assigns the standard input to a datastream
    BufferedReader input= new BufferedReader(new InputStreamReader(System.in));
    // this code opens the output file...
    try
    output= new DataOutputStream(new FileOutputStream("javaapp.dat"));
    // handle any open errors
    catch (IOException e)
    System.err.println("Error in opening output file\n"
    + e.toString());
    System.exit(1);
    // priming read......
    for(i=0;i<outString.length;i++)
    outString=getData(input);
    // this is the loop to continue while nnonblank data is entered
    while (!outString.equals(""))
    for(i=0;i<outString.length;i++)
    outString[i]=getData(input);
    outString[i] = input.readLine();
    System.out.println("Name entered was:"+ outString[i]);
    output.writeBytes(outString[i]+"\r\n");
    int rcol=(outString.length+1)/2;
    for(i=0;i<(outString.length)/2;i++)
    System.out.println(outString[i]+"\t"+outString[rcol++]);
    // flush buffers and close file...
    try
    output.flush();
    output.close();
    catch (IOException e)
    System.err.println("Error in closing output file\n"
    + e.toString());
    // say goodnight Gracie...
    System.out.println("all done");

    Ok, here is what I came up with. I commented most of what I changed and gave a reason for changing it. My changes aren't perfect and it still needs to be tweeked. When you run the program you have to hit the enter key every time once before you type a name. When you are done typing names hit the enter key twice and it will output the names entered into the array. Like I said, it isn't perfect, and that part you will need to fix.
    import java.io.*;
    * the purpose of this program is to read data from the keyboard
    * and put it into a sequential file for processing by ReadFile
    * @author Maya Crawford
    public class Lab0
         * this function will prompt and receive data from the keyboard
         * @return String containing the data read from the keyboard
         * @param BufferedReader that is connected to System.in
         */ //(keyboard)
         //On the above line where you have (keyboard), it wasn't commented out in your
         //program and it was throwing a error.
         public static String getData(BufferedReader infile)
         throws IOException
              System.out.println("enter a name");
              return infile.readLine();
         * this is the main program which will read from the keyboard and
         * display the given input onto the screen and also write the data
         * to a file
         * @param Array of Strings (not used in this program)
         public static void main(String[] args)
         throws IOException
              int i;
              String testString; // Created to hold the string entered by the user, because your
                                 // outString array wasn't working for that.
              String[] outString = new String[16];
              DataOutputStream output=null;
              // this code assigns the standard input to a datastream
              BufferedReader input= new BufferedReader(new InputStreamReader(System.in));
              // this code opens the output file...
              try
                   output= new DataOutputStream(new FileOutputStream("javaapp.dat"));
              // handle any open errors
              catch (IOException e)
                   System.err.println("Error in opening output file\n"
                   + e.toString());
                   System.exit(1);
              // priming read......
              testString = " ";  // Initialize testString
              int placeMark = 0; // to input the String entered by the user into the outString
                                 // array, it needs to know which position to enter it into.
              while (!testString.equals(""))
                   testString=getData(input);
                   testString = input.readLine();
                   System.out.println("Name entered was:"+ testString);
                   // Put the testString into the outString[] array.
                   // A lot of the time when you used outString you forgot to use the [x] to indicate
                   // which position you wanted to access.
                   outString[placeMark] = testString;
                   output.writeBytes(testString+"\r\n");
                   placeMark++;
            // Created a do/while loop to display the list of outString.
              int nextEntry = 0;
              do
                   System.out.println(outString[nextEntry]);
                   nextEntry++;
              }while(!outString[nextEntry].equals(""));
              // flush buffers and close file...
              try
                   output.flush();
                   output.close();
              catch (IOException e)
                   System.err.println("Error in closing output file\n"
                   + e.toString());
              // say goodnight Gracie...
              System.out.println("all done");
    }

  • I am updating iphoto 9.1 to 9.3 and every time when I clicked for update aps store asked to open it in the account where you purchased. I am using the same account and its available in the purchased item of this account. Can someone resolve this problem.

    I am updating iphoto 9.1 to 9.3 and every time when I clicked for update aps store asked to open it in the account where you purchased. I am using the same account and its available in the purchased item of this account. But in my purchased item library it indicates that you update iPhoto. I am not sure which account the aps store asking. Can someone resolve this problem.

    Contact App Store support. They're the folks who can help with Account issues.
    Regards
    TD

  • Hi can someone keep this simple for me! my iPhone is due for a renewal. but my old laptop that it is backed up to no longer works! how do i go about saving all my songs pics etc to a new laptop without losing anything? please help!!!

    hi can someone keep this simple for me! my iPhone is due for a renewal. but my old laptop that it is backed up to no longer works! how do i go about saving all my songs pics etc to a new laptop without losing anything? please help!!!

                     Syncing to a "New" Computer or replacing a "crashed" Hard Drive

  • When I try to connect to iCloud, it says there is a server error and does not log me in. This happens every time. How can I circumvent this server error?

    When I try to connect to iCloud, it says there is a server error and does not log me in. This happens every time. How can I circumvent this server error?

    Try restarting your computer and your router.
    If there is a specific error code, take a look at this article.
    iTunes: Specific update-and-restore error messages and advanced troubleshooting
    http://support.apple.com/kb/TS3694

  • Can someone perform this speaker test for me please

    Hi can someone perform this test for please, play some ipod music through your phone and and cover 1 speaker at a time with you finger, does 1 block out the music as if one speaker is much louder than the other ? just I have tried this on my new iphone 4 as thought it might be a problem but my 3GS is doing it to ??, is it fault or meant to be like that

    There's only one speaker.
    http://manuals.info.apple.com/enUS/iPhone_iOS4_UserGuide.pdf

  • How can I translate this from PL/SQL into embedded SQL!?

    CURSOR TEMP1 is
    SELECT emp.fname fname, emp.lname lname, emp.ssn, dname,emp.salary salary, emp1.fname supervisor_fname, emp1.minit supervisor_mdlname,emp1.lname supervisor_lname FROM employee emp, employee emp1,department d
    WHERE emp.superssn=emp1.ssn(+) and emp.dno=dnumber order by ssn;
    PNTR_TEMP1 TEMP1%ROWTYPE;
    --calcualting values for the cursor TEMP1
    for PNTR_TEMP1 in TEMP1 loop
    fname:= PNTR_TEMP1.fname;
    lname:= PNTR_TEMP1.lname;
    ssn := PNTR_TEMP1.ssn;
    dname:=PNTR_TEMP1.dname;
    sup_name:=PNTR_TEMP1.supervisor_fname||' '|| PNTR_TEMP1.supervisor_mdlname||' '||PNTR_TEMP1.supervisor_lname;
    salary := PNTR_TEMP1.salary;
    n_deps:=0 ;
    /* how can I translate this to embedded SQL...I'm using C++*/

    Hi,
    you can follow this link to use cursor in Pro*c /C++
    http://www.csee.umbc.edu/help/oracle8/server.815/a68022/sql.htm
    Regards

  • Can someone awnser this question please

    '\ my sound card and my tv is digital but my stereo surround system is analogue but my question is.
    how well to the analogue to digital converts work which i can buy for 40 quid.
    will it give me the same quality digital to digital if im using analogue to digital.
    any help will be much apreciated

    +Re: can someone awnser this question pleased
    deebs986 wrote:
    my sound card and my tv is digital but my stereo surround system is analogue but my question is.
    how well to the analogue to digital converts work which i can buy for 40 quid.
    will it give me the same quality digital to digital if im using analogue to digital.
    any help will be much apreciated
    Depends on
    the analog part of A/D Converter and the converter as well ... there are cheap ones which (if you're audiophile)? may give weak results but normally, those are suitable even being that cheap ... you name ones you have in mind to get more exact answers<
    the source ... D to D is : (lossless (theory))? , A to D (lossy (why, ... read above))<
    jutapa
    @9.56.77.37

  • CAN SOMEONE FIX THIS????

    Hello, I can't get my program to work at all, I keep getting errors. Can someone please see if they can fix these Exception errors. I've posted tons of topics but I still can't get this program to run.
    I use these text files in the program.
    EVENT.txt
    1 C++ Programmer
    2 Business Management
    STCLASS.txt
    1 Tech Apps
    2 Computer Programming
    3 AP Computer Science
    4 AB Computer Science
    5 AP Biology
    6 AP US History
    STINFO.txt
    34865-Joe Peace-2003-01-02-1-2-3-4-5-6
    89398-John Carr-2003-04-05-1-2-3-4-5-6
    Here is The Actual Program, Can anyone get rid of the Exception Errors:
    //Program Starts Here
    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    public class TrivialApplet extends Applet implements ItemListener, ActionListener
         TextField text1;
         CheckboxGroup checkboxgroup1;
         Checkbox checkbox1, checkbox2, checkbox3;
         Button adder;               //Button in addperson()
         Button cpsubmit;          //Button in clienpart()
         Button quit;               //Button in addperson() and search() - Returns to clientpart() when pressed
         Button ssubmit;               //Button in search()
         int where;                    //'Where' is the current position the user is in the program
         int what;                    //'What' is current checkbox that the user has selected
         int searcher;               //What User Is Searching for (ID, Event, Or Class)
         String line;               //'line' is used when a line is taken from a text file
         PrintWriter fileOut;     //Output to textfile Variables
         BufferedReader fileIn1,fileIn2,fileIn3;     //Inputting from textfile variables
         ******************************************** init() *******************************************************************
         public void init()
              what = 0;
              where = 0;
              searcher = 0;
              quit = new Button("Return To Menu");
              clientpart();
         ******************************************** clientpart() *************************************************************
         public void clientpart()
         removeAll();                                             
         setSize(300,200);
         where = 1;
         setLayout(new GridLayout(4,1));                                        //Sets Layout of Screen
         checkboxgroup1 = new CheckboxGroup();                         
         checkbox1 = new Checkbox("Search For A Person",false,checkboxgroup1);                    //Check Box
         checkbox2 = new Checkbox("Enter New Person Into Database",false,checkboxgroup1);
         cpsubmit = new Button("Submit");
         Label info;
         info = new Label("Select An Option And Press Submit", Label.CENTER);
         add(info);
         add(checkbox1);
         add(checkbox2);
         add(cpsubmit);
         checkbox1.addItemListener(this);
         checkbox2.addItemListener(this);
         cpsubmit.addActionListener(this);
         ******************************************** addperson() **************************************************************
         public void addperson() throws IOException
         setSize(400,300);
         PrintWriter fileOut = new PrintWriter(new FileOutputStream("C:/Documents and Settings/Joe/AP Programs/BPA Database/STINFO.TXT", true));
         where = 2;
         removeAll();                                                            //Remove everything from applet
         Label stat;
         stat = new Label("Select A Field, Enter Info, And Click Submit", Label.CENTER);
         setLayout(new GridLayout(5,1));
         add(stat);
         text1 = new TextField("ID-Name-Graduating Year-Event 1-Event 2-Class 1-Class 2-Class 3-Class 4-Class 5-Class 6");//New TextField
         checkboxgroup1 = new CheckboxGroup();                              //A group of checkboxes, allows only ONE click
         adder = new Button("Submit");                                        //Submit button
         add(text1);                                        
         add(adder);
         add(quit);
         adder.addActionListener(this);                                        //Checks for button actions
         quit.addActionListener(this);
         ************************************************** search() ***********************************************************
         public void search() throws IOException
         setSize(400,300);
         /********************************************** Variables to get info from text files *******************************/
         fileIn1 = new BufferedReader(new InputStreamReader(new FileInputStream("C:/Documents and Settings/Joe/AP Programs/BPA Database/STINFO.TXT")));
         fileIn2 = new BufferedReader(new InputStreamReader(new FileInputStream("C:/Documents and Settings/Joe/AP Programs/BPA Database/EVENTS.TXT")));
         fileIn3 = new BufferedReader(new InputStreamReader(new FileInputStream("C:/Documents and Settings/Joe/AP Programs/BPA Database/STCLASS.TXT")));
         where = 3;                                                                 //User Is At Position '3'.....or search()
         searcher = 0;
         removeAll();                                                            //Remove everything from applet
         /************************************* Creates a label that cannot be edited ***************************************/
         Label stats;
         stats = new Label("Click Field You Wish To Search By, And Click Submit", Label.CENTER);
         setLayout(new GridLayout(6,1));                                        //Makes applet a 6x1 Array for objects
         add(stats);
         checkboxgroup1 = new CheckboxGroup();                              //A group of checkboxes, allows only ONE click
         ssubmit = new Button("Submit");                                        //Submit button
         checkbox1 = new Checkbox("ID",false,checkboxgroup1);          //Sets The First Checkbox into checkboxgroup1
         add(checkbox1);                                                            //Add this to window
         checkbox2 = new Checkbox("Event",false,checkboxgroup1);               
         add(checkbox2);
         checkbox3 = new Checkbox("Class",false,checkboxgroup1);
         add(checkbox3);
         add(ssubmit);
         add(quit);
         /*********************************************** Calls itemStateChanged() when clicked ***************************/
         checkbox1.addItemListener(this);                                   
         checkbox2.addItemListener(this);
         checkbox3.addItemListener(this);
         ************************************************ Cals actionPerformed() when clicked *****************************/
         ssubmit.addActionListener(this);
         quit.addActionListener(this);
         ******************************************** actionPerformed() ********************************************************
         public void actionPerformed(ActionEvent e)
              /************************ clientpart() buttons **********************************************************/
              if (e.getSource() == cpsubmit && what == 1)               //If User wants to search for a person then search()
                   search();
              if (e.getSource() == cpsubmit && what == 2)               //If User wants to Add A New Person then addperson()
                   addperson();               
              /************************ quit button returns to clientpart() *******************************************/
              if (e.getSource() == quit)                                   //If User wants to return to main menu then clientpart()
                   clientpart();
              /************************ addperson() buttons ***********************************************************/
              if (e.getSource() == adder)                                   //Prints New Person To STINFO.txt
                   fileOut.println(text1.getText());
              /************************* search() buttons *************************************************************/
              if (e.getSource() == ssubmit && searcher == 1)          //Shows Everyone In School     
                   while((line=fileIn1.readLine()) != null)
                        System.out.println(line);
              if (e.getSource() == ssubmit && searcher == 2)          //Shows Events With Numbers
                   while((line=fileIn1.readLine()) != null)
                        System.out.println(line);
              if (e.getSource() == ssubmit && searcher == 3)          //Shows Classes With Numbers
                   while((line=fileIn3.readLine()) != null)
                        System.out.println(line);
         ******************************************** itemStateChanged() *******************************************************
         public void itemStateChanged(ItemEvent e)
              /*************************************** Checkboxes in clientpart() *****************************************/
              if (e.getItemSelectable() == checkbox1 && where == 1)               
                   what = 1;
              if (e.getItemSelectable() == checkbox2 && where == 1)
                   what = 2;
              /*************************************** Checkboxes in search() *********************************************/
              if (e.getItemSelectable() == checkbox1 && where == 3)
                   searcher = 1;
              if (e.getItemSelectable() == checkbox2 && where == 3)
                   searcher = 2;
              if (e.getItemSelectable() == checkbox3 && where == 3)
                   searcher = 3;

    An error
    1> exception not caught
    public void actionPerformed(ActionEvent e)
    try{
    <your code>
    catch(Exception ex)
    ex.printStackTrace();
    Explaination: your methods like search() and etc are throwing excpetion but it is not caught so you will have to catch it. The example up here is catching for all but you should tune it a bit to specific exceptions
    A suggestion
    1> your removeall() method is not very nice. Why don't u use card layout and hide the panel instead of removing and adding all again

  • Can someone decipher this??

    When I powered on my machine this morning, I had an error report.  Can someone decipher it??  Any input will be greatly appreciated. Thanks in advance.
    Interval Since Last Panic Report:  2525935 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    22AB1570-526E-8E4D-1DF3-1EE5BB0D65BE
    Sat Aug 24 07:40:31 2013
    panic(cpu 10 caller 0xffffff80188b8655): Kernel trap at 0xffffff80188b02e0, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0xffffff80495a2000, CR3: 0x000000001b167000, CR4: 0x0000000000000660
    RAX: 0xffffff80495a1fff, RBX: 0xffffff80495a1ff0, RCX: 0xffffff8048837640, RDX: 0xffffff8047dbe880
    RSP: 0xffffff82c81dbd40, RBP: 0xffffff82c81dbd40, RSI: 0x000000000000000d, RDI: 0xffffff80495a1ff0
    R8:  0x0000000000000000, R9:  0x0000000000000003, R10: 0xffffff8048af1e40, R11: 0xffffff8018c286d0
    R12: 0x0000000000000000, R13: 0x000000000000000e, R14: 0xffffff80488409c0, R15: 0xffffff8048837640
    RFL: 0x0000000000010202, RIP: 0xffffff80188b02e0, CS:  0x0000000000000008, SS:  0x0000000000000000
    Fault CR2: 0xffffff80495a2000, Error code: 0x0000000000000000, Fault CPU: 0xa
    Backtrace (CPU 10), Frame : Return Address
    0xffffff82c81db9e0 : 0xffffff801881d626
    0xffffff82c81dba50 : 0xffffff80188b8655
    0xffffff82c81dbc20 : 0xffffff80188ce17d
    0xffffff82c81dbc40 : 0xffffff80188b02e0
    0xffffff82c81dbd40 : 0xffffff8018c2603a
    0xffffff82c81dbd90 : 0xffffff8018c25eea
    0xffffff82c81dbdc0 : 0xffffff7f98d799b6
    0xffffff82c81dbdd0 : 0xffffff7f98d7d220
    0xffffff82c81dbde0 : 0xffffff8018c28d08
    0xffffff82c81dbe20 : 0xffffff8018c3258f
    0xffffff82c81dbe90 : 0xffffff8018c31771
    0xffffff82c81dbef0 : 0xffffff8018c2f4ce
    0xffffff82c81dbf30 : 0xffffff8018c2d48d
    0xffffff82c81dbf70 : 0xffffff8018c31fc9
    0xffffff82c81dbfb0 : 0xffffff80188b3137
          Kernel Extensions in backtrace:
             com.apple.iokit.IOPCIFamily(2.7.3)[1D668879-BEF8-3C58-ABFE-FAC6B3E9A292]@0xffff ff7f98d72000->0xffffff7f98d96fff
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    12E55
    Kernel version:
    Darwin Kernel Version 12.4.0: Wed May  1 17:57:12 PDT 2013; root:xnu-2050.24.15~1/RELEASE_X86_64
    Kernel UUID: 896CB1E3-AB79-3DF1-B595-549DFFDF3D36
    Kernel slide:     0x0000000018600000
    Kernel text base: 0xffffff8018800000
    System model name: MacPro4,1 (Mac-F221BEC8)
    System uptime in nanoseconds: 13043814499
    last loaded kext at 1282032717: com.apple.driver.AppleUSBHIDKeyboard    170.2 (addr 0xffffff7f9a78a000, size 16384)
    loaded kexts:
    com.firmtek.driver.FirmTek_SI_SATA_II    5.4.1
    com.apple.iokit.SCSITaskUserClient    3.5.5
    com.apple.driver.XsanFilter    404
    com.apple.iokit.IOAHCIBlockStorage    2.3.1
    com.apple.driver.AppleFileSystemDriver    3.0.1
    com.apple.driver.AppleUSBHub    5.5.5
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.driver.AppleFWOHCI    4.9.6
    com.apple.BootCache    34
    com.apple.driver.AirPort.Brcm4331    615.20.17
    com.apple.driver.AppleIntel8254XEthernet    3.1.1b1
    com.apple.driver.Intel82574L    2.3.0b5
    com.apple.driver.AppleAHCIPort    2.5.2
    com.apple.driver.AppleUSBEHCI    5.5.0
    com.apple.driver.AppleUSBUHCI    5.2.5
    com.apple.driver.AppleEFINVRAM    1.7
    com.apple.driver.AppleRTC    1.5
    com.apple.driver.AppleHPET    1.8
    com.apple.driver.AppleACPIButtons    1.7
    com.apple.driver.AppleSMBIOS    1.9
    com.apple.driver.AppleACPIEC    1.7
    com.apple.driver.AppleAPIC    1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient    196.0.0
    com.apple.nke.applicationfirewall    4.0.39
    com.apple.security.quarantine    2.1
    com.apple.driver.AppleIntelCPUPowerManagement    196.0.0
    com.apple.driver.AppleUSBHIDKeyboard    170.2
    com.apple.driver.AppleHIDKeyboard    170.2
    com.apple.iokit.IOUSBHIDDriver    5.2.5
    com.apple.driver.AppleUSBMergeNub    5.5.5
    com.apple.driver.AppleUSBComposite    5.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    3.5.5
    com.apple.iokit.IOBDStorageFamily    1.7
    com.apple.iokit.IODVDStorageFamily    1.7.1
    com.apple.iokit.IOCDStorageFamily    1.7.1
    com.apple.iokit.IOAHCISerialATAPI    2.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily    3.5.5
    com.apple.iokit.IOFireWireFamily    4.5.5
    com.apple.iokit.IOUSBUserClient    5.5.5
    com.apple.iokit.IO80211Family    530.4
    com.apple.iokit.IONetworkingFamily    3.0
    com.apple.iokit.IOATAFamily    2.5.1
    com.apple.iokit.IOAHCIFamily    2.3.1
    com.apple.iokit.IOUSBFamily    5.6.0
    com.apple.driver.AppleEFIRuntime    1.7
    com.apple.iokit.IOHIDFamily    1.8.1
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.sandbox    220.3
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.security.TMSafetyNet    7
    com.apple.driver.DiskImages    345
    com.apple.iokit.IOStorageFamily    1.8
    com.apple.driver.AppleKeyStore    28.21
    com.apple.driver.AppleACPIPlatform    1.7
    com.apple.iokit.IOPCIFamily    2.7.3
    com.apple.iokit.IOACPIFamily    1.4
    com.apple.kec.corecrypto    1.0
    Model: MacPro4,1, BootROM MP41.0081.B08, 8 processors, Quad-Core Intel Xeon, 2.26 GHz, 24 GB, SMC 1.39f5
    Graphics: ATI Radeon HD 4870, ATI Radeon HD 4870, PCIe, 512 MB
    Memory Module: DIMM 1, 4 GB, DDR3 ECC, 1066 MHz, 0x0198, 0x393936353532352D3033322E4130304C4620
    Memory Module: DIMM 2, 4 GB, DDR3 ECC, 1066 MHz, 0x0198, 0x393936353532352D3033322E4130304C4620
    Memory Module: DIMM 3, 2 GB, DDR3 ECC, 1066 MHz, 0x802C, 0x31384A53463235363732415A2D3147314631
    Memory Module: DIMM 4, 2 GB, DDR3 ECC, 1066 MHz, 0x802C, 0x31384A53463235363732415A2D3147314631
    Memory Module: DIMM 5, 4 GB, DDR3 ECC, 1066 MHz, 0x0198, 0x393936353532352D3033322E4130304C4620
    Memory Module: DIMM 6, 4 GB, DDR3 ECC, 1066 MHz, 0x0198, 0x393936353532352D3033322E4130304C4620
    Memory Module: DIMM 7, 2 GB, DDR3 ECC, 1066 MHz, 0x802C, 0x31384A53463235363732415A2D3147314631
    Memory Module: DIMM 8, 2 GB, DDR3 ECC, 1066 MHz, 0x802C, 0x31384A53463235363732415A2D3147314631
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8E), Broadcom BCM43xx 1.0 (5.106.98.100.17)
    Bluetooth: Version 4.1.4f2 12041, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Ethernet 2, Ethernet, en1
    PCI Card: ATI Radeon HD 4870, sppci_displaycontroller, Slot-1
    PCI Card: SeriTek/2SE2-E v. 5.4.1,  09/14/09, 12:30:53, ata, Slot-4
    Serial ATA Device: HL-DT-ST BD-RE  WH12LS39
    Serial ATA Device: HL-DT-ST DVDRAM GH24NS90
    Serial ATA Device: SAMSUNG HD103SJ, 1 TB
    Serial ATA Device: SAMSUNG HD103SJ, 1 TB
    Serial ATA Device: SAMSUNG HD103SJ, 1 TB
    Serial ATA Device: WDC WD5001AALS-00LWTA0, 500.11 GB
    USB Device: Keyboard Hub, apple_vendor_id, 0x1006, 0xfa200000 / 2
    USB Device: Apple Keyboard, apple_vendor_id, 0x0220, 0xfa220000 / 3
    USB Device: USB 2.0 Hub [MTT], 0x050d  (Belkin Corporation), 0x0237, 0xfd300000 / 2
    USB Device: Kensington 2.4G Laser Product, 0x047d  (Kensington), 0x2030, 0xfd350000 / 3
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x5a100000 / 2
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0x5a110000 / 4
    USB Device: Wireless Stereo Headset, 0x12ba  (Sony Computer Entertainment America), 0x0032, 0x5d100000 / 2
    FireWire Device: built-in_hub, 800mbit_speed
    FireWire Device: iSight, Apple Computer, Inc., 200mbit_speed
    FireWire Device: unknown_device, unknown_speed

    Does this happen every time you startup?
    Does this happen when starting up in Safe Mode?
    You might need to update your FirmTek driver.

Maybe you are looking for

  • E52 - phone freezes all the time in between

    freezes alll the time - like between opening music player, opening inboxes- opening "messages" section", etc ive got a 16gb memory card, this may be a cause or something - NOKIA FIX IT! E52 - Product code 0585050

  • How to use an own plugin to add 3d-content

    Hi, I have started to develop a plugin for Acrobat 8.0 that will add some kind of 3d-content to an existing model. I tried somewhat, but I face the problem that I can't find out how to use the plugin in Acrobat with Javascript. I added the .api file

  • Package--basics problem

    I have only just started using Java and immediately ran into problems when trying to import a package that I had written myself. I wrote the following minimal programs to figure out what I am doing wrong, but I still do not know. 1. package with meth

  • License Information for Adventure Builder Example Application

    Hello All, We wanted to use the example application Adventure Builder in one of our research projects as a case study. (Link to adventure builder: http://java.sun.com/developer/releases/adventure/). However, I am not very sure about the license they

  • Counting Nodes

    Noob question. This statement: var nTableLength = TableKM.nodes.length; is intended to count the child objects (rows) of a table which in my case should be a value of 3. But the value in the debugger indicates that it is counting the children of the