Common library

How can we use a common iphoto library for all of our family Macs.
We have 5 various Macs and I would like to have a central way to store all of our photos. I tried setting up an iphoto library on our family iMac and sharing the photos but this doesn't really do the trick.
Is there away to share an iphoto library on a common hard drive that is on our network?
Thanks

Welcome to the Apple user discussion forums
Yes you can - See Old Toad's post - http://discussions.apple.com/thread.jspa?messageID=7456598&#7456598 - for more information
Or just turn on sharing on all Macs - then any Mac can see the iPhoto library on any other Mac that currently has iPhoto running with sharing on
LN

Similar Messages

  • How to add a link to an interactive svg using edge commons library

    Hi,
    I've been playing around with this wonderful Edge Commons interactive SVG tutorial
    My question is : How to add an external link "url" to an interactive svg using edge commons library ?
    Edge commons example file :
    http://edgedocks.com/market/interactive-svg-example-project-edge-commons
    Edge commons  video tutorial :
    http://www.youtube.com/watch?v=4UEB6gaLKuw
    I have adapted this tutorial to an interactive map, http://madudesign.com/works/france/ every thing is going fine until I couldn't figure out to link a particular url on each part of the region of the map.
    I managed to figure out how to change colors on the different parts of the map on mouse over and mouse out but I'm not quite comfortable with JavaScript since I don't use it every day...
    I have tryed to link to an url by passing it on the illustrator layer and via the onclick event (event.target.id) to a simple url
    http://redpen.io/6svh5u
    then working in Edge and publishing on the browser the link returns me a weird url line by replacing the original url slashes "//" by "_x2F_" and I must have misunderstood the proper JavaScript line to open that link from there...
    for example on my actual exemple "http://madudesign.com/works/france/"
    the first top region of France is normally a link to "http://www.google.com" and it returns "http:_x2F__x2F_www.google.com" plus the complete path to the file too...
    I don't know how to get around this trick and have back for each region a particular clean link from the event target id of the svg...
    thank-you for any help
    matt
    link to my edge animate file if needed :
    http://madudesign.com/works/france/carte_de_france.zip

    I got an answer from the Edge Commons dream team and I am very grateful to them :
    "The problem that you bumped into was that you hadn't included a valid URL so far. We weren't sure if you wanted to include them within the SVG file or if you wanted to implement the functionality within Edge Animate. We came up with a solution for the latter one, with a simple switch in the js code:
    You have to type in the appropriate URL of course for all the cases."
    I have to share the final result:
    http://www.madudesign.com/works/france/france_map/
    And the zipped project file:
    http://www.madudesign.com/works/france/france_map.zip
    Thanks to Daniel & Simon
    Matt

  • How do I rebuild a common library used by both iPhoto and Aperture?

    I'm using a common library for both iPhoto and Aperture—latest versions of each and Mavericks. I'm finding photos that are in the library that seem to have fallen out of their events or projects. When I open those events or projects, the folders are empty, however the photos are still in the database. How do I rebuild this library so as to recover my original organization?

    it will not matter, if you rebuild in iPhoto or Aperture.
    You rebuild the library by launching either Aperture or iPhoto while holding down the key combination⌥⌘  (option-command)  and double-clicking  the Aperture or iPhoto icon. Keep holding down the keys, until you are seeing the Library First Aid panel.  Select to Rebuild the database.
    Back up your library before rebuilding.
    When I open those events or projects, the folders are empty, however the photos are still in the database. How do I rebuild this library so as to recover my original organization?
    Where are you seeing the photos, that are missing from the projects, but are still in the database?
    Rebuilding will collect photos, that have lost the connection to the edited versions, and show them in a "Recovered Project".  It will not restore them to the original  projects, if it is not clear, what where the originals belong to.
    Have you checked, if you have filters set, that are hiding the photos? Check the search fields in the browser and the Info panel, if they are cleared and set to "Show All".

  • Installing a common library

    Hello,
    i am trying to build a common library and make it available on a smart card.
    I just have one class and generated a exp file. My class is not an applet but a plain java object.
    Exp file generation with the JCDK 2.2.2 converter script worked perfectly.
    Next step is the inst5allation on my card. Therefore i am using gpshell.
    Installing fails with error 0x6A80.
    Library class source:
    package org.emetis.javacard.filesystem;
    public class JCFile
      private short m_fileId=0x0a;
      public JCFile() {
        m_fileId=0x0a;
      public short getFileId() {
        return m_fileId;
    GPShell script:
    mode_211
    enable_trace
    establish_context
    card_connect
    select -AID a000000003000000
    open_sc -security 1 -keyind 0 -keyver 0 -mac_key 404142434445464748494a4b4c4d4e4e -enc_key 404142434445464748494a4b4c4d4e4f
    delete -AID 0102030401
    install_for_load -pkgAID 0102030401 -nvCodeLimit 16000 -sdAID a000000003000000
    load -file outputs/org/emetis/javacard/filesystem/javacard/filesystem.cap
    card_disconnect
    release_context
    The command load -file failed. Output:
    load -file outputs/org/emetis/javacard/filesystem/javacard/filesystem.cap
    Command --> 80E88000D6C481D08200D001000FDECAFFED010202000105010203040102001F000F001F0000000B000A000C0017000A00080007003300000000000001000004000B01000107A000000062000106000C00800001FF00010100000012070017000210188C000118100A880018100A88007A0110AE007808000A000000000000000000000A00070100000001000105000A0002020000000680000009000800030B05050001050B00330100010000000001000200020000008003008100010008000F000000000101001200060003000000000002000600080130011000
    Wrapped command --> 84E88000DEC481D08200D001000FDECAFFED010202000105010203040102001F000F001F0000000B000A000C0017000A00080007003300000000000001000004000B01000107A000000062000106000C00800001FF00010100000012070017000210188C000118100A880018100A88007A0110AE007808000A000000000000000000000A00070100000001000105000A0002020000000680000009000800030B05050001050B00330100010000000001000200020000008003008100010008000F00000000010100120006000300000000000200060008013001107324BBAB85EF73CF00
    Response <-- 6A80
    load() returns 0x80206A80 (6A80: Wrong data / Incorrect values in command data.)
    Any idea what i am doing wrong?
    Kind regards
    Harri

    using the EXACT same build and load tools, did you manage to load a normal applet?
    One idea is that your card does not support jc 2.2.2 but rather an older version of jc.
    also, please remove the -nvcodelimit on your command line, it's only used to ensure that you're not uploading too much data, it's not required at all, and may cause unexpected additional bugs.
    Also have a try with the latest version of gpshell, I have a doubt about the format of the data sent in the load command.
    The only changes made by the wrap operation is to change Lc and append a MAC, but when I compare the buffers, I see:
    Command --> 80E8 8000 D6 C4_81D0_8200D001000FDECAFFED010202000105010203040102001F000F001F0000000B000A000C0017000A00080007003300000000000001000004000B01000107A000000062000106000C00800001FF00010100000012070017000210188C000118100A880018100A88007A0110AE007808000A000000000000000000000A00070100000001000105000A0002020000000680000009000800030B05050001050B00330100010000000001000200020000008003008100010008000F0000000001010012000600030000000000020006000801300110 00
    Wrapped command --> 84E8 8000 DE C4_81D0_8200D001000FDECAFFED010202000105010203040102001F000F001F0000000B000A000C0017000A00080007003300000000000001000004000B01000107A000000062000106000C00800001FF00010100000012070017000210188C000118100A880018100A88007A0110AE007808000A000000000000000000000A00070100000001000105000A0002020000000680000009000800030B05050001050B00330100010000000001000200020000008003008100010008000F0000000001010012000600030000000000020006000801300110 73 24BBAB85EF73CF00
    the last 8 bytes are the SCP MAC, but what is this last 0x73 that replaced a final zero? That's why the data is incorrect. My guess is that in your version of gpshell, the MAC is added at the wrong offset (one byte too left).
    Please give more details about where you got this gpshell, and have a try with another version.
    BR

  • Two libraries needing different versions of a common library

    I am currently writing an application that utilizes two libraries that depend on a third common library. However, each of the two libraries requires a different version of the third library. Is there any way this can be done?
    I have done some research into writing custom class loaders but I haven't been able to find anything useful in this instance. Any help would be appreciated. Thanks.

    It's not just a feature missing that's the problem.
    If I use one version of the library, one part of the
    program simply doesn't work. If I use the other,
    then the other part of the program refuses to work.The problem you should be trying to solve is why the two libraries won't work with the same (latest) version of the shared library. It indicates that one of them is relying on buggy behavior, and should be fixed.
    Do you have any access to the libraries' source code? You'd be far better off trying to figure out what changed, and how to fix the piece that relied on its old behavior, rather than any sort of hack (and changing package structure to work around a bug is definitely a hack, perhaps moreso than using a custom classloader).
    Finally, what does "doesn't work" mean? Are you unable to compile? Are you able to compile but get incorrect results? Does the program crash?

  • Symbols/WinXP Common Library files in Fireworks CS3

    I went into Common Library and into the WinXP to pick a few
    symbols of a textfield and buttons, because I was going to layout a
    design with form. But when I double click on it and edit the symbol
    and make it change and click "done" it wont update the one on the
    page. And besides I shouldnt have to edit the instance only a copy
    of it. I'm sure symbols work like they do in Flash, so it wouldnt
    be a good idea to edit the master anyway, even though its
    associated with my PNG file. But even when I edit it, it wont show
    the changes.

    Fr0ntier wrote:
    > I went into Common Library and into the WinXP to pick a
    few symbols of a
    > textfield and buttons, because I was going to layout a
    design with form. But
    > when I double click on it and edit the symbol and make
    it change and click
    > "done" it wont update the one on the page. And besides I
    shouldnt have to edit
    > the instance only a copy of it. I'm sure symbols work
    like they do in Flash, so
    > it wouldnt be a good idea to edit the master anyway,
    even though its associated
    > with my PNG file. But even when I edit it, it wont show
    the changes.
    >
    What are you trying to edit? Most of the editing is done via
    the Symbol
    Properties panel. If you are trying to scale it, you do not
    need to
    double click, just use the Transform tool.
    Jim Babbage - .:Community MX:. & .:Adobe Community
    Expert:.
    http://www.communityMX.com/
    CommunityMX - Free Resources:
    http://www.communitymx.com/free.cfm
    .:Adobe Community Expert for Fireworks:.
    Adobe Community Expert
    http://tinyurl.com/2a7dyp
    See my work on Flickr
    http://www.flickr.com/photos/jim_babbage/

  • Can I move the common library or use a symbolic link so that Dropbox can sync it?

    A team of us are now using Fireworks for interaction design, and need to synchronise the common library so that the elements we use are up to date.
    1.  Is the common library the correct method? 
    2. we use dropbox, and I don't think I can tell dropbox to synchronise just the common library folder (as an isolated path from the rest of the dropbox tree...) - so, is there a trick using a symbolic link we could use so that dropbox thinks the common library is actually in it's own tree?  (OSX is BSD afterall...)
    We're on Mac OSX 10.7.X, running FW CS6 and using the latest dropbox for Mac.
    I look forward to hearing some ideas.  The question of teams using fireworks has been raised several times since 2009, and Adobe still hasn't got a solution.  The mind boggles as to whether or not Adobe takes Fireworks seriously - I hope they do...
    All the best,
    Dylan

    Thanks groove25.
    I did find that it is possible to use symbolic links and Dropbox to synchronise the common library across computers.  It does come with its idiosynchrasies though (excuse thepun).
    I'm going to have a go with what this thread recommends:
    http://hints.macworld.com/article.php?story=20120803093247391
    and leichter's explanation and walkthrough (nested in the thread) looks very helpful:
    There's a subtle point that, once you understand it, makes symlinks much more useful in Dropbox.
    The whole design of symlinks in Unix tries to make them invisible to programs that don't specifically try to manipulate them. So suppose 'sym' is a symlink to 'file'. If a program opens 'sym' for read, it actually gets the data in 'file'. If it appends to 'sym', it actually appends to 'file'. However, if it deletes 'sym', what disappears is the link 'sym', not the file 'file'. Opening 'sym' for writing as a new file - not appending to it - is equivalent to deleting the old file and creating a new one: It leaves 'file' unchanged and creates an entirely new file named 'sym' which no longer has any connection with 'file'.
    A link to a directory follows the same rules. Looking a file up using the symlink as the name really searches the linked-to directory. Creating a file through the symlink is like appending: It creates the entry in the linked directory. And so on.
    A program that wishes to do something special - like change where a symlink points - has to be aware that it's dealing with a symlink and use special OS calls for that exact purpose.
    Dropbox works with symlinks *but it doesn't do anything special with them*. So suppose you put that 'sym' linked to 'file' in your Dropbox directory. Dropbox comes along, finds a new file, and sends it to its servers. What does it send? Well, first the name 'sym', and then the "contents" - i.e., what it gets from reading 'sym' which is exactly the contents of 'file'. On the server, and then later on other clients, what you will find is a normal file named 'sym' with the contents of 'file'. *There is no connection with a file named 'file'.* If you change 'file' on the system where 'sym' links to it, the changes propagate. If you change it anywhere else, the changes propagate back - but Dropbox doesn't modify files in place, it writes entire new ones. So the effect back on the original system is to break the link and write a new file named 'sym' with the latest contents - but no connection to 'file'.
    I know of no way to keep a link to a *file* as a symlink across updates. But the story is different for *directories*. Unlike ordinary files, directories are normally updated in place (unless you explicit delete and recreate them). So you can do the following:
    1. Create directory 'dir' anywhere you like.
    2. Create symlink 'dirlink' pointing to 'dir' in your Dropbox folder.
    3. Wait for 'dirlink' to appear on all other clients. It will appear as an ordinary directory, not as a symlink. If the original 'dir' had files in it, those will now appear as files on the clients, too.
    4. On each client, rename 'dirlink' to 'dir' *in the place you want it to appear in your directory tree*. (Renaming only works if you are staying not the same device. Otherwise, you need to create 'dir' and move all the files.) This need not be the same on all clients, though it's easier to keep track of if it is.
    5. On each client, create symlink 'dirlink' pointing to 'dir'.
    Now you have a 'dirlink' on each client, which will to Dropbox look like a subdirectory - and it will sync all the files in that "subdirectory". Changes made on any client to any file in 'dir' aka 'dirlink' will be synced to all the other clients as well. Files created or deleted in 'dir' will be created/deleted on every other client as well.
    It's probably easiest to do all this while there are no files in 'dir'. Otherwise, Dropbox sometimes repeatedly syncs the same files until everything eventually settles down.
    The limitations here:
    - Some platforms (e.g., iOS) don't support symlinks. To them, 'dirlink' will just be an ordinary subdirectory.
    - Any time you add a new client, you have to go through the process for that client. Certain reset operations in Dropbox - anything that requires re-syncing every file in the Dropbox folder on a client - will require the same, because Dropbox doesn't know how to *create* symlinks - it'll just create an ordinary subdirectories.
    I've used this configuration for a couple of years. You have to watch out for the reset situations and such, but generally once you have it set up, it "just works".
    -- Jerry
    All the best,
    Dylan

  • Could not open the ICU common library

    Dear all,
    I’ve done heterogeneous OS migration on our Solution Manager system release ver. 7.0 Ehp1, from HP-UX 11.31 to RedHat 6.5. Then we need to perform the system upgrade to version 7.1
    Kernel version is SAP Kernel :  720_EXT_REL.
    Database Client Library : OCI_112, 11.2.0.3.0, V1, default.
    created in  :  Linux GNU SLES-11 x86_64 cc4.3.4 use-pr121116
    ICU Version : 4.0.1 Unicode Version 5.1
    Everything is working fine. EarlyWatch reports are prepared. But when I checked the SLD http://saptst:54000/sld I’ve got the error “Internet
    Explorer cannot display the webpage”. I also checked with IP address and it’s the same error.
    With Chrome browser the error is “Oops! Google Chrome could not connect to saptst:54000”
    I checked the SLDCHECK and got:
    Exchange Infrastructure: Test LCR Connection
    Properties of RFC destination SAPSLDAPI RFC host:
    %%RFCSERVER%%
    program id: SAPSLDAPI_SMP gateway host: saptst
    gateway service: sapgw40
    Testing the RFC connection to
    the SLD java client...
    RFC ping was successful
    SLD server access
    settings:
    host name: saptst
    port number: 54000
    user : SLDAPIUSER
    Use transaction SLDAPICUST if you wish to maintain the SLD server access data
    Launching the SLD GUI in a separate browser window...
    => Verify in the browser GUI that the SLD is in a healthy running state!
    Calling function
    LCR_LIST_BUSINESS_SYSTEMS
    Retrieving data from the SLD server...
    Function call returned exception code 3
    => Check whether the SLD is running!
    Summary: Connection to SLD does not work
    => Check SLD function and configurations
    SAPSLDAPI RFC is working fine.
    But on the putty connection with the server I’ve got “Unknown function module: Function SLDJAVA_ACCESSOR_REQUEST not found”.
    I’ve checked the std_server0.out file in the work directory:
    Could not open the ICU common library. The following files must be in the path described by the environment variable
    "LD_LIBRARY_PATH":
    libicuuc.so.30, libicudata.so.30, libicui18n.so.30
    [nlsui0_mt.c 1620] pid = 3079
    LD_LIBRARY_PATH is well set in environment of the smpadm user.
    The RFC libraries in the /sapmnt/SMP/exe, /usr/sap/SMP/SYS/exe/run, /usr/sap/SMP/SCS01/exe
    and also in /usr/sap/SMP/DVEBMG40/exe are
    libicudata.so.34
    libicudata.so.40
    libicudecnumber.so
    libicui18n.so.34
    libicui18n.so.40
    libicuuc.so.34
    libicuuc.so.40
    There is no libicuuc.so.30, libicudata.so.30, libicui18n.so.30.
    I’ve also downloaded the last kernel patches, unpacked and checked the RFC libraries, but there were no libicuuc.so.30… with number 30.
    Why the system is searching for these libraries with 30, but not 34 or 40?
    Can you please help how to solve the error “Could not open the ICU common library”?
    Is this the problem why I can’t open the browser http://saptst:54000/sld and I got the error “Internet Explorer cannot display the webpage”?
    Thank you in advance.
    Best regards,
    Ruzica

    Dear all,
    I've tried to deployed Java with:
    SAPJEE10P_5-10003469.SCA
    SAPJEECOR10P_19-10003466.SCA
    SAPJTECHF10P_21-10003468.SCA,
    but the file for the SAPJTECHS, SAPJTECHS10P_26-10003467.SCA finished with the
    error again for "Could not open the ICU common library.
    The following files must be in the path described by
    the environment variable
    "LD_LIBRARY_PATH":
    libicuuc.so.30, libicudata.so.30, libicui18n.so.30
    The deployment failed with the following error:
    Starting Deployment of SQLTrace
    The SDM will now start SAP Web AS Java instance processes in order to perform online
    deployment. After that the deployment will proceed.
    It could take some time, so please be patient.
    Aborted:
    development component 'SQLTrace'/'sap.com'/'SAP AG'/'7.0010.20061103144726.0000'/'0', grouped by :SDM could not start the J2EE cluster on the host saptst! The online deployment is terminated. A timeout occured during the cluster running verification. (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineJ2EE620OnlineDeployerImpl.performAction(DeploymentActionTypes).STARTUP_CLUSTER)
    Deployment of SQLTrace finished with Error (Duration 1801206 ms)
    Starting Deployment of SAP_JTECHS
    Aborted:
    software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'1000.7.00.10.26.20121031152700''/'0':Failed deployment of SDAs:development
    component 'SQLTrace'/'sap.com'/'SAP AG'/'7.0010.20061103144726.0000'/'0' :
    aborted
    Please, look at error logs above for more information!
    Deployment of SAP_JTECHS finished with Error (Duration 918 ms)
    I've tried:
    #cd /usr/sap/SMP/DVEBMGS40/SDM/program/
    #./StopServer.sh
    #./sdm.sh jstartup mode=standalone
    #./sdm.sh j2eeenginestartstop timeoutmillisec=1800000
    #./sdm.sh jstartup mode=integrated
    #./StartServer.sh
    But still the error "SDM could not start the J2EE cluster on the host saptst" appeared again.
    Can you please advice what should I do to deploy the SAPJTECHS10P_26-10003467.SCA ?
    Thank you in advance,
    BR,
    Ruzica

  • Vista Fireworks CS3: Missing Common Library

    Hi; when I open Common Library, it is blank. Some kind of path problem, I think.  Anyone else had this problem?

    joshuamkaufman wrote:
    > I just realized that the common library in my
    installation of Fireworks CS3 is
    > empty. I can open the common library but nothing appears
    in it. As far I
    > understand, I should be seeing a variety of controls and
    interface elements
    > here. Does anyone know how I can restore it?
    >
    > Thanks!
    >
    You need to have a file open first.
    Jim Babbage - .:Community MX:. & .:Adobe Community
    Expert:.
    http://www.communityMX.com/
    CommunityMX - Free Resources:
    http://www.communitymx.com/free.cfm
    .:Adobe Community Expert for Fireworks:.
    Adobe Community Expert
    http://tinyurl.com/2a7dyp
    See my work on Flickr
    http://www.flickr.com/photos/jim_babbage/

  • License to use artwork that comes in the Common Library?

    Anyone know what the license is to use artwork that comes with Fireworks in the Common Library? What restrictions are there for its use?
    Thanks.

    There are no restrictions for use as far as I know of, if you're using the artwork in a project.

  • I am getting a "Internal error occurred" message when I try to drag and drop common library items on to my canvas.

    Hi,
    I am getting a "Internal error occurred" message when I try to drag and drop common library items on to my canvas.
    I have noticed that there are a number of these error messages and tried one solution of renaming a couple of files, I tried this and no joy.
    Has any one go a solution for this before I purchase Fireworks please?
    Kind regards,
    Dave G

    I can no longer get Firework CS6 to run - The program loads but without any toolbars/properties etc.  It just has an 'AN INTERNAL ERROR OCCURRED' message that cannot be dismissed.  The only way to close the program is via Task Manager (this is on a Window 8 PC).  I have uninstalled the program, rebooted the PC and re-installed (several times) but it has not resolved the problem.
    Fireworks is part of my Creative Cloud subscription and when reporting this via the live chat I was given the telephone number for Seagate Drives ??
    Anybody got a solution?
    Or, does anybody know how to open native Fireworks CS6 png files in Photoshop *but* with all the Fireworks layers preserved.
    Think I'll also post this as a new topic as the problem is slightly different to SirBasher's issue.

  • Could not open the ICU common library or RFC DLL not found

    Hello all,
    I'm using SAP .NET Connector for integration between .NET application and SAP System. (SAP ERP2005 (SAP ECC 6.0) SP11 installed on Microsoft Windows Server 2003 R2 Standard x64 Edition; I use MS WinXP SP3 and SAP .NET Connector2.0, SAPGUI 7.1)
    One of the following errors appears when I try to call document checkin/checkout BAPI (it depends on which set of ICU libraries we use):
    u2022      u201CCould not open the ICU common libraryu201D in case when I use ICU dll from our basis first set
    Could not open the ICU common library.
    The following files must be in the path described by
    the environment variable "PATH":
    icuuc30.dll, icudt30.dll, icuin30.dll
    u2022      u201CRFC DLL not foundu201D in case when I use ICU dll from from http://icu-project.org/
    Please, help if you know how to solve this issue.
    Regards,
    Alex
    Edited by: Alexey120 on Feb 5, 2010 11:20 AM

    I solved the problem with ICU dll by means of reinstall SAPGUI 7.1. But now I call BAPI checkin/checkout and don't get any result. Can anybody to provide an C# example how call BAPI like checkin/checkout?

  • Windows Controls for Common Library

    Hi, I am looking for some standard windows controls for the
    common library. Anybody have any or know wher ei can find them.
    right now I have to make them myself. If Adobe could provide them
    FW would really stick it to Visio.

    Hmm, are you using Fireworks CS3? We ship with out of the box
    mac and winxp controls that are interactive via the new symbol
    properties panel. There's also an extension on the Fireworks
    exchange that installs autoshapes that are controls for windows. If
    you are using Fw8 that would be the best bet.

  • Compiling project with a common library

    In my workspace I have Flex a project and a common library. when I run the project from the Builder both the project and a common library get compiled, but if I export the Release Build then the common library is not compiled, so I have to run it from the Builder first. Very inconvenient. Can that be changed?
    Thanks

    Hi,
    It's very weird. How did you added this commonm library to your Flex project?
    Have you done it through this option in Flash Builder:  "Flex Buid Path >Add Project" ?
    * I believe you have done it because you said the common library is getting compiled every time you are runnig the project.
    Best Regards,
    Pablo Souza

  • Setting up Apple ID's to share a common library

    I have a single Apple ID that I've always had as our single ID for me and my two daughters.  When they were young, they didn't need one and as they became teens, having a single ID where I new the password allowed me to control their purchases so they didn't download (buy) lots of songs/apps on my credit card.  We've also shared a common library across our various devices.
    This isn't working anymore.  It's too restrictive and with iCloud we're getting all sorts of strange sync issues. 
    What I would like to do is setup an Apple ID for each of my daughter's, still share the library and have control over what they can spend since it would still be on my credit card.  I have no idea how to go about doing this.  Would love any suggestions.
    Thanks.

    Yes, you can still share that Apple ID for all of you for the itunes store. You should make seperate Apple IDs for the purpose of the cloud. Just make sure in Settings > iTunes & App Stores that the old Apple ID is there and in Settings > iCloud, each daughter has their new account (Apple ID) present.

  • Change path for common library

    I want to change the location (path) for the common library
    so i can use it with my team on our server.
    I tried it in the registry (don't work)

    Assuming Messaging 5.2.
    The mail.log_* is written by the MTA, which really doesn't look at configutil settings much. Better to look at:
    http://docs.sun.com/source/816-6020-10/mta_conf.htm#1071375
    and put your path into the imta_taylor file

Maybe you are looking for

  • How can i transfer my keynote to Microsoft power point without compromising the narration?

    After exporting a presentation to Microsoft the narration doesnt carry over.

  • UMELoginException: PASSWORD_EXPIRED

    Dear experts, I am facing problem while log-in to the Visual admin using the user "administrator" in our protal inastalled system. Following is the error: #1.5^H#00151778AF8C005B0000011000003CD20004730A14D9C060#1252387043523#com.sap.engine.services.s

  • Auto Lenses Hiccup?

    I'm currently running 6.1 because I wanted to have the ability to apply lense correction in camera raw. I've gone through a number of images with both of my Nikon D3's where I click the enable lense correction button and then have to choose the drop

  • Implementation of SSL with Oracle Applications

    Hello We have 2 distinct AIX machines. On one of it installed single-node OA installation. Also the second one has 2-node installation. As I understand , for Forms Server and Apache we must use 2 different certificates (note 123718.1) I'm little bit

  • J1i5 gives number assignment error for object  j_1irg1

    Hi Friends, while executng j1i5 for update of RG1 register , system gives error "Number  not assigned for object j_1irg1" whearas it is already maintained for the specified excise group(30 in my case & doc year 2008) via snro. Friends, Pl let me know