IBooks has been removed from iPad 1.

I have the original ipad, and I've just done an update and it's lost iBooks as the new version has been updated to runs on iOS 7 and mine is iOS 5.1.1.
Over time I'm losing loads of apps as they upgrade to iOS7, but the loss of iBooks to me is very important.
So, can I restore the old version? (I know unlikely)
Or is there another app that can read all that I stored in iBooks most of which are PDF's
Thanks
SR

Try a reset: Simultaneoisly hold down the Home and On buttons until the iPad shuts off. Ignore the off slider should it appear. This will take about ten seconds or so. Once shut down is complete, restart the iPad using the On button. No guarantees this will solve it, but it won't hurt.

Similar Messages

  • Hi. the email application has been removed from my ipad. I don't have back up so how can I get it back?

    Hi. the email application has been removed from my ipad. I don't have back up so how can I get it back?

    It is not possible to remove the Mail app (or any other of the bundled apps) from the iPad. It's probably been moved to another Home screen or inadvertently placed in a folder. If you can't find it, you can reset the Home screens in the General -> Reset preferences.
    Regards.

  • HT201210 Hi, the App Store icon has been removed from my iPad even after synching and updating. Any suggestions on how to get it back to be able to update / purchase apps?

    Hi, the App Store icon has been removed from my iPad even after synching and updating. Any suggestions on how to get it back to be able to update / purchase apps?

    If you do not have, or remember, the passcode for Restrictions, the only option available to you is to reset the device to factory settings via itunes.

  • Goods receipt when PO creator has been removed from org structure ?

    Hello in my organisational structure PPOMA_BBP, i have 2 users, X and Y.
    X has created a PO in the SRM portal.However , X has been removed from the org. structure.
    Is it possible for Y to make the goods recept( that is , Y logs in the portal and makes the goods receipt) ?

    Hi
    Did you try to delete the user ? Did you get any error message?
    Note 1148837 - SRM user cannot be deleted
    When trying to delete an SRM user the system will check if there are still
    related SRM documents in the system. If there are active documents in the
    system the deletion is not possible. This is the correct system behaviour.
    But even if all related SRM documents are archived the deletion is
    sometimes not possible, because there are residual entries in table
    CRMD_PARTNER linked to this user.
    More Terms
    User crmd_partner residual entries deletion active document
    Cause and Prerequisites
    Solution
    The attached report PARTNER_SET_DELETE will display in simulation mode all
    residual entries in table crmd_partner with invalid item or header links
    and in non simulation mode it will delete the corresponding crmd_partner
    entries.
    Header Data
    Release Status: Released for Customer
    Released on: 10.03.2008 11:54:37
    Priority: Correction with low priority
    Category: Help for error analysis
    Main Component SRM-EBP-PD Procurement Document Methods
    Additional Components:
    SRM-EBP-ADM-USR SRM User Administration
    Valid Releases
    Software Component Release From
    Release
    To Release and Following
    SRM_SERVER 500 500 500
    SRM_SERVER 550 550 550
    Support Packages
    Support Packages Release Package Name
    SRM_SERVER 500 SAPKIBKS14
    SRM_SERVER 550 SAPKIBKT12
    Correction Instructions
    Ref note 550071 too..
    regards
    Muthu

  • When I back up my  I phone 5s or my ipad2 camera roll, contacts and documents does this save in the cloud all to view even if a photo has been removed from camera roll?

    When I back up my  I phone 5s or my ipad2 camera roll, contacts and documents does this save in the cloud all to view even if a photo has been removed from camera roll?

    iCloud- Photo Stream FAQ
    iCloud- Photo Stream limits
    iCloud- How to delete photos from Photo Stream
    iCloud- Photo Stream troubleshooting
    iCloud- Using and troubleshooting Shared Photo Streams
    iPhoto '11- Add, remove, and edit photos in a shared photo stream
    iPhoto '11- Create a shared photo stream
    There are obviously limits to what can be stored in Photo Stream and for how long.
    If she wants backups then she will need something like this: Seagate Wireless Plus.

  • HT203254 Why Mac Book Pro 17 Inch has been removed from the Apple Stores?

    while surfing the Apple web site, I found that Mac Book Pro 17 Inches has been removed from all the
    stores......is there any fault or some thing wrong has been detected in it?

    I heard a rumor that the 17" machines are all wearing cement shoes and at the bottom of the East River. Some guy named Soprano tipped me off.
    We aren't supposed to talk about it.

  • SL500, Product recovery function has been removed from this sytem

    I upgraded my SL500 from Vista to windows 7 OS several years ago and lately the OS has been acting weird (freezing, very slow at times) so I am thinking something is corrupted somewhere and want to restore it back to the manufacturers state.  However, when I try to do this through rescue and recovery, it tells me that the recovery function has been removed from the system.  I'm assuming that when I upgraded from Vista that R&R was no longer compatible so I installed version 4.5.  My laptop did not come with backup OS disks and was told that this was the way to restore the system back to the factory state.  How do I do this if I'm getting this message?

    http://www-307.ibm.com/pc/support/site.wss/document.do?sitestyle=lenovo&lndocid=MIGR-62978
    try this. If this don't work then you would to reinstall the OS using the T43 recovery media disk set. 
    Regards,
    Jin Li
    May this year, be the year of 'DO'!
    I am a volunteer, and not a paid staff of Lenovo or Microsoft

  • How to show a row has been "removed" from a table

    We maintain rows in a table with a version number which will determine the current set of accounts for a version. I need to be able to show the changes between the versions - when a row was ADDED, REMOVED or there was NO CHANGE. I can work out ADDED and NO_CHANGE without any problem, but I'm not sure how I can determine that a row has been REMOVED when it no longer exists in the next version.
    I have provided an example piece of SQL below:
    with w_acct1 as
    (select 'A1' acct, 0 vers from dual
    union all
    select 'A2' acct, 0 vers from dual
    union all
    select 'A3' acct, 0 vers from dual
    union all
    select 'A1' acct, 1 vers from dual
    union all
    select 'A2' acct, 1 vers from dual
    union all
    select 'A1' acct, 2 vers from dual
    union all
    select 'A4' acct, 2 vers from dual)
    select a.*,
           nvl(lead(acct) over (partition by acct order by vers desc),'NULL') ld,
           case when lead(acct) over (partition by acct order by vers desc) is null then
                   'ADDED'
               when lead(acct) over (partition by acct order by vers desc) = acct then
                   'NO_CHANGE'
               else
                   'REMOVED'
               end add_remove
    from w_acct1 a
    order by vers,acctWhich gives me the following result:
    ACCT VERS LD ADD_REMOVE
    A1     0     NULL     NEW
    A2     0     NULL     NEW
    A3     0     NULL     NEW
    A1     1     A1     NO_CHANGE
    A2     1     A2     NO_CHANGE
    A1     2     A1     NO_CHANGE
    A4     2     NULL     NEW
    The result I want is:
    ACCT VERS LD ADD_REMOVE
    A1     0     NULL     NEW
    A2     0     NULL     NEW
    A3     0     NULL     NEW
    A1     1     A1     NO_CHANGE
    A2     1     A2     NO_CHANGE
    A3     1     NULL     REMOVED
    A1     2     A1     NO_CHANGE
    A2     2     NULL     REMOVED
    A4     2     NULL     NEW
    Note the REMOVED rows associated with the version even though they don't exist in the dataset for that version number.
    Can this be done with analytic functions or some other cool Oracle feature I'm missing?
    Regards
    Richard

    You can't know about a row being removed unless you have a record of that row somewhere, either as a copy of your old data (see example below) or you've recorded the information using delete triggers etc.
    SQL> ed
    Wrote file afiedt.buf
      1  with old_data as (select 1 as id, 'A' as dta from dual union all
      2                     select 2, 'B' from dual union all
      3                     select 3, 'C' from dual)
      4      ,new_data as (select 1 as id, 'A' as dta from dual union all
      5                    select 3, 'X' from dual union all
      6                    select 4, 'Y' from dual)
      7  --
      8      ,ins_upd as (select * from new_data minus select * from old_data)
      9      ,del_upd as (select * from old_data minus select * from new_data)
    10      ,upd as (select id from ins_upd intersect select id from del_upd)
    11      ,ins as (select id from ins_upd minus select id from upd)
    12      ,del as (select id from del_upd minus select id from upd)
    13  --
    14  select 'Inserted' as action, null as old_id, null as old_dta, new_data.id as new_id, new_data.dta as new_dta
    15  from new_data join ins on (ins.id = new_data.id)
    16  union all
    17  select 'Updated', old_data.id, old_data.dta, new_data.id, new_data.dta
    18  from old_data join new_data on (old_data.id = new_data.id)
    19                join upd on (upd.id = new_data.id)
    20  union all
    21  select 'Deleted', old_data.id as old_id, old_data.dta as old_dta, null as new_id, null as new_dta
    22  from old_data join del on (del.id = old_data.id)
    23  union all
    24  select 'No Change' as action, new_data.id as old_id, new_data.dta as old_dta, new_data.id as new_id, new_data.dta as new_dta
    25  from new_data where id not in (select id from ins_upd union all
    26*                                select id from del_upd)
    SQL> /
    ACTION        OLD_ID O     NEW_ID N
    Inserted                        4 Y
    Updated            3 C          3 X
    Deleted            2 B
    No Change          1 A          1 A
    SQL>

  • How do I remove a song from my ipod that has been removed from itunes but still appears on my ipod

    I have an ipod touch and my problem is how to remove songs from it when they have been removed from itunes. After synching the songs still appear on the ipod. How can I fix this?

    Hi empty,
    Have you deleted the song from the iPod itself? Go to the songs list and swipe left on the song title. A "Delete" option should come up allowing you to directly delete the item from your iPod....
    Cheers,
    GB

  • The Product Recovery function has been removed from this system

    I get the following error when I try full system restore - "The Product Recovery function has been reomed from this system"?
    How can I fix this?

    welcome to the forum:
    Have you made a recovery media before this problem occured??? if you haven't you may need to call Lenovo and ask for a set of recovery disks, or just use your own XP/Vista OS you got from somewhere, and load it on your machine then enter you own serial number that come with your machine.
    Then proceed to download the various softwares and drivers applicable to your machine, the most important that you won't have is the predesktop area, if you think this is unacceptable then call Lenovo and obtain recovery media from them (a nominal handling and service charge of around 50 USD will be charged).
    http://www-307.ibm.com/pc/support/site.wss/product.do?doctypeind=9&template=%2Fproductselection%2Fla...
    fill in the detail and download away.

  • HT2905 The duplicate option has been removed from the latest version of Itunes. I have over 1000 duplicates and need to have a multiple duplicate removal option. How do i do that?

    I have over 1000 duplicates in both my files and in the Itunes library. The duplicate function appears to have been removed from teh latest version of Itunes. How do I identify and remove multiple duplicates from my library and my music file

    The show duplicates/show exact duplicates features have been left out of iTunes 11.0. Rumor suggests they will be restored in the next build. In the meantime I have written two Windows scripts to make playlists of Duplicates and Exact Duplicates, either from a selection of tracks or the entire library. Note that, as with the iTunes feature, this list makes no distinction between "originals" and "dupes", you have to decide which is which.
    There is also my DeDuper script for automatically removing duplicate copies but keeping one remaining copy of each set. This can preserve ratings, play counts, playlist membership, etc. which are lost in a manual clean up. Please take note of the warning to backup your library before deduping. See this thread for background on deduping and the script.
    If you want to manually remove duplicate tracks use shift-delete to remove selected tracks from the library as well as the playlist. Keep one of each repeated group of files and don't send the others to the recycle bin unless you are sure that there are multiple files on the disc as opposed to multiple entries to the same file. Same advice to backup applies.
    tt2

  • How do I delete all or multiple synced apps from iTunes where the app has already been removed from iPad?

    I have recently purchased the latest iPad and been trying lots of apps.  These apps are synced with iTunes on a regular basis.  I want to delete synced apps from my iTunes backup that I have removed from my iPad.
    I am aware of a manual way of removing apps from the iTunes backup but it is far too painful and cumbersome.  You have to select the iPad under devices, click the apps tab up the top, and then see which items are not ticked (which runs very slow I might add, but it is a big list).  After noting them down, I then visit the apps section under library on the left, highlight all the unwanted apps, right click and delete.
    Unless there is some special way of doing this that I am un aware of, it would be really helpful if the libary application view had a column which informed me which ones were still on my iPad.  I could then sort by that column, and then delete all the removed apps.

    Yes, delete all the apps currently in iTunes, then transfer all the apps currently on the iPad back into iTunes. Of course it will take some time to sync the apps back into iTunes, but it satisfies your desire to remove all apps from iTunes that are not on your iPad without the need to laboriously note what is and is not there. In fact as a bonus after removing all the apps from iTunes you could open the ..\iTunes Media\Mobile Applications folder and delete any remaining orphaned files that might still be there, before you transfer purchases.
    tt2

  • Photoshop CC 2014 downloads when programme has been removed from computer.

    I had downloaded the Photoshop CC2014, Lightroom 5 and Bridge on trials but owing to a computer malfunction had to remove them.
    I wish to again download the trials but when the CC Installer has been run it tells me that Photoshop CC2014 is "up to date" yet it is no longer on the computer. Lightroom and Bridge would be able to be installed.
    Any suggestions as to how I can overcome this Photoshop problem would be appreciated
    Thanks

    I would like to thank those who helped with this problem.
    I have resolved the various issues. .I am using Windows 8.1 and tried various "Restore" points which helped but did not cure the problem. I downloaded and used the Adobe Creative Cloud clean-up tool which certainly helped. I then used an older version (todays version just would not run) of the Creative Cloud installer in the end and I was then able to download and install Photoshop. For some reason Lightroom 5 did not work properly but as this was listed in "Programs and Features" I was able to uninstall it; the Creative Cloud installer then enabled me to download that programme properly. 

  • Mp_statusreceiver directory over 50GB - MP has been removed from this server, but not completely?

    I had a server run out of disk space today.  Digging in, the ccm mp_statusreceiver directory had 650,000 files in it, over 50GB in size.  From what I understand, I think that folder is queuing up messages to go from a management point to the primary
    server, but the server in question had it's management point removed a couple of weeks ago.  It seems like it's still gathering data to send, but not sending it to the primary server, and filling up the drive.
    If that's the case, then it seems the management point didn't actually get removed from the server, even though it's no longer listed in the config manager console as a management point.  (The server still has a DP on it.)
    How can I clean up whatever remnants of the MP are installed on this server?

    Hi,
    Yes, you need a path for mp.msi. I saw that is located at C:\Program Files\Microsoft Configuration Manager\bin\X64.
    Best Regards,
    Joyce
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • N95 V31.0.014 Has been removed from NSU.

    After updating my Phone yesterday I found out today that nokia have removed V31.0.014 and reverted back to V30.0.015. I know I cannot go back to V30 now. I'll just have to wait for it to be re-released.
    This post is more to let people know.
    N900 (V3.2010.02-8.203.1 / Rx-51)
    N97 (V21.0.102 / RM-505)

    This has been covered in the main thread on 2.0.1.358 here:
    http://supportforums.blackberry.com/t5/BlackBerry-​PlayBook/PlayBook-OS-v2-0-1-358-now-available/m-p/​...
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

