SB X-fi Xtreme Audio PCI-E Not working correctly help please

Hi i have a SB X-fi Xtreme Audio PCI-E card on my pc , i have currently installed windows 7 and for months now i am trying to make the card work .. I have a poor sound especially when there is bass, the card is not detected by windows 7, its detected as a high definition audio device , when i plug my mic is not found..and i cant use the creative applications because is says its not supported or i have no creative poroducts on my pc ... I have tried all the latest drivers and stil have the same problem.. HELP PLEASE !!

First, uninstall all creative drivers, console, from add/remove. Restart computer install: . X-Fi Xtreme Audio Series Driver .04.0000 from creative website. 2.X-Fi Xtreme Audio Pack .03.0002 from creative website. 3. install Creative Console from here: http://forums.creative.com/t5/Sound-Blaster/PAX-Console-Launcher-V-0/td-p/549970 * PAX Console, Modded Original Console, but newer then Creative) or this creative console: CSL_PCAPP_LB_2_6_09.exe ( it creative original console) With this console you will have bass, treble, etc, BUT you need to open ConsoLCu.exe from Program Files/Creative/Console Launcher. ConsoLCu.exe have all the options you need. Creative forget about thier sound board, thier drivers, bass, treble, etc, about customers. If you install thier drivers from their website you will not have BASS, and also an crappy sound. You need to install Creative Console from google, or from http://forums.creative.com/t5/Sound-Blaster/PAX-Console-Launcher-V-0/td-p/549970 to have bass, crystalizer, etc. I also have Creative Audio PCI-e board..... crappy chipset, just like Sb Li've 24 biti PCI.

