Need more storage --  I can't see where to increase my storage. What do I do?

when I go to take a photo, it says cannot take photo, not enough available storage; you can manage storage in Settings. When I go to settings, i can't see how to increase. Help!

I agree with TeeKnows...
Export all of your photos off of your phone and onto a PC/Mac for backup.   The phone is not really designed to be permanent storage for all of your photos.   They eventually consume a lot of space, and should you ever lose your phone, you'll have a copy at home.

Similar Messages

  • My icloud storage shows the base 15 MB. I am being billed for the second year for $20 for 10MB additional storage. Can't see it

    My icloud storage shows the base 15 MB. I am being billed for the second year for $20 for 10MB additional storage. Can't see it on iPad cloud storage section.
    Where should it be?

    Your current iCloud storage should appear in Settings>iCloud>Storage & Backup when you tap Change Storage Plan.  It should also show in Settings>iCloud>Storage & Backup>Manage Storage at the bottom (the available storage gauge).

  • My icloud storage is full but i can't see where all the data is.

    I am using an iPhone 4S.  My iCloud (free) storage of 5GB is approaching full usage.  When I try to free up some space, the documents and data only amount to less than 20MB.  I can't see where the rest of the 4.88MB is used and is totally invisible to me.  Please help

    Hey Dragonfly1981,
    Welcome to Apple Support Communities.
    Take a look at the article linked below, it provides a lot of great information that will help you find out what’s taking up the other 4.8 GB of data and choose what you want to be backed up.
    Manage your iCloud storage
    I hope this helps,
    -Jason

  • How to synch in the most recent version of iTunes - 11.0.0.163 - The latest version updated today and changed the look of the program. I can't see where to click to synch. If I disconnect and restart it works fine automatically, but why do that?

    I updated the latest version of iTunes today and it has a new look. That's fine but I can't see where to click to synch my ipod after downloading music or podcasts. It was always easy.

    It might make it much easier on you if you enable the sidebar in iTunes. Launch iTunes and go to View>Show Sidebar. With iTunes set up like that, it should look a lot more familiar to you. You can select your device name under the devices heading and then go through all of the iTunes panes by clicking on them at the top of the iTunes Window.
    My screenshot shows my iPad, but it works the same way with an iPod.

  • I recently partition 250gb of my hd and i decided no delete the partition. but now i can't see where the 250gb is. I can only see 750gb of my hard disk

    i recently partition 250gb of my hd and i decided no delete the partition. but now i can't see where the 250gb is. I can only see 750gb of my hard disk

    Hi Cedric,
    Welcome to the Support Communities!
    The article below may be able to help you with this.
    Click on the link to see more details and screenshots. 
    Disk Utility 12.x: Partition a disk
    http://support.apple.com/kb/ph5845
    I hope this information helps ....
    Happy Holidays!
    - Judy

  • I can't see where I renew my online number

    as the title says, I can't see where I renew my online number.
    When I go to account I can order a new number but not just renew my old one
    I have 3 days before it expires,
    Thanks in advance,
    Mike

    Hi,
    You can check help from this post made by Primemover:
    http://community.skype.com/t5/Welcome-Getting-Started/Help-us-help-you/td-p/13054
    Regarding your subscription, since Unlimited US & Canada is offered only to US and Canada customers(located in these 2 countries) I'm afraid you can't purchase it right now.
    You probably have only Unlimited US listed here:http://www.skype.com/go/subscriptions
    Alternative is to use Skype Credit until you get back.
    Tip: When you get back to US I'd recommend purchasing subscription with Skype Credit, then it will be extended automatically and no matter where you can add Skype Credit to your account.
    More info about paying with Skype Credit for your subscription: https://support.skype.com/en-us/faq/FA1781/How-can-I-pay-for-a-subscription
    Andre
    If answer was helpful please mark it with Kudos and if issue is resolved mark it with solution. This will help other users find this answer more easily. Thanks in advance!

  • I am trying to delete an XLS file from a network drive and am getting a message that says the file cannot be deleted because it is in use.  I can't see where it is in use and have tried to reboot the computer to no avail.

    I am trying to delete an XLS file from a network drive and am getting a message that says the file cannot be deleted because it is in use.  I can't see where it is in use and have tried to reboot the computer to no avail.  I can delete other files but several XLS files are giving me this message.

    You said it was a network drive.  So is someone else on the network using that same file or may have have left with excel still accessing it on their system?

  • I have snow leopard 10.6.8 and want to get on iCloud which requires Lion... should I buy Lion at $29.99 now and upgrade to Mountain Lion whne available (I can't see where it is available for download yet) and what is cost of upgrade to Mountain Lion?

    I have snow leopard 10.6.8 and want to get on iCloud which requires Lion... should I buy Lion at $29.99 now and upgrade to Mountain Lion when available (I can't see where it is available for download yet) and what is cost of upgrade to Mountain Lion?   Or should I simply wait for Mountain Lion?

    I would wait for Mountain Lion to be released. According to Apple, Mountain Lion will be released by end of July 2012.
    It will cost you only $19.99 to upgrade. You can find all the details at the following link...
         http://www.apple.com/osx/

  • Can't see where I am going wrong!

    Can anyone see where I am going wrong.....I can't see the problem:
    import java.io.*;
    public class EmployeeRecord {
        private String employeeName;
        private int employeeIDNumber;
        private String jobCat;
        private double hourlyPayRate;
        private double annualSalary;
       /* public constructor.
       public Student(String employeeName, int employeeIDNumber, String jobCat, double hourlyPayRate)
             this.employeeName = employeeName;
             this.employeeIDNumber = employeeIDNumber;
             this.jobCat = jobCat;
             this.hourlyPayRate = hourlyPayRate;
       } // end method
           * return  employee name
          public String getEmployeeName() {
             return employeeName;
          } // end method
           * return employee ID number
          public int getEmployeeIDNumber() {
             return employeeIDNumber;
       } // end method
           * return job Cat
          public String getJobCat() {
             return jobCat;
          } // end method
           * return hourly pay rate
          public double getHourlyPayRate() {
             return hourlyPayRate;
       } // end method
           * return annual salary
          public double getAnnualSalary() {
             return annualSalary;
       } // end method
              public void calculateAnnualSalary(){
                      int tempCount = numberOfScores;
                      int tempScore = totalScore;
                      if (employeeArray[2] == "Full") {
                         annualSalary = 40 * employeeArray[3];
                      else {
                         annualSalary = 20 * employeeArray[3];
                      } // end else
                   } // end method
       public static void main(String[] args) {
          Employee[] employeeArray = { new Employee("JohnSmith", 654789345, "Full", 25.60);
                                        new Employee("BobJones", 456983209, "Full", 28.20);
                                        new Employee("LarryAnders", 989876123, "Full", 35.30);
                                        new Employee("TomEstes", 237847360, "Full", 41.35);
                                           new Employee("MariaCosta", 115387243, "Part", 15.40);
                                           new Employee("JoeShowen", 223456732, "Full", 45.75);
                                           new Employee("JillRoberts", 574839280, "Part", 38.45);
                                           new Employee("MaryAble", 427836410, "Part", 25.90);
                                           new Employee("NancyAtkins", 349856232, "Full", 35.60);
                                           new Employee("MarkSeimens", 328978455, "Full", 48.50);
       } // end method
    } // end classDesign the Java class to represent an employee record. Pseudo code for this object is given below:
    Employee class definition
    Instance Variables
    Employee name
    Employee ID number
    Job category
    Hourly pay rate
    Annual salary
    Instance Methods
    getName
    getEmployeeId
    calculateAnnualSalary
    getAnnualSalary
    Use the String class for the employee name.
    Use an array of objects for the employee records.
    Calculate each employee's annual salary from the job category and hourly rate, using the following constant information:
    Job category: Full - 40 hours a week
    Part - 20 hours a week
    Assume 52 weeks in a year.
    Display each employee's name, id and annual salary.
    Calculate and display the company's total amount for employees salaries.
    Use the following information to populate the employee objects: Employee
    Name Employee Id Job Category Hourly Pay Rate
    John Smith 654789345 Full 25.60
    Bob Jones 456983209 Full 28.20
    Larry Anders 989876123 Full 35.30
    Tom Estes 237847360 Full 41.35
    Maria Costa 115387243 Part 15.40
    Joe Showen 223456732 Full 45.75
    Jill Roberts 574839280 Part 38.45
    Mary Able 427836410 Part 25.90
    Nancy Atkins 349856232 Full 35.60
    Mark Seimens 328978455 Full 48.50

    I think this is what people mean, but It still wont work. Can someone else figure it out?
    import java.io.*;
    public class EmployeeRecord {
    private String employeeName;
    private int employeeIDNumber;
    private String jobCat;
    private double hourlyPayRate;
    private double annualSalary;
    /* public constructor.
    public void EmployeeRecord (String employeeName, int employeeIDNumber, String jobCat, double hourlyPayRate)
    this.employeeName = employeeName;
    this.employeeIDNumber = employeeIDNumber;
    this.jobCat = jobCat;
    this.hourlyPayRate = hourlyPayRate;
    } // end method
    * return employee name
    public String getEmployeeName() {
    return employeeName;
    } // end method
    * return employee ID number
    public int getEmployeeIDNumber() {
    return employeeIDNumber;
    } // end method
    * return job Cat
    public String getJobCat() {
    return jobCat;
    } // end method
    * return hourly pay rate
    public double getHourlyPayRate() {
    return hourlyPayRate;
    } // end method
    * return annual salary
    public double getAnnualSalary() {
    return annualSalary;
    } // end method
         public void calculateAnnualSalary(){
              int tempCount = numberOfScores;
              int tempScore = totalScore;
              if (employeeArray[2] == "Full") {
              annualSalary = 40 * employeeArray[3];
              else {
              annualSalary = 20 * employeeArray[3];
              } // end else
              } // end method
    public static void main(String[] args) {
    EmployeeRecord[] employeeArray = { new EmployeeRecord("JohnSmith", 654789345, "Full", 25.60),
         new EmployeeRecord("BobJones", 456983209, "Full", 28.20),
         new EmployeeRecord("LarryAnders", 989876123, "Full", 35.30),
         new EmployeeRecord("TomEstes", 237847360, "Full", 41.35),
         new EmployeeRecord("MariaCosta", 115387243, "Part", 15.40),
         new EmployeeRecord("JoeShowen", 223456732, "Full", 45.75),
         new EmployeeRecord("JillRoberts", 574839280, "Part", 38.45),
         new EEmployeeRecord("MaryAble", 427836410, "Part", 25.90),
         new EmployeeRecord("NancyAtkins", 349856232, "Full", 35.60),
         new EmployeeRecord("MarkSeimens", 328978455, "Full", 48.50),
    } // end method
    } // end class

  • HT3775 I have an mpeg video from someone who is on PC.  My mac wont play it.  Says I need more software.  Can anyone help?

    I have an mpeg video from someone who is on PC.  My mac wont play it.  Says I need more software.  Can anyone help?

    VideoLAN - Download official VLC media player for Mac OS X

  • I tried to import photos and then canceled it during.  Now i can't see where it's importing and it wont let me exit iPhoto.  How do i cancel import and exit?

    I tried to import photos and then canceled it during.  Now i can't see where it's importing and it wont let me exit iPhoto.  How do i locate or cancel import and exit?  I haven't been able to update anything on my computer because of this.

  • I've lost my iPad, can I see where it last logged onto wifi?

    I've lost my iPad, can I see where it last logged onto wifi?

    Apple (and no one else) can not assist (with serial number or iCloud) in finding a lost or stolen iPad.
    Report to police along with serial number. Change all your passwords.
    These links may be helpful.
    How to Track and Report Stolen iPad
    http://www.ipadastic.com/tutorials/how-to-track-and-report-stolen-ipad
    Reporting a lost or stolen Apple product
    http://support.apple.com/kb/ht2526
    iCloud: Locate your device on a map
    http://support.apple.com/kb/PH2698
    Report Stolen iPad Tips and iPad Theft Prevention
    http://www.stolen-property.com/report-stolen-ipad.php
    How to recover a lost or stolen iPad
    http://ipadhelp.com/ipad-help/how-to-recover-a-lost-or-stolen-ipad/
    iCloud: Locate your device on a map
    http://support.apple.com/kb/PH2698
    How to Find a Stolen iPad
    http://www.ehow.com/how_7586429_stolen-ipad.html
    Apple Product Lost or Stolen
    http://sites.google.com/site/appleclubfhs/support/advice-and-articles/lost-or-st olen
    Oops! iForgot My New iPad On the Plane; Now What?
    http://online.wsj.com/article/SB10001424052702303459004577362194012634000.html
    If you don't know your lost/stolen iPad's serial number, use the instructions below. The S/N is also on the iPad's box.
    How to Find Your iPad Serial Number
    http://www.ipadastic.com/tutorials/how-to-find-your-ipad-serial-number
    iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number
    http://support.apple.com/kb/HT4061
     Cheers, Tom

  • I just got my ipod stolen, I requested to do a remote lock. I got the email that it got locked, meaning they connected to the internet. Can I see where they got connected?

    I just got my ipod stolen, I requested to do a remote lock. I got the email that it got locked, meaning they connected to the internet. Can I see where they got connected?

    Since the lock was successful, the dirtbag who stole it will not be able to do anything with the iPod until it is restored as new. Of course that means you will no longer be able to locate it.
    Its last location may be reported, if the WiFi location it used to connect was known.

  • HT201209 I have right to rent 2 movies for free. How can I see where is my free account or if I rent some movies Apple don´t take any pay?

    I have right to rent 2 movies for free. How can I see where is my free account or if I rent some movies Apple don´t take any pay anymore?

    Not all content types are available in all countries, Apple can only sell content where the copyright holder has granted them a license to do so, and is some cases what a country's laws allows them to - a list of what is available where is shown on this page : http://support.apple.com/kb/TS3599

  • I am trying to transfer pictures and music from my phone to my computer, and when I connect my phone, it says Device not installed correctly. I can not see my files or nothing. What can I do?

    I am trying to transfer pictures and music from my phone to my computer, and when I connect my phone, it says Device not installed correctly. I can not see my files or nothing. What can I do?

    Try downloading these http://www.samsung.com/us/support/owners/product/SCH-I535MBBVZW
    or searching for it here Verizon Wireless Cell Phones - Verizon Wireless Accessories | Samsung

Maybe you are looking for