Stuck in file transfer mode?

I recently bought a NOkia 5310 express music phone, and I'm trying to copy some songs onto it. Whenever I try to get it set up to copy the music it says that my phone is "in file transfer mode, and cannot be use with pc suite, quit file transfer mode from the phone if you want to use the phone with pc suite". I have no idea what file transfer mode is, or how to get out of it. anyone have any idea?

Hi,
First of all, it doesn't matter if you choose the option of "PC Suite" or "Media".  It works both way when all you want to do is to transfer music.  I personally wouldn't choose "Media".  Somehow for my N97, my Messenging will switch back from mass memory to phone memory and it is really annoying.  At times when I choose "Media", my computer says that the USB is connected in non-compatible mode etc.
One thing I notice too is that my music player would be "hanged" if connected via USB.  Nothing we can do.  To listen to your music using your phone, I reckon you have to stop the USB connection.  So that is normal.
Using menu setting to PC Suite saves you the trouble of having to select the mode EVERYTIME.  So, that too is a good choice.
Let's forget about OVI Player for a moment.  After you plug in your phone, if you start the PC Suite, you should see that your phone is detected.  If not, try reconnect the cable, try using PC Suite to connect to the phone (there is a button to do that I remember if the phone is not detected).  If still cannot, like my friend, you will probably need to reinstall the latest firmware via Nokia Care Store.
Let's say your PC Suite application can detect your phone, you may wish to see if you can transfer the music.  You may wanna do one testing here.  Open up the File Manager from your PC Suite.  Transfer the songs manually, then do a refresh at your Music Library of your phone.  You should see the tracks.  If yours is a Comes With Music like mine, you can get the licence over the air.  Once that is done, I suppose you should be able to transfer the music files via your OVI Player.  While, it is tedious, but that was how it works for me.
I wish Nokia is easier on us, but it is not.  Sorry. 
Visit http://www.WilfridWong.com - where all good things are meant to be shared!