Similar Messages

  • Audio input Jack not working correctly! Please Help!

    I have a usb guitar jack input to record into garage band, but when i plug it in it records the guitar, however monitoring doesnt work, and all audio from garage band wont play until i unplug it. Suggestions would be the best thanks

    I had the same problem. Here's what fixed mine: Plug the headphones in the headphone jack on the mac, go to preferences and change your output to ''system setting''. Leave your input set to the USB input. Select the track you want to record on, then over on the right hand side where the track info is, under ''monitoring'', click ''on''. You may have to hit the record button to get the sound to come out at first..sometimes its like that, sometimes it'll work..That did it for me. Let me know if you have any more questions.

  • My macbook pro external speaker not working! help please

    My macbook pro external speaker not working! help please

    1. Applications > Utilities > Audio MIDI Setup
        Audio Devices window
         Pllug in the speakers.
         Do they show up?
         Make sure that Mute is not enabled.
    2. Reset SMC.     http://support.apple.com/kb/HT3964
        Choose the method for:
        "Resetting SMC on portables with a battery you should not remove on your own".
    Best.

  • Since I upgrade to Lion OS my optical drive stop working can't read or write at all I did what I could to fix it but still not working , any help please

    Since I upgrade to Lion OS my optical drive stop working can't read or write at all I did what I could to fix it but still not working , any help please

    It sounds like you may have multiple problems, but none of them are likely to be caused by malware.
    First, the internet-related issues may be related to adware or a network compromise. I tend to lean more towards the latter, based on your description of the problem. See:
    http://www.adwaremedic.com/kb/baddns.php
    http://www.adwaremedic.com/kb/hackedrouter.php
    If investigation shows that this is not a network-specific issue, then it's probably adware. See my Adware Removal Guide for help finding and removing it. Note that you mention AdBlock as if it should have prevented this, but it's important to understand that ad blockers do not protect you against adware in any way. Neither would any kind of anti-virus software, which often doesn't detect adware.
    As for the other issues, it sounds like you've got some serious corruption. I would be inclined to say it sounds like a failing drive, except it sounds like you just got it replaced. How did you get all your files back after the new drive was installed?
    (Fair disclosure: I may receive compensation from links to my sites, TheSafeMac.com and AdwareMedic.com, in the form of buttons allowing for donations. Donations are not required to use my site or software.)

  • Program not working correctly-Help!

    class Sort
         /* method takes an array of integers as an input,
         * and returns a copy with the element values sorted
         * by select method.
         int[] selectSort(int[] input)
              /*declare variables to be used in array */
              int x, y, max, temp;
              int[] select = new int[input.length];
              /*This loop reads the entire array */
              for(x = input.length - 1; x>0; x--)
                   max = 0;
                   /*This loop checks to see if any number is
                   lower possible greatest number /
                   for(y = 0; y <= x; y++)
                   {//Returns number if lowest number
                        if(input[y] > input[max])
                             max = y;
                        }//end of if statement
                   }//end of inner loop
                   /*Switches the values */
                        temp = input[x];
                        select[x] = input[max];
                        select[max] = temp;
              }//end of outer loop
              return select;          
         } //end of selectSort()
         /* method takes an array of integers as an input,
         * and returns a copy with the element values sorted
         * by bubble method.
         int[] bubbleSort(int[] input)
              int[] bubble = new int[input.length];
              for (int x = 1; x < input.length; x++)
                   for (int y = 0; y < input.length - 1; y++)
                        if (input[y] > input[y+1])
                             int temp = input[y];
                             bubble[y] = input[y+1];
                             bubble[y+1] = temp;
              return bubble;
         } //end of bubbleSort
    **********************Test Class**********************
    class TestSort
         public static void main(String[] args)
              /* count variable used as loop counter when
              * result table display is generated
              int count;
              /* variable for object of class Sort */
              Sort x;
              /* create object of class GroupEx2 */
              x = new Sort();
              /* create a source array of integer elements */
    int[] y = new int[5];
    /* assign values to array elements to be sorted     */     
              y[0] = 8;
              y[1] = 5;
              y[2] = 3;
              y[3] = 9;
              y[4] = 1;
              /* create variable for target of select sort array */
              int[] ss;
              /* create variable for target bubble sort array */
              int[] bs;
              /* call method to return an array with element values select sorted*/
              ss = x.selectSort(y);
              /* call method to return an array with element values bubble sorted*/
              bs = x.bubbleSort(y);          
              /* display original and sorted arrays in three columns*/
              System.out.print("Input Array" + "\t");
              System.out.print("Select Sort" + "\t");
              System.out.println("Bubble Sort");
              for (count = 0; count < y.length; count++)
                   /* Column 1: original array */
                   System.out.print("input[" + count + "] = " + y[count]);
                   /* tab between columns 1 and 2 */
                   System.out.print("\t");
                   /* Column 2: select sorted array */
                   System.out.print("select[" + count + "] = " + ss[count]);
                   /* tab between columns */
                   System.out.print("\t");
                   /* Column 3: bubble sorted array */
                   System.out.println("bubble[" + count + "] = " + bs[count]);
              } // end of display for loop
         } // end of main()
    } // end of class TestSort

    Thanks for the Bash! I'm surprised you had the time
    for it.Go back and look at your original post. A whole bunch of code, and the only description of the problem is "not working correctly." Do you honestly think that's a reasonable way to ask for help? Do you go to the doctor and say, "I'm sick" and then just wait for him to cure you? Do you take your care to the mechanic and say only, "It's broke"?
    Look, this is your problem and it's your responsibility to fix it. There are people here who are happy to help you, but it's up to you to provide a reasonable statement of what's wrong, what you've tried, what you don't understand. For instance:
    Does it compile? If not, post the complete error message.
    Does it run, but throw an exception? If so, post the stack trace.
    Does it not throw an exception, but not behave the way you expect? Then describe the expected beavior and the observed behavior.
    Do you really need to be told this stuff? It seems like common sense that when you're asking people to spend their time helping you, you should give them the information they need to be able to do so.

  • Sound in Macbook pro is not working correctly! PLEASE HELP!

    A few days ago, the sound in the build in speakers in my macbook pro (Mac OS X 10.6.8) started not working correctly, i did not hit it or anything, just closed it down when i woke up the next day, the sound was not working correctly. i know it is hard to describe what's wrong in a written forum, but the best way to describe it is this: it sounds like when you have a set of headphones plugged in, but not wearing them. the sound is weak, with no bass. when i actualy do hear the sound when wearing headphones (in my ears) the sound is fine.
    hope anyone can help.

    Intel-based Macs: Resetting the System Management Controller (SMC)
    Resetting your Mac's PRAM and NVRAM

  • Craetive Sound Blaster X-Fi Xtreme Audio Notebook will not work in just any Lapt

    The following is an email I just sent to Creative support ear Sirs or Madam:
    I have been a Creative user ever since I've been using computers.
    Recently I visited your website in search of a better sound card for my laptop as I work in Iraq and I'm home on R&R. In Iraq all we have to do on our off time is listen and share music files. On your website I found a Creative sound blaster X-Fi sound card which fit my needs perfectly. I called Creatives support number and the lady that answered informed me that they did not have any in stock at the Creative center,,,,she refered me to the Dell website for purchase. I indeed ordered the th blaster X-Fi. When the sound card arri'ved I was very excited. I plugged in the card and nothing ! I went over the instructions several times before calling the Creative tech line. I was informed after 20 minutes with the tech person that it would not work in my laptop. the tech person told me it will only work in newer lapto
    ps.
    My laptop is a one year old toshiba satellite A05-S7 which I bought at the military PX in Iraq april 06. No where on your website did it say that it wouldn't work in my particular laptop. because of shipping charges and restocking fees I am forced to keep this card which will not work of course until I buy a new Laptop. I was informed buy your Tech support person that I needed an Audigy 2 zs notebook card for my laptop,,,well Creative of course didn't stock or have that card so I have searched High and low on the internet for this card with no avail. Today ( 6 nov 07 ) I am forced to order a **competitor** sound card which will fit my laptop. I am very upset and disillusioned with Creative at this point. I am sure my email will most likely go un-noticed as does most emails or letters to manufacturer's complaining about there products or service. It looks like when I return to Iraq I will have to promote the **competitor product** sound card as the card to use. I am very sorry this has happened and I hope you ad to your website the laptops this X-Fi card will work and not work in.
    Message Edited by Dale-CL on -6-2007 :29 AM

    First, please refrain from mentioning/discussing competitor products on this forum, as it is against the rules.
    Next, you are correct that the X-fi Xtreme Notebook will not work in any notebook. As it states in the System Requirements, it requires a ExpressCard slot to function. The Audigy notebook card requires an older PCMCIA slot, which is what your laptop has. I'm sorry the Xfi card didn't suit your needs, but you will have to have the newer, faster slot in order to use it as it states in the requirements.
    DaleMessage Edited by Dale-CL on -6-2007 :5 AM

  • Blaster X-Fi Xtreme Audio Notebook will not work in just any Notebo

    This is an email I just sent to Creative support. It reads as follows :
    Dear Sirs or Madam: I have been a Creative user ever since I've been using computers.
    Recently I visited your website in search of a better sound card for my laptop as I work in Iraq and I'm home on R&R. In Iraq all we have to do on our off time is listen and share music files. On your website I found a Creative sound blaster X-Fi sound card which fit my needs perfectly. I called Creatives support number and the lady that answered informed me that they did not have any in stock at the Creative center,,,,she refered me to the Dell website for purchase. I indeed ordered the th blaster X-Fi. When the sound card arri'ved I was very excited. I plugged in the card and nothing ! I went over the instructions several times before calling the Creative tech line. I was informed after 20 minutes with the tech person that it would not work in my laptop. the tech person told me it will only work in newer lapto
    ps.
    My laptop is a one year old toshiba satellite A05-S7 which I bought at the military PX in Iraq april 06. No where on your website did it say that it wouldn't work in my particular laptop. because of shipping charges and restocking fees I am forced to keep this card which will not work of course until I buy a new Laptop. I was informed buy your Tech support person that I needed an Audigy 2 zs notebook card for my laptop,,,well Creative of course didn't stock or have that card so I have searched High and low on the internet for this card with no avail. Today ( 6 nov 07 ) I am forced to order a **competitor** sound card which will fit my laptop. I am very upset and disillusioned with Creative at this point. I am sure my email will most likely go un-noticed as does most emails or letters to manufacturer's complaining about there products or service. It looks like when I return to Iraq I will have to promote the **competitor** sound card as the card to use. I am very sorry this has happened and I hope you ad to your website the laptops this X-Fi card will work and not work in.
    Message Edited by Dale-CL on -6-2007 :30 AM

    First, please refrain from mentioning/discussing competitor products on this forum, as it is against the rules.
    Next, you are correct that the X-fi Xtreme Notebook will not work in any notebook. As it states in the System Requirements, it requires a ExpressCard slot to function. The Audigy notebook card requires an older PCMCIA slot, which is what your laptop has. I'm sorry the Xfi card didn't suit your needs, but you will have to have the newer, faster slot in order to use it as it states in the requirements.
    DaleMessage Edited by Dale-CL on -6-2007 :5 AM

  • Firewire Port not working, URGENT help please¡¡¡

    Hello People, i´ve just got a new Mac Mini  last week, and i´ve been trying to get my Alesis MasterControl audio interface, and is just a complete mess.
    This happened right after i´ve upgraded to 10.8.3 so i don´t know, the weird thing is that if i connect my old iBook to the Mac Mini the FW800 port works, but everytime i connect the audio interface, nothing happens, also the drivers from alesis, are up to date. i first thought about the port of the Mixer went bad, but it has 2 and non of them works, also thought about the cable but the same cable works when i connect my iBook, and the mixer is not bus powered, it has it´s own power supply.
    Needless to say i´ve already done the usual reset PRAM, turn of the Mac unplugged for 30 hour to reset the bus. etc.
    This is the usual firewire only system log that i get:
    31/03/13 08:01:20.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID 003ee1fffe88dc6a; max speed s800.
    31/03/13 08:01:30.000 kernel[0]: Alesis Firewire - 3.5.6.11675 (x86_64) Aug 16 2011 01:20:23
    31/03/13 11:33:23.529 system_profiler[528]: SPFWR ERROR: FireWire bus may be unstable. Other FireWire devices may be present.
    31/03/13 11:35:43.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 11:38:55.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 11:42:08.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 11:44:39.124 CleanMyMacHelperTool[583]: Mounted devices (
        "/Volumes/AlesisFirewire-3.5.3.8671"
    31/03/13 11:44:39.146 CleanMyMacHelperTool[583]: Wont clean /Volumes/AlesisFirewire-3.5.3.8671 because disk image
    31/03/13 11:44:39.148 CleanMyMacHelperTool[583]: Mounted devices (
        "/Volumes/AlesisFirewire-3.5.3.8671"
    31/03/13 11:44:39.149 CleanMyMacHelperTool[583]: Wont clean /Volumes/AlesisFirewire-3.5.3.8671 because disk image
    31/03/13 11:44:52.727 coreservicesd[62]: Application App:"AlesisFirewireUninstaller" [ 0x0/0x7f07f]  @ 0x0x7fb5c8c30050 tried to be brought forward, but isn't in fPermittedFrontASNs ( ( ASN:0x0-0x80080:) ), so denying.
    31/03/13 11:44:52.727 WindowServer[85]: [cps/setfront] Failed setting the front application to AlesisFirewireUninstaller, psn 0x0-0x7f07f, securitySessionID=0x186a5, err=-13066
    31/03/13 11:47:28.533 CleanMyMacHelperTool[656]: Mounted devices (
        "/Volumes/AlesisFirewire-3.5.3.8671",
        "/Volumes/AlesisFirewire-3.5.6.11675"
    31/03/13 11:47:28.544 CleanMyMacHelperTool[656]: Mounted devices (
        "/Volumes/AlesisFirewire-3.5.3.8671",
        "/Volumes/AlesisFirewire-3.5.6.11675"
    31/03/13 11:49:26.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 11:52:39.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 11:57:22.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID 003ee1fffe88dc6a; max speed s800.
    31/03/13 11:57:34.000 kernel[0]: Alesis Firewire - 3.5.3.8671 preliminary - x86_64 CJ - May  3 2010 02:43:28
    31/03/13 11:58:36.982 com.apple.launchd.peruser.501[155]: ([0x0-0x1d01d].tc.tctechnologies.AlesisFirewire.controlpanel[238]) Job appears to have crashed: Abort trap: 6
    31/03/13 11:58:37.252 ReportCrash[242]: Saved crash report for AlesisFirewire Control Panel[238] version 3.5.3 (3.5.3.8671) to /Users/m1kygarcia/Library/Logs/DiagnosticReports/AlesisFirewire Control Panel_2013-03-31-115837_Mac-mini-de-Miguel.crash
    31/03/13 11:58:39.831 system_profiler[267]: SPFWR ERROR: FireWire bus may be unstable. Other FireWire devices may be present.
    31/03/13 11:58:50.676 com.apple.launchd.peruser.501[155]: ([0x0-0x23023].tc.tctechnologies.AlesisFirewire.controlpanel[274]) Job appears to have crashed: Abort trap: 6
    31/03/13 11:58:50.837 ReportCrash[242]: Saved crash report for AlesisFirewire Control Panel[274] version 3.5.3 (3.5.3.8671) to /Users/m1kygarcia/Library/Logs/DiagnosticReports/AlesisFirewire Control Panel_2013-03-31-115850_Mac-mini-de-Miguel.crash
    31/03/13 11:58:53.638 system_profiler[277]: SPFWR ERROR: FireWire bus may be unstable. Other FireWire devices may be present.
    31/03/13 11:59:09.747 CleanMyMacHelperTool[300]: Mounted devices (
        "/Volumes/AlesisFirewire-3.5.6.11675"
    31/03/13 11:59:09.905 CleanMyMacHelperTool[300]: Wont clean /Volumes/AlesisFirewire-3.5.6.11675 because disk image
    31/03/13 11:59:09.906 CleanMyMacHelperTool[300]: Mounted devices (
        "/Volumes/AlesisFirewire-3.5.6.11675"
    31/03/13 11:59:09.907 CleanMyMacHelperTool[300]: Wont clean /Volumes/AlesisFirewire-3.5.6.11675 because disk image
    31/03/13 12:00:47.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID 003ee1fffe88dc6a; max speed s800.
    31/03/13 12:00:59.000 kernel[0]: Alesis Firewire - 3.5.6.11675 (x86_64) Aug 16 2011 01:20:23
    31/03/13 12:01:56.720 system_profiler[269]: SPFWR ERROR: FireWire bus may be unstable. Other FireWire devices may be present.
    31/03/13 12:05:40.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 12:08:52.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 12:12:42.277 AlesisFirewire Control Panel[245]: -_continuousScroll is deprecated for NSScrollWheel. Please use -hasPreciseScrollingDeltas.
    31/03/13 12:12:42.277 AlesisFirewire Control Panel[245]: -deviceDeltaX is deprecated for NSScrollWheel. Please use -scrollingDeltaX.
    31/03/13 12:12:42.278 AlesisFirewire Control Panel[245]: -deviceDeltaY is deprecated for NSScrollWheel. Please use -scrollingDeltaY.
    31/03/13 12:13:53.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 12:25:29.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID 003ee1fffe88dc6a; max speed s800.
    31/03/13 12:25:38.000 kernel[0]: Alesis Firewire - 3.5.6.11675 (x86_64) Aug 16 2011 01:20:23
    31/03/13 12:28:30.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 12:28:33.906 system_profiler[273]: SPFWR ERROR: FireWire bus may be unstable. Other FireWire devices may be present.
    31/03/13 12:31:41.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 12:35:16.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID 003ee1fffe88dc6a; max speed s800.
    31/03/13 12:35:26.000 kernel[0]: Alesis Firewire - 3.5.6.11675 (x86_64) Aug 16 2011 01:20:23
    31/03/13 12:37:53.513 system_profiler[266]: SPFWR ERROR: FireWire bus may be unstable. Other FireWire devices may be present.
    31/03/13 12:39:36.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID 003ee1fffe88dc6a; max speed s800.
    31/03/13 12:39:49.000 kernel[0]: Alesis Firewire - 3.5.6.11675 (x86_64) Aug 16 2011 01:20:23
    31/03/13 12:42:55.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: 53 bus resets in last 3 minutes.
    31/03/13 12:46:50.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: 68 bus resets in last 3 minutes.
    31/03/13 13:01:30.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID 003ee1fffe88dc6a; max speed s800.
    31/03/13 13:01:41.000 kernel[0]: Alesis Firewire - 3.5.6.11675 (x86_64) Aug 16 2011 01:20:23
    31/03/13 13:05:27.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: 79 bus resets in last 3 minutes.
    31/03/13 13:06:31.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 13:09:43.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 13:13:31.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID 003ee1fffe88dc6a; max speed s800.
    31/03/13 13:13:45.006 com.apple.kextd[11]: Can't load /System/Library/Extensions/IOFireWireIP.kext - ineligible during safe boot.
    31/03/13 13:13:45.008 com.apple.kextd[11]: Load com.apple.iokit.IOFireWireIP failed; removing personalities from kernel.
    31/03/13 13:13:54.818 com.apple.kextd[11]: Can't load /System/Library/Extensions/AlesisFirewire.kext - ineligible during safe boot.
    31/03/13 13:13:54.823 com.apple.kextd[11]: Load tc.tctechnologies.driver.AlesisFirewire failed; removing personalities from kernel.
    31/03/13 13:13:56.372 com.apple.kextd[11]: Can't load /System/Library/Extensions/AlesisFirewire.kext - ineligible during safe boot.
    31/03/13 13:13:56.375 com.apple.kextd[11]: Load tc.tctechnologies.driver.AlesisFirewire failed; removing personalities from kernel.
    31/03/13 13:15:40.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 13:18:46.763 com.apple.kextd[11]: Can't load /System/Library/Extensions/IOFireWireIP.kext - ineligible during safe boot.
    31/03/13 13:18:46.768 com.apple.kextd[11]: Load com.apple.iokit.IOFireWireIP failed; removing personalities from kernel.
    31/03/13 13:18:46.797 com.apple.kextd[11]: Can't load /System/Library/Extensions/AlesisFirewire.kext - ineligible during safe boot.
    31/03/13 13:18:46.800 com.apple.kextd[11]: Load tc.tctechnologies.driver.AlesisFirewire failed; removing personalities from kernel.
    31/03/13 13:18:50.775 system_profiler[221]: SPFWR ERROR: FireWire bus may be unstable. Other FireWire devices may be present.
    31/03/13 13:18:52.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 13:21:03.488 system_profiler[235]: SPFWR ERROR: FireWire bus may be unstable. Other FireWire devices may be present.
    31/03/13 13:22:37.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 13:24:07.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID 003ee1fffe88dc6a; max speed s800.
    31/03/13 13:24:19.000 kernel[0]: Alesis Firewire - 3.5.6.11675 (x86_64) Aug 16 2011 01:20:23
    31/03/13 13:31:00.926 system_profiler[316]: SPFWR ERROR: FireWire bus may be unstable. Other FireWire devices may be present.
    31/03/13 13:33:03.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: 134 bus resets in last 3 minutes.
    31/03/13 13:35:11.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 13:38:24.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 13:41:36.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 13:44:48.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 13:58:13.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    31/03/13 14:01:25.000 kernel[0]: FireWire (OHCI) TI ID 823f built-in: no valid selfIDs for more than 3 minutes after bus reset.
    Can somebody help, please i´d gladly appreciate it.

    I have this
    System Profiler[170]
    SPFWR ERROR: FireWire bus may be unstable. Other FireWire devices may be present.
    & this
    kernel FireWire (OHCI) Lucent ID 5901 built-in: no valid selfIDs for more than 3 minutes after bus reset.
    Pls, help!!

  • Fresh Install HCM 9.1 but Links not working. Help please

    Dear All,
    I'm trying to make a switch from SAP to PeopleSoft. I tought it easier to install PSFT since the number of source to install is much less than SAP. However, I kept getting same error where the links not working no matter which environment I tried to install.
    I downloaded all software from eDelivery.
    HCM 9.1, PTOOLS 8.52, Oracle 11g 64 bit, Oracle Client 32 bit.
    First Try:
    Install on windows 7 64bit. Everything works fine until first login to the PSFT and all links not working.
    Suggestion from Hakan is to apply the patch and gave me a link to the old FTP site. I downloaded the 85209 patch but got password.
    Finally I managed to get a customer ID from a friend and downloaded Patch 85211 and applied. But got java error so I scrapped it.
    Anyway, Gasparotto said the environment is not certified and will not fix my problem with the patch.
    Second Try:
    Installed Virtual Box.
    Installed Windows 2008 R2 and applied the SP1.
    Installed everything all over again.
    Ensured the PTWEBSERVER password similar the username.
    Everything works fine but when login to PSFT, again..... links not working and see on the bottom left corner there are some javascript error where they cannot find certain peoplesoft objects..
    Just upgraded to IE 9 because I read somewhere IE 8 is not certified.
    Tried to login again, no error message and everything looks fine but... links not working.
    Logs also looks normal to me.
    Does anyone ever encountered similar issues before?
    Does this is a normal behaviour before tools patch 85211 being applied ?
    Thanks,
    aLuNa
    My APPSRV Log:
    PSSAMSRV.12 (0) [11/03/12 09:04:46](0) PeopleTools Release 8.52 (WinX86) starting. Tuxedo server is APPSRV(99)/100
    PSSAMSRV.12 (0) [11/03/12 09:04:46](0) Cache Directory being used: C:\APPSRV_CONFIG\appserv\HCDMO\CACHE\PSSAMSRV_100\
    PSSAMSRV.12 (0) [11/03/12 09:04:46](0) Server started
    PSRENSRV.2808 [11/03/12 09:04:49](0) PeopleTools Release 8.52 (WinX86) starting. Tuxedo server is RENGRP(92)/101
    PSRENSRV.2808 [11/03/12 09:04:49](3) Switching to new log file C:\APPSRV_CONFIG\appserv\HCDMO\LOGS\PSRENSRV_1103.LOG
    PSADMIN.2124 (0) [11/03/12 09:04:52](0) End boot attempt on domain HCDMO
    PSAPPSRV.1488 (3) [11/03/12 09:13:16 GetCertificate](3) Returning context. ID=PTWEBSERVER, Lang=ENG, UStreamId=091316_1488.3, Token=PSFT_HR/2012-11-03-02.13.17.193528/PTWEBSERVER/ENG/XxZ3vyJWXF/S1MoQtG2Wox6wGJA=
    PSAPPSRV.1488 (5) [11/03/12 09:13:21 GetCertificate](3) Returning context. ID=PTWEBSERVER, Lang=ENG, UStreamId=091321_1488.5, Token=PSFT_HR/2012-11-03-02.13.22.193632/PTWEBSERVER/ENG/pS6ec6pIAJJSYc1oOWcNYiR0UFQ=
    PSAPPSRV.1488 (7) [11/03/12 09:13:29 GetCertificate](3) Returning context. ID=PS, Lang=ENG, UStreamId=091329_1488.7, Token=PSFT_HR/2012-11-03-02.13.30.193285/PS/ENG/3GnOezS6D9PUlzwrjPwqexv4ir0=
    PSAPPSRV.1488 (34) [11/03/12 09:18:47 GetCertificate](3) Returning context. ID=PS, Lang=ENG, UStreamId=091847_1488.34, Token=PSFT_HR/2012-11-03-02.18.48.194158/PS/ENG//oJB5tvSHYNzsmZ2Gs4g2vBLUVs=

    alunwawa wrote:
    Does anyone ever encountered similar issues before? Yes, I did already see the same, that was when installed the same with 8.52.00 (without Peopletools patch) or without applying the patch project...
    Does this is a normal behaviour before tools patch 85211 being applied ?Without patch, you have the error you mentioned. How many time I told that 8.52.03 min. is required, I did not go further, but there was some bugs before which make it not working.
    I understand that's rather frustrating for people who wants to jump to Peoplesoft. I don't know SAP, but here you go, Peoplesoft is not a simple toy.
    Unfortunately, if you have no access to My Oracle Support to get the Peoplesoft patches, you have no way but work on Peoplesoft OVM (free of use), and to use them on VirtualBox, the Jim's articles are worth to follow.
    Nicolas.
    PS: @Jim, thanks for the kind words.
    My last install guide is quite old now (PT8.50/Linux), even though it did not change very much within the last tools 8.52. But seeing the number of time such questions have asked over here (PT8.52 on Windows), I'm thinking to write one more, that time on Windows.

  • WEBUTIL not working, some help please

    Hi,
    I am new to Forms 10G and I am starting conversion from Forms 6i. I think I have setup WEBUTIL as decribed in Oracle documentation, step by step. I noticed that none of the calls to WEBUTIL API's are working. For test I tried to delete a file by running:      "client_host('cmd /c del c:\putty.log');"
    It came back with error:
    "oracle.forms.webutil.host.Host bean not found. WEBUTIL_HOST.Execute will not work."
    What am I missing? Could anyone help please?
    Thanks.

    I have done the following test:
    1. Create new module
    2. Add a block manualy
    3. Add a button on the block
    4. In the WHEN-BUTTON-PRESSED trigger add : "client_host('cmd /c del c:\putty.log');"
    5. Attach webutil.pll removing the path
    6. Compiled Ok
    7. Executing the form returns the error mentioned above
    than
    8. Open webutil.olb object library from form builder
    9. Double click on the MAIN tab
    10. Drag the WEBUTIL object group under object groups node of my form subclassing it which added the following objects to my form:
    a) WEBUTIL_ERROR under alerts node
    b) WEBUTIL under data blocks node
    c) WEBUTIL_CANVAS under canvases node
    d) WEBUTIL under object groups node
    e) WEBUTIL_HIDDEN_WINDOW under windows node
    11. Compile OK
    12. Works
    Hope this helps,
    Alex

  • T42 keyboard not working right, HELP PLEASE

    My keyboard is not working right. If I push the key it wont work,but if I hold the key for a couple seconds then it works was told to replace the keyboard and I did with a new one. But it is still doing it. Can anyone tell me what the problem is. Model # R4U machine type 2378, OS XP-PRO , COA SP2 , S/N L3xxxxx.
    Message Edited by scottzilla on 12-15-2008 10:05 PM
     Moderator Note; s/n edited for members own protection
    Message Edited by andyP on 12-16-2008 07:57 AM

    It's the Quick Selection Tool in Photoshop Elements 9 and I'm trying to get the background and make it another layer so I can even out the color of the background then bring down the transparency.  Not sure if that makes sense.  I'm new to this....  Sometimes the area it will grab can go ...not fast.. but not slow.  Sometimes it's like it's just messed up and literally takes 30 seconds to process each move.  I rebooted my computer and re opened it and it helped a little.  It's not clear what causes it when it messes up and when it doesn't.  Just frustrating.  It's probably user error because I'm so new at Photoshop.   Thanks for your input.   I really appreciate it.

  • IMessage and FaceTime not working, Urgent Help please!!!

    Hi guys,
    Need help urgently, my iMessage and FaceTime are both not working on my Macbook Pro.
    The iMessage gives giving this message "Could not sign in. Please check your network connection and try again.", while FaceTime just simply cannot login.
    Please help!!!

    This could be a complicated problem to solve, as there are many possible causes for it. Test after taking each of the following steps that you haven't already tried. Back up all data before making any changes.
    Before proceeding, test on another network, if possible. That could be a public Wi-Fi hotspot, if your computer is portable, or a cellular network if you have a mobile device that can share its Internet connection. If you find that iMessage works on the other network, the problem is in your network or at your ISP, not in your computer.
    Step 1
    Check the status of the service. If the service is down, wait tor it to come back up. There may be a localized outage, even if the status indicator is green.
    Step 2
    Sign out of iMessage and FaceTime on all your Apple devices. Log out and log back in. Try again to sign in.
    Step 3
    Restart your router and your broadband device, if they're separate. You may have to skip this step if you don't control those devices.
    Step 4
    From the menu bar, select
               ▹ About This Mac
    Below the "OS X" legend in the window that opens, the OS version appears. Click the version line twice to display the serial number. If the number is missing or invalid according to this web form, take the machine to an Apple Store or other authorized service center to have the problem corrected.
    Step 5
    Take the steps suggested in this support article. If you don't understand some of the steps or can't carry them out, ask for guidance.
    Step 6
    From the menu bar, select
               ▹ System Preferences... ▹ Network
    If the preference pane is locked, click the lock icon in the lower left corner and enter your password to unlock it. Then click the Advanced button and select the Proxies tab. If the box marked SOCKS Proxy is checked, uncheck it. You don’t need to change any other settings in the window. Click OK and then Apply. Test.
    The result may be that you can't connect to the Internet at all. Revert the change if that happens, or if iMessage still doesn't work. Remember that you must Apply any changes you make in the preference pane before they take effect.
    Step 7
    Select from the menu bar
               ▹ System Preferences… ▹ Flash Player ▹ Storage
    and click
              Block all sites from storing information on this computer
    Close the preference pane.
    Step 8
    Make sure you know the ID and password you use with iMessage. Launch the Keychain Access application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    Use the search box in the toolbar of the Keychain Access window to find and delete all items with "iMessage" or "com.apple.idms" in the name. Log out and log back in.
    Step 9
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    If iMessage worked in the guest account, stop here and post your results.
    Step 10
    Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you start up, and again when you log in.
    Note: If FileVault is enabled in OS X 10.9 or earlier, or if a firmware password is set, or if the startup volume is a Fusion Drive or a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start and run than normal, with limited graphics performance, and some things won’t work at all, including sound outputand Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. After testing, restart as usual (i.e., not in safe mode) and test again.
    If iMessage worked in safe mode, but still doesn't work when you restart in "normal" mode, stop here and post your results.
    Step 11
    Triple-click anywhere in the line below on this page to select it:
    /Library/Preferences/com.apple.apsd.plist
    Right-click or control-click the highlighted line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item selected. Move the selected item to the Trash. You may be prompted for your administrator login password. Restart the computer and empty the Trash.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.
    Step 12
    Reset the NVRAM.
    Step 13
    Reset the System Management Controller (SMC).
    Step 14
    Reinstall OS X.
    Step 15
    If none of the above steps resolves the issue, make a "Genius" appointment at an Apple Store, or contact Apple Support. When you set up a support call, select "Apple ID" as the product you need help with, not the hardware model. That way, if you're not under AppleCare, you may be able to talk your way out of being charged for the call.

  • TrackPad Not Working - Urgent help please

    Hi all
    Hope you can help.
    The top case of my 12 G4 PowerBook is damaged so I bought a replacment.
    Fitted it and the tackpad would not work. Got another and the same result, the trackpad would not work. I made sure with the second one, that the topcase came from exactly the same spec as my PowerBook incase that was the issue.
    Is there a way I can find out what is going on please?
    Or a way I can get my 12" to see the new tracpad?
    Many kind thanks

    Look at this link.
    http://support.apple.com/kb/TA25889?viewlocale=en_US
    You need to add your Mac model & OS to your profile.
     Cheers, Tom

  • Elements 10 not working and uninstall not working either help please?

    Elements 10 does not work and I have tried to uninstall it with the intention of re-installing.   When I press un-install it tells me it is still uninstalling or changing the program but this has been happening for three hours?  Windows installer is saying 'cancelling' the same for two hours.  I am stuck please help.  Many thanks in advance from a well qualified luddite!

    Update - I am manually un-installing because as I can't get photoshop to work - (it says it is scanning for updated and never stops -)  I assume it is corrupt.  I have selected it and then uninstalled - had no further options offered to me and now it is saying ' please wait until the current program is finished unistalling or being changed'  I am totally confused.  Now I am getting the message 'Install server not responding'  Please help.

Maybe you are looking for

  • Closing Stock correction for the previous year

    Hi, We wish to do the closing stock correction of previous year (2006-07) by way of posting GRN and Issue entries on 31st March 2007. Will it corrcet the Opening Stock as on 1st April 2007!! Also will there be any issue while doing this work!! Thanks

  • Keynote error on Powerpoint

    I have tried 2 PowerPoint conversions and keep getting unknown error unable to import. Are there specific PowerPoint versions ,or presentation components that would cause errors? Thanks for any Assist.

  • Policy agent to authentication mulitple realm

    I am working on sun access manager 7 2005Q4 with patch 5 I saw that in the PA configuration(AMConfig.properties) I have to specify the login URL. com.sun.am.policy.am.login.url = http://blahblah.com:8080/amserver/UI/Login?realm=realmName Which mean i

  • New G/l issue

    Dear expert         am facing one error in "Assign Variants for Real-Time Integration to Company Codes". while am assigning  variant and company code am getting below error message    Activate company code check in controlling area 1000    Message no

  • Urgent Please regarding how to get the correct name from it,

    I have asome input values say {a=1,b=2,c=3,d=4} in bag A .Now I need to display the name "a" in one column of the table and its value "1" in another column in a jTable so can some one help me out as I have to turn in the stuff tomorrow. Thanks in adv