Gallery not loading

I'm trying to upload a photo gallery of 211 photos. Every time I send it I get a message "An error occurred while publishing the album "2007 Santa- Child & Family Center."
Request to the server failed."
I've tried creating the gallery with 80 photos and have the same result. I'm using cable with a connection speed of 5800kbps, so it shouldn't be a connection problem.
Would appreciate any insight into this problem.

Apple was having problems with the servers yesterday that handle mail and other .Mac functions. Give another try today.
Happy Holidays
TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

Similar Messages

  • Web gallery not loading properly

    I have links to 3 lightroom galleries on my website. Most of the time the gallery will not load unless you click the refresh button. This happens with safari and explorer. Is this a known issue and is there a way to fix it? My site is built with dreamweaver and I have built in links to the flash galleries from lightroom which just spin their wheels. It says it is loading, but never does unless you refresh or go home and try again.
    Thanks for any help.
    Ted

    I had the same problem but it went away when the galleries quit working at all <grin>. I think that module is really buggy. I did submit a bug report.<br />Mel

  • Thickbox gallery not loading on my website

    I have made a photo gallery for a website using thickbox, it is working fine in preview but when I put it to the site the photos are not loading/poping up. I have used thickbox and lightbox for photo galleries that worked fine but I do not understand what I am missing here.
    Here is the link:
    http://www.spotlightzambia.com/avastyla_designers.html
    I have tried to preview in chrome,firefox and explorer where it works fine but none of them load when the I try it after puting the files online.
    Please help

    Why no one replyed I'm having the same problem =(
    No link provided.  For answers to code related questions such as these, we need a URL to the problem page.
    It may interest you to know that ThickBox is not being supported anymore.  This is from their web site.
    While Thickbox had its day, it is not maintained any longer,
    so we recommend you use some alternatives.
    colorbox
    jQueryUI Dialog
    fancybox
    DOM window
    shadowbox.js
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Expose Gallery not loading to includes folder it seems?

    My includes folder may be messed up somehow or perhaps the expose gallery is not functioning percisely. The gallery is not loading more than 50 photos without crashing. Cant get a second album to download to the includes folder it seems. The function is just not working properly for some reason. Should I start over and reload the plugin? Also when I download It makes me download all of my entire folder again, it takes an hour or so when I only need to download the new gallery!

    I'm not familliar with Expose Gallery.  Is this a WordPress plugin?
    Nancy O.

  • XML grid gallery not loading full images(except for one)

    hi,
    I just created my first flash website, but one of my XML image galleries is not working properly. I am using the same (code, layout, just different pics and xml files) gallery on 4 of my pages, however, one("products")  of the 4 will not load the "full" images. The thumbnails load, they decrease opacity when moused over, but once you click on one, the progress bar loads till complete and just stops. You can see the problem in action atwww.erikhigbee.com on the "Products" page. This problem, however, only occurred after I hosted it on iPage.com. When I test it (Ctrl+Enter) in Flash, test it in Dreamweaver or open the .html of it from my computer, everything works perfectly. It is only after I FTP upload all the files to iPage's server that this problem occurs. I made sure to keep the filetree the same and everything. Is it a problem with Ipage? Are too many images trying to load??
    Furthermore, for some odd reason the 1st image(left), 4th row down on the s"Products" page DOES load the full image but the others still dont and I can't for the life of me figure out why. All the code is exactly the same as on the other pages.
    Thanks for any and all help/advice you can give me!
    one thought(from posts on other forums) could be inefficient code.  Error #2044: Unhandled IOErrorEvent:. text=Error #2036: Load Never Completed. pops up whenever the thumbs are clicked.  idk if that helps.
    below is the code i used for the gallery. Could anyone take a quick look over it and see if any problems/inefficiencies jump out at ya??
    [CODE]import flash.net.URLLoader;
    import flash.net.URLRequest;
    import flash.events.Event;
    import flash.display.MovieClip;
    import flash.display.Loader;
    import flash.events.MouseEvent;
    import fl.controls.ProgressBar;
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    import fl.transitions.TweenEvent;
    var columns:Number;
    var my_x:Number;
    var my_y:Number;
    var my_thumb_width:Number;
    var my_thumb_height:Number;
    var my_images:XMLList;
    var my_total:Number;
    var container_mc:MovieClip;
    var preloaders_mc:MovieClip;
    var full_mc:MovieClip;
    var x_counter:Number = 0;
    var y_counter:Number = 0;
    var my_tweens:Array = [];
    var container_mc_tween:Tween;
    var full_tween:Tween;
    var myXMLLoader:URLLoader = new URLLoader();
    myXMLLoader.load(new URLRequest("gallery_hats.xml"));
    myXMLLoader.addEventListener(Event.COMPLETE, processXML);
    function processXML(e:Event):void{
    var myXML:XML = new XML(e.target.data);
    columns = myXML.@COLUMNS;
    my_x = myXML.@XPOSITION;
    my_y = myXML.@YPOSITION;
    my_thumb_width = myXML.@WIDTH;
    my_thumb_height = myXML.@HEIGHT;
    my_images = myXML.IMAGE;
    my_total = my_images.length();
    createContainer();
    callThumbs();
    myXMLLoader.removeEventListener(Event.COMPLETE, processXML);
    myXMLLoader = null;
    function createContainer():void{
    container_mc = new MovieClip();
    container_mc.x = my_x;
    container_mc.y = my_y;
    addChild(container_mc);
    container_mc.addEventListener(MouseEvent.CLICK, callFull);
    container_mc.addEventListener(MouseEvent.MOUSE_OVER, onOver);
    container_mc.addEventListener(MouseEvent.MOUSE_OUT, onOut);
    container_mc.buttonMode = true;
    preloaders_mc = new MovieClip();
    preloaders_mc.x = container_mc.x;
    preloaders_mc.y = container_mc.y;
    addChild(preloaders_mc);
    function callThumbs():void{
    for (var i:Number = 0; i < my_total; i++){
    var thumb_url = my_images[i].@THUMB;;
    var thumb_loader = new Loader();
    thumb_loader.load(new URLRequest(thumb_url));
    thumb_loader.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded);
    thumb_loader.name = i;
    thumb_loader.x = (my_thumb_width+10)*x_counter;
    thumb_loader.y = (my_thumb_height+10)*y_counter;
    if (x_counter+1 < columns){
    x_counter++;
    } else {
    x_counter = 0;
    y_counter++;
    var preloader_pb:ProgressBar = new ProgressBar();
    preloader_pb.source = thumb_loader.contentLoaderInfo;
    preloader_pb.x = thumb_loader.x;
    preloader_pb.y = thumb_loader.y;
    preloader_pb.width = my_thumb_width;
    preloader_pb.height = my_thumb_height/10;
    preloaders_mc.addChild(preloader_pb);
    preloader_pb.addEventListener(Event.COMPLETE, donePb);
    function thumbLoaded(e:Event):void{
    var my_thumb:Loader = Loader(e.target.loader);
    container_mc.addChild(my_thumb);
    my_tweens[Number(my_thumb.name)]=new Tween(my_thumb, "alpha", Strong.easeIn, 0,1,0.5, true);
    my_thumb.contentLoaderInfo.removeEventListener(Event.COMPLETE, thumbLoaded);
    function callFull(e:MouseEvent):void{
    var full_loader = new Loader();
    var full_url = my_images[e.target.name].@FULL;
    full_loader.load(new URLRequest(full_url));
    full_loader.contentLoaderInfo.addEventListener(Event.INIT, fullLoaded);
    var full_pb:ProgressBar = new ProgressBar();
    full_pb.source = full_loader.contentLoaderInfo;
    full_pb.x = (stage.stageWidth - full_pb.width)/2;
    full_pb.y = (stage.stageHeight - full_pb.height)/2;
    preloaders_mc.addChild(full_pb);
    full_pb.addEventListener(Event.COMPLETE, donePb);
    container_mc.removeEventListener(MouseEvent.CLICK, callFull);
    container_mc.buttonMode = false;
    container_mc.removeEventListener(MouseEvent.MOUSE_OVER, onOver);
    container_mc.removeEventListener(MouseEvent.MOUSE_OUT, onOut);
    container_mc_tween = new Tween(container_mc, "alpha", Strong.easeIn, 1,0.5,0.5, true);
    function fullLoaded(e:Event):void{
    full_mc = new MovieClip();
    full_mc.buttonMode = true;
    addChild(full_mc);
    var my_loader:Loader = Loader(e.target.loader);
    full_mc.addChild(my_loader);
    full_tween = new Tween(my_loader, "alpha", Strong.easeIn, 0,1,0.5, true);
    my_loader.x = (stage.stageWidth - my_loader.width)/2;
    my_loader.y = (stage.stageHeight - my_loader.height)/2;
    my_loader.addEventListener(MouseEvent.CLICK, removeFull);
    my_loader.contentLoaderInfo.removeEventListener(Event.COMPLETE, fullLoaded);
    function removeFull(e:MouseEvent):void{
    var my_loader:Loader = Loader (e.currentTarget);
    full_tween = new Tween(my_loader, "alpha", Strong.easeOut, 1,0,0.5, true);
    full_tween.addEventListener(TweenEvent.MOTION_FINISH, tweenFinished);
    container_mc_tween = new Tween(container_mc, "alpha", Strong.easeOut, 0.5,1,0.5, true);
    function donePb(e:Event):void{
    var my_pb:ProgressBar = ProgressBar(e.target);
    preloaders_mc.removeChild(my_pb);
    my_pb.removeEventListener(Event.COMPLETE, donePb);
    function tweenFinished(e:TweenEvent):void{
    var my_loader:Loader = Loader (e.target.obj);
    my_loader.unload();
    full_mc.removeChild(my_loader);
    removeChild(full_mc);
    full_mc = null;
    container_mc.addEventListener(MouseEvent.CLICK, callFull);
    container_mc.buttonMode = true;
    container_mc.addEventListener(MouseEvent.MOUSE_OVER, onOver);
    container_mc.addEventListener(MouseEvent.MOUSE_OUT, onOut);
    var my_tween:Tween = Tween(e.target);
    my_tween.removeEventListener(TweenEvent.MOTION_FINISH, tweenFinished);
    function onOver(e:MouseEvent):void{
    var my_thumb:Loader = Loader(e.target);
    my_thumb.alpha = 0.5;
    function onOut(e:MouseEvent):void{
    var my_thumb:Loader = Loader(e.target);
    my_thumb.alpha = 1;
    [/CODE]

    Hi,
    at www.lynda.com there is a great video tutorial.
    Search for Create and Embed a Photo Gallery in a PDF

  • Bridge Web Gallery Not loading properly in Browsers   **HAAALP PLZ**

    Ok so here is the deal.
    Went to Bridge
    Created Multiple Gallerys
    Went to Dreamweaver
    Created a page and inserted all the pertinents and such.
    Uploaded to my site
    Was happy.....
    Good to go right?  Well it looks all good, and the Gallerys perform as they should with one problem.  My problem lies in the initial loading of the browser page.  Every gallery loads on the page with the starting picture offset. 
    Is this a problem with the gallery file that bridge creates or is there something on my html file that needs to be edited to make this shizz load like pro?
    Haaaaalp!
    Here is the page in question:  Polley3d.com - 3D Design Consulting Samples
    Here is an image to see what the fuzz I'm talking about:

    After waiting for 1 minute and 59 seconds during which 14.5 MB is processed, I am not surprised that style rules get mixed up.
    Loading one gallery as in
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    </head>
    <body>
    <iframe src="http://polley3d.com/WebGallery/Joan_Landscape_Gallery/index.html"width="1024" height="768"  frameborder="0" name="Joan_Landscape_Iframe"></iframe>
    </body>
    </html>
    took a mere 16 ms and processed 287 B of data. No problem here.
    As a side note, Flash is old old old technology.

  • Adobe Bridge Gallery Not Loading in .pdfs

    Recently I created a flash gallery with adobe bridge that I intend to embed into a pdf that will be available as a download via my company's website. I've attached the required resources directory as well as the appropriate flahvars required to display the content but for whatever reason my gallery hangs when trying to load the images. I have optimized the images for display on the web with file sizes ranging from 36kb to 114kb. There are twenty one pictures in total and I'm using the most recent versions of both bridge and acrobat. Any insight would be appreciated.

    Hi,
    at www.lynda.com there is a great video tutorial.
    Search for Create and Embed a Photo Gallery in a PDF

  • Album Gallery not loading

    I just updated my website using iweb and while most of the pages I'm using as a 'table of contents' for photo galleries uploaded, there is one page that is being stubborn.
    http://www.sidneyerik.com/ModelingShots/ModelingShots.html
    In iweb, the page has photos that link to 8 different photo galleries. However, NONE of these albums are loading on the master page. I don't understand why for all other pages it uploaded perfectly but this one is giving me trouble. What gives?

    Welcome to the Apple Discussions. All of the pages and photos load fine for me. Have you tried clearing your browser's cache and reloading the page? For Safari it's CommandOptionE. It loads OK for me with Firefox 3.6.4 also.
    OT

  • Bridge Web Gallery Photos Not Loading

    Just upgraded from CS4 to CS6.  I had been using the Create Web Photo Album command in CS4 which of course is no longer available.
    So, opened Bridge and created an HTML Web Gallery.  The HTML Gallery looks great and when I open it with DW locally it works fine in preview mode.  After uploading the gallery to the server, the gallery page layout is there but the thumbnails don't load.  Page is functional and when I click on one of the thumbnails its large pic page opens but again the pic does not load. The images, both the thumbnails and large images, upload OK and are present on the server.
    Here is a link to the album page:
    http://ashlandhiking.org/badlink.html
    I also tried two other gallery formats; Standard and Lightroom Flash.  Both of these worked fine after uploading.  So it appears to be a problem associated with the HTML gallery.  I tried changing the page doc type to HTML 5 and HTML 4, to no avail.
    Please help. Thanks.

    It's funny: I had just posted to someone else that they should update to 7.1 to get the web gallery to upload. I didn't realize I was not up all they way myself. So now I'm at 7.1.1.
    Problem was, I still had upside down photos.
    So the work around I employed was to export the edited photos out, delete the photos within iPhoto, then re-import the edited photos back in. Ah, now they show properly.
    Not my favorite solution, but what are you going to do?
    I still suspect there might something within the web gallery functionality, which wants to upload the Originals and not the Modifieds. Thoughts anyone?

  • Lightroom3 web gallery will not load

    Lightroom3 web gallery will not load.I get this message: An error occurred sending the file : the server could not be found

    One of the usual factors is the use of windows servers...these have problems with bin folders. Check what your server runs..if it is windows then get a different service.

  • Gallery will not load

    I have published a gallery to my website, but the images do not load.  What might be the cause of this failure?

    One of the usual factors is the use of windows servers...these have problems with bin folders. Check what your server runs..if it is windows then get a different service.

  • Photo gallery not displaying when published to .mac

    Hey,
    I'm having some trouble publishing my photo gallery. I do not want to publish it as a web gallery from iPhoto then link to it with iWeb. What I want to do is to send a gallery from iPhoto into iWeb, and have it published as part of the website. When I send a gallery over to iWeb, it loads up great, and I have all the functionality that one would expect when doing this so by all indications, it will load up great on my .mac account. When I publish the website, it does say that it is publishing the photo gallery page, but the issue is that none of my galleries ever show up! I do not know what to do, I have tried completely deleting the photo gallery page and remaking it in case I did something wrong in the design somewhere, but it still does not load up. If I link in a web gallery, it does show up, but, again, that is not what I want to do. I am at a loss for what may be causing the error. Any help at all would be greatly appreciated.
    Thanks!
    Heather

    Publishing a iPhotoalbum to iWeb is the same as dragging the album from the media browser to iWeb.
    When I send a gallery over to iWeb, it loads up great, and I have all the functionality that one would expect when doing this so by all indications, it will load up great on my .mac account.
    When I publish the website, it does say that it is publishing the photo gallery page, but the issue is that none of my galleries ever show up!
    What is it? Does it upload great to dotMac or doesn't it?
    There's only one thing to do. Publish it. No need to upload. iWeb takes care of that.
    It helps if you provide a URL to said page.

  • Painting Assistant will not load

    I have been trying to install  the Painting Assistant by Russell Brown.  I download the file with no problem.  The Adobe Extension Manager for CS5 will not install.  It keeps stating I do not have appropriate permissions.  I followed the PDF instructions to manually install but my CS5 Photoshop does not show the extension. 
    Any suggestions on how to install this extension?
    I have a new (less than 1 yr old) HP desktop computer running Window 7 Home Premium.  Just for information, I am also have a problem with Window Live Photo Gallery not recognizing my "Pictures" folders path.  The Windows Live Soltuion Center is trying to find the problem. 
    Thanks

    Run the extension manager as an administrator by right clicking on the extension manager shortcut and choosing Run As Administrator.
    If you have a 64 bit version of windows 7 there should be two versions of cs5, 64 bit and 32 bit so maybe your not running the version you did the manual install into.
    Also under the photoshop preferences plug-ins make sure you have Load Extension Panels checked.
    Not sure about the photo gallery problem.
    MTSTUNER

  • Design/gallery website - loading external SWF asset on splash page

    Hello all,
    This forum has been such a help with my website, i've found the answers to hundereds of questions but I've hit a bit of a brick wall and I wonder if anyone can help me.
    I have recently built a website http://www.intivision.co.uk/ using illustrator/flash/flash catalyst. It's still a work in progress and I'm happy with the gallery pages and general functionality but I'm having major issues with my splash/load screen and a few other niggles.
    The animation on the front page is a looping photo gallery i created in flash (as a .SWF) and imported into Catalyst. It is designed to play (and loop) indefinately after 2seconds of loading the title page. Half the time I access the site the animation does not load at all and just shows a blank screen and my logo. It will appear once the page is refreshed. A very bad first impression.
    I have a feeling this is because the SWF is externally loading the asset (which is only 350kb). Is there a solution or a way to imbed this animation so the entire project won't 'play' until this intro is loaded?
    Thanks - Tom
    ps Any other comments would be greatly appreciated

    Thanks for taking your time! Much appreciated.
    I like not complicated :-)  So it is now loading from the start - stretching over the whole timeline. How do I controll the visibility during the "HOME" = that is invisible?
    This is the code I use to load the external swf:
    var Xpos:Number=0;
    var Ypos:Number=0;
    var swf:MovieClip;
    var loader:Loader=new Loader();
    var defaultSWF:URLRequest=new URLRequest("main_movie_241x700.swf");
    loader.load(defaultSWF);
    loader.x=Xpos;
    loader.x=Ypos;
    addChild(loader);

  • Could not load the Bigger Tiles Modules

    I use Photoshop CS5 on iMac 3.06GHz IC2D with Lion 10.7.2. When I start Photoshop a Popup says : Could not load the Bigger Tiles Modules because it does not work with this version of Photoshop. Pity, but how to disable this Popup at every start ?

    Sure... I hope this helps and this is what you mean.  It is the case that I installed it fresh on a new machine, but maybe I checked a wrong box along the way.  I certainly have no reason to deny installing it any other way.  Regardless, it was only a slight annoyance and such an easy fix.
    Adobe Photoshop Version: 14.1.1 (14.1.1 20130910.r.414 2013/09/10:23:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:13, Stepping:7 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 6
    Logical processor count: 12
    Processor speed: 4374 MHz
    Built-in memory: 32710 MB
    Free memory: 28757 MB
    Memory available to Photoshop: 29685 MB
    Memory used by Photoshop: 60 %
    Image tile size: 1024K
    Image cache levels: 4
    Display: 1
    Display Bounds: top=0, left=0, bottom=1200, right=1920
    Display: 2
    Display Bounds: top=0, left=1920, bottom=1200, right=3840
    OpenGL Drawing: Enabled.
    OpenGL Allow Old GPUs: Not Detected.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    NumGPUs=1
    gpu[0].OGLVersion="3.0"
    gpu[0].MemoryMB=3072
    gpu[0].RectTextureSize=16384
    gpu[0].Renderer="Quadro K4000/PCIe/SSE2"
    gpu[0].RendererID=4602
    gpu[0].Vendor="NVIDIA Corporation"
    gpu[0].VendorID=4318
    gpu[0].HasNPOTSupport=1
    gpu[0].DriverVersion="9.18.13.2049"
    gpu[0].Driver="nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um"
    gpu[0].DriverDate="20130621000000.000000-000"
    gpu[0].CompileProgramGLSL=1
    gpu[0].TestFrameBuffer=1
    gpu[0].OCLSupported=1
    gpu[0].OCLVersion="1.1"
    gpu[0].CUDASupported=1
    gpu[0].CUDAVersion="4.2.1"
    gpu[0].glGetString[GL_SHADING_LANGUAGE_VERSION]="1.30 NVIDIA via Cg compiler"
    gpu[0].glGetProgramivARB[GL_FRAGMENT_PROGRAM_ARB][GL_MAX_PROGRAM_INSTRUCTIONS_ARB]=[65536]
    gpu[0].glGetIntegerv[GL_MAX_TEXTURE_UNITS]=[4]
    gpu[0].glGetIntegerv[GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS]=[192]
    gpu[0].glGetIntegerv[GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS]=[32]
    gpu[0].glGetIntegerv[GL_MAX_TEXTURE_IMAGE_UNITS]=[32]
    gpu[0].glGetIntegerv[GL_MAX_DRAW_BUFFERS]=[8]
    gpu[0].glGetIntegerv[GL_MAX_VERTEX_UNIFORM_COMPONENTS]=[4096]
    gpu[0].glGetIntegerv[GL_MAX_FRAGMENT_UNIFORM_COMPONENTS]=[2048]
    gpu[0].glGetIntegerv[GL_MAX_VARYING_FLOATS]=[124]
    gpu[0].glGetIntegerv[GL_MAX_VERTEX_ATTRIBS]=[16]
    gpu[0].extension[AIF::OGL::GL_ARB_VERTEX_PROGRAM]=1
    gpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_PROGRAM]=1
    gpu[0].extension[AIF::OGL::GL_ARB_VERTEX_SHADER]=1
    gpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_SHADER]=1
    gpu[0].extension[AIF::OGL::GL_EXT_FRAMEBUFFER_OBJECT]=1
    gpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_RECTANGLE]=1
    gpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_FLOAT]=1
    gpu[0].extension[AIF::OGL::GL_ARB_OCCLUSION_QUERY]=1
    gpu[0].extension[AIF::OGL::GL_ARB_VERTEX_BUFFER_OBJECT]=1
    gpu[0].extension[AIF::OGL::GL_ARB_SHADER_TEXTURE_LOD]=1
    Serial number: 90970468542907043447
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\
    Temporary file path: C:\Users\Amighty\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      C:\, 223.2G, 140.5G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Required\Plug-Ins\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Plug-ins\
    Installed components:
       ACE.dll   ACE 2013/07/14-12:09:50   79.543790   79.543790
       adbeape.dll   Adobe APE 2013/02/04-09:52:32   0.1160850   0.1160850
       AdobeLinguistic.dll   Adobe Linguisitc Library   7.0.0  
       AdobeOwl.dll   Adobe Owl 2013/03/03-12:10:08   5.0.13   79.533484
       AdobePDFL.dll   PDFL 2013/03/13-12:09:15   79.499517   79.499517
       AdobePIP.dll   Adobe Product Improvement Program   7.0.0.1786  
       AdobeXMP.dll   Adobe XMP Core 2013/03/13-12:09:15   79.151481   79.151481
       AdobeXMPFiles.dll   Adobe XMP Files 2013/03/13-12:09:15   79.151481   79.151481
       AdobeXMPScript.dll   Adobe XMP Script 2013/03/13-12:09:15   79.151481   79.151481
       adobe_caps.dll   Adobe CAPS   7,0,0,21  
       AGM.dll   AGM 2013/07/14-12:09:50   79.543790   79.543790
       ahclient.dll    AdobeHelp Dynamic Link Library   1,8,0,31  
       aif_core.dll   AIF   5.0   79.534508
       aif_ocl.dll   AIF   5.0   79.534508
       aif_ogl.dll   AIF   5.0   79.534508
       amtlib.dll   AMTLib (64 Bit)   7.0.0.169 BuildVersion: 7.0; BuildDate: Mon Apr 8 2013 2:31:50)   1.000000
       ARE.dll   ARE 2013/07/14-12:09:50   79.543790   79.543790
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2013/07/14-12:09:50   79.543790   79.543790
       BIBUtils.dll   BIBUtils 2013/07/14-12:09:50   79.543790   79.543790
       boost_date_time.dll   DVA Product   7.0.0  
       boost_signals.dll   DVA Product   7.0.0  
       boost_system.dll   DVA Product   7.0.0  
       boost_threads.dll   DVA Product   7.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.1.6.30929   2.1.6.30929
       CITThreading.dll   Adobe CITThreading   2.1.6.30929   2.1.6.30929
       CoolType.dll   CoolType 2013/07/14-12:09:50   79.543790   79.543790
       dvaaudiodevice.dll   DVA Product   7.0.0  
       dvacore.dll   DVA Product   7.0.0  
       dvamarshal.dll   DVA Product   7.0.0  
       dvamediatypes.dll   DVA Product   7.0.0  
       dvaplayer.dll   DVA Product   7.0.0  
       dvatransport.dll   DVA Product   7.0.0  
       dvaunittesting.dll   DVA Product   7.0.0  
       dynamiclink.dll   DVA Product   7.0.0  
       ExtendScript.dll   ExtendScript 2013/03/21-12:10:31   79.535742   79.535742
       FileInfo.dll   Adobe XMP FileInfo 2013/03/19-12:09:02   79.151561   79.151561
       filter_graph.dll   AIF   5.0   79.534508
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       imslib.dll   IMSLib DLL   7.0.0.116  
       JP2KLib.dll   JP2KLib 2013/02/19-12:28:44   79.248139   79.248139
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libiomp5md.dll   Intel(R) OMP Runtime Library   5.0  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       LogSession.dll   LogSession   2.1.2.1785  
       mediacoreif.dll   DVA Product   7.0.0  
       MPS.dll   MPS 2013/03/15-13:25:52   79.535029   79.535029
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       PatchMatch.dll   PatchMatch 2013/06/11-12:08:08   79.542390   79.542390
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CC   CC  
       Plugin.dll   Adobe Photoshop CC   CC  
       PlugPlugOwl.dll   Adobe(R) CSXS PlugPlugOwl Standard Dll (64 bit)   4.0.1.34  
       PSArt.dll   Adobe Photoshop CC   CC  
       PSViews.dll   Adobe Photoshop CC   CC  
       SCCore.dll   ScCore 2013/03/21-12:10:31   79.535742   79.535742
       ScriptUIFlex.dll   ScriptUIFlex 2013/03/21-12:10:31   79.535742   79.535742
       svml_dispmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       tbb.dll   Intel(R) Threading Building Blocks for Windows   4, 1, 2012, 1003  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   4, 1, 2012, 1003  
       updaternotifications.dll   Adobe Updater Notifications Library   7.0.1.102 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   7.0.1.102
       WRServices.dll   WRServices Mon Feb 25 2013 16:09:10   Build 0.19078   0.19078
    Required plug-ins:
       3D Studio 14.1.1 (14.1.1 x001)
       Accented Edges 14.1.1
       Adaptive Wide Angle 14.1.1
       Angled Strokes 14.1.1
       Average 14.1.1 (14.1.1 x001)
       Bas Relief 14.1.1
       BMP 14.1.1
       Camera Raw 8.2
       Camera Raw Filter 8.2
       Chalk & Charcoal 14.1.1
       Charcoal 14.1.1
       Chrome 14.1.1
       Cineon 14.1.1 (14.1.1 x001)
       Clouds 14.1.1 (14.1.1 x001)
       Collada 14.1.1 (14.1.1 x001)
       Color Halftone 14.1.1
       Colored Pencil 14.1.1
       CompuServe GIF 14.1.1
       Conté Crayon 14.1.1
       Craquelure 14.1.1
       Crop and Straighten Photos 14.1.1 (14.1.1 x001)
       Crop and Straighten Photos Filter 14.1.1
       Crosshatch 14.1.1
       Crystallize 14.1.1
       Cutout 14.1.1
       Dark Strokes 14.1.1
       De-Interlace 14.1.1
       Dicom 14.1.1
       Difference Clouds 14.1.1 (14.1.1 x001)
       Diffuse Glow 14.1.1
       Displace 14.1.1
       Dry Brush 14.1.1
       Eazel Acquire 14.1.1 (14.1.1 x001)
       Embed Watermark 4.0
       Entropy 14.1.1 (14.1.1 x001)
       Extrude 14.1.1
       FastCore Routines 14.1.1 (14.1.1 x001)
       Fibers 14.1.1
       Film Grain 14.1.1
       Filter Gallery 14.1.1
       Flash 3D 14.1.1 (14.1.1 x001)
       Fresco 14.1.1
       Glass 14.1.1
       Glowing Edges 14.1.1
       Google Earth 4 14.1.1 (14.1.1 x001)
       Grain 14.1.1
       Graphic Pen 14.1.1
       Halftone Pattern 14.1.1
       HDRMergeUI 14.1.1
       IFF Format 14.1.1
       Ink Outlines 14.1.1
       JPEG 2000 14.1.1
       Kurtosis 14.1.1 (14.1.1 x001)
       Lens Blur 14.1.1
       Lens Correction 14.1.1
       Lens Flare 14.1.1
       Liquify 14.1.1
       Matlab Operation 14.1.1 (14.1.1 x001)
       Maximum 14.1.1 (14.1.1 x001)
       Mean 14.1.1 (14.1.1 x001)
       Measurement Core 14.1.1 (14.1.1 x001)
       Median 14.1.1 (14.1.1 x001)
       Mezzotint 14.1.1
       Minimum 14.1.1 (14.1.1 x001)
       MMXCore Routines 14.1.1 (14.1.1 x001)
       Mosaic Tiles 14.1.1
       Multiprocessor Support 14.1.1 (14.1.1 x001)
       Neon Glow 14.1.1
       Note Paper 14.1.1
       NTSC Colors 14.1.1 (14.1.1 x001)
       Ocean Ripple 14.1.1
       Oil Paint 14.1.1
       OpenEXR 14.1.1
       Paint Daubs 14.1.1
       Palette Knife 14.1.1
       Patchwork 14.1.1
       Paths to Illustrator 14.1.1
       PCX 14.1.1 (14.1.1 x001)
       Photocopy 14.1.1
       Photoshop 3D Engine 14.1.1 (14.1.1 x001)
       Photoshop Touch 14.0
       Picture Package Filter 14.1.1 (14.1.1 x001)
       Pinch 14.1.1
       Pixar 14.1.1 (14.1.1 x001)
       Plaster 14.1.1
       Plastic Wrap 14.1.1
       PNG 14.1.1
       Pointillize 14.1.1
       Polar Coordinates 14.1.1
       Portable Bit Map 14.1.1 (14.1.1 x001)
       Poster Edges 14.1.1
       Radial Blur 14.1.1
       Radiance 14.1.1 (14.1.1 x001)
       Range 14.1.1 (14.1.1 x001)
       Read Watermark 4.0
       Reticulation 14.1.1
       Ripple 14.1.1
       Rough Pastels 14.1.1
       Save for Web 14.1.1
       ScriptingSupport 14.1.1
       Shake Reduction 14.1.1
       Shear 14.1.1
       Skewness 14.1.1 (14.1.1 x001)
       Smart Blur 14.1.1
       Smudge Stick 14.1.1
       Solarize 14.1.1 (14.1.1 x001)
       Spatter 14.1.1
       Spherize 14.1.1
       Sponge 14.1.1
       Sprayed Strokes 14.1.1
       Stained Glass 14.1.1
       Stamp 14.1.1
       Standard Deviation 14.1.1 (14.1.1 x001)
       STL 14.1.1 (14.1.1 x001)
       Sumi-e 14.1.1
       Summation 14.1.1 (14.1.1 x001)
       Targa 14.1.1
       Texturizer 14.1.1
       Tiles 14.1.1
       Torn Edges 14.1.1
       Twirl 14.1.1
       Underpainting 14.1.1
       Vanishing Point 14.1.1
       Variance 14.1.1 (14.1.1 x001)
       Variations 14.1.1 (14.1.1 x001)
       Water Paper 14.1.1
       Watercolor 14.1.1
       Wave 14.1.1
       Wavefront|OBJ 14.1.1 (14.1.1 x001)
       WIA Support 14.1.1 (14.1.1 x001)
       Wind 14.1.1
       Wireless Bitmap 14.1.1 (14.1.1 x001)
       ZigZag 14.1.1
    Optional and third party plug-ins:
       Alias PIX 11.0 (11.0x20080919 [20080919.r.488 2008/09/19:02:00:00 cutoff; r branch])
       ElectricImage 11.0 (11.0x20080919 [20080919.r.488 2008/09/19:02:00:00 cutoff; r branch])
       HSB/HSL 11.0 (11.0x20080919 [20080919.r.488 2008/09/19:02:00:00 cutoff; r branch])
       JPEG 2000 2.0
       SGI RGB 11.0 (11.0x20080919 [20080919.r.488 2008/09/19:02:00:00 cutoff; r branch])
       SoftImage 11.0 (11.0x20080919 [20080919.r.488 2008/09/19:02:00:00 cutoff; r branch])
       Texture Fill 11.0 (11.0x20080919 [20080919.r.488 2008/09/19:02:00:00 cutoff; r branch])
       Wavefront RLA 11.0 (11.0x20080919 [20080919.r.488 2008/09/19:02:00:00 cutoff; r branch])
    Plug-ins that failed to load: NONE
    Flash:
       Extensis
       Adobe Exchange
       Kuler
    Installed TWAIN devices: NONE

Maybe you are looking for