Help needed sorting out wiring

Hi everyone,
After recieving help from this forum on increasing my speed I have been connected to the master socket since my initial speed boost.
This comes with its own problems mainly that I now cannot use the telephones
So I invested in a Solwise (Am i allowed to name brands....other brands are available)
Trouble is when ive looked at the wiring in my current socket and tried to follow the instructions for the new filtered socket things uncertain.
in my current bt master socket I have wires coming out of most if not all locations and need to wire it into the new one.
any help would be fab as I've been 2 weeks without a house phone
Solved!
Go to Solution.

The only wires that you will need to reconnect are those on terminal 2 and 5 ( Blue and white of blue) that will go back on the new front plate using 2 and 5 again ( make sure they go back to the same as you remove)
Did you get a speed increase with the front plate off and connected direct into test socket?
(If I have helped you in any way to say "Thank You" please click on the star next to the message. Thank You)
If I have solved your Issue please click the "Mark as accepted solution" button.

Similar Messages

  • Help me sort out the problems with Java 2 SDK SE

    I install Java SDK 2 standard Eddition version 1.4 in my computer (Window NT4). When I test the installation by typing in "java -version", it displays the following message.
    C:\JavaPractice>java -version
    java version "1.4.0"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-b92)
    Java HotSpot(TM) Client VM (build 1.4.0-b92, mixed mode)
    But, When I compile a simple programme, it doesn't work and displays the following message.
    C:\JavaPractice>javac HelloDan.java
    The name specified is not recognized as an
    internal or external command, operable program or batch file.
    Could anybody help me sort out the problem, Please?

    i might guess that you have j2sdk1.4.0\jre\bin on your PATH, but not j2sdk1.4.0\bin ...
    Larry

  • I have a Mac mini Snow Leopard. In Numbers the grid lines are so faint that they are barely visible. Please could someone help me sort out this problem.

    I have a Mac mini Snow Leopard. In Numbers the grid lines are so faint that they are barely visible. Pleease could someone help me sort out this problem?

    The User Manual has this:
    Formatting Table Cell Borders
    You can change the line thickness and color of table cell borders. Or you can hide the border of any cell.
    To format table cell borders:
    1 Select the cell border segments you want to format.
    2 Use the controls in the format bar or in the Table inspector.
    Click to choose a stroke color.
    Click to choose a stroke style.
    Click to choose a line thickness.
    Stroke pop-up menu:  Lets you choose a stroke style. Choose None to hide borders.
    Line thickness:  Controls the thickness of the stroke.
    Color well:  Lets you choose a stroke color.
    When you click the color well in the format bar, a color matrix appears. Select a color by clicking it in the matrix, or click Show Colors to open the Colors window for additional color options.
    When you click the color well in the Table inspector, the Colors window opens.
    User Guide: http://manuals.info.apple.com/en_US/Numbers09_UserGuide.pdf

  • Help required sorting out an iTunes Library...

    Hi,
    I desperately need help sorting out my current iTunes configuration. Since 2008 when I purchased my current iMac my partner and I have had one main library for iTunes stored in the 'Shared' folder. Both iTunes were authorised with each others accounts which worked perfectly well. Since then we have both purchased iPhones, both have iTunes accounts/Apple IDs and I now have an iPad and MacBook Pro. I also have an iTunes Match. It's become apparent that due to the complexity of how iTunes works this is no longer a good set up, as when my partner tries to download previous purchases he gets the 'This computer is already associated with an Apple ID'. Does anyone have any suggestions of how to sort this out???
    Basically we both want to have iTunes Match accounts but want the ability to share our music. Is there any way to do this? Would it be better splitting the library into two?
    Please, please help - this is really doing my head in!
    Ben

    What you are asking for is not directly possible in Aperture for several reasons - you will have to accept a work-around.
    Aperture is a Single User Application - the Library must not be accessed by more than one user at a time.
    Aperture is not a network Application - the Library ought to be installed on a local volume, not a remote drive.
    Using the referenced masters to access the edits to your images will not work, since the masters always stay in their original pristine state. All edited versions are included in your Aperture Library. You will not see any edits when you inspect the masters. And any change to the master image files by external programs is extremely risky and may result in broken references.
    All these arguments together don't leave you much leeway for an easy solution. One workflow - the one I adopted - is the following: keep a small Aperture library on an external drive; that drive can be small and easy to carry. This Library contains only the last recent projects that still need editing with all master image files as managed masters, and for older projects only good previews to allow to browse and to grade and tag those images.
    All other  masters are stored on an external drive connected to my desktop computer.
    The small drive is easy to carry and does not bother me much.
    All other solutions - sharing the Library over the network are not save and have caused trouble.
    To back up your master image files you can create a disk image of the volume the are on from time, and also back them up right on import - their is a setting in the import panel.
    Regards
    Léonie

  • Need help to sort out photos

    Hi all,
    I just cant figure out something: I have about 3000 photos in my laptop, all in alphabetical order. When I sync them in my iPhone, they never appear sorted in alphabetical order but all mixed up. Anyone could help me to understand what I'm missing?

    iTunes stores the photos within each album chronologically. Even though you can re-order your photos within Photoshop Album or Photoshop Elements, iTunes ignores the order and simply sorts the photos chronologically.
    Knowing this, however, if you really want your photos sorted in a different order, there are a number of applications out there that will allow you to modify the timestamps of these photos - in fact, Photoshop Elements allows you to do this. As expected, if you change the timestamps, you will change the sort order.

  • Help needed sorting a text file.

    I'm trying to simply open a file, which is a text file of a list of names, then sort that file, the print the sorted file. The problem is that I keep getting this error
    Exception in thread "main" java.util.NoSuchElementException: No line found
         at java.util.Scanner.nextLine(Unknown Source)
         at pro.NamesFile.main(NamesFile.java:36)
    Which is at this line[b] words= new String(inputFile.nextLine());
    It's not reading any lines from the file and I can't figure out why.
    Here's the rest of my code:
    public class NamesFile {
         public static void main(String[] args) throws FileNotFoundException {
              Scanner inputFile;
            inputFile = new Scanner(new File("C:/Documents and Settings/Cougar/Desktop/New Folder (2)/names.txt"));
            String name;
            inputFile.next();
            String[] words = new String[100];
            while (inputFile.hasNext()) {
                 name = inputFile.nextLine();     
                 for (int i = 0; i < words.length; i++) {
                      words[i] = new String(inputFile.nextLine());
            Sort2.insertionSort(words);
                 for (int index=0; index < words.length; index++)
                    System.out.print(words[index].toString()+"\t");
    }Here the sort algoritm I'm using, it the insertion sort one.
    public static void selectionSort (String[] list)
               int min;
               String temp;
               for (int index = 0; index < list.length-1; index++)
                  min = index;
                  for (int scan = index+1; scan < list.length; scan++)
                     if (list[scan].compareTo(list[min]) < 0)
                        min = scan;
                  // Swap the values
                  temp = list[min];
                  list[min] = list[index];
                  list[index] = temp;
            public static void insertionSort (String[] list)
               for (int index = 1; index < list.length; index++)
                    String key = list[index];
                  int position = index;
                  //  Shift larger values to the right
                  while (position > 0 && key.compareTo(list[position-1]) < 0)
                     list[position] = list[position-1];
                     position--;
                  list[position] = key;
            }I'm still relativly new at this, so forgive me if there's something obvious that I'm missing.And thanks for any help anybody can give me.

    You haven't gotten to running the sort yet, so I didn't even check that the sort routine is correct.
    Your problem is:
    You say inputFile.hasNext() once, and then you read 1 line from it. Then, in your 'for' loop, you read 100 lines from it. So, you always attempt to read 101 lines, even if the file is shorter than that.
    You should call "hasNext" before each call to "readLine". Also, you probably want a "while" loop, instead of a "for" loop, since you don't know how many words you will have. I assume you are expecting 100 or less (based on your array size).
    Two more notes:
    1. Don't do "new String(inputFile.readLine())". All you need is:
    words= inputFile.nextLine();
    2. You don't need toString here:
    System.out.print(words[index].toString()+"\t");words[index] is already a String, and concatenating the "\t" to words[index] would create a String, anyway, no matter what type words[index] was. And, calling:
    System.out.print(words[index]);would also automatically call "toString", even if words[index] were not a String.
    You could avoid creation of new Strings by:
    System.out.print(words[index]);
    System.out.print("\t");Just make sure you add braces around them, if both lines are the body of a 'for' loop. You should also make the second 'for' loop into a 'while' loop, using a counter that you update as you read the lines--so that you don't process the "null" elements of the array. You also need to account for null elements in your sort method.

  • Can anyone help me sort out the audio on my k8n neo2

    Audio has never been one of my strong points so im stuck trying to get the onboard sound on my k8n neo2 board to work properly. The case i have has front connections for  headphones and another for microphone. Ive managed to get the front headphone jack to work i havnt got a mic so i cant try that. I have tried connecting my stereo speakers (part of my monitor) to the line out at rear (green jack plug) , i notice in the msi sound manager they refer to this connector as front speaker out. I had no sound at all until i came across aforesaid msi sound manager, the only way i can get sound is by going into this manager and selecting "speaker configuration" and either selecting 8 or 6 channel which i havnt got but at least i can hear a cd when its playing. The problem with this is that when i boot into windows there is no sound played. I have noticed in the mobo manual page E-2-20 under msi reminds you.. If you dont want to connect to the front audio header (JAUD1), pins 5&6, 9&10 have to be jumpered in order to have signal output directed to rear audio audio ports. Otherwise the line-out connector on back panel will not function. Wonder if this has something to do with it. I encclose an image showing the relevant mobo page with connection instructions and the wiring of front panel jacks from my case instructions.
     on the JAUD1 pins 6 and 10 audio signal returns for right and left channel  but my case wiring only had a single return in the form of the shield braid so i split it in two and connected to pins 6&10 to see if this would cure the no sound problem, it didnt. Just hoping the image is big enough for people to read. Hope someone can help with this.

    Well lets see if I can help.
    Connect like this:
    Red---->Aud_fpout_L
    Jump with Red---->Aud_ret_L
    White---->Aud_fpout_R
    Jump with white---->Aud_ret_R
    I think is... Spiral---->Aud_gnd this you have to share with the mic that is also Spiral
    As for the mic .... MIC power---->Aud_mic_bias
    MIC-IN---->AUD_mic
    And I think that's it....
    Be well....

  • Help - I am finding this really difficult - I just want to talk to someone to help me sort out my blackberry

     Please help me I hate all this stuff I just need to be able to talk to someone I have spent hours and hours now and am so frustrated .I need to talk to a UK helpline ( I can find number for Pakistan )
    my blackberry will not send emails since I put in a new sim
    Vodafone can not sort it
    WHO CAN I PHONE PLEASE ?

    What issues are you having with your BlackBerry? Could you please state your question clearly and with ALL details? There are many very knowledgeable users here who might assist you.
    Are you using VodafoneUK mobile service in Pakistan? Is the new SIM a VodafoneUK card?
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Help need for Outer Join Query Mysterious Query...

    I have two table parent tablea and child tableb
    Now
    tableb has field by name table_id,keyword_name,keyword_value
    tablea has field by name
    table_id,table_name
    I need a query which would retrieve union of this two set...(for table_name)
    1)all table_name having keyword_name='abc' and value=12
    2)all the table_name that does not have 'abc' as keyword in tableb.....
    Please let me know how it can be done....

    Ok then, try this.
    select
        a.table_name
    from
        tablea a, tableb b
    where
        a.table_id = b.table_id
        and b.keyword_name = 'abc'
        and b.value = 12
    union
    select
        c.table_name
    from
        tablea c
    where
        not exists (select 1 from tableb d
                    where d.table_id = c.table_id
                          and d.keyword_name = 'abc'
                   ) ;To get a faster answer and avoid wrong guesses, I always find it helpful to show sample data and sample output when asking a SQL question. For example:
    TableA -----------------
    table_id    table_name
      1           AAA
      2           BBB
      3           CCC
      4           DDD
      5           EEE
    TableB -----------------
    table_id    keyword_name   value
        1             abc       12
        1             def       23
        2             abc       13
        4             def       12
        5             abc       13
        5             def       12
    Desired output of query: -----------------
    AAA
    CCC
    DDD

  • Help needed in Outer Joins

    Hi,
    The follwing is my query
    select imdsrequest.*,request_material.*,request.request_num from imdsrequest join request_material on
    (imdsrequest.REQUEST_ID = request_material.REQUEST_ID)
    join REQUEST on (request.request_id = request_material.associated_request_id)
    it executes fine. But i want to re-write this query using outer join . on the above query i am using ON condition for matching the columns.
    can any one help me to restructure this with outer join so that i can give all the conditions using WHERE clause .
    Edited by: 936693 on Jul 3, 2012 7:12 AM
    Edited by: 936693 on Jul 3, 2012 7:13 AM

    Hi,
    Whenever you have a problem, please post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all tables involved, and also post the results you want from that data.
    Explain, using specific examples, how you get those results from that data.
    Always say which version of Oracle you're using.
    See the forum FAQ {message:id=9360002}
    936693 wrote:
    Hi Folks ,
    Thanks for the reply. i don't want to use "ON" condition. So can you please show me some example based on my requirement .
    i will have to use where condition instead of on and have to use outer joins where and all require, please guide me .Why don't you want to use "ON"?
    Are you using Oracle 8 (or earlier)? Always say what version of Oracle you're using.
    Is this part of a homework assignment, where the teacher specifically said not to use ON? Then post the exact question and instructions. It would help if you gave a little context (what was being taught in the most recent lesson) so we can give you a better answer.
    The only ways to avoid "ON" are
    (1) don't join any tables
    (2) do a CROSS JOIN
    (3) use the notation
    If an outer join is appropriate for your problem, then I don't recommend any of the above.

  • W350 help needed - runs out of room synching my Outlook Notes

    I have about 50 short notes saved in Outlook Notes that I would like to have synched with my W350 phone.  Trouble is, that when I synch, I run out of room for these Notes at around #40.
    My question:  My phone has a 2GB ram chip in it.  If I go to a bigger chip, will I be able to download all the notes?  Trouble is, I am not sure if the phone uses this extra memory for Notes, or if it's in some kind of built-in memory in the phone.  I don't keep music or anything other than Contacts and Calendar items on the phone.
    Thanks for your help.

    Hi there, unfortunately notes are sync'ed to the internal memory of the phone. The internal memory is about 14MB so it is limited, I'm not aware of any software to allow you to sync directly with the memory card

  • Urgent Help needed - locked out of my 7610!

    Hi all. Think I might have locked myself out of voice calls on my 7610 accidentally. Forgot to lock the keypad when I put the phone i my bag and when I retrieved it it had "###########" on the keypad. Now it won't allow me to make any outbound calls (including to customer services) but sms, emaila and WAP all still work. I've checked the sim and it works perfectly well in another handset. What do I do to get my voice calls back??!! (I'm an Orange user, but I think this is a handset rather than a network problem).

    One way to contact Orange Customer Services is to phone 07973 100 150 from any phone and follow the prompts.
    You could also try resetting your phone, but you will lose ALL your data on your phone such as contacts and calendar appointments etc.
    I would advise you to check with Orange first.
    Regards,
    Edward

  • Hi sap gurus can anyone help to sort out problem on credit memo

    hi sapgurus
    my scenerio is like this
    1) some people are creating the credit memo for the invoice which has been cancelled. my question is that if u cancel a invoice sap will allow u to create the credit memo?
    2)second quesstion is that how can i restrict some one from creating the credit memo for the invoice which has been cancelled? if i how to do it?
    thanks in advance
    sam sd

    Hi
    Not displaying the subitems in the invoice can be controlled in the program which is linked to your output type. If you inform your reqmts to the ABAPer, he should be able to code accordingly.
    For demand planning, you may either have to use Sales Operations Planning or Transfer of Reqmts in SD. You can talk to somebody who knows either of these good and they can help you. Alternatively, you can post this specific question in PP also. May be you will get immediate answer for this.
    Pls reward if this is helpful to you

  • URGENT HELP NEEDED: Sorting problems

    I am trying to sort large document of around 1,000,000 records into file but I can't do it.
    I receive the following message:
    Cputime limit exceeded
    52.760u 8.240s 1:46.94 57.0% 0+0k 0+0io 2098pf+0w
    Is this fixable? Do you know what's the cause of the problem?

    There should be a limit placed by UNIX systems administrator.
    Is there any other way? I looked in the man pages for some way of setting and changing the resource limits from the command line, but couldn't find anything. Perhaps someone who understands *nix better might know.
    java -Xmx10m ...This switch sets memory rather than cpu time.
    How long is the sort taking any way?

  • Corrupted iPod- Please help me sort it out!

    Hey everybody,
    First of all thanks alot for trying to help me sort out my iPod; it's truly appreciated.
    Basically i have had a 30GB 5th Gen iPod Video for about 18 months. It seemed alright but recently it has become corrupted. The iPod seems to work, but when i plug it into iTunes i get this message:
    "Itunes has detected an iPod that appears to be corrupted".
    I have restored the iPod to factory settings as suggested, and retried connecting it to my computer but i cannot get the iPod to sync with iTunes.
    Does anyone know what i can do to fix it? I don't think i dropped it very hard but i may have dropped my iPod after a night out recently...
    THANKS LOADS!!

    Hi oli_t,
    If a second/third attempt at restoring your iPod does not work to fix that "corrupted" message you are getting in iTunes, then you may want to try running disk error checking (sometimes just called "chkdsk") on your iPod.
    For instructions and info about that, see this MS document:
    How to perform disk error checking in Windows XP
    -Kylene

Maybe you are looking for