Nokia N95-2 (8GB) Button Problem(Pls Help)

Hello all.
few days ago,my nokia n95 8gb started to making problems.
The (*) star button is pushing itself...
when i dont touch phone,its just typing (*) by itself...
i though it was virus or something,so i first restarted it to factory settings,but it didnt worked.
i even formated it with (Green,* and 3) buttons but it didnt helped.
so the point is,i cant make calls,becouse its typing (*) by itself,and i can do nothing...
Also the problem is,that there is no nokia center in Bosnia and Herzegovina,sto i dont know what to do....
Any reply will help.
Thanks in advance...

unfotunately it looks like a physical problem, and the only solution would be care point, I would suggest contacting Nokia direct, and possibly posting the handset to the closeset repair centre.
Good Luck
If I have helped at all, a click on the White Star is always appreciated :
you can also help others by marking 'accept as solution' 

Similar Messages

  • Nokia X6 buttons problem - pls help

    Hi everyone,
    I just installed nokia v40 software on my Nokia x6 and after installing all new features, my answer, menu, and exit (hang up) buttons doesn't work.
    When someone calls me, I have to answer on touch screen. I cant always do that.
    Please help me if you have some solution to this problem.
    Thank you.

    do you mean the swipe to unlock feature, where you must drag your finger from right to left?
    that way you unlock the device.
    when the device is locked, press the menu or power key and the "swipe to unlock" sequence will start, then drag your finger and you will unlock it.
    Greece Nokia X6 RM-559 v40.0.002

  • Another scenario of BACK button problem, pls help

    search.jsp ---- search application by ID
    view_app.jsp ---- display application details, has 4 commandLinks eg. (A, B, C, D), the commandLinks are displayed dependent on a
    property in the ApplicationBean object.
    Scenario as follow:
    In search.jsp, I search application #1, it brings up view_app.jsp with #1 details and commandLinks A and B available.
    Then go to search.jsp again through faces, search application #2, it brings up view_app.jsp again with #2 details and commandLinks C and D available.
    Then I click BACK button twice, which bring me back to view_app.jsp with #1 details and commandLink A and B.
    now I try to click commandLink A, it doesn't work because faces thinks I am in view_app.jsp with #2 details and commandLink C and D, there is no commandLink A available. Therefore it displays view_app.jsp with #2 details and commandLinks C and D.
    I've put the Phase Listener, I can see from the log messages that it did go through the Faces life cycle, but in the 'Invoke Application' phase, the functions that I specified in the action (fucntionA) was not called, as it does not exist in the current View.
    Anyone know how to solve this situation?
    I try with client or server state saving, both produce same result. I also put <h:messages> in the view_app.jsp, no validation error message was shown.
    search.jsp
    ==========
    <h:form>
    <h:outptuText value="application ID:"/>
    <h:inputText value="#{facade.appID}"/>
    <h:commandButton value="search" action="#{facade.searchApp}"/>
    </h:form>
    view_app.jsp
    ============
    <h:form>
    <h:inputHidden value="#{facade.appID}"/>
    <h:panelGrid columns="2">
    <h:panelGrid>
         <h:commandLink value="A" action="#{facade.functionA}" actionListener="#{facade.updateApp}" rendered="#{app.displayMenu}"/>
         <h:commandLink value="B" action="#{facade.functionA}" actionListener="#{facade.updateApp}" rendered="#{app.displayMenu}"/>
         <h:commandLink value="C" action="#{facade.functionA}" actionListener="#{facade.updateApp}" rendered="#{app.displayMenu}"/>
         <h:commandLink value="D" action="#{facade.functionA}" actionListener="#{facade.updateApp}" rendered="#{app.displayMenu}"/>
    </h:panelGrid>
    <h:panelGrid columns="2">
    <h:outputText value="Application ID"/><h:outputText value="#{facade.appObject.appID}"/>
    <%--
    Other details
    --%>
    </h:panelGrid>
    </h:panelGrid>
    </h:form>
    Facade.java
    ===========
    ApplicationBean appObject = new ApplicationBean();
    public void updateApplication(ActionEvent e) throws Exception {   
    if ( appID != appObject.getAppID() ) {
    logger.finest("Updating application ID from " appObject.getAppID() " to " +appID);
    appObject = getApplicationFromDB(appID);
    ApplicationBean.java
    ====================
    public boolean isDispalyMenu() {
    <%-- return 'true' or 'false' dependent on a property of the ApplicatinoBean object --%>
    }

    This is a very simple method for locking back button. It works fine. Maybe it will be usefull for you and it could resolve other problems with back button.
    <f:view>
    <script>
    function windowunload()
    //myform:_idcl is the hidden field on html page generated by JSF for navigation
    //purposes
         if (document.forms['myform']['myform:_idcl'].value=="")
    //erroraction - this is the name of the method in the backing bean; if there is no
    //such a method (or action is not set in faces-config) the page will be reloaded;
    //thanks to that one can forward to another for instance error page
              document.forms['myform']['myform:_idcl'].value='myform:body:erroraction';
              document.forms['myform'].submit();
              return false;
    </script>
    <body onunload="windowunload()">
    <h:form id="myform">
    </h:form>     
    </body>
    </f:view>
    It submits with no action argument (no erroraction method or navigation not set in faces-config) the page on onunload event.
    It reloads the page when when user presses back button or tries to change url address. So only one way to navigate is to use commandlinks and commandbuttons from your page.
    I haven't found any weaknesses of this method yet.
    Regards
    M.

  • 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.

  • Nokia N95-2 8GB doesn't work with Apple's iSync (w...

    I have the brandnew Nokia N95-2 8GB which I want to synchronize with iSync on my brandnew apple MacBook with Leopard and - it doesn't work! iSync does not recognize the phone. Does anybody know something about a new Plugin from Apple or Nokia for iSync?
    Thanx
    Martin

    You can get an iSync plugin that works with the Nokia N95 8GB and Mac OS X 10.5 Leopard here
    http://rapidshare.com/files/73428862/NokiaN958GBiSync.zip
    http://rapidshare.de/files/37946096/NokiaN958GBiSync.zip.html
    http://uploaded.to/?id=7gt4ok
    http://www.mediafire.com/?7cseqjyd2im

  • 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

  • My imac stops(freezes) everytime when I try to extract ipod nano. So if I quit the connection by force, it stops again. Have no choice but to shut down the imac pushing power supply button. Pls help me solve out this problems.

    My imac stops everytime when I try to extract ipod nano. So if I do it by force it freezes agian. Have no choice but to shut down the computer
    by pushing power button. Pleas help me solve this out!!!
    It's not good to shut off the power forcibly, right? (I dun know what else I can do...)

    Hi Min! I'm having exactly the same issue - have been putting up with it now for months but have finally had enough! Every single time i eject either my iphone, ipad or ipod nano, itunes freezes up, the computer becomes unresponsive. Usually i can use the mouse to highlight icons but the system doesn't respond, the keyboard doesn't work and I have to do a hard reset.
    Arrrrrggggggh!!!!!!! lol
    Someone please help!!!

  • Nokia N95 - im on 02 Network - need help from ALL ...

    Hi guys and gals
    as you all know from my many many previous posts, i am now on my 3rd Nokia N95
    i have had this one since the 4th of April this year
    and still this phone is doing my head in!
    it keeps restarting all the time, the clicky wobbly slider and high pitch noise were apparent in both of my first 2 handsets..
    my Nokia Bluetooth headset (model: BH-900) takes 4-5 attempts before it actually stays connected! keeps disconnecting!
    ok, can ANYONE tell me if im being over-sensitive, but on the keypad where the RED and GREEN buttons are, do ANY of you have a lot of wobbling and a lot of give on this itself or minor movement? or is it absolutely solid as a rock with no movement whatsoever?
    it feels loose and tacky, trouble is im on an 18 month contract and i want this phone to last the duration!
    i got through to the 02 Returns team and spoke with this really arrogant snotty stuck up **bleep** who said that i have to return the handset and be without my N95 for 5 days!
    he was extremely sarcastic and just didnt care what i was saying
    I said this was unacceptable! i made a formal complaint on his attitude
    im on an 18 month contract paying £40+ a month!!!
    one of the team leaders very kindly organised a straight doorstep swap after owning the 3rd handset for over 2 months now.
    normally its no more than 28 days! so thats a result
    i just wanted to know of any recent 02 online customers having the same problems i have had as stated above
    or am i too expect my 4th replacement with wobbling sliders, high pitch noises, loose pads where the green and red buttons are?
    WAYNE HARRIS
    wayneharris.co.uk
    bongiovi.co.uk

    Only had mine since Friday and not actually received/made any calls yet so can't comment on hissing etc. But the slider seems fine on mine - the area around the red/green buttons could be perceived to be wobbly but on mine that is just the whole of the top part (the bit which slides) moving slightly up and down because it is separate to the bottom part of the phone. The actual buttons are fine.
    I daresay though, that going by my track record with all my equipment recently I shall have some problems to report/ask for advice on.

  • Nokia 520 power/lock button problem

    Had my 520 for about 10 weeks and it has already been in Nokia Care due to screen problems and now I am having problems with the power/lock key button.  Sometimes it will unlock first time or it will take several.  This started happening a week ago and it getting worse and a reset did not help so I say it will have to get sent to Nokia Care again.
    What I want to know has anyone here had this problem fixed and has it reoccured as I am getting very tired of the unreliability of this Nokia phone and although I liked windows 8 I need a phone that is going to work.

    Hi danterf,
    Welcome to the forum! 
    Is this for a Nokia Lumia 520 as well? Did something happen to your phone prior to this issue? How's your Lumia now? Did you already bring it back to the people who assisted you before? If yes, what was the result of their assessment? By the way, did you bring it to the store where you brought the phone, or to the nearby Nokia Care Point? 
    If you haven't gone back to the assistance, please tell us the phone's current status so we can further look for other possible solutions.
    We'll wait for your response. 

  • 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

  • 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
    ?

  • Serious problem. pls help !!!!!!!!!

    some "khar, khar sound is coming from below of the keyboard of my hp g6 pavillion 2231 all the time when the lapton is on. what to do. i am fed off of that noise. pls help!!!!!!!!
    This question was solved.
    View Solution.

    Hi 
         Sorry khar khar ????   Mainly any sounds from under the keyboard would be Fan or HDD either way could mean either the Fan ( if fan ) is struggling to move due to dust build up OR the hard drive is failing  ,,, It's difficult to give you a firm answer without more information . Can you tell the difference between the fan noise and a hard drive noise ?? When you start up from cold does the noise start immedietly or is it only heard after say 5-10 minutes ??????           Checkurtech
    ****Click the White Kudos star to say thanks****
    ****Please mark Accept As Solution if it solves your problem****

  • 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 ?

Maybe you are looking for