Similar Messages

  • Setting File transfer mode in SFTP using JSch (jsch-20070302.jar)

    Hi,
    I use Jsch for downloading and uploading files via SFTP. I am a facing a problem in the file transfer mode. When I download or upload manually the files seems file, but when I use my code to download or upload there is some problem. Actally the file has to be transferred in ASCII mode, but the code transfers it in binary mode. Below is the code I am using
    +import com.jcraft.jsch.*
    Session session = null;
    try {
    populateProperties();
    log("INFO","Download and Encrypt Program started",getDateTime());
    JSch jsch = new JSch();
    String host = tumbleweedURL;
    String user = tUserid;
    session = jsch.getSession(user, host, 22);
    session.setUserInfo(new MyUserInfo());
    session.setPassword(tPassword);          
    session.connect();
    Channel channel = session.openChannel("sftp");
    channel.connect();
    ChannelSftp c = (ChannelSftp) channel;
    c.cd("outbox");
    c.get("8",outFolderPath);
    }+
    Please tell me how I change the transfer mode to ASCII for the above code

    Vignesh_kumar wrote:
    I am not sure where to put this question, I have tried a lot of things and I am not able to find a solution for this. Will you be able to guide me..A mailing list, or forum, or faq, or support address at JCraft, maybe?

  • Can't find how to shut off File Transfer Mode with...

    I've spent the better part of two hours searching the Internet for information on how to turn off File Transfer Mode since my phone started refusing to connect to my home computer, today.
    The pdf user's guide doesn't say how to find it.  I've been digging through the menu on the phone trying to find anything that resembles File Transfer Mode so I can click it off.
    The other FAQ and discussion groups I've located are irrelavent as the information they contain doesn't transfer to my Nokia 820 (they suggest options which don't exist on my phone).
    Please, where does one start looking for File Transfer Mode on this phone so they can shut it off, and why isn't that information printed in the troubleshooting documents and self help files for these phones?
    I connect through the USB cable to my PC.  I have downloaded and installed Nokia PC Suite v.7.1.180.94 this morning in hopes that it would fix the connectivity problem, but unless I can get File Transfer Mode shut off somehow, my new phone's going to wind up being useless.
    Nokia Lumia 820, Windows 8 phone
    HP Pavilion Slimline s52021, Windows 7 Home

    have you searched these forums and tried a soft reset (pressing the volume down and power buttons together until the phone vibrates)? Bear in mind that no, Nokia Suite, or Nokia PC Suite do not work with Windows Phone 8 devices at all, only the Windows Phone app does.
    See if other devices connect to your PC, and try other USB ports.

  • How to set the file transfer mode to binary

    Hi,
    I have a requirement to upload files from local machine to server, and it is working fine.
    But after uploading files junk characters are entered after each line, so want to set the file transfer mode to binary to get rid from this error.
    We have checked that if we ftp the files manually then also getting the same problem when the transfer mode is not selected as binary.
    Please give your valuable advice.
    Thanks,
    Ranita

    Hi,
    I want to set the file transfer mode through controller code, presently I am using the below code where no file transfer mode is specified ::
    public void upLoadFile(OAPageContext pageContext,OAWebBean webBean)
      String serverPath = null;
      OAApplicationModuleImpl am = (OAApplicationModuleImpl)pageContext.getApplicationModule(webBean);
       try {              
          Connection conn = am.getOADBTransaction().getJdbcConnection();     
          String query = "select  distinct variable_name, value from fnd_env_context where variable_name = 'XXCUST_TOP' and concurrent_process_id = ( select max(concurrent_process_id) from fnd_env_context )";
          PreparedStatement stmt = conn.prepareStatement(query);
           for (ResultSet resultset = stmt.executeQuery();
                          resultset.next(); )
                 serverPath  = resultset.getString("value");
            stmt.close();  
           catch(Exception ex)
             throw new OAException(ex.getMessage(), OAException.ERROR);
       String filePath = serverPath+"/"+pageContext.getParameter("FileType");
       //System.out.println("Default File Path---->"+filePath);
       String fileUrl = null;
       try
        DataObject fileUploadData =  pageContext.getNamedDataObject("MessageFileUpload");
      //FileUploading is my MessageFileUpload Bean Id
        if(fileUploadData!=null)
         String uFileName = (String)fileUploadData.selectValue(null, "UPLOAD_FILE_NAME"); 
         String contentType = (String) fileUploadData.selectValue(null, "UPLOAD_FILE_MIME_TYPE");  
         //System.out.println("User File Name---->"+uFileName);
         FileOutputStream output = null;
         InputStream input = null;
         BlobDomain uploadedByteStream = (BlobDomain)fileUploadData.selectValue(null, uFileName);
         //System.out.println("uploadedByteStream---->"+uploadedByteStream);
         File file = new File(filePath, uFileName);   //C:\\Ranita
         //System.out.println("File output---->"+file);
         output = new FileOutputStream(file);
         //System.out.println("input---->"+input);
         byte abyte0[] = new byte[0x19000];
         int i;
         while((i = input.read(abyte0)) > 0)
         output.write(abyte0, 0, i);
         output.close();
         input.close();
         HashMap map = new HashMap();
         map.put("fromPage","Y");
         pageContext.forwardImmediatelyToCurrentPage(map,true,OAWebBeanConstants.ADD_BREAD_CRUMB_YES);
       catch(Exception ex)

  • HT1391 I have a TV Show download that is stuck in file processing mode.  Can't delete it or us it.  What do I do?

    I have a TV Show download that us stuck in the file processing mode.  I can't delete it or do anything with it.  Don't even know where it is stored

    KAS184 wrote:
    I have the new iPad so I can't shut it off with the Sleep/Wake button which it doesn't have.
    Ah ... yes ..... it does have a power button. Every iPad has the same sleep/power button in the same place on the iPad. I'm happy that you found a solution .... but maybe you should download this for reference.
    http://manuals.info.apple.com/en/ipad_user_guide.pdf

  • File Transfer Mode

    Hi,
    I was using Binary mode for all our interfaces and was working properly.  My customer said he is facing issues of missin carriage returns.  Hence, i changed it from Binary to Text.  And now it is working fine.
    But I heard it is not advisable to use TEXT mode.  Please do let me know the solution.
    Regards,
    Anandh

    Dear Krishna,
    Plz check the following link for the good explanation on Text mode, and Binary mode.
    LINk:
    [Loading from a Flat file: Binary and Text File]
    [http://help.sap.com/saphelp_nw04/helpdata/en/0d/00453c91f37151e10000000a11402f/frameset.htm]
    Reward points if helpful
    Regards
    Praveen

  • " mass storage / filre transfer" mode?

    Can the 4s be put into a " mass storage  / file transfer " mode?  My Garmin says it needs to be in this mode to update maps

    The is NO "mass storage mode" for iPhones.

  • Nokia 6263 broken screen can't find file transfer ...

    Hi, I recentely broke the screen on my Nokia 6263 and I installed PC suite in order to chcek text messages for this reason. However, it says that my phone is in file transfer mode and I was wondering if anybody could give me a step by step to turning off file transfer. I need someone to tell me how to navigate through the phone similar to this thread
    /discussions/board/message?message.uid=354545

    once in main menu, i cant just go to any sub menu by pressing a number key, i have to use directional pad to go to CONTACTS, in there, press UP, (go to the last selection)it's COPY CONTACTS, an other UP, it's MOVE CONTACTS,
    choose either one, once in, you have two option, first: FROM PHONE TO SIM, 2nd: FROM SIM TO PHONE, if u select the first one, it asks : move contacts? press center to answer YES, and wait, it may takes a while, i did with 60 contacts, in about 20 seconds.
    by default, in grid mode, the upper center icon is the contacts.

  • BBL and file transfer

    Hi all,
    We are getting error in ULOG during heavy load.
    210420.barcelona!BBL.2329.3086304960.0: LIBTUX_CAT:1285: WARN: tpreturn message send blocked, will try file transfer
    210620.barcelona!BBL.2329.3086304960.0: LIBTUX_CAT:1286: ERROR: tpreturn could not send reply TPETIME - timeout occured
    How and which process can call BBL? Our application do tpcall to .TMIB, but not in that time when we get this error.
    Whitch IPC-queue in this case do not have enough space: BBL's queue or caller's process queue?
    We have sufficiently large kernel prametrs values (MSGMAX=32000, MSGMNB=628000) and our Linux has no limits to maximum
    number messages in the system at any time.
    Thanks.

    Hi,
    Are you absolutely certain your application is not performing tpcall(".TMIB"...) during this time? In general the only things that call the BBL are tools like tmadmin and in some cases other Tuxedo servers such as the WSL/WSH.
    The error message indicates that the caller's IPC queue is nearly full (75% of max) and so Tuxedo switches to file transfer mode in that case to prevent messages from being lost. This is in general a very bad situation as file transfers are far more costly than pure IPC requests.
    You should be able to subscribe to that event and have a shell script execute that uses ipcs to list the status of the IPC queues. That should help you identify which BBL client is causing the problem.
    Regards,
    Todd Little
    Oracle Tuxedo Chief Architect

  • Connect Mode: Permanent Vs Per File Transfer

    Hi,
    Did browse to know the pros and cons of both. SAP help was not much of help .
    Though most of them recommend PerFileTransfer, I want to know more about permanent.
    There should be some reason or scenario where permanent mode can be used,.
    Regards
    Krish

    Hi Krish,
    Connect Mode u201CPermanentlyu201D: If you select u201CPermanentlyu201D, an existing connection to the FTP server is used. The connection is reestablished automatically if it is closed by the server. Use this mode if you are very frequently using ftp connection (reading / writing to ftp server).
    Connect Mode u201CPer File Transferu201D: If you select u201CPer File Transferu201D, a new connection to the FTP server is established for each file transfer. Use this mode if using less frequently using the ftp connection (reading / writing to ftp server).
    Letu2019s take two scenarios:
    1. FTP channel is polling every 10 second then go for Connect Mode u201CPermanentlyu201D. Because the over head of creating new connection (Connect Mode u201CPer File Transferu201D) will be more.
    2. FTP channel is polling every 1 hour then go for Connect Mode u201CPer File Transferu201D. Because it does not make sense to hold resource(FTP / memory thread) for 1 hour by using Connect Mode u201CPermanentlyu201D. Most of the cases SAP recommended this option.
    Regards,
    Raghu_Vamsee
    Edited by: Raghu Vamsee on Jan 14, 2011 11:24 AM

  • Windows 7 network file transfer absurdly slow

    I know there are plenty of other posts about slow network file transfer. Here, elsewhere, I can't say I read them all but most are referring to slow down to 1MB/s.
    I am getting <20KB/s.
    If I transfer a very small file (less than 100KB) it would start quickly then slow down to <20KB/s. all subsequently network file transfer would be slow, a reboot is needed to reset this. If I transfer a large file it would be stuck on calculating for
    a long time and then begin with <20KB/s immediately.
    This is a fairly newly built desktop. Realtek gigabit on-board LAN of ASRock Extreme3 gen3. I have tested network file transfer to and from a Windows 7 laptop and a MacBook Pro, so I am fairly certain it is the desktop's problem. The slow speed only happens
    with one direction, outbound from the desktop, regardless of whether I initiate the file transfer action from the origin or the destination. Inbound network file transfer and internet speeds are fine, so I don't think this is a hardware issue.
    Remote Differential Compression is off. Drivers are up-to-date from ASRock's website. I am getting 74.8MB/s internet upload speed from speedtest.net (http://www.speedtest.net/result/1852752479.png). Inbound network file transfer I can get around 10-15MB/s.
    I looked everywhere and can't find symptoms that fits my case well. I'd be cheering if I can get 1MB/s. Well, maybe not, but at this point it is more efficient for me to upload everything to the Internet and download them again than to use local file transfer,
    which is just absurd.
    I am hoping this community has some insight for me to troubleshoot this. I don't see anything obviously related from the Event Viewer, and beyond that I just don't know where else to look.
    Any suggestions are greatly appreciated, thank you in advance.

    Hi,
    Firstly, would you please try again to install the HotFix instead of disabling TCPAuto-Tuning and Windows Scaling heuristics via netsh manually.
    If issue persists, please try following:
    1. Test the issue in Safe Mode with Networking.
    2. Disable "Large Send Offload".
    How to:
    1) Open an elevated command prompt and press Enter:
    netsh int ip set global taskoffload=disabled.
    2) Disable and re-enable the network interface or reboot your system. 
    3) Run the following command in an elevated command prompt to confirm the command above is successful:
    netsh int ip show offload
    3. Check the value of “Speed & Duplex” is Auto in Advanced Properties of the NIC. If not, please let us know your value.
    4. Check if “Flow Control” is disabled in Advanced Properties of your NIC.
    5. Go to your Start Menu, search for “Local Security Policy“ and run it as administrator. Under Security Settings -> Local Policies -> Security Options.
    1) Open “Network security:Minimum session security for NTLM SSP (including RPC based) Clients”,
    unselect “Require NTLMv2 session security” and “Require 128-bit encryption”.
    2) Do the same operation to “Network security:Minimum session security for NTLM SSP (including RPC based) Servers”.
    3) Open
    the policy “Network Security LAN Manager authentication level“. Locate and select the option “Send LM & NTLM – use NTLMv2 session security if negotiated“. Click Apply, and close out of all
    policy management windows.
    Hope this helps.
    If a post solved your problem, click “Mark as Answer” on the post. If a post helped you, click "Vote As Helpful" on the left side of post.

  • File transfer: AFP vs FTP

    Setup:
    Cable modem to Linksys WRT54g broadcasting only in G only mode for PBG4.
    AEBSn#1 in bridge mode via Ethernet from Linksys, N only mode, broadcasting wirelessly.
    AEBSn#2 is wirelessly extending N-only from AEBSn#1, and is connected to a mini with external hard drive.
    Using PBG4, if I mount a volume from the mini and transfer a file, transfer time is very slow: approx. 20 minutes for a 200MB file. If I FTP from PBG4 into the mini, transfer time is 2 minutes.
    (I think the same happens if I use a Macbook Pro connected to the N-only network, but it's in for repairs right now, so I can't be sure.)
    Any idea why the transfer times are so different b/w AFP and FTP and, more importantly, what I can do to remedy this? Thanks.

    Same problem here. I have two AEBS Gigabit in bridge mode. Transfering a file via FTP or with Apple Remote Access (ARD) brings up to 3 MB/sec. Same file and same configuration connected via AFP only brings 60 kB/sec.
    I hope somebody has an idea how to fix this.
    Thanks in advance

  • Creative Zen USB and File transfer probl

    Am the unhappy owner of a brand new Creative Zen touch 20gb mp3 player which apparently works with usb 2.0. After installing the software which came on the cd (file transfer software and nomad explorer) the Zen appears to get recognised by the pc with no problems when i connect via the usb cable. The Zen also displays 'docked' which is all very well. However if i select say 0 tracks to download to the player the xp progress bar seems to halt at around 60-70% and eventually the program (nomad) complains that the operation cannot be completed. I noticed that the small hard dri've in the player feels as though it is 'spinning down' around a similar time to the message being displayed. If at this stage i refresh the players view in nomad explorer it can be found with no problem....its just i cant write to it until i unplug the usb from the zen and reconnect. I spoke to creative who told me that because my pc (in system devices) reports that my usb is an 'open host' adapter...this means it cannot supply adequate power to the player....but surely USB2.0 is USB2.0 and if something claims to be USB2.0 compliant that would be the end of the story? The usb card im using is a usb 2.0 pci card and is also pretty new. Any help/ideas would be greatly appreciated.
    I have tried various usb ports, usb and2 conections ( I have both), various cables and combinations and the same happens. I have also tried win xp and win98, and other disks I have with the same result. I have managed to transfer 20 os so mp3s (a small proportion of those I have been trying to transfer)after 3-4 hours hard labour but never the contents of a full folder. After a proportion of the files are transferred then Zen touch becomes 'busy' or 'not connected'. Obviously there is no way I can continue like this and it will have to go back.
    I have tried the slightly newer driver but this did not work at all and I had to roll back to the one that came on the CD. I feel that I have given it a fair shot trying all the workarounds.
    Is is a USB power problem? Should a powered usb hub cure it's If so why?
    But is this surely is Creative's problem. It is obviously a known issue but what are they doing about it's Putting out Zens which are prone to this problem is not good practice. Any solutions out there?

    Hey,
    If you tried it on a friend's computer and you're still having problems then it may be a problem with the Zen. Before you call or e-mail tech support, here is what they will tell you do to first before they really get in depth with helping you. Go into Rescue Mode (there is an explanation on how to do this at the top of the forum) and do a disk clean up. After that, try it. If that doesn't work then click the reload OS option which will take the firmware (like windows to your PC) off the Zen. Don't worry you can easily put it back on. Go to Support>Downloads>select Zen Touch, etc, etc. and download the latest firmware and run it. Hopefully that will fix it....
    I had some connection problems myself with my ZT as soon as I got it as well. and simply reflashing the firmware fixed and now I love my Zen. I hope everything works out for you.
    Wilco

  • How do I apply a transfer mode to a SPECIFIC layer without a mask?

    Hello
      This is fairly easy (I think), but I just never learned to do it.
      Let's say I have a stack of layers in a document. I want to apply a layer with a transfer mode but only apply it to ONE of those layers. I've seen this in files which I have received from others, but I have never done it myself (always faked it). When it's done right, the transfer mode layers look like they are nested inside of a layer.
      Am I making sense at all?
    thanks,
    ---------------S

    Option-click between layers.

  • N95 8GB reboots periodically in data transfer mode

    I have a new N95 8GB running firmware v20. Unfortunately, when I use the genuine USB cable and select "Data Transfer Mode" the phone reboots 60 seconds after I connect the cable (and thereafter each 60 seconds when I don't touch the phone).
    I have tried with a non-genuine cable and the behaviour is the same.
    Coincidentally the "Power Save Time-out" is set to 60 seconds. When I change this to another value, say 40 seconds, then the above rebooting happens every 40 seconds.
    This appears to be a phone bug and makes it extremely difficult to use data transfer mode, unless you can transfer files within the power save time-out period, or unless you are prepared to press a button on the phone within this period.
    **Nokia please fix this**
    See related post: /discussions/board/message?board.id=smartphones&thread.id=81967&view=by_date_ascending&page=1

    Well,rotateme works perfectly for me and i have a n95 8gb too.So there are two things that might happening.
    1.You are doing something wrong with the whole installation(does rotateme works when you install it?)
    2.You downloaded your self a corrapted or somekind of a virus or a bug .sis file and installed it to your phone.
    Why dont you try to download one other rotateme file for you?You can find plenty rotateme from a lot of users.I can send you mine,if you want send me an e-mail and i`ll send to you the .sis file that i used and as i said,it works fine for me.
    Peace
    Message Edited by noslien on 06-Feb-2008 07:47 AM
    Eykleidis

Maybe you are looking for

  • [SOLVED] Reverting Guake terminal tab names back to 'Terminal #'

    The new version of Guake (0.4.3) implemented 'Better Tab Titling'.  This means that instead of a new tab name being 'Terminal #' (where # is an auto incrementing integer), it instead forced the title to be equal to the VTE prompt. My issues were that

  • Diff between calculate work&calculate duration in spro

    hi all i got the confussion to set 1 0r 2 in spro _default value profiles for general order data_ 1/calculate 2/calculate duration how it will effect order if some one also touch the point in the same screen 1/level of detail 2/field key 3/relation s

  • Help, I'm tired of Camera Raw opening all images over 100% view!

    How do I change to default setting for Camera Raw so that when I open images, they will only open at 100% and not 130% or 200% or 300%? What is the point of opening all images in Camera Raw over 100%, when I then have to zoom out to 100% for all imag

  • How to switch which program to view photos with?

    I have a Droid Razr.  From the camera program when I click on photo in the upper right hand corner to view my gallery, it appears the gallery is opening with google photos instead of gallery.  The google photos app dims the back lighting on the photo

  • How to install Driver Manager in Oracle.

    Hello , I have downloaded the SPARC ODBC drivers for Oracle from Oracle official site. and i have extracted the zip file that zip file contains the below files : ODBCRelnotesJA.htm libsqora.so.10.1 ODBCRelnotesUS.htm odbc_install.sh ODBC_IC_Readme_Li