Guys, a little help please with the update :)

Dear my Nokia user friends!
Can you guys give me some advices about updating my Nokia 6300 via internet??? What do you think, shall I update it? Is it safe (the main questin)? And what will I have new if I update it?
Thanks guys, I trust yall.. I can't wait to get your replies
Message Edited by dog4life on 06-Mar-2008 05:30 PM
Rottweilers are reloaded guns wich can be shot automaticly any second.. "Think about it"

Hi dog4life
Unfortunately there is always a chance that updating using Nokia Software Updater will fail necessitating taking your device to a Nokia Care Point. On the Online Software Update Attempt History it has a lovely way of recording this event as "Failed update attempt - User aborted software update from the recovery dialog(92)". Whereas there are usually no problems if using software as a clean installation on PC, in a number of situations there are remnants of previous events left in registry which can conspire to cause problems.
Happy to have helped forum in a small way with a Support Ratio = 37.0

Similar Messages

  • Guys, a little help please ???

    Guys, a little help please before i launch my new toys out of my pram   I've got the new apple TV, Ipad2, and IOS5 update. I'm trying to set up mirrorring , however, when i double click the home page and swipe, the only options it gives me are Ipad or Apple TV. The video shows that i should be able to simply click on mirrorring and whazam it appears on my TV... I can't get this option.... I've rebooted them (router, ipad 2 and Apple Tv) numerous times but still can't get it.......Can someone tell me what I'm doing wrong?
    Thanks

    Sounds as though the options you're getting are the standard Airplay output icons.
    Check current AppleTV software version in Settings>General>About
    Latest is 4.4.2 - there's a sticky at the top of the page about updating - if you're on 4.3 or lower just update from Settings.
    Maybe someone can confirm the video you mention is actually the correct way to invoke mirroring - link?
    (Yn anfodus heb iPad2 does dim syniad 'da fi os ydi'r Mirroring yn gweithio fel yn y fideo - oes linc i'r fideo, rhag ofn bod y fideo'n anghywir?)
    AC

  • Little help please with forwarding traffic to proxy server!

    hi all, little help please with this error message
    i got this when i ran my code and requested only the home page of the google at my client side !!
    GET / HTTP/1.1
    Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/x-shockwave-flash, */*
    Accept-Language: en-us
    UA-CPU: x86
    Accept-Encoding: gzip, deflate
    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727)
    Host: www.google.com
    Connection: Keep-Alive
    Cookie: PREF=ID=a21457942a93fc67:TB=2:TM=1212883502:LM=1213187620:GM=1:S=H1BYeDQt9622ONKF
    HTTP/1.0 200 OK
    Cache-Control: private, max-age=0
    Date: Fri, 20 Jun 2008 22:43:15 GMT
    Expires: -1
    Content-Type: text/html; charset=UTF-8
    Content-Encoding: gzip
    Server: gws
    Content-Length: 2649
    X-Cache: MISS from linux-e6p8
    X-Cache-Lookup: MISS from linux-e6p8:3128
    Via: 1.0
    Connection: keep-alive
    GET /8SE/11?MI=32d919696b43409cb90ec369fe7aab75&LV=3.1.0.146&AG=T14050&IS=0000&TE=1&TV=tmen-us%7Cts20080620224324%7Crf0%7Csq38%7Cwi133526%7Ceuhttp%3A%2F%2Fwww.google.com%2F HTTP/1.1
    User-Agent: MSN_SL/3.1 Microsoft-Windows/5.1
    Host: g.ceipmsn.com
    HTTP/1.0 403 Forbidden
    Server: squid/2.6.STABLE5
    Date: Sat, 21 Jun 2008 01:46:26 GMT
    Content-Type: text/html
    Content-Length: 1066
    Expires: Sat, 21 Jun 2008 01:46:26 GMT
    X-Squid-Error: ERR_ACCESS_DENIED 0
    X-Cache: MISS from linux-e6p8
    X-Cache-Lookup: NONE from linux-e6p8:3128
    Via: 1.0
    Connection: close
    java.net.SocketException: Broken pipe // this is the error message
    at java.net.SocketOutputStream.socketWrite0(Native Method)
    at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92)
    at java.net.SocketOutputStream.write(SocketOutputStream.java:115)
    at java.io.DataOutputStream.writeBytes(DataOutputStream.java:259)
    at SimpleHttpHandler.run(Test77.java:61)
    at java.lang.Thread.run(Thread.java:595)
    at Test77.main(Test77.java:13)

    please could just tell me what is wrong with my code ! this is the last idea in my G.p and am havin difficulties with that cuz this is the first time dealin with java :( the purpose of my code to forward the http traffic from client to Squid server ( proxy server ) then forward the response from squid server to the clients !
    thanx a lot,
    this is my code :
    import java.io.*;
    import java.net.*;
    public class Test7 {
    public static void main(String[] args) {
    try {
    ServerSocket serverSocket = new ServerSocket(1416);
    while(true){
    System.out.println("Waiting for request");
    Socket socket = serverSocket.accept();
    new Thread(new SimpleHttpHandler(socket)).run();
    socket.close();
    catch (Exception e) {
    e.printStackTrace();
    class SimpleHttpHandler implements Runnable{
    private final static String CLRF = "\r\n";
    private Socket client;
    private DataOutputStream writer;
    private DataOutputStream writer2;
    private BufferedReader reader;
    private BufferedReader reader2;
    public SimpleHttpHandler(Socket client){
    this.client = client;
    public void run(){
    try{
    this.reader = new BufferedReader(
    new InputStreamReader(
    this.client.getInputStream()
    InetAddress ipp=InetAddress.getByName("192.168.6.29"); \\ my squid server
    System.out.println(ipp);
    StringBuffer buffer = new StringBuffer();
    Socket ss=new Socket(ipp,3128);
    this.writer= new DataOutputStream(ss.getOutputStream());
    writer.writeBytes(this.read());
    this.reader2 = new BufferedReader(
    new InputStreamReader(
    ss.getInputStream()
    this.writer2= new DataOutputStream(this.client.getOutputStream());
    writer2.writeBytes(this.read2());
    this.writer2.close();
    this.writer.close();
    this.reader.close();
    this.reader2.close();
    this.client.close();
    catch(Exception e){
    e.printStackTrace();
    private String read() throws IOException{
    String in = "";
    StringBuffer buffer = new StringBuffer();
    while(!(in = this.reader.readLine()).trim().equals("")){
    buffer.append(in + "\n");
    buffer.append(in + "\n");
    System.out.println(buffer.toString());
    return buffer.toString();
    private String read2() throws IOException{
    String in = "";
    StringBuffer buffer = new StringBuffer();
    while(!(in = this.reader2.readLine()).trim().equals("")){
    buffer.append(in + "\n");
    System.out.println(buffer.toString());
    return buffer.toString();
    Edited by: Tareq85 on Jun 20, 2008 5:22 PM

  • Help please with iPhoto Update on Maverick. Not updating!

    iPhoto not work and not updating with apple store.
    Help please!

    I'm having the same exact problem after upgrading to Maverick.
    The App Store shows I have two updates, one for iPhoto and and one for iMovie.  When I try to install, I get the following 3 messages:
    "Update Unavailable with This Apple ID
    This update is for an app downloaded with a different Apple ID. Sign in with that Apple ID and try again."
    "We could not complete your request.
    There was an error in the App Store. Please try again later. (null)"
    "There was an error in the App Store. Please try again later. (null)"
    My macbook pro was a refurbished computer purchased online through Apple.com two years ago.  It arrived preinstalled with Lion and did not come with any DVD's or installation disks.  It is an early 2011 Macbook Pro. 
    It appears that I have iPhoto 9.1.5.  After downloading Maverick the application will not open now. The application icon has a circle with a slash through it. 
    It appears that I currently have iMovie 11 and seems to be working fine.  I am able to access and open the application.
    How do I resolve this problem so I can update iPhoto to work again?
    Thanks!

  • Help please with the 6110Nav

    Everytime I start up the navigator function on my 6110, it asks for 'Last Devices Used', which list all of my devices paired with the bluetooth.
    To continue then I have to press cancel. Does anyone know how to get rid of this feature so I don't have to cancel it everytime?

    The only way I found you can fix this problem is to disable Bluetooth in POSITION section of SETTINGS.

  • Help please with the HP B109 Photosmart Printer

    Hello,
    I've just bought a new iMac and with it I bought the HP B109 printer, on the understanding that it was wireless. I have a BT-Homehup which I use to connect to the wi-fi.
    I have installed the software using the CD and set up the printer, however my problem comes when I try and print wirelessly.
    The only way I can seem to be able to make it work is if I am connected to the computer via USB cable. I've read through some of the topics on here but none seem to be helping me specifically with what I need.
    What do I need to make this printer print wirelessly?
    Thanks!
    Billy

    There are a couple of problems that I see.  First, if you used the software on the CD, its not for 10.6, its for 10.5 and older only.
    Let's uninstall it in this manner:
    Go to Applications/Hewlett Packard/ click on HP Uninstaller
    Click on Continue
    Highlight your device on the left pane
    Hold the Ctrl, Opt and Cmd keys and click on Uninstall
    There will be a pop up that asks if you are sure you want to uninstall ALL hp software. (At this point, if you continue, any HP printers you have installed will need to be reinstalled)
    Click Continue and let it finish
    Now, run a Software Update.
    Next, your router may be getting in the way, here.  Let's re-install the printer in this way:
    - Unplug the telephone line from the router
    - Turn the power off on the router, wait 30 seconds, then turn the power back on.
    - Select the printer in question and click the minus sign at the bottom of the list
    - Select the plus sign to re-add it. Look for the printer, select it and wait until the "Add" button becomes available. Click it.
    - Install the printer with this software for 10.6
    - On that screen you will find a Networking Tab, then on the left Wireless, then the IPv4 Tab.
    - On this screen you want to set a Manual IP. You need to set an IP address outside the range that the router automatically sets (called the DHCP range). If you know what that is, set an IP outside that range but no higher than 254 (the last number in the address).  NEED HELP HERE?
    - Use 255.255.255.0 for the subnet (unless you know it is different, if so, use that)
    - Leave the gateway and DNS blank
    - Finally, plug in the phone line, reboot the router and test.
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • Hi guys a little help please

    Hi guys,well i just got the new 3g iphone but i fail at making it work.Short story is i got the phone on the contract and i got a new SIM card with it ofc.After inserting the card i was asked to enter a PIN code to unlock it.I looked on the paper where my SIM card was enterd a PIN but nothing happend i tried it once but same thing,after typing the pin number i just get a screen emergency calls only.So if anyone can help me out here i would be much appreciated.So to make this clear im not trying to illegaly unlock this phone i got it the normal way and payed for it.

    Could be that you entered the pin incorrectly and blocked the sim, if this is the case you will need to enter a further unlock code. This (in the UK) is held by the network directly. If the Iphone is not giving you a screen to enter this pop the sim in another handset and enter the code, this should then give you the option to choose a pin of your choosing. Once that is done, pop the sim bac in the iphone.

  • Help me with the updation of plsql

    hello oracle experts,
    please provide me a link from which i can improve my coding techniques
    many codes here feels new to me which is not there in the documentation
    i cant understand whether the code i have written is efficient or is there any other alternative way of writing to improve the efficiency or sometimes i am confused if any alternative way exists.
    i love plsql and i hope to continue with plsql
    please help

    user in wrote:
    hello oracle experts,
    please provide me a link from which i can improve my coding techniques To know what is available in PL/SQL you need to read the document. And to know which feature to use, you need to try it all, participate in public forum etc. Over a period of time you will gain the knowledge.
    many codes here feels new to me which is not there in the documentation I doubt that. All of them are well documented. Show a code that you feel that is not documented.
    i cant understand whether the code i have written is efficient or is there any other alternative way of writing to improve the efficiency or sometimes i am confused if any alternative way exists. Efficient is a very relative term. It changes over time. No code is perfectly efficient. They need to be tuned over time.
    i love plsql and i hope to continue with plsql All the best for that.

  • Little help needed with the installation of apps...

    Before the I was told to update to 3.0 I purchased and downloaded a few apps, using my iphone.
    Where can I download them without being charged again?
    The 'Application' tab in iTunes isn't there :S

    "Where can I download them without being charged again?"
    Itunes.

  • Help please with the 3120 classic

    I'm a new user to this phone and have recently purchased a memory card.  I have inserted the memory card but am unable to access it.  I have looked everywhere to find out how I can access it as well as how to move photos from the phone's memory to the memory card.
    If you could help it would be greatly appreciated.
    Solved!
    Go to Solution.

    Yup the card was faulty as it wasn't readable from the salesperson's phone either.  I suggest that if anyone else incurs this problem to take it back straight away from the store they purchased from as you will be able to get a replacement at no cost - do make sure that they check the new memory card first just in case it's another faulty one.
    Thank you for all your help

  • HT1338 Could you please help me with the problem. I have mac os 10.7.4 on my macbook pro retina and want to update it to 10.7.5. I had been waiting for 2 hours to do it, but then it appeared that it was impossible. What should I do?

    Could you please help me with the problem. I have macbook with retina with mac os 10.7.4 ann want to update it to mac os 10.7.5. I had been waiting for 2 hours to do it and had tried 3 times but it appeared that it was impossible. What should I do?

    You can download the standalone updates:
    OS X Lion Update 10.7.5 (Client Combo)
    OS X Lion 10.7.5 Supplemental Update

  • HT4059 I can't open my books with the update, says failed to load book because the requested resources is missing.  Please HELP.

    I can't open my books with the update, says failed to load book because the requested resources is missing.  Please HELP.

    If you can't open a particular ibook then try deleting it from the bookshelf via the Edit button at the top right of the bookshelf, and (assuming that it's still in your country's store) redownload it via the Purchased tab in the ibookstore in the app (or if you have a copy of it on your computer's iTunes library sync it back from there).

  • Please help me with the iphone 4 trouble

    I'm using iphone4 and i saw a new update IOS7 and i press to update,the iphone is  updating than it turn off for 5 minutes later it turn on again but with the app's logo and it start to repeat again and again and I can not connect to itunes to fix,I do not know what to do ,hope you guys will help me with the iphone,i reallly need it right now

    Make sure you have the Latest Version of iTunes (v11) Installed on your computer
    iTunes free download from www.itunes.com/download
    Christine Hua wrote:
    the iphone is  updating than it turn off for 5 minutes later it turn on again but with the app's logo and it start to repeat again and again and I can not connect to itunes to fix,
    See Here  >  http://support.apple.com/kb/HT1808
    You may need to try this More than Once...
    Be sure to Follow ALL the Steps...
    But... if the Device has been Modified... this will Not necessarily work.
    Unauthorized modification of iOS  >  http://support.apple.com/kb/HT3743

  • HT5568 when i try to install the Safari 6.0.2 update i get the message an error has occured The operation couldn't be completed. (NSURLErrorDomain error -3001.)(102) - can anyone help my get the update please

    when I try to install this update I get the message an error has occured The operation couldn’t be completed. (NSURLErrorDomain error -3001.)(102) - can anyone help my get the update please?

    There are problems with the servers. Download and install that update > http://swcdn.apple.com/content/downloads/53/02/041-8081/2jwp4wjrwygtm4lc608qy4h0 n4a9yyq37g/Safari6.0.2Mountain.pkg

  • Please help me with the installation process.

    i have got free norton antivirus activation keybwith the pirchase of hp 16 gb pendrive .
    please help me with the installation process.

    Hey @10p,
    Welcome to the HP Support Forums!
    I understand that you need assistance with the installation of Norton Antivirus that you received with the purchase of an HP 16gb Pendrive. Did you get the Pendrive with a computer or just purchase the Pendrive on its own?
    Once I know if the Pendrive came with the purchase of a computer I will be able to point you in the right direction for support. Good luck!
    X-23
    I work on behalf of HP
    Please click "Accept as Solution" if you feel my post solved your issue, it will help others find the solution.
    Click the "Kudos, Thumbs Up" on the right to say "Thanks" for helping!

Maybe you are looking for

  • Time Machine backup fails on external HD when sleeping

    Hello, I have recently purchased a MBPw/RD and also purchased a WD My Passport for MAC to use with Time Machine. The reason that I purchased this drive is for the hardware encryption feature of the drive. Time Machine completes without error when the

  • Apple Mail crashing after Mavericks install

    Can someone please advise - ever since I upgraded to Mavericks mail crashes. I open Mail (I have 2 apple mail accounts) and it loads my messages. As soon as I click on a message the app crashes. I've sent numerous reports and have to log in through C

  • Add Namespace in XPATH - Declaration - [JS]-CS4

    Dear All, Here I have a big doubt regarding for XPATH - Add Namespace in JavaScript. I have to written in Vb.NET //---------------- Add Namespace in VB.NET --------------------// Dim xDom As New XmlDocument Dim xNs As New XmlNamespaceManager(xDom.Nam

  • White background around logo

    I have created a logo for the top banner of my webpage. It is a black, abstract gif image on a transparent background. When I insert it into the banner which has a grey background, there is always a faint white outline around the logo image. How do I

  • Can't see desktop Mac since I switched to AirPort base station

    Since I switched from my old 3rd party wireless router to an AirPort Extreme base station, my wife's G5 iMac no longer shows up in Network even though File Sharing is on on her computer. In my Network settings in AirPort Admin Utility, I have "Share