9.5.1 groups photos by year - WIPED entire naming convention

Please be kind as this is first post and by no means an expert.  We used to have our iPhoto organized in the Photo view (not Event) and named our folders similar to:
2009_7_Fourth Outing
2010_9_Daughter Bday
On and on over about 14 years with 92GB file.  I'm wondering if upgrade to Mavericks and newest iPhoto has mangled something because now when I open iPhoto folders are showing as just year:
2007
2009
etc
And in each of these is anywhere from 150 to 3900 photos.  Not categorized or organized in such a way as to know WHEN in the world they were taken or what "event" relevance they were from.  These yearly folders certainly transcend date boundaries too... the 2005 folder as example has pictures in it from Jan 2003 until Jan 2007.
What gives and what can I do here?  I could fiddle with pulling a backup but thought I'd come here first.

Photos and Events are the same thing - two views of the Library - two doors to the same room. There are no folders in Photos, those were Events you renamed.
Do you have a back up from before you updated?

Similar Messages

  • Group by month/year from DATE FORMAT column

    Hi Chaps,
    I have a recordset that pulls data from a database, then presents the data in a table. The data is grouped by 'projid', repeated for every 'projid', with a show/hide control, to show all the 'jobid's' relating to that particular 'projid'
    This is what I have so far:
    Code:
    SELECT             
    tbl_projects.projid,
    tbl_projects.projtitle,
    tbl_projects.projdue, DATE_FORMAT(tbl_projects.projdue, '%%d/%%m/%%Y') as projdue_format,
    tbl_projects.projtype, 
    tbl_projects.projinvtype,
    tbl_projects.FK_custid,
    tbl_projects.projcompletedate
    tbl_languaget.langtname,
    tbl_doctype.doctypename,
    tbl_jobs.jobid,
    tbl_jobs.FK_projid,              
    tbl_jobs.jobname,              
    tbl_jobs.FK_langid,              
    tbl_jobs.jobpages,              
    tbl_jobs.jobshipped,
    tbl_jobs.jobinvsent,   
    tbl_jobs.jobtranslatorcharge,    
    'tbl_jobs' as fromtable,
    tbl_customers.custid,
    FROM tbl_projects  
    INNER JOIN tbl_jobs              
    ON tbl_projects.projid=tbl_jobs.FK_projid  
    INNER JOIN tbl_languaget              
    ON tbl_languaget.langtid=tbl_jobs.FK_langid  
    INNER JOIN tbl_customers              
    ON tbl_customers.custid=tbl_projects.FK_custid
    INNER JOIN tbl_costs
    ON tbl_costs.FK_custid=tbl_customers.custid 
    INNER JOIN tbl_doctype
    ON tbl_doctype.doctypeid=tbl_jobs.FK_doctypeid
    WHERE tbl_projects.projstatus='Complete'        
    AND tbl_projects.projinvtype='Costing Sheet'
    AND langtname!='TH'
    AND langtname!='ID'
    AND langtname!='KO'
    AND langtname!='JP'
    AND jobinvsent='y'
    AND FK_custid = %s
    ORDER BY projid ASC", GetSQLValueString($colname_rsInvPending, "int");
    $rsInvPending = mysql_query($query_rsInvPending, $conndb2) or die(mysql_error());
    //$row_rsInvPending = mysql_fetch_assoc($rsInvPending);
    $totalRows_rsInvPending = mysql_num_rows($rsInvPending);
    Code:
    // REPEAT - FOR EVERY PROJECT
      <?php
      $previousProject = '';
      if ($totalRows_rsInvPending > 0) {
      // Show if recordset not empty
        while ($row_rsInvPending = mysql_fetch_assoc($rsInvPending)) {
          if ($previousProject != $row_rsInvPending['projid']) {
          // for every Project, show the Project ID
      ?>
    Code:
    // SHOW/HIDE CONTROL
        <tr>
        <td colspan="9" class="highlight"><span class="blueBold"><a href="#" onclick="toggle2('proj1<?php echo $row_rsInvPending['projid'] ?>', this)"><img src="../../Images/plus.gif" border="0" /></a> <?php echo $row_rsInvPending['projid'] ?> - </a></span><span class="blueNOTBold"><em><?php echo $row_rsInvPending['projtitle'] ?></em></span></td>
        </tr>
    Code:
    // SHOW/HIDE
        <?php $previousProject = $row_rsInvPending['projid']; } ?>
        <tr class="proj1<?php echo $row_rsInvPending['projid'] ?>" style="display:none">
        <td>column 1</td>
        <td>column 2</td>
    What I want, is to put in another grouped by stage, where the 'projid's' themselves are in a show/hide region, grouped by 'projcompletedate' (year/month). 'projcompletedate' is in DATE format, but how to I get PHP/SQL to take the month and year and then group them correctly?

    Hi David, I'm not sure if I've got this right, would you mind looking at my latest code?:
    <table border="0" cellpadding="0" cellspacing="0" id="tblinvoice">
        <tr>
          <th>Job Title</th>
          <th>Type</th>
          <th>Language</th>
          <th>Translator</th>
          <th>Total</th>
          <th>Full</th>
          <th>Fuzzy</th>
          <th>Proof</th>
          <th>Full Price</th>
          <th>Discount Price</th>
          <th>Document Format</th>
          <th>Pages</th>
          <th>Typesetting Cost</th>
          <th>EN Proofreading Cost</th>
          <th>Total</th>
          <th>Translator Charge</th>
          <th>Profit</th>
          <th>Profit Percentage</th>
        </tr>
        <?php
          $previousMonth = '';
          if ($totalRows_rsInvPending > 0) {
          // Show if recordset not empty
          do ($row_rsInvPending = mysql_fetch_assoc($rsInvPending)) {
          if ($previousMonth != $row_rsInvPending['themonth']) {
          // for every Month, show the Month Name
       ?>
        <tr>
          <td colspan="18" class="highlight"><?php echo $row_rsInvPending['theyear'] ?> - <?php echo $row_rsInvPending['themonth'] ?></td>
        </tr>
        <?php $previousMonth = $row_rsInvPending['themonth']; } ?>
        <?php
          $previousProject = '';
          if ($totalRows_rsInvPending > 0) {
          // Show if recordset not empty
          while ($row_rsInvPending = mysql_fetch_assoc($rsInvPending)) {
          if ($previousProject != $row_rsInvPending['projid']) {
          // for every Project, show the Project ID
       ?>
       <tr>
        <td colspan="18" class="highlight"><span class="blueBold"><a href="#" onclick="toggle2('proj1<?php echo $row_rsInvPending['projid'] ?>', this)"><img src="../../Images/plus.gif" border="0" /></a> <?php echo $row_rsInvPending['projid'] ?> - </a></span><span class="blueNOTBold"><em><?php echo $row_rsInvPending['projtitle'] ?></em></span></td>
        </tr>
        <?php $previousProject = $row_rsInvPending['projid']; } ?>
        <tr class="proj1<?php echo $row_rsInvPending['projid'] ?>" style="display:none">
            <td><?php echo $row_rsInvPending['jobname']; ?></td>
            <td><?php echo $row_rsInvPending['projtype']; ?></td>
            <td><?php echo $row_rsInvPending['langtname']; ?></td>
            <td><?php echo $row_rsInvPending['translator']; ?></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
          </tr>
          <?php } while ($row_rsInvPending = mysql_fetch_assoc($rsInvPending)); ?>
          <?php } // Show if recordset not empty ?>

  • How to group photos in folders, in the main photos app in my iphone4 ?

    How to group photos in folders, in the main photos app in my iphone4 ?

    You can update your iPhone to iOS 5, in iOS 5, it will allow you to create albums in your photo app and it also allows you to move the photos from album to another album

  • Hover mouse over a group photo & individual image pops up?

    My project is to do a mouse hover over individual faces on a group photo and display an image of what that person looked like back in high school.
    So far I am able to display the persons name as I hover over their face but don't know how to also display their individual image.
    I set up an image map with circular hotspots for each face.
    Please visit www.phsclassof1956.com/50th_group.html
    Any help would be appreciated.

    You could do this very easily with Tooltips on an Image Map.  See example below and mouse over Image Map of South America.
    http://alt-web.com/testing.html
    Scripts and documentation here:
    http://www.walterzorn.com/tooltip/tooltip_e.htm
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Group photos together

    Hi,
    I am making a movie made up of A LOT of still images, much like a stop motion animation. I am wondering if it is possible to group photos together once I have them how I want them so I can move them around like a single video clip.
    Or will I have to export it as a small video clip and import it again to do this?
    I'm using FCP 5.1 by the way
    Thanks in advance

    As reink says, exporting is the best way. Unless you have filmed these yourself as a stop motion animation as continuous jpeg file numbers, in which case you can import them into motion as an image sequence, resize the whole clip (not individual frames) and export as a video file from there.
    cheers
    Andy

  • When upgrading to Lion, will the documents, photos etc get wiped off..?

    When upgrading to Lion, will the documents, photos etc get wiped off..?

    All it does is update the OS.
    Which in no way implies that you don't need a backup prior to upgrading. While extremely unlikely, anything can happen in the process.

  • How can I merge 2 group photos in Photoshop Elements 12?

    How can I merge 2 group photos in Photoshop Elements 12?

    In the Editor: Enhance> PhotoMerge> PhotoMerge Group Shot
    In the Organizer: Edit> PhotoMerge> PhotoMerge Group Shot
    Here's the Adobe TV link on the feature  - http://tv.adobe.com/watch/learn-photoshop-elements-11/perfect-group-shots-with-photoshop-e lements-11-/
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct and/or helpful accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

  • I have been taking photos for years and have thousands.  When I use Apple TV screen saver, it seems only to grab a handfull and repeats them.  Is there a configuration setting that will allow me to have the screen saver grab more than just a few?  Thanks.

    I have been taking photos for years and have thousands.  When I use Apple TV screen saver, it seems only to grab a handfull and repeats them.  Is there a configuration setting that will allow me to have the screen saver grab more than just a few?  Thanks.

    The device has an 8GB drive for caching streamed meida, a small portion of that is used to temporarily store photos for the screensaver. It may vary depending on resolution etc but it seems to be around 100.

  • How to disable others from changing group photo?

    Hi I'm new, I apologize if this is the wrong section to ask this..
    In some of my skype calls which I administrate, people will just change the title and group photo to whatever they want, (usually inappropriate).
    Is there a way to disable the function so that only I can control stuff like the group/conversation photo and title?

    Hi,
    Did you mean that once users first log on Windows 8.1 and IE 11 pops up? Did this issue happened after logging off then logging in and shutting down the PC then restarting to login?
    What’s the detailed information about the pop-up? The screenshot would be more helpful for us to determine the issue.
    We can check if there is any logon script or task schedule configured in your environment.
    For further help you, please provide more information about how you deploy Windows 8.1.
    Meanwhile, please help to collect the boot trace for further research.
    How to collect a good boot trace on Windows 7
    http://blogs.technet.com/b/jeff_stokes/archive/2012/09/17/how-to-collect-a-good-boot-trace-on-windows-7.aspx
    Once down, please upload the .etl file into SkyDrive or Similar ones and share the public link here for our research.
    Look forward to your response.
    Kate Li
    TechNet Community Support

  • Very much a beginner. How do I cut someone out of a group photo and move them to another part of the same photo?

    I have a group photo and I would like to move someone from one side of it to the other. I would like to know how to select that person, cut him out, and paste him in a different place on the picture. Is that possible? If so, how? Thank You!

    Try this
    Photoshop Help | Content-Aware Patch and Move

  • Is it possible to tag an individual with their name in a group photo when I place the cursor over th

    Is it possible to tag an individual with their name in a group photo when I place the cursor over the person's face?

    A work around...
    Create your text, place it underneath the face, then hide that text layer. Make sure you save to a format that supports layers like psd or tiff.

  • How do I remove a person from a group photo?

    How do I remove a person from a group photo?

    Try the re-compose tool.
    http://www.youtube.com/watch?v=diY3y4LwsI0

  • Face change in group photo

    Face change in group photo option is not available in Lumia camera for 525 model. Please help how do I get it

    I didnt put any value in useful life field, but now I want to put it. but when I am trying in AS02 and click on group asset tab in depreciation areas, the field for useful life is not shown on screen.

  • I have about 14 gbs of Other on my iPad. After searching, I notice that it is mostly photos. Years and years of photos. However, when I sync, I only sync the last 6 months. I have tried deleting all photos and syncing again. No luck. Any suggestions?

    I have about 14 gbs of Other on my iPad. After searching, I notice that it is mostly photos. Years and years of photos. However, when I sync thru iTunes on my iMac, I only sync the last 6 months. I have tried deleting all photos and syncing again. No luck. Any suggestions?

    Read the User Tip that razmee209 linked for you in the post above. If nothing in there works, there May be something on your iPad that is corrupt. Backup the iPad, restore to factory settings, and them restore the backup. If that doesn't fix it, restore as new and download all of your purchased content again.
    Use iTunes to restore your iOS device to factory settings - Apple Support

  • Create group photo book

    I am curating a group photo book output to Blurb from Lightroom 5. Contributing photographers have used Lightroom 5 to edit and prepare for publication.
    I cannot locate a clear explanation of the LIGHTROOM DNG - JPG - LIGHTROOM BOOK - BLURB OUTPUT resolution workflow
    What is the best file format for contributing photographers? JPEG?
    Many thanks for help
    Ian
    Mac Pro OSX Mavericks 10.9.5
    Lightroom 5.6

    Hi,
    Can you please tell me your online services location. To find that out, you need to go to the Organizer. Go toEdit>Preferences>Adobe Partner Services. Click the "Choose" button for location and there you will find your online services location. It should be US & Canada for Kodak Photobook services to work.
    Also can you please let me know whether you are trying to do this in organizer or Editor?
    Best Regards,
    Chhaya

Maybe you are looking for

  • Any Help ? My Item Renderer fails with Reference Error: Error #1069:

    So I have a basic inline dropdownbox itemrenderer as shown below, But after I click it and select a value I get an error "ReferenceError: Error #1069: Property TELEPH_USE_TYPE_DESC not found".  I am guessing I am referencing something incorrectly. An

  • How to share content across a whole family?

    I know there are other threads related to this, but I'm really trying to understand how to manage iTunes DRM, Home Sharing, Match, etc., across my family's ecosystem of Macs, iPhones, iPods and iPads. I seem to think the following apply: - up to 5 "c

  • Unable to download apps using 3G, wifi download is working.

    Hi, I am using iphone 4s, i os 7.0.2 and I am unable to downlaod apps thru app store using mobile internet. But my mobile internet is working fine. I can use it for email, facebook 9gag etc. Application download process is working fine when I am usin

  • Question related to combining rows...

    Hi, I have a question related to combining rows... From our typical tables.... Dept and Emp. I want a result set like.... Dept# | Employees 10 | <Emp1>, <Emp5>, <Emp6> 20 | <Emp7>, <Emp2>, <Emp8>, <Emp9> 30 | <Emp10>, <Emp11> 40 | <Emp12> Plesae give

  • Organizing and file structure-

    just getting started with LR.  Will the program allow me to keep my images in their current location on my HD?  If so can  I still use LR to organize and create new folders once imported? Or do I need to organize before importing. If they are all imp