N91: problem: camera error: general feature not su...

My camera of my n91  stopped working and  showing error: general feature not supported what should I do I don't think its hardware problem in camera I just taken out and refitted that but what could be d problem can it be software problem.

Hi dhamot,
It might be worth you trying to do the following resets:
Soft Reset:
Enter into your keypad *#7780# and when prompted, enter the default passcode 12345. If you have changed the code, it will be the code you changed it to.
A backup will not be needed as this will not delete any data.
Hard Reset:
This will erase all data on your device, so a backup is recommended before you do this.
Once backed up, enter *#7370# and when prompted, enter 12345 as the default passcode.
Hope this helps, let us know how you get on.
Regards,
haZey
If you find this post helpful, a click upon the white star at bottom would always be appreciated.
If it also solves your problem, clicking ACCEPT AS SOLUTION below it will benefit other users!

Similar Messages

  • General: feature not supported 6110 Navigator

    After updating to the new 4.22 firmware for this phone every time i try to use the camera i get an error saying General: feature not supported. Has anyone else experienced this problem, is there a solution? Is it possible to uninstall the new firmware and reinstall the old one?
    Any help would be great
    Cheers Paul

    you can NOT uninstall the new firmware and install an older firmware. you can just reinstall the firmware by starting the updater again, he will ask whether you want to reinstall it, select yes.
    if that does not fix the problem, try to hardreset your phone (all personal data will be lost), your phone will be reset to manufacturer defaults: type in *#7370# code 12345
    if this doesnt fix the problem, you need to contact nokia service center, as there is nothing left you can do.

  • N95 "General: feature not supported"How to delete ...

    BINGO!!!
    How to delete artists and albums in music player!
    You can not delete Artist or Album Folders. “General: feature not supported” is showing up.
    Yes, you CAN !!!!
    1. Delete songs from your N95 ”Media player” folders till they are empty.
    Artist and Album empty folders are still there. Don’t worry!!!
    2. Go to your PC Explorer > Tools > Folder Options > View ( Tab ) > click:
    Show hidden files and folders > OK
    3. Make empty folder on your PC HD e.g. ”erase empty Artist folder”
    4. Connect your N95 with PC via USB cable and choose “Data transfer” > OK
    5. On the “Removable Disk” window you can click cancel
    6. On PC open Windows Explorer
    7. Click “Removable Disk” on left Folder column
    8. On right side copy all files and paste them TO folder you’ve just made
    (”erase empty Artist folder”)
    9. Delete all things from the memory stick of your N95 “Removable Disk”
    10. Copy everything from ”erase empty Artist folder” and paste to N95
    “Removable Disk”
    11. From Taskbar of PC Safely Remove Hardware “ USB Mass Storage Device
    12. On N95 > OK Remove USB cable and go to N95 Music player
    13. Click OK to refresh and just wait.
    By the way. Nokia DISCONNECTING Familys by making such a products. I have spent many nights to figure out how to do simple things. Manual is for Nokia not for users. Mostly
    there is written what can U DO but not HOW !!!!
    Sorry For my English, I am 48+ with basic skill of this language.
    Have fun guys
    Jacek Mazur

    Hi all
    I have another solution / workaround. It allows you to add artwork to albums reliably and allows you to delete albums created this way.
    I am using Nokia Music Manager 2.0. The fix is simply to convert the files to AAC rather than to M4A. After this simple change everythig worked find for me. I can add and delete albums from Nokia Music Manager 2.0 (don't forget to refresh on the phone afterwards) AND reliably add Album Artwork.
    So here is how I have been working.
    1. Set the conversion format to AAC. I have been using 'Ultra high' quality setting. Options Menu >> Setting >> Conversion Tab.
    2. Next put in a CD, select all the tracks and choose copy to my collection.
    3. While this is going on I find the artwork on the Web. A simple Google Image search with the album title and artists last name / band name seems pretty 100% to get the on the first page. Download image to My Documents / My Pictures.
    4. Once the CD Rip is complete they will all appear in My Collection. I select all the tracks in my collection for the album in question, and then right click on one of them and select Edit.
    5. I then attach the Album Artwork by clicking on the blue folder and choosing it from my, MY Pictures folder.
    6. Finally select Copy to Phone from the File Menu.
    This has worked for me so far 100% and I have done 20 or so albums.
    NOTES:
    To get Nokia Music Manager 2.0 I uninstalled the version of Nokia Phone Suite that came with my phone and went to
    http://europe.nokia.com/A4144905I (or seach Google for "nokia phone suite"
    I chose the N95 8GB downloaded and installed. At some point shortly after install Phone Suite informed me that there were updates available and Nokia Music Manager 2.0 was one of these.
    I was originaly using this and suffered all the problems you guys have. After searching the web and finding no solution I decided to do some experimenting.
    Hope all this helps.
    PS If you need to delete all your legacy album folders, this is the fix I found on this same site. You can do this at any time.
    1. Enable the option to be able to see Hidden Files and Folders in your Windows Explorer.
    2. Connect your n95 8gb to your computer and choose data transfer mode.
    3. Go to My COmputer >> Nokia Phone Browser >> Nokia N95 8GB >> Memory Card E:
    3. If you have selected Show Hidden Files and Folders (see 1) you should see a folder called Private.
    4. In the Private folder you need to delete the contednts of three folders
    \private\101FFC31 (mpxv1.mpd and pcv5.mpd)
    \private\101f8857\Cache
    \private\101ffca9
    In all the 3 folders delete all the files Not the FOLDER
    Next time you restart the music player it will rebuild the indexes without the deleted albums folders.

  • SetDate Error - Optional feature not implemented

    Hi I am trying to execute a PreparedStatement to do an insert, I to the best of my knowledge am using it correctly but I still get this ERROR:
    java.sql.SQLException: [Microsoft][ODBC SQL Server Driver]Optional feature not implementedHere is a code sample:
    //SQL Create Table
    create table[test]
         [id] int not null identity primary key,
         [name] varchar(30) not null,
    --     [date] datetime not null     --Same result with this
         [date] smalldatetime not null
    GO
    //Java Code
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    public class DataExporter {
        private Connection conn = null;
        private PreparedStatement prep = null;
        public DataExporter() throws Exception{
                Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                conn = DriverManager.getConnection("jdbc:odbc:MyDatabaseDNSName");
                prep = conn.prepareStatement("INSERT INTO [TEST] ([NAME],[DATE]) VALUES(?,?)");
        public boolean run(String name, java.sql.Date date) throws Exception{
                prep.setString(1, name);
                prep.setDate(2, date);
                return prep.execute();
        public static void main(String[] args) throws Exception{
            DataExporter dExp = new DataExporter();
            java.sql.Date date = new java.sql.Date(System.currentTimeMillis());
            System.out.println("Check Value:\t" + date.toString());
            System.out.println("Result:\t" + dExp.run("Neil", date));
    }This is my results:
    Check Value:     2008-09-10
    Exception in thread "main" java.sql.SQLException: [Microsoft][ODBC SQL Server Driver]Optional feature not implemented
            at sun.jdbc.odbc.JdbcOdbc.createSQLException(JdbcOdbc.java:6957)
            at sun.jdbc.odbc.JdbcOdbc.standardError(JdbcOdbc.java:7114)
            at sun.jdbc.odbc.JdbcOdbc.SQLBindInParameterDate(JdbcOdbc.java:808)
            at sun.jdbc.odbc.JdbcOdbcPreparedStatement.setDate(JdbcOdbcPreparedStatement.java:826)
            at DataExporter.run(DataExporter.java:14)
            at DataExporter.main(DataExporter.java:21)
    Java Result: 1Can someone please tell me why and how to fix the above to get it to work.(I am using Java 6 and MSSQL 2000)
    Thanx in advance

    gtRpr wrote:
    Thanx yawmark, I will try it.
    Just tell me: although I am using Java 6 at home,
    I use Java 1.4 at work were I will actually need this,
    What is the minimum version of Java that JTDS will work with(1.1, 1.2, 1.3, 1.4, 1.5, 1.6)? [JTDS feature matrix|http://jtds.sourceforge.net/features.html] (from the link I already posted).
    ~

  • Nano problems // Firewire error displayed (While not connected),...

    Here's a question for anyone that knows about this:
    iPod Nano 2gb, arrived Monday. It's started having hiccups today. The firewire error message (Cannot connect to firewire, use USB) is displayed intermittently, and the iPod will not go into sleep mode intermittently. I've tried the 5R process, to no avail. I submitted a support repair ticket, but I'd like to know what else I can do in the meantime (Besides back-up the iPod)
    Thanks in advance,
    Rich

    took me days to figure out how to fix it... if you have a mac i dont know how to fix but if you have Windows click on all programs on the start menu then look up ipod then click on the update b4 the one that you installed and it should give you and option to restore ... as it will i will come back as factory bought it will have no songs on it so you have to re add your song which wont take long

  • E63 camera not working. Just says "General Feature...

    Hi, my e63 camera does not work anymore. It simply says General feature not supported and exits. I have tried the other things suggested on this forum like firmware update and 3 finger hard reset and they didnt help. Is there anything else i can do?

    Backup your phone with pcsuites then format it. That is an s60 series phone & codes are available for formatting.
    Codes are here :/discussions/board/message?board.id=hardware&thread.id=6601
    Message Edited by android on 10-May-2008 02:52 PM
    Knowledge not shared is knowledge wasted!
    If you find it helpfull, it's not hard to click the STAR..

  • "Home scr.:Feature not supported" problem in n97

    hai , is anybody know how to fix the problem "home scr.:Feature not supported" , so you can't load your home screen in nokia n97?

    Did you try to reinstall the firmware using Nokia Suite? If you are ready to loose some data then you may try the three finger format option. This will remove the installed apps. To do this switch off your phone. Then press the menu button and the camera button and the volume down button. Keep pressing the three buttons and switch on your phone. Don't leave the buttons until the Nokia hands appear. After this install the firmware again using Nokia Suite. By this method Nokia store and maps app will be lost.
    Nokia C7

  • E66 Camera: Feature not supported

    Hi all...
    Currently my phone have some problem..
    When i'm trying to use camera it says : "Feature not supported".
    Any advices ?

    piyaur wrote:
    Any one can tell me ....how can i update my phone software?
    i mean if i need to update my NOKIA E66 software how can its possible to update, i need the procedure..........
    it might work and who knows camera start working............
    Use Nokia PC Suite in combination with Nokia Software Updater.
    http://europe.nokia.com/support/download-software/nokia-pc-suite
    ‡Thank you for hitting the Blue/Green Star button‡
    N8-00 RM 596 V:111.030.0609; E71-1(05) RM 346 V: 500.21.009

  • NOKIA N96 "Camera Feature not Supported" after upd...

    Hello Guys! I updated my phone to firmware version 30.033 via NSU which caused my phone`s camera not working any more, while prior to the update it worked fine. When I press on the camera main button or open it from the menu, it gives a strange message " camera feature not supported" and the camera application can not be closed then till the phone is powered off. Then phone can not be downgraded to the previous or lower firmware. Hard reset to factory setting does not work. Anyone can help please????

    Hi
    I have the same problem, i updated my software a few months ago and everything worked fine, until now..
    1st My phone started freezing than after a while my screen went (white)blank, I tried reinstalling firmware but it still didnt work.
    2nd I then took it to nokia care, they told my my LCD is broken and thy replaced it for me
    the phone started working but when I go to camera it says `feature not supported` and my phone stops working. I cant even exit camera app.
    I took it back to Nokia they than told me its my software lol.. they reinstalled the firmware, reformated my mass memory.....and still it doesnt work.
    they then told me to leave it with them and come back after  two weeks.......ermm I hope they find the problem and fix it.

  • Getting error message as "Feature not supported" f...

    I have made a master reset of my Nokia C5-00.After that I am unable to open my built in Facebook application.It's showing error as "Feature not supported". Because of it my facebook - mobile contact sync is also not enabled. How to resolve it ?
    Thanks.

    Assuming you already have the latest version, try re-installing the Firmware thru' Nokia Suite ..

  • Streams: feature not enabled

    Hi all!
    I'm trying to set up my streams with some scripts, but soon an error raieses: feature not enabled...
    why?

    Hi Justin,
    I am using the Express edition of 10g. But still I am getting the error
    ORA-00439: feature not enabled: Streams Capture.
    Doesnt Express Edition have this feature?What am I to do? Actually I have posted a thread regarding this. But as of now,I havent got a reply. Here's the link.
    Problem with journalizing
    I am getting this error while starting a journal in Oracle Data Integrator. Hence I've put the details in the Integrator section.
    Please help.
    Regards,
    Divya

  • E61 - MFE 2.0 - "Messaging: Feature not supported"...

    I have Nokia E61. I was using MFE 1.6.1 which was working great. I have upgraded to MFE 2.0. I am getting an error "Messaging: Feature Not Supported" while reply, fwd, creating new emails. I have tried to reinstall, full resync, reset the device and install again, but the error persists.
    Can someone help?

    I had that exact error- it was caused by installing an older version of MFE (1.x) that I had on my memory card, not the latest version (2.x).
    If you remove 1.x and reinstall 2.x it should work. I was confused because it synced everything OK, but I couldn't open emails!
    Cheers
    J

  • PAB feature not supported

    We are using Iplanet MS 5.2 under Solaris. Whenever a user wants to "add address" (using Web mail client) - a Error "PAB feature not supported" appears. Any Solution? Thanks in advance

    Since you didn't bother to give exact version information, it's kind of hard to help you.
    PAB was introduced with version 4.1, so it should be available. It was, however, a separate step during installation.
    Please run
    imsimta version
    and report what comes back for full version information.
    Did PAB ever work on this install? If it did, then something was removed, such as the o=PAB tree in your ldap server.
    If it never worked, then the installation was faulty. . .

  • Wavesecure - feature not supported.

    After upgrading to v20 firmware, Wavesecure in my phone stops working... when i try to backup, then show a error. Feature not supported... before this is running fine. Please tell me how to fix.

    Try to reinstall your firmware.
    If you want to thank someone, just click on the blue star at the bottom of their post

  • 6680 front camera feature not supported error.

    6680 front camera ( 640x 480 ) is giving an error feature not supported . what's wrong ??? Camera faulty , software faulty , mobile camera locked ???

    The Nokia Software Updater is a Windows application that enables you to update Nokia mobile device software (firmware) over the Internet using your PC. The application can be downloaded from the Nokia UK Product Support Internet pages at
    http://www.nokia.co.uk/softwareupdate
    The Nokia Software Updater offers the same updates you would receive at a Nokia Service Centre. The added advantage is the convenience, as you can now easily perform the update yourself from any location with an Internet connection, at a time suitable for you. Keep your phone software up-to-date, or fix a potential operation problem you may have by regularly updating your phone firmware.
    So you should try to check if there a newer firmware version for your phone first, this may fix your cam issue.
    Good luck,
    Arabian
    We Arab Portal Network http://www.WeArab.Net/
    Phones: 9300i, E70, N80, 6670, 6280, and 6111

Maybe you are looking for

  • If I had mistakenly dragged my Windows Volume into the trash to get rid of it and go back to one OS volume, Is that 100 plus gb available space lost forever?

    I really messed up, I am just wondering if what I have done is okay< I really thought I could remove a Partition by dragging in to trash and automatically my memory would be reallocated to my MacHD volume. Is all hope lost for the 111 GB of disk spac

  • Webservice (oracle erp applications) to SAP PI to SAP R/3 scenario.

    Hi All, I have to make webservice (oracle erp applications) to SAP PI to SAP R/3 scenario. 1. If I make Outbound Interface with 2 fields  in SAP PI. Publish its Webservice in Service Registry and then     send its WSDL URL to oracle erp applications

  • Setting up Publishers for C4

    I am a web design company that is now integrating C4 into all existing and new websites. I "adminster" access for all clients who will access individual websites and web pages. Each website has its own IP number with the index page under the root of

  • File adapter to JMS question.

    Hi All, I have a file to JMS scenario. I wanted to know 1.If PI is down and the messages are stacked in my file outbound folder.. when PI comes back up..    incase if the filenames have a timestamp..is there a way for PI to pick them up in serial ord

  • IIS SMTP Relay

    We are using windows server 2008 Server R2. We installed IIS and the SMTP relay component. It is setup to relay mail to our exchange 2010 CAS server. All internal mail is relaying properly on this server to the exchange 2010 CAS server to internal em