Problems with shared albums

I had problem with some albums shared from other person: I did see the name of the album, but I didn't see photos.
So I decided to turn off and on the option "Condivisione foto" intending to reset the sharing system, but I lost all shared albums except "Streaming photo"
What can I do to see again my shared albums (some shared by me and some shared by others)?
OS X Yosemite 10.10.1 - iPhoto 9.6
Thanks

According to the hover over on the double arrow it indicates "Backup/Synchronization Pending".  I rebooted the machine and the photoshop startup screen got stuck on the logging in photoshop.com.  I launched Elements organizer and went to preferences and reset my userid and password (they haven't changed I just re-typed them).  It then logged in and the sync started to work.  So it was apparently not logged into photoshop.com?  It would be better if it told me that it was having problems accessing photoshop.com or something like that.

Similar Messages

  • My host name changes every few days, since Xmas adding a macbook its changed 6 times. Do I need to stop this? Does it cause problems with sharing between the iMac and macbook?

    my host name changes every few days, since Xmas adding a macbook its changed 6 times. Do I need to stop this? Does it cause problems with sharing between the iMac and macbook?

    There are several possible causes for this problem.
    1. Two (or more) computers on the local network have the same Bonjour name, such as "X's-MacBook-Pro.local".
    2. You have two simultaneous connections to the same local network: probably Ethernet and Wi-Fi. If applicable, disconnect the Ethernet cable or turn off Wi-Fi.
    3. A Mac wakes from sleep due to network traffic. This is due to a bug in OS X that may only affect some models.
    4. A device that gets its network address from the router wakes from sleep, and the address it was using before has been assigned to another device.
    5. A third-party wireless router has incompatible settings or firmware. In that case, refer to the manufacturer or ISP for support. Restarting the router may help, temporarily.
    6. See also this support article.
    Rename the computer in the Sharing preference pane.

  • TPC 2012 - Problems with shared variable

    Hi,
    I tried to program simmilar thing to this one http://zone.ni.com/devzone/cda/tut/p/id/5548 on TPC 2012. But it doesn't work.I can see that both programs on my laptop and TPC are working(I've added an additional counter with display), but I cannot see any effect on TPC when I change the value of shared variable on my laptop. I use LabView 8.6 with Touch Panel Module. My question is what are the exact steps to run such application on TPC2012? Are they the same as for TPC 2006?
    I've noticed following issues:
    1.I cannot deploy the program from Project Manager(there is an information that maybe TPC Service is not started. - I've found such information about TPC Service http://digital.ni.com/public.nsf/allkb/DE177828D27A14A48625734E00768B66 but in fact I cannot find Start » All Programs»National Instruments » NI TPC Service » NI TPC Service Manager 1.0 Does it mean, that the TPC Service is not installed and the programm with shared varibles won't be working or can I start it somehow in another way? Do I need to have TPC service installed on TPC2012?
    Until now, I've built the project and sent it through FTP to TPC(the folder was /TEMP) and then started it.
    2.Ping works OK
    Thank you in advance for any hints how to solve this problem.
    Martin

    Well no problem, but I'm frustrated with this issue... I've tested many things and nothing. Just to help someone else as I in the future, these are my sources:
    http://forums.ni.com/t5/LabVIEW/TPC-2012-Problems-with-shared-variable/m-p/1009631/highlight/false#M...
    http://digital.ni.com/public.nsf/allkb/28536DE7E2D9E98B8625770B00738920?OpenDocument
    http://zone.ni.com/reference/en-XX/help/372507B-01/lvtpcgsm/tpc_install_sharvar/
    http://zone.ni.com/reference/en-XX/help/372507C-01/lvtpcgsm/tpc_install_sharvar/
    http://digital.ni.com/public.nsf/allkb/23532363F4905EC28625727A00730B80?OpenDocument
    http://forums.ni.com/t5/FieldPoint-Family/TPC-2006-Not-Listed-in-Targets-and-Devices/td-p/566325
    http://forums.ni.com/t5/LabVIEW/MAX-can-t-detect-TPC-2106T/td-p/831524
    http://zone.ni.com/devzone/cda/tut/p/id/5868
    http://digital.ni.com/public.nsf/websearch/28B748B9697B79E18625725A00009066?OpenDocument
    http://digital.ni.com/public.nsf/websearch/D1726990DCEB82E4862570F20069C57D?OpenDocument
    http://digital.ni.com/public.nsf/allkb/3B469103BBDD4CE48625726000665B36
    I hope find some hint..
    Fabian León
    Certified LabVIEW Associate Developer

  • Problem with shared objects synchoronization.

    I encountered a small problem with shared objects.
    I'm working on a program that creates chat rooms of a fixed
    size of 30 users. When the 31th user comes, a new room is created.
    The idea is that the client first connects to the first room
    and checks if it's full by connecting to shared objects. If it is
    full, connection is closed and process is reapeated on a new
    instance of the application.
    I use a function to connect to an instance, which takes as a
    parameter a number (1 for instance room_1, 2 for room_2, etc). The
    function itself creates the necessary Netconnection and
    sharedObject objects.
    If a room is full, Netconnections and sharedObjects are
    closed and function is called again with another number.
    I have no problem for connecting to the first room, but after
    closing the first connection and connecting to the new room, there
    seem to be some problems with the shared objects (especially,
    OnSync doesn't seem to execute again after the connection to the
    shared objects of the new instance).
    I was wondering if you had any ideas what could cause this.
    Is it the use of the same variable names for connecting at two
    different shared objects?
    Here is the function :
    function initStreams(room) {
    client_nc = new NetConnection();
    client_nc.connect("rtmp://192.168.0.4/Elearning/room_"+room);
    in_ns = new NetStream(client_nc);
    in_ns2 = new NetStream(client_nc);
    Replay_video.attachVideo(in_ns);
    out_ns = new NetStream(client_nc);
    out_ns2 = new NetStream(client_nc);
    in_ns.play("my_recorded_stream");
    users_name = SharedObject.getRemote("users_name",
    _root.client_nc.uri, false);
    users_name.connect(_root.client_nc);
    users_language = SharedObject.getRemote("users_language",
    _root.client_nc.uri, false);
    users_language.connect(_root.client_nc);
    users_picture = SharedObject.getRemote("users_picture",
    _root.client_nc.uri, false);
    users_picture.connect(_root.client_nc);
    users_finger = SharedObject.getRemote("users_finger",
    _root.client_nc.uri, false);
    users_finger.connect(_root.client_nc);
    I you need more info, I can post more of the code on the
    forum.
    Any help would be really appreciated

    I don't see any onStatus events in the code you posted above.
    If you're defining the onstatus event outside the function, that's
    the problem. When you define the shared object, you also need to
    define it's onStatus event handler.
    Also, you really should wait for the onStatus event of the
    netConnection before you connect your sharedObjects. If you try to
    connect the SO before the netConnection is established, the SO will
    never connect.

  • I have an iMac and iphoto.  Currently I am having a problem with an album in iphoto.  When I double click on the album all I get in the main body of the screen is a triangle with an exclamation mark and my 2 photos show at the very bottom of the window.

    I have an imac and am using iphoto.  Currently I am having a problem with one particular album which shows in the main part of the window a triangle with an exclamation point.  The two photos are at the bottom of the main window in the same area where the "info" "edit" "create" area is.  I can see the two photos but I can not get them back into the main part of the window.  I can't drag them anywhere either.  I can't double click or right click on either of the two photos either. All I can do is click on either one and they get a little bigger.  Before I saw the exclamation point in the main body of the window all I get is two squares with nothing in them and the entire border is made up of dashes.  Can someone help me?

    Make a temporary, backup copy of your library if you don't already have one (Control-click on the library and select Duplicate from the contextual menu) and  apply the two fixes below in order as needed:
    Fix #1
    Launch iPhoto with the Command+Option keys held down and rebuild the library.
                                            Screenshot is for iPhoto 9
    Since only one option can be run at a time start with Option #3, followed by #4 and then #1 as needed.
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    1 - download iPhoto Library Manager and launch.
    2 - click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option.
    4 - In the next  window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments.  However, books, calendars, cards and slideshows will be lost. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.

  • Solution to the "Disappearing Comments" problem with shared reviews

    I've been having repeated problems with users losing their comments on shared reviews, hosted on my webDAV server. After tearing my hair out for days, I wanted to share the simple fix to this issue, plus another tip:
    DON'T USE PERIODS OR SPACES IN FILE NAMES. Use hyphens and underscores instead.
    Illegal characters seem to gradually corrupt the file to the point where potentially every comment can get overwritten with a blank .xml file, permanently losing all your comments.
    My wish to Adobe is that they would put a pop-up warning at the time of saving a file for shared reviews, something to the effect of:
    "WARNING! saving a shared file with a space or a period could result in data corruption when shared over network drives or webDAV. Do you want to replace illegal characters with underscores?"
    My other tip is this:
    If using a webDAV server as I am, be sure to use the IP address rather than the domain name when specifying the location of the server.

    With all the issues you describe, I would search for something conflicting with Mountain Lion.
    Have you booted into Safe Mode and checked to see if it works correctly there? It will take a while to boot, and it will run a bit slow, so just look for the issues you described above. If they don't appear, you've got something installed that is causing the issues.

  • Problem with photo albums

    I have been using iWeb for some time and have a site that is hovering around 1GB in size. I handle the various pages by creating separate Domain files for a small number of pages. I am having an issue at the moment. I have a copy of the complete site on my hard drive and am trying to add a photos page with One album in it. This has always worked in the past.
    I create the album page and publish to a folder. The resulting page works as it should.
    I then copy the Album file into my main site folder and it stops working. I don't know why! I have used the same process for ages and it has always worked before.
    Any thoughts please?

    I can see what you mean but.
    If I remove the index.html from the "publish" folder then open the Album folder (for sake of clarity this is called Boat.
    Inside the Boat folder is Boat.html
    clicking on Boat.html will open the album as normal with or without the index.html being present.
    If I move the Boat folder to another folder with the same root name it will open as normal as long as the scripts folder is with it.
    If I move the Boat and scripts folders to the "master" folder it does not.
    As I said earlier I have been doing this for several years and have not had this problem before.
    I am sure the answer is simple but it has got me puzzled at the minute

  • Problem with shared column mapping

    I have a problem with mapping different fields onto the same column. In most cases Kodo handles it very well but one tough case it does not
    Modification references contract N-1 using contract_id field
    Contract back references two modifications out of all modification owned by THIS contract (last_modification and executed_modifcation)
    when both modifications are not null it works fine since I make sure both fields point to modification owned by the same contract
    hovewer when I set one of the fields (executed_modifcation) to null (after it was not null) Kodo attempts to set not only executed_modifcation field to null but contract_id as well. Which obviously not desired
    I understand that it is a pretty hard corner case. Do you think you can handle it or it is a dead end?
    Attached are my files

    Abe,
    I fully agree with your analysis. In my case we can use precedence of direct
    mappings over reference mapping in null situation.
    However as you noted, there are cases when we have only references and so
    you can not say which mapping is more important. However since we are
    resolving NULL issue here, I am not sure we need to know precedence of
    references - not null case should always take precedence. In other words:
    priority 1: direct mapping
    priority 2: not null reference
    priority 3: null reference
    Of course all three cases are subject rule of not changing value of shared
    column
    "Abe White" <[email protected]> wrote in message
    news:[email protected]...
    I admit that I didn't go through all your metadata, but I do believe that
    3.0 final will handle this case. My plan is to implement updates such
    that direct field mappings always take precedence over foreign key
    mappings.
    Let's say column CONTRACT_ID is used by int field contractId and is
    also used by field lastModification as part of an FK to a Modification
    instance (which I believe is close to your mapping). Because contractId
    is a simple field rather than a foreign key, Kodo will give it the final
    say on nulling/defaulting the CONTRACT_ID column. So if you null the
    lasetModification field, CONTRACT_ID will retain the value of the
    contractId field. Any non-null value of the lastModification field will
    stilly have to jive with the contractId field, though, or else we'll
    throw an exception like we do currently when you try to set 1 column to
    multiple values.
    I believe this solves the common case of shared
    columns between direct mappings and FK mappings. There are other cases
    in which multiple FK mappings overlap on certain columns, and this does
    not solve nulling problems in those instances. However, I think those
    cases are very rare and not worth the effort. Correct me if I'm wrong
    and your situation actually is one of sharing columns between multiple
    FKs and no primitives after all.

  • Problem with shared services,, cannot load "assign access control"

    i m using 11.1.1.3 version of EPM.
    I have configured Essbase with Shared Services.
    When I do right click on application on shared services and select "Assign Access Control" , it gives "loading.." .it remains same for hours..
    I re configured essbase ,, but problem remained same...
    Could you please suggest what I can do assign filters to users.

    Have you given maxl a try:
    grant filter appname.dbname.filtername to user;
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Having Problems With Sharing & Permissions in Finder

    I am using a Mac Mini (mid-2011) running Lion Server 10.7.4.
    I have noticed lately that when I check files the Sharing & Permissions portion using Get Info on my files I find that there are two lines for each user on my compuer.  The first set of lines says Read & Write which I actually selected.  The second set of lines says Custom.  When I check I have the list Read & Write, Read, Custom.  When I try to change Custom I cam select new option No Privileges Info.  For the other users I am able to delete the extra line once I select No Privileges Info.  However even though I have more than one line I cannot delete the extra line for the main user.  I will try and delete the extra line for the main user logged in as someone else that has what I have defined as admin privileges (reason I have more than one user).
    This really concerns me because this issue is causing problems with me adding or removing files as needed in the terminal.  When I try I get this funky error:
    Dubious permissions on file (skipping): filename with duplicate entries for a user.
    This is happening more and more even though I am not changing the file permissions that I am aware of.
    Any help would be appreciated.

    Repairing the permissions of a home folder in Lion is a complicated procedure. I don’t know of a simpler one that always works.
    Back up all data now. Before proceeding, you must be sure you can restore your system to its present state
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the page that opens.
    Drag or copy — do not type — the following line into the Terminal window, then press return:
    chmod -R -N ~
    The command will take a noticeable amount of time to run. When a new line ending in a dollar sign ($) appears below what you entered, it’s done. You may see a few error messages about an “invalid argument” while the command is running. You can ignore those. If you get an error message with the words “Permission denied,” enter this:
    sudo !!
    You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning not to screw up.
    Next, boot into Recovery by holding down the key combination command-R at startup. Release the keys when you see a gray screen with a spinning dial.
    When the Recovery screen appears, select Utilities ▹ Terminal from the menu bar.
    In the Terminal window, enter “resetpassword” (without the quotes) and press return. A Reset Password window opens. You’re not going to reset the password.
    Select your boot volume if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select  ▹ Restart from the menu bar.

  • Problems with sharing

    Hi, 
    I'm Building a Windows 2008 R2 Enterprise server for a schoolproject. 
    And i have problems with making the shares work.
    I've used the share and Storage Managment to share the folders. 
    But with the testing of the share somethings gone wrong.
    I can open the folders and documents but i can't create of modify new data. 
    My share permissions are Change and Read. 
    My permissions in the acces controle list are : List folders content, Read and Write. 
    I've tried the change the settings and sharing over and over again. 
    But i can't get set in the right way. 
    I'm Building the server with VMware Workstation 8
    So Helpp!!

    Please note that this is Directory Services Forum and your request is regarding Files and Folders management.
    I would recommend asking them in File Services and Storage forum: http://social.technet.microsoft.com/Forums/en-us/home?forum=winserverfiles&filter=alltypes&sort=lastpostdesc
    This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.
    Get Active Directory User Last Logon
    Create an Active Directory test domain similar to the production one
    Management of test accounts in an Active Directory production domain - Part I
    Management of test accounts in an Active Directory production domain - Part II
    Management of test accounts in an Active Directory production domain - Part III
    Reset Active Directory user password

  • Installing PSE12 encounters problem with Shared Technologies

    Can you help me
    I can't install PSE12 on my computer (Windows 7) : installing stops with a message about a problem with installing Shared Technologies
    I don't know what is Shared Technologies. Is it downloaded with PSE 12?
    Thanks

    Hi,
    Could you please share the logs from the location(s) mentioned below:
    %temp%\PREInstall.log, PRE11.log,
    PDApp.log,
    amt.log,
    C:\Program Files\Common Files\Adobe\Installers\<*PRE11*>.log.gz
    I'd be able to comment & suggest better once I have the logs but meanwhile, you might like to upgrade the Adobe Application Manager from the following location just to rule out any incompatibilities or upgrade failures of AAM:
    Win: http://www.adobe.com/support/downloads/detail.jsp?ftpID=4773
    Mac: http://www.adobe.com/support/downloads/detail.jsp?ftpID=4774
    Thanks.

  • EAS # problem with shared services

    EAS registration with Shared Services failing. The HYPERION_HOME/logs/config/configtool_err.log file shows the following error:
    com.hyperion.cis.config.CmsRegistrationUtil, ERROR, register operation failed in CMS:
    com.hyperion.interop.lib.OperationFailedException: Product already exists.Registeration failed: error.generalSaveModel.Product already exists.Registeration failed: error.generalSaveModel.
    at com.hyperion.interop.lib.helper.RegistrationHelper.register(Unknown Source)
    at com.hyperion.interop.lib.CMSClient.register(Unknown Source)
    at com.hyperion.interop.lib.CMSClient.register(Unknown Source)
    at com.hyperion.cis.config.CmsRegistrationUtil.registerApplication

    seems users info is missing and results like this ...iam not sure which one would be
    Delete all contents from the eas folder,....
    Restart the services.
    Configure EAS with Shared Services
    Restart the EAS server.
    this should help ...it happened some time ago ..iam still not sure what exactly the issue but it helped me to solve my issue
    let me know if dont work

  • Problems with sharing InDesign files on Windows server

    Hi there. We have four designers that are working with InDesign CS5 and InCopy CS5. Three of these designers are working on Macs running OSX 10.8. The other is working on a Windows 7 machine. All of their files are stored on a Windows Server 2008 R2 file server. The problem is that whenever one of them makes updates to some files in a project and they save it, the others are unable to checkout any assignments from within either InDesign or InCopy. When they try to checkout the files to make changes, they get the following error message: "In use by Unknown in Adobe InDesign from document <file name>.indd"
    The strange thing is that their files used to be stored on a Server 2003 file server and they never had any problems. But since we moved them over to this Server 2008 R2 machine I can't help but wonder if it is a problem with the server. In either case, I wanted to ask this question in here to get any opinion on what this could be.
    Thanks in advance.

    Hi Stefano,
    I got similar problems, any solutions for me?
    Thanks...
    Ken

  • Problems with sharing a project from Final cut x

    I have just purchased a canon Legria g10 (pal) and when I share(export) the project I get horizontal lines on the image, the raw footage looks fine in quicktime but when I edit and share it back out of Final Cut x it has the lines. Do I need to de-interlace and if so why? will I have to do this everytime I use the camera? or is the problem with settings on the camera? Any help would be greatly appriciated.
    thanks in advance

    Hi Tom,
    thanks for the swift reply. Here are the screengrabs
    the exported footage
    the original footage
    and the propeties of the original footage
    and the properties of the exported file

Maybe you are looking for