Having a huge problem getting photos out of kalleri into photo shop touch

I have the new Samsung galaxy note 10.1 tablet with PS Touch preinstalled. My huge problem is trying to bring photos for editing/enhancing into PS Touch from "Gallery" *"Gallery" is where all your photos  are stored (like Adobe Bridge)
      Please help me understand how to bring them into PS Touch easily
Team Costco

Try you question over in http://forums.adobe.com/community/photoshop/touchapps?view=allhttp://

Similar Messages

  • I am having some huge problems with my colorspace settings. Every time I upload my raw files from my Canon 5D mark II or 6D the pics are perfect in color. That includes the back of my camera, the pic viewer on my macbook pro, and previews. They even look

    I am having some huge problems with my colorspace settings. Every time I upload my raw files from my Canon 5D mark II or 6D the pics are perfect in color. That includes the back of my camera, the pic viewer on my macbook pro, and previews. They even look normal when I first open them in photoshop. I will edit, save, and then realize once i've sent it to myself to test the color is WAY off. This only happens in photoshop. I've read some forums and have tried different things, but it seems to be making it worse. PLEASE HELP! Even viewing the saved image on the mac's pic viewer is way off once i've edited in photoshop. I am having to adjust all my colors by emailing myself to test. Its just getting ridiculous.

    Check the color space in camera raw, the options are in the link at the bottom of the dialog box. Then when saving make sure you save it to the srgb color space when sending to others. Not all programs understand color space and or will default to srgb. That won't necessarily mean it will be accurate, but it will put it in the ballpark. Using save for web will use the srgb color space.

  • Why so much code getting data out of DB & into web services

    I am new to Java and I am experimenting with web services.
    I am trying to get data out of a database and into a web service
    This is the code I had to build just to get a little bit of data out of a DB and into a web service.
    // Open a database connection and statement.
    Class.forName("COM.ibm.db2.jdbc.app.DB2Driver").newInstance();
    Connection dbConn = DriverManager.getConnection("jdbc:db2:sample","myuser","mypass");
    Statement statement = dbConn.createStatement();
    // Build the message.
    SOAPMessageContext ctx = (SOAPMessageContext) messageContext;
    try {
    MessageFactory messageFactory = MessageFactory.newInstance();
    SOAPMessage m = messageFactory.createMessage();
    SOAPEnvelope env = m.getSOAPPart().getEnvelope();
    SOAPBody body = env.getBody();
    SOAPElement elem =
    body.addBodyElement(env.createName("ns1:getEmployees"));
    elem.addNamespaceDeclaration("ns1",
    "http://www.abc.com/SampleApplication/Employee.wsdl");
    elem.addNamespaceDeclaration("ns2",
    "http://www.abc.com/SampleApplication/Employee.xsd");
    SOAPElement elem1 = new SOAPElementImpl("Response", null, null);
    // Execute the query.
    String sql = "SELECT EMPNO, FIRSTNME, MIDINIT, LASTNAME, HIREDATE FROM EMPLOYEE";
    ResultSet result = statement.executeQuery(sql);
    Isn't there a way with less code to get data out and stick into a web service?

    I left the part of the code out that is bugging me - I was talking about all of the code to get the data into XML..
    here's the whole code..
    // Open a database connection and statement.
    Class.forName("COM.ibm.db2.jdbc.app.DB2Driver").newInstance();
    Connection dbConn = DriverManager.getConnection("jdbc:db2:sample","myuser","mypass");
    Statement statement = dbConn.createStatement();
    // Build the message.
    SOAPMessageContext ctx = (SOAPMessageContext) messageContext;
    try {
    MessageFactory messageFactory = MessageFactory.newInstance();
    SOAPMessage m = messageFactory.createMessage();
    SOAPEnvelope env = m.getSOAPPart().getEnvelope();
    SOAPBody body = env.getBody();
    SOAPElement elem =
    body.addBodyElement(env.createName("ns1:getEmployees"));
    elem.addNamespaceDeclaration("ns1",
    "http://www.abc.com/SampleApplication/Employee.wsdl");
    elem.addNamespaceDeclaration("ns2",
    "http://www.abc.com/SampleApplication/Employee.xsd");
    SOAPElement elem1 = new SOAPElementImpl("Response", null, null);
    // Execute the query.
    String sql = "SELECT EMPNO, FIRSTNME, MIDINIT, LASTNAME, HIREDATE FROM EMPLOYEE";
    ResultSet result = statement.executeQuery(sql);
    SOAPElement employee = new SOAPElementImpl("Employees", "ns2", "http://www.abc.com/SampleApplication/Employee.xsd");
    employee.addChildElement("ns2:EMPNO").addTextNode(result.getString("EMPNO"));
    employee.addChildElement("ns2:FIRSTNME").addTextNode(result.getString("FIRSTNME"));
    employee.addChildElement("ns2:FIRSTNME").addTextNode(result.getString("MIDINIT"));
    employee.addChildElement("ns2:LASTNAME").addTextNode(result.getString("LASTNAME"));
    employee.addChildElement("ns2:FIRSTNME").addTextNode(result.getString("HIREDATE"));
    elem1.addChildElement(employee);
    elem.addChildElement(elem1);
    ctx.setMessage(m);
    dbConn.close();
    } catch (Throwable e) {
    weblogic.utils.Debug.say("(hbs):e " + e);
    e.printStackTrace(System.out);
    putting the data in the node seems excessive to me.
    thanks
    AP

  • Having a real problem getting my vi to work - great difficulty running sequence as desired

    Hi
    I am have a real problem getting my vi to work as required.
    I would like the my vi (EXAMPLE.vi in the vi library attached) to run continuously.  It should update the graphs on the front pannel and also save data to file when requested using the  save data to file button. (I have written a sub vi. to deal with this data handling and file saving which run in two while loops with the vi as can be seen on inspection of the block diagram)
    Now, what I would like is for the updating to pause whenever I change any of the settings on the front panel (which are controls in the first half of the sequence of the vi) so the hardware is reset.  As it is at the moment I have to stop the vi to change the front panel settings and then restart it in order for the first part of the sequence to run and re-set the values on the hardware.
    I guess I need to use some kind of event driven programming an event stucture or something like that. This is quite advanced and I don't know how to implement it. 
    Can anybody offer any Ideas. 
    Many many thanks
    Ashley
    Attachments:
    test library.llb ‏470 KB

    Hi,
    If you are new to event structures then you may find the following tutorial useful:
    Event-Driven Programming in LabVIEW
    http://zone.ni.com/devzone/conceptd.nsf/webmain/E5F8474BDA20C97786256B5A0066968B?opendocument
    A powerful New Tool for UI Programming--User Interface Event Programming
    http://zone.ni.com/devzone/conceptd.nsf/webmain/2a8ab43b28bbde1086256b830059875c
    Advanced Event Handling with LabVIEW 7 Express
    http://zone.ni.com/devzone/conceptd.nsf/webmain/aa79ff38336eb38886256d2b004aca49#1
    I hope this helps
    All the best
    Kurt

  • Problems getting print-out of Sub-contracting challan

    Hi all,
    we,ve had real problem getting the print0out of sub contracting challan.
    System wouldn't show any print-preview of the sub contracting challan.
    but at assign forms and procedures in customizing of Inv management, at 51IF FOR SC challan, the system does show a print-preview of the sc challan form.
    but, after creating a SC challan and trying to view the print-preview of sc chalan, the system would neither show print-preview nor get a print-pout of the sc chalan.
    please do help in this regard,
    thanks and regards
    Nabil

    solve with other thread

  • I am having a big problem downloading my individual phot folders into my ipod...i need detail on how to do this....and how do i get rid of my doubles and triple pictures????very confussing!!!!

    Can anyone tell me how to downlad my photos into my ipod touch and still keep them in their folders.....my ipod will not accept all my picutre...after i download my pictures and combined  folders which mixes all the pictures.my ipod states....960 items could not be synced...see itunes for more infomation!!!!. and afte all the pictures have been downloaded.. i still have room for more pictures....very frustrating!!!!

    When you connect your iPod to iTunes, look on the Device/Photos pane and choose the one folder on your computer (for example "Pictures Set A") that you want to use to Sync with your iPod, by using the Browse button.
    In that folder ("Pictures Set A"), put any folders that you want to Sync with your iPod (such as "Holiday in London" and "Day Trip To Sydney" etc. etc.).  They are known as sub-folders. Sync the iPod to iTunes.
    On the iPod, in the Photos App, you will see a folder named Photo Library which has all your (Synced) photos in it, but without folders. Beneath the Photo Library folder are all the sub-folders, such as "Picture Set A" , "Holiday In London" and "Day Trip To Sydney". Each sub-folder has only the photos that are in that folder on your computer.
    For the photos that did not Sync to your iPod, I suggest you follow the message that you saw, "see iTunes for more information". The most likely explanation is that they are in a format the iPod cannot handle.

  • I am Student and having a huge problem need some help quick!!!

    Hello I am student in college and i am developing a file share portal for my final year project using Flex 3 on the client side, java on the server side, hibernate for ORM, Sping MVC and My Sql 5. I am having a bit of a problem parsing this:
    ------------GI3ae0ae0ae0GI3KM7KM7Ef1cH2ei4
    Content-Disposition: form-data; name="Filename"
    Flex3.txt
    ------------GI3ae0ae0ae0GI3KM7KM7Ef1cH2ei4
    Content-Disposition: form-data; name="action"
    upload
    ------------GI3ae0ae0ae0GI3KM7KM7Ef1cH2ei4
    Content-Disposition: form-data; name="file"; filename="Flex3.txt"
    Content-Type: application/octet-stream
    Flex 3 can be a pain in the arse!!!!!!
    ------------GI3ae0ae0ae0GI3KM7KM7Ef1cH2ei4
    Content-Disposition: form-data; name="Upload"
    Submit Query
    ------------GI3ae0ae0ae0GI3KM7KM7Ef1cH2ei4--
    This is my Java code:
    package com.file.exchange.service;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.http.HttpSession;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    import org.w3c.dom.Node;
    import org.w3c.dom.NodeList;
    import org.xml.sax.InputSource;
    import java.io.*;
    import java.sql.Blob;
    import com.file.exchange.vo.Files;
    import java.util.Date;
    import java.text.DateFormat;
    import java.text.SimpleDateFormat;
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.io.File;
    import org.apache.commons.fileupload.*;
    import org.apache.commons.fileupload.disk.*;
    import org.apache.commons.io.*;
    import org.apache.commons.fileupload.servlet.*;
    import java.util.Iterator;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.ListIterator;
    import javax.imageio.ImageIO;
    import javax.imageio.ImageReader;
    import javax.imageio.stream.ImageInputStream;
    import org.apache.commons.fileupload.util.FileItemHeadersImpl;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class FileUpload extends FileBaseService
         InputStream in = null;
         OutputStream out = null;
         ByteArrayOutputStream bout = null;
         @SuppressWarnings("unchecked")
         @Override
         protected String getXmlFromOperation(HttpServletRequest request,HttpServletResponse response) throws Exception
              int readBytes = -1;
    int length = request.getContentLength();
    in = request.getInputStream();
    byte[] buffer = new byte[length];
    bout = new ByteArrayOutputStream(length);
    while((readBytes = in.read(buffer, 0, length)) != -1) {
    bout.write(buffer, 0, readBytes);
    byte[] inData = bout.toByteArray();
    FileOutputStream fos = new FileOutputStream("C:/Documents and Settings/Andrew Hobbs/Desktop/helloworld.txt");
    for(int i=0; i<inData.length; i++)
    fos.write(inData);
    fos.close();
              DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
              Date date = new Date();
              String data = "Hello";
              String id = "1";//getCharacterDataFromElement(vID);
              String name = "meh";//getCharacterDataFromElement(vname);
              String type = "1";//getCharacterDataFromElement(vtype);
              String size = "5555";//Long.toString(fileObject.length());//getCharacterDataFromElement(vsize);
              Blob content = org.hibernate.Hibernate.createBlob(data.getBytes());//fisFile);//data.getbytes[]
              String date_uploaded = dateFormat.format(date);
              Files file = getFileDao().uploadFile(Integer.parseInt(id), name, type, Integer.parseInt(size), content, date_uploaded);
              return file.toXml();
    I will so grateful if somebody could point me in the right direction with this or point me to possible examples of parsing this!
    Thanks

    Let me warn you up front: never mark your questions as urgent. People really don't care how urgent it is to you, and will likely only irritate them enough to not want to help you. Lucky for you, I couldn't care less ;)
    you seem to want to get an uploaded file using FileUpload. Did you see the user guide on how to do this? You seem to be going about it in completely the wrong way.
    [FileUpload user guide|http://commons.apache.org/fileupload/using.html]
    Also:
    FileOutputStream fos = new FileOutputStream("C:/Documents and Settings/Andrew Hobbs/Desktop/helloworld.txt");Hardcoded paths in your code? Not very portable is it. I would define paths in a properties file. Read this:
    [smartly loading properties|http://www.javaworld.com/javaworld/javaqa/2003-08/01-qa-0808-property.html]

  • I am havign huge problems getting itunes 11.1.4 working on my windows 7 laptop. I have run itunes for some years, and regularly updated it when prompted. I have followed many of the suggestions e.g. uninstalling reinstalling, etc

    I have spent hours trying to get itunes working on my laptop.
    The only functinoality I crave is to be able to get pictures off my iphone 5 (which has the latest ios installed.), as almost all other functinoality of itunes I find painful beyond belief. It has the worst ergonomics I think of any software I have ever used, which is bizarely at odds with the mobile decvices, which by and large work quite nicely (indeed, why I bought them!)
    My laptop runs windows 7. It has all the latest microsoft updates installed (I am religious about this: it always has had.)
    I have run itunes on this machine for some years, regularly updating when I am prompted to.
    A few days back i was prompted to update to 11.1.4
    It failed to install badly. whatever I try at some point during the install process the installer just hangs, or never terminates.
    All communication between computer and iphone functionality has been lost.
    Nothing eles on my machine is behaving oddly. slowly etc. it is only apple stuff that isn't working.
    I googled and found a lot of recurring themes on apple forums:
    So far I have tried:
    uninstalling / reinstalling. (hangs during installation).
    Restarting the machine between uninstall and reinstall.
    Searching and removing any directories/ contents related to apple, after the uninstall, prior to machine reboot.
    I have even used iobit uninstaller, as removing apple software as you know is almost impossible (ever tried disabbling the quicktime updater that runs at startup? it's like a virus !!)
    I have removed all apple software incl quicktime.
    I have tried the microsoft software installer fixit link often posted to.
    i have tried unpacking the apple installation file, using the latest version of winrar, to try installing one at a time.
    I have found the installation is very very very slow (it looks as though it hangs, but i leave it running in the background, after 15-20 minutes, the status starts advancing for example). so far I have managed to install the first few components up to applesoftware  update,msi, and they seem to need to be run multiple times.
    (this last one took about 40 minutes).
    I have been very careful to install / uninstall the software components int eh "prescribed" order.
    I have tried each step multiple times, rebooting the machine numerous times, cleaning temp folders (with ccleaner) etc.
    I ave tried installing when my virus checker AVG is disabled.
    (i have virus checked the machine with AVG and malware bytes, I have the latest microsft security essential updates installed.)
    I ahve tried stopping apple services (as suggested in one of the apple forum posts).
    As you can gather I'm seriously tearing my hair out.
    I presume there is some kind of generic bug in this installer: as a friend had exactly the same problem on sunday night, with a different machine, running windows 7, and a couple of her colleagues at work has had the self same problem over the weekend, though none of them seem to have gone to the lengths I have yet !
    I tried doing a system restore, but my machine seems to have lunched all previous system restore points, so I can't . Arrrrrgggg !
    Is an older version of itunes available so i can install that instead ?
    What should I do next ?
    Jonathan

    I have spent hours trying to get itunes working on my laptop.
    The only functinoality I crave is to be able to get pictures off my iphone 5 (which has the latest ios installed.), as almost all other functinoality of itunes I find painful beyond belief. It has the worst ergonomics I think of any software I have ever used, which is bizarely at odds with the mobile decvices, which by and large work quite nicely (indeed, why I bought them!)
    My laptop runs windows 7. It has all the latest microsoft updates installed (I am religious about this: it always has had.)
    I have run itunes on this machine for some years, regularly updating when I am prompted to.
    A few days back i was prompted to update to 11.1.4
    It failed to install badly. whatever I try at some point during the install process the installer just hangs, or never terminates.
    All communication between computer and iphone functionality has been lost.
    Nothing eles on my machine is behaving oddly. slowly etc. it is only apple stuff that isn't working.
    I googled and found a lot of recurring themes on apple forums:
    So far I have tried:
    uninstalling / reinstalling. (hangs during installation).
    Restarting the machine between uninstall and reinstall.
    Searching and removing any directories/ contents related to apple, after the uninstall, prior to machine reboot.
    I have even used iobit uninstaller, as removing apple software as you know is almost impossible (ever tried disabbling the quicktime updater that runs at startup? it's like a virus !!)
    I have removed all apple software incl quicktime.
    I have tried the microsoft software installer fixit link often posted to.
    i have tried unpacking the apple installation file, using the latest version of winrar, to try installing one at a time.
    I have found the installation is very very very slow (it looks as though it hangs, but i leave it running in the background, after 15-20 minutes, the status starts advancing for example). so far I have managed to install the first few components up to applesoftware  update,msi, and they seem to need to be run multiple times.
    (this last one took about 40 minutes).
    I have been very careful to install / uninstall the software components int eh "prescribed" order.
    I have tried each step multiple times, rebooting the machine numerous times, cleaning temp folders (with ccleaner) etc.
    I ave tried installing when my virus checker AVG is disabled.
    (i have virus checked the machine with AVG and malware bytes, I have the latest microsft security essential updates installed.)
    I ahve tried stopping apple services (as suggested in one of the apple forum posts).
    As you can gather I'm seriously tearing my hair out.
    I presume there is some kind of generic bug in this installer: as a friend had exactly the same problem on sunday night, with a different machine, running windows 7, and a couple of her colleagues at work has had the self same problem over the weekend, though none of them seem to have gone to the lengths I have yet !
    I tried doing a system restore, but my machine seems to have lunched all previous system restore points, so I can't . Arrrrrgggg !
    Is an older version of itunes available so i can install that instead ?
    What should I do next ?
    Jonathan

  • Having a Huge problem w/my Creative Zen Mi

    Whenever i turn it on it doesn't go to my music or anything it goes straight to the creative picture. And then i take out?the battery to see if that would help and maybe go to the music but?it still goes to the creative picture. i have tried to reboot..that doesn't work. And then i tried to format and it'slike froze the screen. And then same w/clean up.ii believe the way that this?all happened was i wasn't listening to?music on it and?but it'swas on. And it'stried to shut?down and then like it shut?down but the screen i was on was still up but it was frozen. So i tried to turn it off but?that didn't work?so i took out the batteryi?hope someone can help me!! thank you?

    Mine has the exact same problem! I have to drain the battery in order to access recovery/format mode and even when I try to use either, it freezes up. When it has a charge, it sticks to the screen that just says "Creative".
    I haven't tried using it in a very long time, and had it packed away (it was doing this before packing it away), so all my software disappeared and cables. So tonight I decided to see if I could get it running, but it pooped out. I'm planning on finding a new USB cable and downloading the program and seeing if I can format it from the computer. I suggest you try the same.

  • Suddenly I am having a HUGE problem with slow response.

    Thunderbird has worked like a charm for over a year. Now, all of a sudden, it keeps hanging up when I try to write or send an email. I haven't changed my anti-virus software which is MS Defender. I can't think of anything else I could have done to cause the problem. For a while, I couldn't open MS Word attachments. That seems to be solved now for some unknown reason. I really like this email program when it works, but I need more dependability. Is anyone else having this problem?

    Try to start *Windows* in safe mode with networking enabled.
    - Win8 http://windows.microsoft.com/en-US/windows-8/windows-startup-settings-including-safe-mode
    - Win7 http://windows.microsoft.com/en-US/windows7/Start-your-computer-in-safe-mode
    - XP http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/boot_failsafe.mspx
    Still in Windows safe mode, start Thunderbird in safe mode.
    - https://support.mozilla.org/en-US/kb/safe-mode
    Does the problem go away?

  • Problems getting data out of Mocha and into After Effects

    Hi.  I'm using After Effect CS4.  I brought a video clip into Mocha and tracked it.  I've tried copying the data to clipboard and also went back and saved as a text file since I could't paste into After Effects.
    Haven't figured out how to make either method work.
    At first, I'd created a Null Object in AFX and added the COrner Pin Effect, but the paste option is greyed out - doesn't matter if I select the layer or the Corner Pin effect.
    Next I created a solid since I'd seen that mentioned on some threads, but Paste is still greyed out.
    Tried exporting the tracking data as a file from mocha next and have the corner pin data sitting on my desktop as a txt file - but still not sure how to get that into After Effects CS4 - tried this with a null and a solid, but not working.
    Thanks for any suggestions.

    Also - It pastes unmoving data as well into the Postion, Scale, and Rotation of the solid as well as the Corner Pin Effect.
    Yes, AE's corner pin does the same. It's how it is supposed to work. You need to choose the RG Warp compliant variant to only get corner pin data. The rest is too vague. Wee need exact info on what you are doing. Tracks appearing to be static is simply an issue where coordinates are introduced twice and somehow self-compensate, which for all intents and purposes could relate to the previously described issue....
    Mylenium

  • Having a HUGE problem

    I have a large amount of movies that were backed up using Cleaner 6. They were exported out as mpg 2 for dvd. Here is the problem: dvd studio sees the file, parses the file (green dot an everything) but as soon as I click the file the rainbow wheel pops up and never goes away. I also tried de-muxing the clips and importing them as m2v but the same thing happens. Anyone else experience this? Any one know what I am doing wrong?
    Thanks

    Your files need to be 640 x 480 for the video. They also have to be DVD compliant MPEG2 strems. They can have the extension .m2v, .mpeg, .mpg, etc.
    But the audio HAS to be separate in order to import those files into DVD SP.
    The audio can be AIF or WAV (48khz, 16 bit stereo)
    or Dolby Digital (.ac3)
    You can try to use programs like DIVA to convert the MPEG2 stream back to a .mov file (works really fast), then extract the audio and use the audio to put it into FCP and export it back out. Then use Compressor or something to encode it again.
    This isnt the best quality, but it might help.
    How big are the files?
    Send me the smallest file.
    There is usually a way to convert ANY MPEG stream to something else.
    What programs are you using?

  • Having serious latency problems when gaming out of...

    Hi there,
    I run ADSL, and being in a semi-rural area its not fantastic - 4MB if I'm lucky, but generally its been quite stable and no major problems.
    Over the last week or two I've noticed that my Home and World lag on WoW seems to jump dramatically, to the point of being unplayable.
    I've done all the usual - tried wired, changed filters, reset router umpteen times and still seem to be sporadically afflicted by it.
    I don't know if its much help or not, but here's a pathping, and a traceroute I did earlier.
    Tracing route to 213-155-152-66.customer.teliacarrier.com [213.155.152.66]
    over a maximum of 30 hops:
    1 3 ms 1 ms 1 ms BThomehub.home [192.168.1.254]
    2 30 ms 21 ms 21 ms 217.32.144.67
    3 66 ms 21 ms 37 ms 217.32.144.110
    4 29 ms 26 ms 26 ms 213.120.181.42
    5 26 ms 26 ms 26 ms 217.41.169.65
    6 27 ms 27 ms 27 ms 217.41.169.107
    7 43 ms 26 ms 66 ms 109.159.251.107
    8 2349 ms 57 ms 38 ms core2-te-0-4-0-17.ilford.ukcore.bt.net [109.159.251.49]
    9 33 ms 33 ms 32 ms core2-pos9-1.telehouse.ukcore.bt.net [194.74.65.118]
    10 38 ms 35 ms 33 ms 166-49-214-153.eu.bt.net [166.49.214.153]
    11 36 ms 34 ms 34 ms 166-49-211-34.eu.bt.net [166.49.211.34]
    12 34 ms 34 ms 37 ms ldn-bb2-link.telia.net [213.155.136.76]
    13 50 ms 50 ms 52 ms prs-bb2-link.telia.net [80.91.247.240]
    14 48 ms 49 ms 50 ms prs-b7-link.telia.net [213.155.134.227]
    15 * * * Request timed out.
    16 * * * Request timed out.
    17 * * * Request timed out.
    18 * * * Request timed out.
    19 * * * Request timed out.
    20 * * * Request timed out.
    21 * * * Request timed out.
    22 * * * Request timed out.
    23 * * * Request timed out.
    24 *
    0 Laptop.home [192.168.1.68]
    1 BThomehub.home [192.168.1.254]
    2 217.32.144.67
    3 217.32.144.110
    4 213.120.181.42
    5 217.41.169.65
    6 217.41.169.107
    7 109.159.251.101
    8 core2-te-0-4-0-17.ilford.ukcore.bt.net [109.159.251.49]
    9 core2-pos9-1.telehouse.ukcore.bt.net [194.74.65.118]
    10 166-49-214-153.eu.bt.net [166.49.214.153]
    11 166-49-211-34.eu.bt.net [166.49.211.34]
    12 ldn-bb2-link.telia.net [213.155.136.76]
    13 prs-bb2-link.telia.net [80.91.247.240]
    14 prs-b7-link.telia.net [213.155.134.227]
    15 * * *
    Computing statistics for 350 seconds...
    Thanks for any help or suggestions.
    Solved!
    Go to Solution.

    Some more up to date pathping/tracert detail, and additional line connection data
    Tracing route to 213-155-155-66.customer.teliacarrier.com [213.155.155.66]
    over a maximum of 30 hops:
    1 2773 ms 1 ms 1 ms BThomehub.home [192.168.1.254]
    2 20 ms 21 ms 21 ms 217.32.144.67
    3 23 ms 21 ms 20 ms 217.32.144.110
    4 26 ms 26 ms 26 ms 213.120.181.42
    5 26 ms 26 ms 26 ms 217.41.169.65
    6 26 ms 26 ms 26 ms 217.41.169.107
    7 26 ms 25 ms 26 ms 109.159.251.105
    8 37 ms 38 ms 33 ms core2-te-0-3-0-3.ilford.ukcore.bt.net [109.159.251.45]
    9 34 ms 31 ms 32 ms core2-pos9-1.telehouse.ukcore.bt.net [194.74.65.118]
    10 30 ms 31 ms 32 ms t2as2-tge4-3.uk-lon1.eu.bt.net [166.49.214.145]
    11 * * * Request timed out.
    12 * * * Request timed out.
    13 * * * Request timed out.
    14 * * * Request timed out.
    15 * * * Request timed out.
    16 * * * Request timed out.
    17 * * * Request timed out.
    18 * * * Request timed out.
    19 * * * Request timed out.
    20 * * * Request timed out.
    21 * * * Request timed out.
    22 * * * Request timed out.
    23 * * * Request timed out.
    24 * * * Request timed out.
    25 * * * Request timed out.
    26 * * * Request timed out.
    27 * * * Request timed out.
    28 * * * Request timed out.
    29 * * * Request timed out.
    30 * * * Request timed out.
    Trace complete.
    Tracing route to 213-155-152-66.customer.teliacarrier.com [213.155.152.66]
    over a maximum of 30 hops:
    0 Laptop.home [192.168.1.68]
    1 BThomehub.home [192.168.1.254]
    2 217.32.144.67
    3 217.32.144.110
    4 213.120.181.42
    5 217.41.169.65
    6 217.41.169.107
    7 109.159.251.117
    8 core2-te-0-4-0-17.ilford.ukcore.bt.net [109.159.251.49]
    9 core2-pos9-1.telehouse.ukcore.bt.net [194.74.65.118]
    10 166-49-214-153.eu.bt.net [166.49.214.153]
    11 166-49-211-34.eu.bt.net [166.49.211.34]
    12 ldn-bb2-link.telia.net [213.155.136.76]
    13 prs-bb2-link.telia.net [80.91.247.240]
    14 prs-b7-link.telia.net [213.155.134.227]
    15 * * *
    Computing statistics for 350 seconds...
    Source to Here This Node/Link
    Hop RTT Lost/Sent = Pct Lost/Sent = Pct Address
    0 Laptop.home [192.168.1.68]
    1/ 100 = 1% |
    1 107ms 2/ 100 = 2% 1/ 100 = 1% BThomehub.home [192.168.1.254]
    0/ 100 = 0% |
    2 111ms 3/ 100 = 3% 2/ 100 = 2% 217.32.144.67
    0/ 100 = 0% |
    3 99ms 3/ 100 = 3% 2/ 100 = 2% 217.32.144.110
    0/ 100 = 0% |
    4 125ms 5/ 100 = 5% 4/ 100 = 4% 213.120.181.42
    0/ 100 = 0% |
    5 106ms 4/ 100 = 4% 3/ 100 = 3% 217.41.169.65
    0/ 100 = 0% |
    6 91ms 4/ 100 = 4% 3/ 100 = 3% 217.41.169.107
    0/ 100 = 0% |
    7 226ms 1/ 100 = 1% 0/ 100 = 0% 109.159.251.117
    1/ 100 = 1% |
    8 217ms 2/ 100 = 2% 0/ 100 = 0% core2-te-0-4-0-17.ilford.ukcore.bt.net [109.159.251.49]
    0/ 100 = 0% |
    9 194ms 2/ 100 = 2% 0/ 100 = 0% core2-pos9-1.telehouse.ukcore.bt.net [194.74.65.118]
    0/ 100 = 0% |
    10 181ms 2/ 100 = 2% 0/ 100 = 0% 166-49-214-153.eu.bt.net [166.49.214.153]
    0/ 100 = 0% |
    11 163ms 2/ 100 = 2% 0/ 100 = 0% 166-49-211-34.eu.bt.net [166.49.211.34]
    0/ 100 = 0% |
    12 159ms 2/ 100 = 2% 0/ 100 = 0% ldn-bb2-link.telia.net [213.155.136.76]
    0/ 100 = 0% |
    13 149ms 3/ 100 = 3% 1/ 100 = 1% prs-bb2-link.telia.net [80.91.247.240]
    0/ 100 = 0% |
    14 206ms 2/ 100 = 2% 0/ 100 = 0% prs-b7-link.telia.net [213.155.134.227]
    Trace complete.
    ADSL Line Status
    Connection Information
    Line state:
    Connected
    Connection time:
    0 days, 21:54:31
    Downstream:
    4.875 Mbps
    Upstream:
    1004 Kbps
    ADSL Settings
    VPI/VCI:
    0/38
    Type:
    PPPoA
    Modulation:
    G.992.5 Annex A
    Latency type:
    Interleaved
    Noise margin (Down/Up):
    3.0 dB / 5.3 dB
    Line attenuation (Down/Up):
    50.8 dB / 33.2 dB
    Output power (Down/Up):
    19.4 dBm / 12.4 dBm
    FEC Events (Down/Up):
    8117156 / 20412
    CRC Events (Down/Up):
    2901 / 2147

  • Having a HUGE problem with my N95 8GB

    Hi everyone,
    Ok, so i bought a Nokia N95 8GB on my Vodafone Contract
    I didnt want to use it on Vodafone, i wanted to ues it on o2 UK. So i had the phone legally unlocked in Vodafone for £19.99
    I put in the code and it said 'Sim card restriction off'. I thought it would be unlocked, so i switched off then back on.
    I put my o2 SIM in the phone and instead of it saying 'Invalid SIM', it was fine. I had full network coverage and o2-UK was displayed.
    I then tried to dial out, but when i did, all i got was 'Connection Error'. I thought, this is odd!?
    I tried to text, and the same thing: 'Your message could not be sent'
    I am now getting a message saying 'Sim card registration failed'
    I am at wits end with my phone, and any help i would be grateful for
    Thanks!

    LOL 4 finger salute.... I like that
    Its a full format of the phone based on the firmawre on it. Its the Ulitmate in re-formatting the phone. You loose everything data wise and all settings are set back to their default as per the firmware spec's.
    The soft reset changes the phone settings back to default. I cant exactly remember if you loose contacts and other data as its been sometime since I did it on my old 6600.
    To do : 4 finger salute is what you described (enough said)
    Softreset : *#xxxx# replace "x" with code number for your device.
    I did the hard reset many times on my 6600 and it bought back to life like the first day I got it.......still like that phone.
    Hope it helps....man
    cobrin
    Message Edited by cobrin on 20-Jan-2008 09:07 AM
    N95-8gb xmass 2007 ,nokia 6600 2002 ,nokia 8250 2000 ,ericsson GH388 1996 ,nokia T100 analogue 1994 , Radioshack twinhandset and 15m of cord lol as kids 1984

  • HT4623 I followed the directions to upgrade my iPhone 4S and now it is stuck in recovery mode, how do I get it out and keep my photos?

    My iPhone 4S is stuck in recovery after performing an upgrade. I just returned from Italy and have hundreds of photos, how can I recover them?
    Thanks!

    Follow this
    http://support.apple.com/kb/HT1808
    your data is already gone ,no backups ?

Maybe you are looking for