Maybe you are looking for

  • Mini displayPort to VGA wont detect DELL E228WFP

    i bought a brand new mini display to VGA adapter for my late 2008 macbook pro 2.53 connecting to dell e228wfp wont do a thing. just wont work, also not on a sharp prjector. i tried booting with the lid closed and i get the grey startup screen on my d

  • Plugin w/IIS and 'No more connections in the pool' msg in logs

    I am using the proxy plugin with IIS 5.0. Its fronts 2 weblogic instances that require sticky as there is session information that is not replicated (too large to be replicated). I am seeing occasions when the request is suddently sent to the wrong s

  • I cannot export a slideshow at 24fps from Aperture 3?

    I import clips to Aperture 3 filmed at 24fps on a Canon EOS 60D and when I try to use the custom settings to export at 24fps, it changes it to 30-35fps. The custom settings are useless in Aperture 3 as it still does whatever it wants. The only way I

  • Saving trim, bleed and registry marks

    I am trying to set up a series of calendar pages for professional printing. The printer has requested I forward in 'eps' format with trim,bleed and registry marks. I have followed these instructions to do so. http://help.adobe.com/en_US/photoshop/cs/

  • Windows 8 Hot Corners and Edges not working.

    All my hot corners and edges have stopped working since the windows 8.1 update. Not really affecting the pc performance but it was a useful feature I miss. Don't suppose anyone can help? (checked the pc settings as well, and the features are enabled)