5530XM System BUG. HELP PLZ!

Everything was working fine till today when I tried to install an APP more precisely PowerMP3, from my phone since I run UBuntu and can't acces a pc suite or OVI suite program.
So i just run mass storage mode, copy the .sis or .sisx file and intall from phone but today my phone read, "unable to open file"  plus It didn't let me open the options menu to delete the .sis.
I decided to try a diffeerent app and a Theme neither of them run wether they were .sis or .sisx. The phone showed the same message on all three tries and even after shutting off and turning the phone back On.
How Can I fix this??
P.D does anybody know a package or prgram that can manage nokia phones from Ubuntu, I'm runin the latest release (10.04) up to date??

If you copy a sis file to the memory card   . I usually copy to downloads folder  .
Then open file manger locate the sis and run from there it should install .
Unless that ubunto has corrupted the file .
      jje

Similar Messages

  • Ipod no longer recognized, software is bugged help plz!!!

    I cant stand Itunes or any I-program anymore. Ive had my ipod forever, with alot of songs (2000 of them). Recently my Itunes tells me I need to update software, so I do so. I then had Itunes 6, and Ipod update 2006-01-10. Biggest mistake EVER.
    1. My ipod starts functioning funny with many glitches
    2. Next time I plugged it in, it told me that it must be updated to function properly, then it realized it IS updated, THEN it restores my Ipod by itself, without me pressing anything.
    3. THEN, the next time I try to plug in my Ipod, its not being read by Itunes and the Updater freezes if I open it. My 2000 songs have vanished (worst part).
    Basically, my pc is treating my Ipod as if its not plugged, my songs are gone, and I dont want to uninstall everything and start fresh without doing it right (while not downloading this glitch version).
    -If any Apple workers do care enough to read this, GO AWAY CUZ IM REALLY UPSET AT ALL OF YOU TECHNICIAN IDIOTS AND ID MAKE YOU PAY ME MONEY FOR MY SONGS IF I COULD
    -If any helpful knowledgable apple forumers can help me, please do so, this is killing me.
    Thank you!

    iOS: Device not recognized in iTunes for Mac OS X
    Do not omit the additional information pararaph.

  • Using iWeb to publish my mobileme photo gallery -really weird bugs help plz

    I have a really weird problem and have tried searching the forums already with no luck.
    I'm using iWeb09 to put mobileme photo album on my website. When I initially add the widget onto my page, the widgets will show a "preview" of what pictures are in the gallery if you hover your mouse over it. Later during the day, I'm not sure if I did anything to mess it up but that "preview" is no longer there. It's just a black box. It still works however if you click on it because it takes you to the mobile gallery.
    The only way for me to fix it was to delete the mobile me album and create a new one. Then re-add the widget onto my iWeb.
    This has happened twice to me already and I cannot figure out why it happens. I'm sorry if my description is vague. Please help.

    There is no point in re-installing iWeb, because after you have published it really is not an iWeb problem - if there is something not working on uploading the files, then it is really nothing to do with iWeb after html pages have been created.
    If you are using Fetch to upload, then you have obviously published your site to a local folder? If so, are the photos there when you look at your local site? If they are there when you publish to a local site, then it is an error in uploading and if photos do not show, it means that some things are not being uploaded to your server correctly.
    Have you tried using Cyberduck instead of Fetch? Cyberduck or Transmit are two of the better ftp programmes to try.

  • Run Time error!!!Help plz

    hi ..
    every time i run my application i get this error which i can't understand where exactly the error is
    can any one help plz
    )at javax.swing.JLayeredPane.paint(JLayeredPane.java:546
    )at javax.swing.JComponent.paintChildren(JComponent.java:498
    )at javax.swing.JComponent.paint(JComponent.java:669
    )at java.awt.GraphicsCallback$PaintCallback.run(GraphicsCallback.java:23
    :at sun.awt.SunGraphicsCallback.runOneComponent(SunGraphicsCallback.java
    )54
    at sun.awt.SunGraphicsCallback.runComponents(SunGraphicsCallback.java:91
    )at java.awt.Container.paint(Container.java:960
    )at javax.swing.JFrame.update(JFrame.java:329
    )at sun.awt.RepaintArea.update(RepaintArea.java:337
    )at sun.awt.windows.WComponentPeer.handleEvent(WComponentPeer.java:200
    )at java.awt.Component.dispatchEventImpl(Component.java:2663
    )at java.awt.Container.dispatchEventImpl(Container.java:1213
    )at java.awt.Window.dispatchEventImpl(Window.java:914
    )at java.awt.Component.dispatchEvent(Component.java:2497
    )at java.awt.EventQueue.dispatchEvent(EventQueue.java:339
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh
    )read.java:131
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    )ad.java:98
    )at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93
    )at java.awt.EventDispatchThread.run(EventDispatchThread.java:85
    this is part of the code:
      public void actionPerformed(ActionEvent e)
        FileInputStream fis = null;
        if (e.getSource() == add) //The ADD button.
          //User has not populated all the input fields.
          if(name.getText().equals("")|| address.getText().equals("")|| phone.getText().equals("")|| sex.getText().equals("")|| dob.getText().equals("")|| photo.getText().equals(""))
            JOptionPane.showMessageDialog(null, "Please fill in all the fields","Missing Fields",JOptionPane.INFORMATION_MESSAGE);
          else
            // save the new customer:
            try
              //1. take the customer's data and photo:
              int    userId          = Integer.parseInt(id.getText());
              String userName      = name.getText();
              String userAddress      = address.getText();
              String userPhone      = phone.getText();
              String userSex      = sex.getText();
              String userDateBirth      = dob.getText();
              //String userDateBirth=Date.parse(dob);
              String photoName      = photo.getText();
              String audioName=   audio.getText();
              File   file           = new File(photoName);
              int    fileLength      = (int)file.length();
              //2. Set the user's photo into the photoHolder:
              photoHolder.setVisible(false);
              photoHolder = null;
              comments.setVisible(false);
              comments = null;
              Icon[] custPhotos = {new ImageIcon(photoName)};
              JList photosList = new JList(custPhotos);
              photosList.setFixedCellHeight(100);
              photosList.setFixedCellWidth(80);
              photoHolder = new JPanel();
              photoHolder.add(photosList);
              makeComments();
              //3. Insert the data and photo into the database:
              if(fileLength > 0)
                fis = new FileInputStream(file);
                String query = " INSERT INTO CUSTOMER VALUES('"+userId+"', '"+ userName+ "', '"+ userAddress+ "', " +" '"+ userPhone+ "', '"+ userSex+ "', '"+ userDateBirth+ "', ?,?,? ) ";
                PreparedStatement pstmt = conn.prepareStatement(query);
                pstmt.setBinaryStream(1, fis, fileLength);
                  pstmt.setString(2,photoName);
                  pstmt.setString(3,audioName);
                pstmt.executeUpdate();
                comments.setText(userName+", added.");
              else
                String query = " INSERT INTO CUSTOMER (id, name, address, phone, sex, dob) VALUES('"+userId+"', '"+userName+"', '"+userAddress+"', '"+userPhone+"', '"+userSex+"', '"+userDateBirth+"') ";
                stat.executeUpdate(query);
                comments.setText("Customer saved without a photo.");
              backPanel.add(photoHolder);
              backPanel.add(comments);
              updateTable();
              //AddScroll();
            } //try
            catch (Exception ee)
               //The danger of putting creating the JOptionPane in here is that it will show the same message regardless of the error.
                JOptionPane.showMessageDialog(null, "Customers CPR already exits!!Please enter another CPR","Invalid",JOptionPane.INFORMATION_MESSAGE);
              System.out.println("Caught exception in add action: " + ee);
              ee.printStackTrace();
            } //catch
          } //if
        }//add button

    hi...
    i got where the error is..
    now i have another problem..
    Connecting to database..
    Valid Login
    Caught updateTable exception: java.lang.ArrayIndexOutOfBoundsException
    java.lang.ArrayIndexOutOfBoundsException
    at UtilityMethods.updateTable(UtilityMethods.java:305)
    (which is this line:
    tableData[currentRow] = fieldString;)-----> i did this because one of the fields will be a Date and the others are strings
    at UtilityMethods.updateTable(UtilityMethods.java:429)
    at Login.validLogin(Login.java:114)
    at Login.actionPerformed(Login.java:80)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:14
    50)
    at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Abstra
    ctButton.java:1504)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel
    .java:378)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:250
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonL
    istener.java:216)
    at java.awt.Component.processMouseEvent(Component.java:3715)
    at java.awt.Component.processEvent(Component.java:3544)
    at java.awt.Container.processEvent(Container.java:1164)
    at java.awt.Component.dispatchEventImpl(Component.java:2593)
    at java.awt.Container.dispatchEventImpl(Container.java:1213)
    at java.awt.Component.dispatchEvent(Component.java:2497)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:2451
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:2216)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:2125)
    at java.awt.Container.dispatchEventImpl(Container.java:1200)
    at java.awt.Window.dispatchEventImpl(Window.java:914)
    at java.awt.Component.dispatchEvent(Component.java:2497)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:339)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh
    read.java:131)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    ad.java:98)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:85)
    this is the code :
    void updateTable()
          ResultSet results = null;
          ResultSet results1 = null;
          try
            //Get the number of rows in the table so we know how big to make the data array..
            int rowNumbers  = 0;
            int columnCount = 6;
            results = stat.executeQuery("SELECT COUNT(*) FROM CUSTOMER ");
            if(results.next())
              rowNumbers = results.getInt(1);
            } //if
            if(rowNumbers == 0)
            rowNumbers = 1;
            tableData = new String[rowNumbers][columnCount];
            //Initialize the data array with "" so we avoid possibly having nulls in it later..
            for(int i =0;i<tableData.length;i++)
              for(int j=0;j<tableData[0].length;j++)
              tableData[i][j] = "";
            //Populate the data array with results of the query on the database..
            int currentRow = 0;
             SimpleDateFormat sdf = new SimpleDateFormat("dd-MM-yyyy");
            results1 = stat.executeQuery("SELECT * FROM CUSTOMER ORDER BY ID");
            while (results1.next())
              for(int i = 0; i < columnCount; i++){
              Object field = results1.getObject(i + 1);
              // actually this next line should be put outside your loop so you don't keep creating this object
              // or whatever format you want
              String fieldString;
              if (field instanceof Date)
                     fieldString = sdf.format((Date) field);
                     else
                          fieldString = field.toString();
                          tableData[currentRow] = fieldString;
    //tableData[currentRow][i] = results1.getString(i + 1);
    currentRow++;
    } //while
    }//for
    final String[] colName = { "CPR", "Name", "Address", "Phone", "Sex", "Date OF Birth" };
    TableModel pageModel = new AbstractTableModel()
    public int getColumnCount()
    return tableData[0].length;
    } //getColumnCount
    public int getRowCount()
    return tableData.length;
    } //getRowCount
    public Object getValueAt(int row, int col)
    return tableData[row][col];
    } //getValueAt
    public String getColumnName(int column)
    return colName[column];
    } //getcolName
    public Class getColumnClass(int col)
    return getValueAt(0, col).getClass();
    } //getColumnClass
    public boolean isCellEditable(int row, int col)
    return false;
    } //isCellEditable
    public void setValueAt(String aValue, int row, int column)
    tableData[row][column] = aValue;
    } //setValueAt
    //dataTable.setValue( new JScrollBar(JScrollBar.HORIZONTAL), 2,1 );
    }; //pageModel
    //Create the JTable from the table model:
    JTable dataTable = new JTable(pageModel);
    // dataTable.setModel();

  • Why I don't see Adobe After Effects in Adobe Cloud? Help, plz!

    Why I don't see Adobe After Effects in Adobe Cloud? Help, plz!

    It simply means your system does not meet the requirements. Check them on the AE product page.
    Mylenium

  • Quand j'appel quelqu'un on ne m'entend pas mais avec le dictaphone ou autre service mon micro marche help plz :)

    bonjour pour mieux m'exprimer , j'ai un iPhone 4 et depuis la 7.1.1 mon micro ne marche plus en appel , je l'ai éteint et tout cela , je me suis dit il bug et 1 semaine après il bug encore , alor que sur skype , facebook et autre et meme le dictaphone le micro marche et en appel il ne dure pas plus de 5MN et apres si je veut qu'il remarche je doit l'eteindre 1 jour pour 5MN -_- help plz merci

    Did you already take a look at the Apple Support Page, choose "France" as your country and "French" as native language and go through the Warranty and Service answers, especially the part "Out-Of-Warranty-Service"? This article can answer most of your questions and has some contact info as well.
    Apple - Support - Service Answer Center

  • Ubuntu issues help plz!!!!!!!​!!

    i have a hp pavilion dv7 with ubuntu and it turned off i switched it back on and now its just a grey/black screen and wont let me do anything i need some help plz thnx
    B/@$3

    KNRK wrote:
    It looks like you are facing lot of difficulties in finding the Operating System Image for your Notebook
    I understand how it feels, We will surely assist you with this
    Please reply to this Post with full Model and Product Number of your Notebook and the full version of the Operating
    System you are currently running
    Please revert for immediate assistance
    Regards,
    K N R K
    B/@$3

  • I got a flashing folder with a question mark. I got a new hard drive and upgraded to 4 gigs and can't open anything or reload the operating system? Help?

    I got a flashing folder with a question mark. I got a new hard drive and upgraded to 4 gigs and can't open anything or reload the operating system? Help? FYI: I have been using boot camp with windows 7 and started getting a kernal_data_Page_error and it would reboot windows, i was trying to do a chkdsk on the next reboot, but thats when i started getting this issue. I have put in a new hard drive and went from 2 gigs to 4. I can not get the computer to do anything, even the monitor does not show anything now????

    Prep your new drive:
    Drive Preparation
    1. Boot from your OS X Installer Disc. After the installer loads select your language and click on the Continue button.  When the menu bar appears select Disk Utility from the Utilities menu.
    2. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Note the SMART status of the drive in DU's status area.  If it does not say "Verified" then the drive is failing or has failed and will need replacing.  SMART info will not be reported  on external drives. Otherwise, click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID (for Intel Macs) or APM (for PPC Macs,) then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Partition button and wait until the process has completed.
    4. Select the volume you just created (this is the sub-entry under the drive entry) from the left side list. Click on the Erase tab in the DU main window.
    5. Set the format type to Mac OS Extended (Journaled.) Click on the Security button, check the button for Zero Data and click on OK to return to the Erase window.
    6. Click on the Erase button. The format process can take up to several hours depending upon the drive size.
    After formatting has completed quit DU and return to the installer. Install OS X.

  • Im new to the 5g ipod help plz

    will the ipod turn off if i leave it on pause? i know i have a really stupid question but help plz thx

    Yes.

  • My Apple TV is not working. On tv display, I'm getting unsupported signal. Check your device output. Can anyone help plz.

    My Apple TV is not working. On tv display, I'm getting a message 'unsupported signal. Check your device output. ' Can anyone help plz.

    connect it to a tv which support full hd and go into the settings and lower the resolution as much as possible and then connect it with your tv once more

  • I have just getting a new phone and I have forgot my password an Apple ID what I made new for the new phone now I cannot get on it because asking for id and password what should I do help plz thank u

    I have just getting a new phone and I have forgot my password an Apple ID what I made new for the new phone now I cannot get on it because asking for id and password what should I do help plz thank u

    Try
    https://iforgot.apple.com

  • Iam not able to share internet in windows 8 from my macbook air...though my iphone ipad is connected to the hotspot well..tried everything but it seems to be different from windows 7  and other microsft operating systems setting. help!!

    Iam not able to share internet in windows 8 from my macbook air...though my iphone ipad is connected to the hotspot well..tried everything but it seems to be different from windows 7  and other microsft operating systems setting. help!!

    Ask on a Windows forum since that's what you're having a problem with.

  • I lost my phone and i got an unlocked 4s from my gf she used it before an its still connected to her icloud is there a way i can restore my icloud back up to replace hers without messing up the unlock also my latest backup isnt showing on my pc help plz!!

    i lost my phone and i got an unlocked 4s from my gf she used it before an its still connected to her icloud is there a way i can restore my icloud back up to replace hers without messing up the unlock also my latest backup isnt showing on my pc help plz!!

    Please please help me, if you know how.

  • I cant get voice over to work on my 4G shuffle it clicks off every time help plz

    i need help plz it wont work

    Hello,
    Welcome to Adobe Forums.
    Try uninstalling Adobe Flash Player from Flash Player uninstaller : http://helpx.adobe.com/flash-player/kb/uninstall-flash-player-mac-os.html#main_uninstall
    Try a clean installation using this KB : http://helpx.adobe.com/content/help/en/flash-player/kb/installation-problems-flash-player- mac.html
    Thanks,
    Vikram

  • Help Plz.......!!!!its urgent

    hi nokia users
    flash lite on my 5530 only plays youtube videos,and when tried to play videos on other sites then it says flash player is required............do ui use any software that supports web videos...???
    help plz.....
    thanks in advance

    Falshplayer vedio cant acces in your device?

