How can I delete the space from "other" in my iPhone 5?

I have an iPhone 5 (iOS 8.1.2) and the "other" space is taking 5.63GB! I've tried a few things like deleting old mails or messages but it's not getting better. Please help!!

See Kappy's very well written user tip:
What is "Other" and What Can I Do About It?

Similar Messages

  • I want to update iCloud account with new apple id but don't know password for old apple id.  Plus can no longer receive email at old apple id.  How can I delete the current iCloud account on my iPhone if the previously stated conditions exist?

    I want to update iCloud account with new apple id but don't know password for old apple id.  Plus can no longer receive email at old apple id.  How can I delete the current iCloud account on my iPhone if the previously stated conditions exist?

    If the old ID is yours, and if it is an earlier version of your current ID, go to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iDevice, even though it prompts you for the password for your old account ID. Then save any photo stream photos that you wish to keep to your camera roll.  When finished go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • How can we delete the invoice from hub table

    Document No 90048130
    Invoice No 9000112482
    Amount 31,009.17
    Currency EURO
    here the document having billing documents . how can i delete the invoice document . here billing documents we can cancell it using the t code vf11 .but how can we delete the invoice .can u please help on this .
    Thanks in advace .
    Raj

    Here is the SAP help on this topic.  I guess that answers your question.
    When you cancel a billing document, you are actually creating a cancellation document. The cancellation document copies data from the billing document and transfers an offsetting entry to the accounting department.
    Features
    The cancellation document causes the reference document for the billing document (e.g. the delivery) to be reopened so that a correct billing document can be created.
    You can also cancel individual items. In the billing document, goto: Edit - Cancel item This function is not possible for:
    rebate agreements
    transactions involving credit cards
    documents that have not yet been forwarded to Financial Accounting

  • HT1386 I bought a new computer and I cannot transfer my library to this new one. The message says that I'm not allowed to sync with two computers??? How can I delete the previous from my account???

    I bought a new computer and I cannot transfer my library to this new one. The message says that I'm not allowed to sync with two computers??? How can I delete the previous one from my account???

    You cannot transfer from the iPhone to the computer.
    You must move the contents of your old computer to the new one directly.
    Use an external hard drive perhaps or restore your old computer backup to your new computer.
    The iPhone is not the source of your data, that is the computer, the iPhone is only a slave device to iTunes.

  • I download confidential info & save to a secured flash drive; how can I delete the file from "downloads" after that?

    I am a mental health professional. My supervisor emails me confidential information as Word documents, which I download using Firefox. When the download is complete, I open the document and save it to my secured flash drive. I would like to then delete the file from my computer, so the flash drive has the only copy, to protect my clients' privacy. The only directions I can find are for deleting the entry from the downloads list, but not the file itself.

    There is technology known as RMS which you could set series of policies like only members in the company could access certain documents and if someone copy them and attempt to run them in another PC or outside company, it won't work. Take a look at:
    http://blogs.technet.com/b/rms/archive/2013/08/29/the-new-microsoft-rms-is-live-in-preview.aspx
    https://technet.microsoft.com/en-us/library/dd277361.aspx

  • After restoring my 3Gs I now have duplicate--sometimes triplicate calendar entries. How can I delete the duplicates from the phone?

    On the info tab I'm told that my calendar is being synced through MobileMe and directly with the computer resulting in duplicated data. How do I prevent that? And how do I now delete the duplicates from the phone?
    I notice that the entries from the computer show "Busy" in the status while the others--probably from MobileMe-- do not.
    Ron

    Solved the problem...I think. In the Calendar app I clicked on the Calendars button. There I found, under Show All Calendars "From My Mac." There I found not only the calendars as they appear in iCal and MobileMe, but the same items with brackets containing my MobileMe address plus other info that isn't visible enough to see what it is (looks like "@calendar).
    Ron

  • How can I Delete the error podcast file in my iPhone?

    I've tried to download some podcast content from iTunes. But I've failed to download these files. In the iTunes, there is another same contents that has a little different name of file. That files were good, so I've downloaded successfully. After downloading, I've founded two pocast  categories in the list of video app. I could not play some files. So I wanted to delete these files from my iPhone. But I can't. I know how to delete the file but that way is not working. Could you let me know how can I delete these files?

    Yes, i did. But that was not working. Normally that way is good, in my case that is not possible.

  • I have a Iphone 4 and switched to Iphone 4s.  All contacts transferred.  However, I now want to delete the contacts from Iphone 4 and give the phone to someone else.  How can I delete the contacts from the Iphone 4 without deleting from Iphone 4s??

    How can I remove contacts from Iphone 4 without removing contacts from cloud or Iphone 4s?

    I started deleting the  Iphone 4 contacts for a trial....It also deleted the Iphone 4s contacts at the same time.  I was afraid to erase all would mean that I lost all that has been loaded to Iphone 4s.

  • HT1620 I am having problems downloading the update to my iphone4. How can I delete the update from my phone?

    I just need to know how to delete this update dated back in March. I can't update it properly from my phone, and I just want to delete it.
    Thank You

    Connect to iTunes on the computer you usually Sync with and “ Check for Updates “...
    See the Using iTunes Section Here...
    How to update your iPhone, iPad, or iPod touch

  • How can i Delete the data from three tables at a time  using same key.

    I am New to Oracle ADF, I have a Requirement Like these, I have three tables like Employee,Salaries,Teams all of these are having one common EmpNo as common attribute, I have Search form these will return the all the employees related to that search query, when i click on Delete button the particular employe Data should delete from all the three tables based on the EmpNo.
    Any Help is appreciable..

    1) The easiest way is to mark the foreign key constraints from SALARIES to EMPLOYEES and from TEAMS to EMPLOYEES as ON DELETE CASCADE. The DB server will then delete the necessary rows whenever you delete an employee row.
    2) Another way is to implement a Before-Delete-Row DB trigger on the EMPLOYEES table where you can delete the related rows in the other tables (have in mind, that if you have foreign keys you may get a Mutating Table Exception, so this approach might be not very good).
    3) An ADF way is to implement a custom EntityImpl class for the Employee entity and to override the remove() method where you can lookup the related TeamMember and Salary entities (through EntityAssoc accessors) and invoke their remove() methods too.
    4) Another ADF way is to implement a custom EntityImpl class for the Employee entity and to override the doDML() method where you can delete the necessary rows in SALARIES and TEAMS tables through JDBC calls whenever a DELETE operation is being performed on the underlying Employee entity.
    Dimitar

  • HT4890 how can I delete the photos from Ipad2 or Iphone5

    Ipad 2 in the picture that I can not delete photo from Icould, even when deleted from Ipad2 photos are still there,pls help

    To what?    Are you having trouble with a DVD made by a particular device, or a hard disk that was on a particular computer, or is still in that computer, and communicating to your computer?  We don't have enough details to answer the question.    Are you trying to get photos into an iPhoto certain version, Photoshop certain version, just the Finder of a  certain version, or specific operating system on your Mac?    We need more details.  Is the DVD a standard DVD, such as is indicated on http://support.apple.com/kb/HT2446 or something non-standard?

  • How can we delete the shopping cart

    Hi Guys,
    How can we delete the SC from the SRM system there is a SC which is stuck after approval even after resubmitting and performing clean req it is not getting converted.
    I tried using the function module BBP_PD_SC_ITEM_DELETE but i get an error System Error: READ TABLE LT_ITEM do you guys have any idea how to resolve this?
    Thanks for your help
    Regards,
    Sid

    You cannot change these POs because their changed version has status
    'Deleted'. My proposal to fix them will be the following:
    You will have to set changed version as closed(DOC_CLOSED set to X)
    and in active version set DOC_CLOSED to space.
    +*-For the above statement, Can you guys please let me know,  which table DOCCLOSED belongs to and what are the steps to do this, as i come from a functional back ground.*+_

  • Wow can the fotos be deleted?I can upload pictures to my internet site with Lightroom 5. How can i delete the uploaded photgraphs?

    Wow can the uploaded fotos be deleted?
    I can upload pictures to my internet site with Lightroom 5. How can i delete the uploaded photgraphs?

    Hi Jim,
    Thank you, but i like to know how can i delete the photos from the internet site. Since i'm able to upload them with Lightroom, i'm sure there is a way to re-organize and/or delete from Lightroom as well, no?

  • How can I delete the other user reviews from the apple app developed by me

    How can I delete the other user reviews from the apple app developed by me

    As a registered developer you have access to the registered developers discussions area and direct access to the appropriate Apple personnel in regards to such a question. Pretty sure app reviews can't be deleted, but this is far from the appropriate place to get an answer for this.

  • So I have in iPad 3 and I need to update some apps on my iPad most of them I can update because it has my Apple ID but there some that I can't because it has a different id I guess from the person that sold it to me how can I delete the other id ??

    So I have in iPad 3 I need to update some apps and a different id is popping out I have it set to my id but on some apps that I need to updat it has a different id how can I delete the other ids set to my iPad how do I delete the other id plz help

    Delete those apps that are not under your Apple ID and re-download them using your Apple ID.

Maybe you are looking for

  • Error in Accounting document Posting using - BDC

    While creatind document in FB01 using BDC   PERFORM fill_dynpro_fields1 USING:            co_true    co_program        '0100' lit_bdcdata,            space      'BKPF-BLDAT'       it_bkpf-bldat lit_bdcdata,            space      'BKPF-BUDAT'       it

  • Table Control Related Problem

    Hi, I have created table control displaying fields from ztable and now i have created user defined structure containing the same table as structure and one more field is added as MARK for capturing row. Now the problem is when i select one row on tab

  • I was trying to update my iTunes to 11.1.3 and I keep getting an error message

    I was trying to update my iTunes to 11.1.3 and I keep getting the error message "iTunes has an invalid signature. The download has been removed or stopped".  Thanks

  • BAPI for Resource Allocation in Process System?

    hi,       In an XI integrated scenario, I have created Project definition,WBS elements, Networks and Network Activities in SAP R/3 Project System by calling BAPI BAPI_PROJECT_MAINTAIN.       Now I want to allocate resources to these network activitie

  • Purchase order printout should not happen without release of PO

    I have made all the settings for PO release strategy and printout settings. But printout can be taken even before final release. I checked the settings and this printout should not happen before release. Please help me out. Thanks in advance.