Creative Inspire T6100 - I got a problem, pls help me!

I just bought a creative Inspire T6100 system, but I got a strange problem.
I can hear just from the rear left and center speakers, all the others are muted. Every wire is perfectly connected to my phase 22 with 3 jack connectors. I tried to disable the basic soundblaster in the motherboard(I got an asus P5K), but it's the same... nothing changed...
Can someone help me pls?

Hi Freddy I read your problem , here I have a solution for you . If you are using your motherboards existing inbuilt sound card then you arerequired to check the balance level. to check balance level. to check the balance you please click on start > control pannel > then click on " sound & audio devices"? In this menu click on " Advance" here you will found balance level of both master volume & wave . checkbalance sould be at center level. secondly go into your cards application software and select 5.1 or 6.1 speakers,to check the sound take a headphone and attach each output of sound card if sound is coming both channels then it meanssound card is ok. Check your T6060 speakers audio leads should be fully Inserted into sound cards socket. If your are using creative sound card then set it to factory default setting and check the problem will be automaticaly solved. Creative T6060 speakers are 5.1 speakers & it requires proper sound card . It is recomended to install creative Sound blaster5.1 or Creative Audigy Value sound card for exelent performance. Harjinder KlerCyberstar Infocom LtdChandigarh

Similar Messages

  • Creative Inspire T6100 5.1 Speakers problem

    Hello. I have Creative Inspire T6100 5.1 Speakers with SB Audigy Live! 24-bit installed Sound Card (it supports up to 7.1 speakers). Also I have Stereo Surround CMSS 3D settings (EAX)enabled. However when I'm listening to music or playing games my Rear Left speaker makes no sound. Before I had problem that Rear Right wasn't working (however rear left and right sound was on rear left speaker), but after replugging Rear Left doesn't work. Any ideas what might be the problem?
    Thanks for reading...
    EDIT:: I tried changing Rear Left and Rear Right speakers with each other in Subwoofer (where it connects) and Rear Left is working properly.
    Message Edited by Ripiz on 03-15-2008 10:52 AM
    Message Edited by Ripiz on 03-15-2008 10:57 AM

    Hi all do you have any idea to solve my problem?
    Currently, I'm using the P5800. My problem is sub can't working. I fix together with SB24Bit External sound card.Previously is working. I'm very proud with the sound,after I decrease the master volume and bass level volume my sub suddenly quit.what happened actually?
    -Is that mean I need to change the sub speaker or the coil inside the magnet core is burned?
    -or maybe my component circuit like ic,capacitor,diode burned?
    If I plug n unplug the power to the sub,I can heard that 'bump'. Is that mean my circuit in good condition or maybe the charge and discharge for capacitor?
    Please answer me...
    Thank You

  • Creative Inspire T6100 Connection Problem ...

    Hi,
    I have just purchased the Creative Inspire T6100 and intended on using them for my Laptop, I am not so good with technology but I bought these speakers purely because of the good reviews it had.
    The PROBLEM I have is that when I connect the 3 wires i.e. Black, Green and Orange , I only have space for one headphone jack on my Laptop as a result sound only comes through two of the fi've speakers. I realize that all 3 headphone jacks must be plugged into my laptop, but I simply do not know where to place the other two.
    Therefore I was wandering is there some sort of device which would allow me to connect those 3 wires into my laptop. Perhaps some sort of 3 to converter
    (Please remember I am a complete Novice on technology)
    Any help would be appreciated.
    Thank You

    Hi Freddy I read your problem , here I have a solution for you . If you are using your motherboards existing inbuilt sound card then you arerequired to check the balance level. to check balance level. to check the balance you please click on start > control pannel > then click on " sound & audio devices"? In this menu click on " Advance" here you will found balance level of both master volume & wave . checkbalance sould be at center level. secondly go into your cards application software and select 5.1 or 6.1 speakers,to check the sound take a headphone and attach each output of sound card if sound is coming both channels then it meanssound card is ok. Check your T6060 speakers audio leads should be fully Inserted into sound cards socket. If your are using creative sound card then set it to factory default setting and check the problem will be automaticaly solved. Creative T6060 speakers are 5.1 speakers & it requires proper sound card . It is recomended to install creative Sound blaster5.1 or Creative Audigy Value sound card for exelent performance. Harjinder KlerCyberstar Infocom LtdChandigarh

  • Creative Inspire T6100

    my old creative set up has broke and now it is time to renew. my problem is.... i have a 5.1 decoder amp it sends the sound out separately to front L,R, back L,R, center and sub. this allows you to power them all separately. i am considering buying 2 sets of the creative inspire t6100 one set for the back L,R and one for the front L,R. and i would like to know what other users of the t6100 think of the system more to the point how many users have had problems. i am reserved on weather creative speakers last very long as my 2 sets of fps1600 have broke ( set the sub went and the other sounds like it is under water) and my 2.1 i-trigue 3200 (5 months old) (center speaker on my set up) is having problems with the wired remote. i am reluctant to switch companies as i think when working properly creative have an amazing sound. i would like to know if any one has any opinions on logitech (rival company if you will) as i have never heard anything from their speaker range. http://images.europe.creative.com/is.../dot-clear.gif

    Hi
    try cheking this link:
    http://forums.creative.com/creativelabs/board/message?board.id=speakers&message.id=486&view=by_d ate_ascending&page=
    and try do what is explained there
    cumpz
    PS: sorry my english

  • Urgent: Sessions problem pls help me

    Hi all,
    Its already late to post this problem.pls help me urgently.
    I have a servlet & two jsp's. first i request servlet, it processes something and forwards request to my first jsp. In that jsp on a button click, i'm displaying a new popup by calling showModalDialog. this dialog gets data from the same servlet but it forwards to my second jsp.(second jsp can be seen in dialog)
    Now if i submit form from my second(dialog) jsp, the servlet reports that session has expired. I tried a lot but invain. any one who helps me is appreciated well by all of our forum.
    waiting 4 u r reply,

    It could be that you have cookies turned off and you're not using URL Rewriting.
    In J2EE, the first time your browser makes a request to the server, the server responds and appends a SESSION_ID parameter to the request as well as storing a cookie with the SESSION_ID.
    The second time your browser makes a request, the server checks for the cookie. If it doesn't exist it checks for the parameter. If neither exist the server assumes its the first time your browser has made a request and behaves as describe in the previous paragraph.
    In your case when you submit the form if you have disabled cookies and the action attribute doesn't have the SESSION_ID paramter appended to the url, the browser will assume it's a first request. The user will not be logged in, hence your session has expired error.
    To fix this you need to encode the URL in your JSP. You can use the struts html:rewrite tag or the HttpServletReponse.encodeURL method, or if you're using JSP 2.0 the JSTL c:url tag.

  • Boot problem == pls HELP

    I have use the utility disk and format the machintos drive , and use  Extended (Journaled , Encrypted) , it ask me for a password (typed the password, confirmed the password - done) ,  after that i tried to install a fresh copy of Lion (i waited to be downloded from apple.com - done) after that it said that the fresh copy it will be installed and it will reboot by itself -> done ... from here the problem it's starting .... now my macbook air , it dosent start anymore it keep showming me, instaid of the apple sign from the start , a sign like the one from ghost busters (but without the ghost in it ) , i have tried to boot from cd , from usb , nothing dosent seams to be working.
    If anyone know a solution to this problem, pls HELP! Thank you in advance...
    p.s. before i had 2 hard drives that show up when i press the ALT button (machintos hd and utility drive, or something like that) now.. the only thing that it's showing me is : mac os base system , and if i try to use partition magic or something else, from a usb, it will tell me something about a bootguard , but i don't know how to insert the password.

    Glad your issue is fixed. Thanks for the update!
    Click if you want to Thank someone. If Problem is resolved, so that others can make use of it.

  • How to solve this problem, pls help when I try to see remote camera system from home."Dual streaming is required for HTML viewing"

    How to solve this problem, pls help when, I try to see remote camera system(spec dvr) from home. The Error I get is "Dual streaming is required for HTML viewing"

    I had the same probelm and found that the problem lies with 64bit programs such as safari and microsoft internet explorer. I have resolved the issue on my PC based server by using a 32 bit ie and same on my mac by using the same running windows under parallels.
    So far the problem with the 64 bit side of it is still to be resolved.
    Hope this helps and gets you guys up and running until suchtime a 64 bit solution is found.
    Craig

  • Probelm with Creative Inspire T6100

    Hello everyone, I'll really appreciate it if someone could help here. Just bought a new PC with sound card on board.Motherboard is: GB P35-DS3 /P35/LGA775The sound card is Realtek High Definition Audio. Along wiht the PC I got a 5.1 channel speaker system - Creative Inspire T1600. I installed the latest drivers for the sound card, also made sure the speaker system is plugged into the sound card slots as per the user guide and yet there is no sound coming out at all from the speakers. I also tried plugging out the speaker system and plugging in a normal pair of headphones, still no sound?.... I have re-installed the sound drivers a few times and there is no indication the issue is with the driver. Please help. Thanks a lot

    Hey, thanks for your reply but I've figured it out. It was a problem with the sound card driver... It works now and it's great!

  • Help setting up Creative Inspire T6100 (5.1) to HP Laptop

    Hi I recently bought Creative Inspire T600 (5.) speakers. I am unable to connect this to my HP DV6T laptop having only one input for speakers where as creative t600 has 3 pins in black, orange and green colors. I am stuck here. Could anyone please tell me how to connect the 5. speakers to my laptop? Appreciate your help.
    Arun.K.S

    Not really 100% sure (I only have a Creative T3030 2.1 that has a single 3.5mm jack) but from everything that I Googled, it looks like a stereo 3.5mm to RCA adapter and a Logitech 5.1 Game Console Adapter should work.
    http://www.amazon.com/Belkin-Audio-Cable-Splitter-1-Mini/dp/B00004Z5CP/ref=pd_si m_e_5
    http://www.amazon.com/Console-Adapter-Convert-Plugs-Single/dp/B0006U3ACY/ref=pd_ bxgy_e_img_b
    But to be safe, it might be best to check with Creative and see what they recommend for connecting it to the iMac.
    http://us.store.creative.com/Inspire-T6100/M/B000LIDLV6.htm
    Dennis

  • Creative Inspire T6100 5.1 Speakers and Creative Vision M 30 GB

    hey i wonder if you could help me, i would like to get some Creative Inspire T600 5.1 Speakers
    for my vision m but i have read some reviews that you need 3 audio inputs to get all the speakers working so there isn't much point in buying them unless any of you know if there is an adapter or speakers like this in the same price range which will work fully with my vision m. also would these speakers work off a tv?thanks very much
    Message Edited by big7george on 05-3-2007 04:24 AM

    Hi all do you have any idea to solve my problem?
    Currently, I'm using the P5800. My problem is sub can't working. I fix together with SB24Bit External sound card.Previously is working. I'm very proud with the sound,after I decrease the master volume and bass level volume my sub suddenly quit.what happened actually?
    -Is that mean I need to change the sub speaker or the coil inside the magnet core is burned?
    -or maybe my component circuit like ic,capacitor,diode burned?
    If I plug n unplug the power to the sub,I can heard that 'bump'. Is that mean my circuit in good condition or maybe the charge and discharge for capacitor?
    Please answer me...
    Thank You

  • Creative Inspire 6.1 6600 Sound Problem

    I have a Creative Audigy Audio Processor (WDM) (Audigy 2) and the speakers are Creative Inspire 6.1 6600. The sound goes down when the selector of volumen is between 3 and 4. I need to increase the volume to make it sound again, but it goes down again. What`s going on?

    Does this problem only occur in certain programs? Because I have a similar problem with my sound suddenly dropping without warning. But it only happens when I'm playing music in Windows Media Player. If it does have something to do with the media player then I suspect it could be the "WOW effects plugin." I hope this helps, or at least narrows down your problem.

  • Import problem,pls help!

    Hi,there,
    I'm new guy here,I'v got a problem about Import in table mode,I found I can import back all records successfully, but it just appends all records into the orignal table,not overwrite
    it,for example, I made a export for a table with 2 records, after then I added some records into that table,
    finally I made an import for that table, I found the
    total of records is not recovered to 2,but just append
    the records from export file,why can't I recover it to 2
    record? pls help me,thanks!

    All that import does is to run a bunch of SQL statements based on the content of the export file. If you look at the export file in an editor (if its small), or through type (on Windoze) or more on *NIX you will see stuff like:
    CREATE TABLE x STORAGE ( ...)
    INSERT INTO x col12,col2, ...
    VALUES (:b1,:b2, ...
    If you give imp the paramter ignore=Y, then the error generated by the CREATE TABLE (table already exists) will be suppressed, but the ata will be inserted. Note that there are no DROP TABLE or TRUNCATE TABLE commands in the export file.
    If you want to restore your database to a particular point in time using import, then you will need to manually drop or truncate the tables first. You can generate the required sql from the data dictionary. something like
    SET lines 1000 pages 0 feedback off trimspool on;
    SPOOL drop.sql;
    SELECT 'DROP TABLE '||table_name||';'
    FROM user_tables;
    SPOOL OFF;
    @drop.sqlHTH
    John

  • Installation problem, pls help

    I am trying to install Oracle 10g on SUSE 10.0.0 but when i run the ./runInstaller command, I receive an[b] error of writting to directory /tmp/OraInstall2006-03........, Please ensure this directory is writable and at least 60MB of disk space, i have checked for space using df -h /tmp, there is enough space, i think the problem has got to do with permission because @ the moment it belongs to root user, i don't know what to do, i am a novice to unix and need to install oracle today. Pls help
    Usually the standard install of SuSE Linux should set the ownership and access rights to /tmp, if you want to give access to everyone on the system, just use this command (if owner/root access is available):
    I have used chmod o+rwx /tmp command and still having the same error. Pls somebody help
    chmod o+rwx /tmp

    Of course I assume you did correctly follow installation and configuration instructions. Did you read Oracle10g/Linux Errors and Problems from Werner Puschitz ?

  • Weird Problem pls help.

    Hi guys I have a big problem that I can't figure out. See I have a PT880 Neo and on the mobo box it says it's VIA. But when I go to install the Hyperion 4 in 1 mobo drivers my system crashes. When I boot up I get a Bsod stating my graphics card is in an infinite loop and says the video driver for my card is the problem. Also when I go to install new hardware it doesn't detect it. I checked the bios and pnp is enabled. So I put a new network card in and it will only detect it in the top pci slot so is this some kind of glitch am I downloaded the right drivers? The hyperion 4 in 1's version 455vp1 pls help

    I need your full system specs + PSU specs.
    Read these guides as well >Moan Guide Power Supply Guide

  • Upgradation problem pls help

    I imported my oracle 8.1.5 database dump in oracle 8.1.7 but when I want to connect to my instance thru a client machine one error message comes as "
    problem in connecting to the database, check whether it is started or contact sys admin" whereas the database is in open state.
    Then when I connected to sqlplus at the server, it gets connected but some messages also come as below"
    ORA-06553: PLS-213: package STANDARD not accessible
    Error accessing package DBMS_APPLICATION_INFO
    ERROR:
    ORA-06553: PLS-213: package STANDARD not accessible
    Could anyone pls help..

    What is the result of
    SQL> show parameter PLSQL_V2_COMPATIBILITY
    ?

Maybe you are looking for