Maybe you are looking for

  • Jdev3.1/ Validator problem or bug???

    Hi, On one of the entity attributes, i have added a listValidator. this validates against a list of values from a select statement. The problem is that while testing the appl module, once i enter a correct value in the concerned field and tab out. no

  • Adobe Acrobat Startproblem

    Hallo zusammen Ich habe ein Problem mit Adobe Acrobat Standard 7. Ich habe das Programm auf einem Windows 7 Rechner installiert. Ok, ist gegangen, hat auch super funktioniert etwa ein halbes Jahr. Dann habe ich aus Versehen den USERS Ordner auf dem D

  • JTDS not connecting with SQL Server 2008 R2 SP2 + SSL with Java 6 U34-35

    Environment: Windows 7 Pro 32-bit SQL Server 2008 R2 SP2 (Forced Encryption = Yes, No Certificate provided to server) Java 6 Update 27-35 and Java 7 Update 2-7 jTDS 1.2.2 and 1.2.6 Under the following setup, our Java application is able to connect to

  • Options for Web Enabling Oracle?

    Hi, I am wanting information on the different ways in which to web front end an Oracle DB. We have plenty of PL/SQL and Forms experience in a Client Server architecture but are wanting to write an application with a web front end. Apart from web enab

  • Creative MediaSource Playlist problems!!

    (Creative MediaSource Playlist problems!!i Hello!? I am having a huge problem trying to add music to my playlist that I created using MediaSource (I have a 30GB Zen Vision M) I'll create the playlist, but it is only saving the last track(s) I added t