Aperture 3.4 refuses to take Facebook login

Let me start by saying I've tried a few remedies found in other threads here, such as deleting Aperture's preferences file, clearing all caches, removing Aperture from my list of approved apps on Facebook, and restarting. This seems really bizarre.
The problem in a nutshell: If I try to add my Facebook account to Aperture, be it through the preferences pane or by selecting a photo and using the Share menu, Aperture either chokes on adding Facebook and nothing actually happens, or it crashes. Upon restarting Aperture, the Facebook entry under the library's Web heading is gone, as if I never started the process.
When Aperture manages to not crash but simply choke on the process, a Facebook entry will appear in the sidebar, but Aperture becomes partly unresponsive. Clicking the entry will not display any of my Facebook albums, and clicking any other library item does nothing. I can still scroll the photo viewer on the right, but clicking any photos also results in nothing.
I'm out of ideas at this point, so I would appreciate any. Thanks.

There is a problem with the Aperture installer. In some cases the installation is not complete, if you update on top of a recent version.
I suspect the facebook publisher and AccountConfigurationPlugin are not working. If you see similar lines in the crash logs, you should reinstall Aperture after removing the Application from the Applications Folder and the reinstalling again.
FacebookPublisher                   0x000000011eda34da -[IPHFacebookPlugin displayNameForUsername:] + 88
9   AccountConfigurationPlugin          0x0000000110c87fa5 -[AccountConfigurationProfileInformationDownloadOperation main] + 174
See this Support article by Apple on how to do the reinstall: It will tell you how to download the Trial again and reinstall on top of the Trial version.
Aperture 3.4: May quit unexpectedly on launch after updating
Regards
Léonie

Similar Messages

  • Google Search defaulting to Facebook Login

    When I try to search using the Google search engine on my iPad, it automatically re-routes me to Facebook. I have even tried typing in "www.google.com" in the Safari web address field, and even then it takes me straight to the Facebook login page. Help? This has only been happening for a few days and I don't know how to fix it. I've temporarily switched my default search engine to Yahoo, and I am not a fan, but it's all I can do when I want to search for something.
    How can I get this fixed?? Any ideas??

    Try clearing the browser cache: Open the Settings app > Safari > then tap Clear History and then Clear Cookies and Data.

  • ADF integration with Facebook Login

    Hi,
    just wanted to share a working example of Facebook Login integration in an ADF application, that only uses default ADF Faces tags. Here is how the JSF can look like:
    <?xml version='1.0' encoding='UTF-8'?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <f:view xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
        <af:document title="untitled1.jsf" id="d1">
            <af:form id="f1">
                <af:pageTemplate viewId="/oracle/templates/threeColumnTemplate.jspx" id="pt1">
                    <f:facet name="center">
                        <af:panelBox text="PanelBox2" id="pb2">
                            <f:facet name="toolbar"/>
                            <af:panelGroupLayout id="pgl1" layout="vertical">
                                <af:outputText value="Facebook Login" id="ot2"/>
                                <af:outputText value="&lt;fb:login-button show-faces=&quot;true&quot; width=&quot;200&quot; max-rows=&quot;1&quot;>&lt;/fb:login-button>" id="ot1"
                                               escape="false"/>
                            </af:panelGroupLayout>
                        </af:panelBox>
                    </f:facet>
                    <f:facet name="header">
                        <af:outputText value="&lt;div id=&quot;fb-root&quot;>&lt;/div>" id="ot3" escape="false"/>
                    </f:facet>
                    <f:facet name="end">
                        <af:panelBox text="PanelBox3" id="pb3">
                            <f:facet name="toolbar"/>
                        </af:panelBox>
                    </f:facet>
                    <f:facet name="start">
                        <af:panelBox text="PanelBox1" id="pb1">
                            <f:facet name="toolbar"/>
                        </af:panelBox>
                    </f:facet>
                    <f:facet name="branding"/>
                    <f:facet name="copyright"/>
                    <f:facet name="status"/>
                </af:pageTemplate>
            </af:form>
            <f:facet name="metaContainer">
                <af:resource type="javascript">
        window.fbAsyncInit = function() {
            FB.init({
                appId      : '115771338443915', // App ID
                channelUrl : 'http://localhost:8081/Application7-ViewController-context-root/channel.html', // Channel File
                status     : true, // check login status
                cookie     : true, // enable cookies to allow the server to access the session
                xfbml      : true  // parse XFBML
            FB.Event.subscribe('auth.authResponseChange', function(response) {
            // Here we specify what we do with the response anytime this event occurs.
                if (response.status === 'connected') {
                  // The response object is returned with a status field that lets the app know the current
                  // login status of the person. In this case, we're handling the situation where they
                  // have logged in to the app.
                  testAPI();
                } else if (response.status === 'not_authorized') {
                  // In this case, the person is logged into Facebook, but not into the app, so we call
                  // FB.login() to prompt them to do so.
                  // In real-life usage, you wouldn't want to immediately prompt someone to login
                  // like this, for two reasons:
                  // (1) JavaScript created popup windows are blocked by most browsers unless they
                  // result from direct interaction from people using the app (such as a mouse click)
                  // (2) it is a bad experience to be continually prompted to login upon page load.
                  FB.login();
                } else {
                  // In this case, the person is not logged into Facebook, so we call the login()
                  // function to prompt them to do so. Note that at this stage there is no indication
                  // of whether they are logged into the app. If they aren't then they'll see the Login
                  // dialog right after they log in to Facebook.
                  // The same caveats as above apply to the FB.login() call here.
                  FB.login();
        // Load the SDK asynchronously
        (function(d){
             var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
             if (d.getElementById(id)) {return;}
             js = d.createElement('script'); js.id = id; js.async = true;
             js.src = "//connect.facebook.net/en_US/all.js";
             ref.parentNode.insertBefore(js, ref);
        }(document));
        // Here we run a very simple test of the Graph API after login is successful.
        // This testAPI() function is only called in those cases.
        function testAPI() {
            console.log('Welcome!  Fetching your information.... ');
            FB.api('/me', function(response) {
              console.log('Good to see you, ' + response.name + '.');
              console.log('Response: ' + response);
    </af:resource>
            </f:facet>
        </af:document>
    </f:view>
    Note that you must have created a Facebook App on Facebook.com which provides the AppId number and set the App in "Sandbox"  mode.
    The jsf works in JDeveloper 11.1.2.4 and Glassfish 3.1.2 and ADF Essentials 11.1.2.4

    When using a web service proxy, you need to pass the data as an object, which' structure is defined in the web service proxy wrapper classes.
    When you've defined a data control for your bpel process, you can just drag and drop the 'initiate'/'execute', your operation and bind this to the update-button.
    When working with the proxy client, you need to populate your java class objects with the employee-object, this can be done in a backing bean or managed bean in your adf faces application.
    For more information you can always have a look at my blog where I've provided an explanation about the different possibilities of interfacing adf with SOA.
    Kind regards,
    Nathalie

  • Storing Facebook Login Data Of A user In An Application

    I've recently been working on a desktop application which allows users to view some of their facebook details such as albums, images and statuses within my application itself. However I've noticed that every time the user access the app before they can access these details they need to be taken to facebook, actually login and then close internet explorer before my application can access these details. As far as I know this is a necessary validation procedure however I believe this defeats the object of having a user's facebook details in my application when the user has to first access facebook anyway to login and see these details when they could have simply stayed within facebook in internet explorerand viewed these details there.
    What I'm wondering is if there's any workaround to cut out this middle man and perhaps allow a user to store their facebook login details in my application so that the app can perhaps log them in automatically by submitting these details to facebook when they access the app and they won't need to visit facebook to log in manually. Is there any way to do this perhaps in an invisible html component or something?

    Yep the problem is I'm trying to cut out the part where the user gets taken to the login page altogether, my reasons for this being that:-
    1. My app operates in full screen mode and navigating a user to internet explorer to sign in to facebook forces them out of full screen mode. I do have links to websites and we content in my app but these all simply bring up a html component containing the selected website within my application itself.
    2. My client wants my app to be completely self-contained so obviously I won't be able to have it switch to internet explorer, it would be better if I could at least get the facebook login to open in the application in a html component rather than navigate to the web.
    3. I'd also like to be able to save these login details in the app i.e. the user enters their username and password into my app similar to the way internet explorer allows and they are saved within the app for good until the user chooses to change them. I can't see this being possible though.

  • Into my download stack which appears to be a Facebook login page to someone who is not me but has my e/mail as the primary account,should I be concerned?

    I have clicked on a link received in my e/mai which has put a download  into my download stack which appears to be a Facebook login page to someone who is not me but has my e/mail as the primary account,should I be concerned?

    I would do the following just to be safe.
    Change your email password so anyone trying to use your email address won't be able to or delete that email address from where ever you got it after getting a new one.
    I would trash the download.

  • I'm trying to set up my new iPhone 5s from a backup of my previous iPhone, when trying to enter my Facebook login info in settings I keep getting the following error message : error signing in could not communicate with server, please help !

    I'm trying to set up my new iPhone 5s from a backup of my previous iPhone, when trying to enter my Facebook login info in settings I keep getting the following error message : error signing in could not communicate with server, please help !

    Can you access other apps? Can you acess the internet? Can you access applications that use internet besides facebook?
    If answer is yes to all of these; contact Facebook.

  • Facebook Login Window Position on screen

    I am working on a kiosk application that must be ADA compliant. Since the screen is vertical and designed for a standing adult, to be ADA comliant, there must be a mode where the UI is all on the lower portion of the screen. This is simple except that I cannot get the Facebook Login window to display in the lower portion of the screen, it will only appear in the center in a new OS window. The LoginWindow class has two properties of width and height that can be set, but not the position of the window on the screen. Is there a way to set a position for where the Facebook Login window appears on screen?

    That sounds like an OS level question rather than an AIR specific question.  You may have better luck searching for support on your OS.

  • Aperture 3.1.1 upload to facebook

    This worked fine until i enabled https on facebook. I can certainly disable https, upload, enable but does anyone know a better solution?
    Thanks,
    Feik

    Feik,
    There was a thread on this earlier in the week but I cannot find it now.
    In short, no, Aperture is not forward compatible with Facebook, so that feature will not work.
    You stumbled upon a fact of how our connected world works, and it is sure to be a bigger problem in the future.
    We have software that works with one version of a product, but then someone updates that product, and our current software cannot work with that updated product. I.e., we have a version of Aperture that works with the "old" Facebook. Now there is a "new" Facebook, but until Apple makes an update to Aperture, we are not compatible with the "new" Facebook.
    nathan

  • What is my Skype Id when using facebook login

    What is my skype id when using facebook login I cannot find it to give to people to connect to me many thanks
    Solved!
    Go to Solution.

    Theu can use your generic Skype name:
    facebook:yourname
    where yourname is the name you use to login to Facebook.

  • IPhoto Facebook login

    iPhoto does not recognize Facebook login. After failing, I receive from Facebook a code to enter, but iPhoto does not have place to enter the code. What do I do to correct it?

    We are having the same problem. However, I don't think it has anything to do with the software on our computer because the exporter works on my facebook account but not on my wife's. But I can't see what causes it.
    Thorsten

  • Deploying printers takes 2 logins to show up

    We're trying to deploy printers through group policy. It works but if you reboot a PC Then the user logs in they aren't there, but if you log out and back in they are. It always seems to take 2 logins to get the printers. Can this be fixed?
    Jason

    Sure thing here it is let me know if you see anything that can help
    Group Policy Management
    body { font-size:68%;font-family:MS Shell Dlg; margin:0px,0px,0px,0px; border: 1px solid #666666; background:#F6F6F6; width:100%; word-break:normal; word-wrap:break-word; } .head { font-weight:bold; font-size:160%; font-family:MS Shell Dlg; width:100%; color:#6587DC;
    background:#E3EAF9; border:1px solid #5582D2; padding-left:8px; height:24px; } .path { margin-left: 10px; margin-top: 10px; margin-bottom:5px;width:100%; } .info { padding-left:10px;width:100%; } table { font-size:100%; width:100%; border:1px solid #999999;
    } th { border-bottom:1px solid #999999; text-align:left; padding-left:10px; height:24px; } td { background:#FFFFFF; padding-left:10px; padding-bottom:10px; padding-top:10px; } .btn { width:100%; text-align:right; margin-top:16px; } .hdr { font-weight:bold;
    border:1px solid #999999; text-align:left; padding-top: 4px; padding-left:10px; height:24px; margin-bottom:-1px; width:100%; } .bdy { width:100%; height:182px; display:block; overflow:scroll; z-index:2; background:#FFFFFF; padding-left:10px; padding-bottom:10px;
    padding-top:10px; border:1px solid #999999; } button { width:6.9em; height:2.1em; font-size:100%; font-family:MS Shell Dlg; margin-right:15px; } @media print { .bdy { display:block; overflow:visible; } button { display:none; } .head { color:#000000; background:#FFFFFF;
    border:1px solid #000000; } } 
    Setting Path:
    Explanation
    Print 
    Close 
    No explanation is available for this setting.
    Supported On:
    Not available
    Group Policy Results 
    CRCSD\kennmantest 
    Data collected on: 11/14/2014 4:12:29 PM hide all 
    Summaryhide
    No data available.
      During last user policy refresh on 11/14/2014 4:10:09 PM 
       A fast link was detected More information... 
    Computer Detailshide
    No data available.
    User Detailshide
    Generalhide
    User name CRCSD\kennmantest 
    Domain crcsd.abc 
    Organizational Unit crcsd.abc/Special/Student Mandatory 
    Security Group Membership show 
    CRCSD\Domain Users
    Everyone
    BUILTIN\Users
    NT AUTHORITY\INTERACTIVE
    CONSOLE LOGON
    NT AUTHORITY\Authenticated Users
    NT AUTHORITY\This Organization
    LOCAL
    CRCSD\Kenn Mandatory
    CRCSD\Dist Lock Games
    CRCSD\Kenn Students
    CRCSD\Students
    CRCSD\Kenn Lock Games
    Mandatory Label\Medium Mandatory Level 
    Component Statushide
    Component Name Status Time Taken Last Process Time Event Log 
    Group Policy Infrastructure Success   11/14/2014 4:10:09 PM   
    Deployed Printer Connections Success   11/14/2014 2:31:19 PM   
    Folder Redirection Success   11/14/2014 4:09:59 PM   
    Group Policy Drive Maps Success   11/14/2014 2:31:19 PM   
    Group Policy Printers Success   11/14/2014 2:31:46 PM   
    Group Policy Registry Success   11/14/2014 2:31:20 PM   
    Group Policy Shortcuts Success   11/14/2014 2:31:49 PM   
    Internet Explorer Zonemapping Success (no data)   11/14/2014 2:31:16 PM   
    Registry Success   11/14/2014 2:31:16 PM   
    Settingshide
    Policieshide
    Windows Settingshide
    Security Settingshide
    Public Key Policies/Certificate Services Client - Auto-Enrollment Settingshide
    Policy Setting Winning GPO 
    Automatic certificate management Enabled [Default setting] 
    Option Setting 
    Enroll new certificates, renew expired certificates, process pending certificate requests and remove revoked certificates Disabled 
    Update and manage certificates that use certificate templates from Active Directory Disabled 
    Log expiry events, and, for user policy, only show expiry notifications when the percentage of remaining certificate lifetime is 10% [Default setting] 
    Additional stores to log expiry events  [Default setting] 
    Display user notifications for expiring certificates in user and computer MY store Disabled [Default setting] 
    Software Restriction Policieshide
    Winning GPO Lock Games 
    Enforcement 
    Policy Setting 
    Apply Software Restriction Policies to the following All software files except libraries (such as DLLs) 
    Apply Software Restriction Policies to the following users All users 
    When applying Software Restriction Policies Ignore certificate rules 
    Designated File Types 
    File Extension File Type 
    ADE Microsoft Access Project Extension 
    ADP Microsoft Access Project 
    BAS BAS File 
    BAT Windows Batch File 
    CHM Compiled HTML Help file 
    CMD Windows Command Script 
    COM MS-DOS Application 
    CPL Control panel item 
    CRT Security Certificate 
    EXE Application 
    HLP Help file 
    HTA HTML Application 
    INF Setup Information 
    INS INS File 
    ISP ISP File 
    LNK Shortcut 
    MDB Microsoft Access Database 
    MDE Microsoft Access MDE Database 
    MSC Microsoft Common Console Document 
    MSI Windows Installer Package 
    MSP Windows Installer Patch 
    MST MST File 
    OCX ActiveX control 
    PCD PCD File 
    PIF Shortcut to MS-DOS Program 
    REG Registration Entries 
    SCR Screen saver 
    SHS SHS File 
    URL Internet Shortcut 
    VB VB File 
    WSC Windows Script Component 
    Trusted Publishers 
    Trusted publisher management Allow all administrators and users to manage user's own Trusted Publishers 
    Certificate verification None 
    Software Restriction Policies/Security Levelshide
    Policy Setting Winning GPO 
    Default Security Level Unrestricted Lock Games 
    Software Restriction Policies/Additional Ruleshide
    Hash Ruleshide
    Chess.exe (6.1.7600.16385); Chess.exe; Executable for Chess Game; Microsoft® Windows® Operating System; Microsoft Corporation 
    Security Level Disallowed 
    Description Games - Chess 
    Date last modified 9/26/2013 10:05:29 AM 
    Winning GPO Lock Games 
    freecell.exe (6.1.7600.16385); freecell.exe; Executable for FreeCell Game; Microsoft® Windows® Operating System; Microsoft Corporation 
    Security Level Disallowed 
    Description Games - FreeCell 
    Date last modified 9/26/2013 10:05:54 AM 
    Winning GPO Lock Games 
    hearts.exe (6.1.7600.16385); hearts.exe; Executable for Hearts Game; Microsoft® Windows® Operating System; Microsoft Corporation 
    Security Level Disallowed 
    Description Games - Hearts 
    Date last modified 9/26/2013 10:06:13 AM 
    Winning GPO Lock Games 
    mahjong.exe (6.1.7600.16385); mahjong.exe; Executable for Mahjong Titans Game; Microsoft® Windows® Operating System; Microsoft Corporation 
    Security Level Disallowed 
    Description Games - Mahjong 
    Date last modified 9/26/2013 10:06:30 AM 
    Winning GPO Lock Games 
    minesweeper.exe (6.1.7600.16385); minesweeper.exe; Executable for Minesweeper Game; Microsoft® Windows® Operating System; Microsoft Corporation 
    Security Level Disallowed 
    Description Games - Minesweeper 
    Date last modified 9/26/2013 10:06:43 AM 
    Winning GPO Lock Games 
    purbleplace.exe (6.1.7600.16385); purbleplace.exe; Executable for Purble Place Game; Microsoft® Windows® Operating System; Microsoft Corporation 
    Security Level Disallowed 
    Description Games - Purble Palace 
    Date last modified 9/26/2013 10:07:01 AM 
    Winning GPO Lock Games 
    solitaire.exe (6.1.7600.16385); solitaire.exe; Executable for Solitaire Game; Microsoft® Windows® Operating System; Microsoft Corporation 
    Security Level Disallowed 
    Description Games - Solitare 
    Date last modified 9/26/2013 10:07:16 AM 
    Winning GPO Lock Games 
    spidersolitaire.exe (6.1.7600.16385); spidersolitaire.exe; Executable for Spider Solitaire Game; Microsoft® Windows® Operating System; Microsoft Corporation 
    Security Level Disallowed 
    Description Games - Spider Solitaire 
    Date last modified 9/26/2013 10:07:39 AM 
    Winning GPO Lock Games 
    Path Ruleshide
    %HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SystemRoot% 
    Security Level Unrestricted 
    Description  
    Date last modified 9/26/2013 9:51:08 AM 
    Winning GPO Lock Games 
    %HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\ProgramFilesDir% 
    Security Level Unrestricted 
    Description  
    Date last modified 9/26/2013 9:51:08 AM 
    Winning GPO Lock Games 
    C:\Program Files\Microsoft Games 
    Security Level Disallowed 
    Description Games Folder for Windows 7 
    Date last modified 9/26/2013 9:55:33 AM 
    Winning GPO Lock Games 
    Folder Redirectionhide
    Documentshide
    Winning GPO Student Best Practices 
    Setting: Basic (Redirect everyone's folder to the same location)hide
    Path: \\dist-data2\techtest\manaccts\
    Optionshide
    Grant user exclusive rights to Documents Disabled 
    Move the contents of Documents to the new location Disabled 
    Also apply redirection policy to Windows 2000, Windows 2000 server, Windows XP, and Windows Server 2003 operating systems Disabled 
    Policy Removal Behavior Leave contents 
    Configuration Control Group Policy 
    Primary Computer Evaluation Not evaluated because primary computer policy is not enabled 
    Musichide
    Winning GPO Student Best Practices 
    Setting: Basic (Redirect everyone's folder to the same location)hide
    Path: \\dist-data2\techtest\manaccts\My Music
    Optionshide
    Grant user exclusive rights to Music Disabled 
    Move the contents of Music to the new location Disabled 
    Also apply redirection policy to Windows 2000, Windows 2000 server, Windows XP, and Windows Server 2003 operating systems Disabled 
    Policy Removal Behavior Leave contents 
    Configuration Control Group Policy 
    Primary Computer Evaluation Not evaluated because primary computer policy is not enabled 
    Pictureshide
    Winning GPO Student Best Practices 
    Setting: Basic (Redirect everyone's folder to the same location)hide
    Path: \\dist-data2\techtest\manaccts\My Pictures
    Optionshide
    Grant user exclusive rights to Pictures Disabled 
    Move the contents of Pictures to the new location Disabled 
    Also apply redirection policy to Windows 2000, Windows 2000 server, Windows XP, and Windows Server 2003 operating systems Disabled 
    Policy Removal Behavior Leave contents 
    Configuration Control Group Policy 
    Primary Computer Evaluation Not evaluated because primary computer policy is not enabled 
    Videoshide
    Winning GPO Student Best Practices 
    Setting: Basic (Redirect everyone's folder to the same location)hide
    Path: \\dist-data2\techtest\manaccts\My Videos
    Optionshide
    Grant user exclusive rights to Videos Disabled 
    Move the contents of Videos to the new location Disabled 
    Also apply redirection policy to Windows 2000, Windows 2000 server, Windows XP, and Windows Server 2003 operating systems Disabled 
    Policy Removal Behavior Leave contents 
    Configuration Control Group Policy 
    Primary Computer Evaluation Not evaluated because primary computer policy is not enabled 
    Administrative Templateshide
    Policy definitions (ADMX files) retrieved from the central store.Control Panel/Personalizationhide
    Policy Setting Winning GPO 
    Enable screen saver Disabled Student Best Practices 
    Prevent changing desktop background Enabled Student Best Practices 
    Control Panel/Printershide
    Policy Setting Winning GPO 
    Point and Print Restrictions Disabled Default Domain Policy 
    Microsoft Office 2013/Global Options/Customizehide
    Policy Setting Winning GPO 
    Allow roaming of all user customizations Enabled Student Best Practices 
    Microsoft Office 2013/Miscellaneoushide
    Policy Setting Winning GPO 
    Disable the Office Start screen for all Office applications Enabled Student Best Practices 
    Start Menu and Taskbarhide
    Policy Setting Winning GPO 
    Prevent changes to Taskbar and Start Menu Settings Enabled Student Best Practices 
    Systemhide
    Policy Setting Winning GPO 
    Don't run specified Windows applications Enabled Lock Games 
    List of disallowed applications 
    install.exe 
    mahjong.exe 
    setup.bat 
    minesweeper.exe 
    sol.exe 
    spider.exe 
    pinball.exe 
    solitaire.exe 
    winmine.exe 
    setup.exe 
    spidersolitaire.exe 
    hearts.exe 
    mshearts.exe 
    install.bat 
    freecell.exe 
    purbleplace.exe 
    chess.exe 
    poledit.exe 
    Policy Setting Winning GPO 
    Prevent access to registry editing tools Enabled Student Best Practices 
    Disable regedit from running silently? No 
    System/Driver Installationhide
    Policy Setting Winning GPO 
    Code signing for device drivers Enabled Student Mandatory 
    When Windows detects a driver file without a digital signature: Ignore 
    Windows Components/Internet Explorerhide
    Policy Setting Winning GPO 
    Pop-up allow list Enabled Student Best Practices 
    Enter the list of sites here. Source GPO 
    *.mmhpr.com Student Best Practices 
    *.vantage.com Student Best Practices 
    *.programworkshop.com Student Best Practices 
    Policy Setting Winning GPO 
    Prevent running First Run wizard Enabled Student Best Practices 
    Select your choice Go directly to home page 
    Windows Components/Internet Explorer/Internet Control Panel/Security Pagehide
    Policy Setting Winning GPO 
    Site to Zone Assignment List Enabled Student Best Practices 
    Enter the zone assignments here.   Source GPO 
    http://*.mmhpr.com 2 Student Best Practices 
    http://*.platoweb.com 2 Student Best Practices 
    https://*.platoweb.com 2 Student Best Practices 
    adfs.cr.k12.ia.us 1 Student Best Practices 
    crcsd.sharepoint.com 1 Student Best Practices 
    https://*.instructure.com 2 Student Best Practices 
    https://*.mmhpr.com 2 Student Best Practices 
    Windows Components/Internet Explorer/Privacyhide
    Policy Setting Winning GPO 
    Turn off Tracking Protection Enabled Student Best Practices 
    Preferenceshide
    Windows Settingshide
    Drive Mapshide
    Drive Map (Drive: I)hide
    The following settings have applied to this object. Within this category, settings nearest the top of the report are the prevailing settings when resolving conflicts.I:hide
    Winning GPO Student Mandatory 
    Result: Failure (Error Code: 0x80070035)Generalhide
    Action Update 
    PropertiesLetter I 
    Location \\KENN-AP1.crcsd.abc\kenn-std-apps 
    Reconnect Disabled 
    Use first available Disabled 
    Hide/Show this drive No change 
    Hide/Show all drives No change 
    Drive Map (Drive: M)hide
    The following settings have applied to this object. Within this category, settings nearest the top of the report are the prevailing settings when resolving conflicts.M:hide
    Winning GPO Student Mandatory 
    Result: SuccessGeneralhide
    Action Update 
    PropertiesLetter M 
    Location \\DIST-AP1.crcsd.abc\dist-std-apps 
    Reconnect Disabled 
    Use first available Disabled 
    Hide/Show this drive No change 
    Hide/Show all drives No change 
    Drive Map (Drive: K)hide
    The following settings have applied to this object. Within this category, settings nearest the top of the report are the prevailing settings when resolving conflicts.K:hide
    Winning GPO Student Mandatory 
    Result: SuccessGeneralhide
    Action Update 
    PropertiesLetter K 
    Location \\DIST-DATA3.crcsd.abc\kenn-std-data 
    Reconnect Disabled 
    Use first available Disabled 
    Hide/Show this drive No change 
    Hide/Show all drives No change 
    Registryhide
    Registry item (Key path: HKEY_CURRENT_USER\Control Panel\Desktop, Value name: Wallpaper)hide
    The following settings have applied to this object. Within this category, settings nearest the top of the report are the prevailing settings when resolving conflicts.Wallpaperhide
    Winning GPO Student Mandatory 
    Result: SuccessGeneralhide
    Action Update 
    PropertiesHive HKEY_CURRENT_USER 
    Key path Control Panel\Desktop 
    Value name Wallpaper 
    Value type REG_SZ 
    Value data \\DIST-AP1.crcsd.abc\Dist-std-apps\Mandatory\Kennedy\kenn.bmp 
    Registry item (Key path: HKEY_CURRENT_USER\Control Panel\Desktop, Value name: WallpaperStyle)hide
    The following settings have applied to this object. Within this category, settings nearest the top of the report are the prevailing settings when resolving conflicts.WallpaperStylehide
    Winning GPO Student Mandatory 
    Result: SuccessGeneralhide
    Action Update 
    PropertiesHive HKEY_CURRENT_USER 
    Key path Control Panel\Desktop 
    Value name WallpaperStyle 
    Value type REG_SZ 
    Value data 2 
    Registry item (Key path: HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Toolbar, Value name: Locked)hide
    The following settings have applied to this object. Within this category, settings nearest the top of the report are the prevailing settings when resolving conflicts.Lockedhide
    Winning GPO Student Mandatory 
    Result: SuccessGeneralhide
    Action Update 
    PropertiesHive HKEY_CURRENT_USER 
    Key path Software\Microsoft\Internet Explorer\Toolbar 
    Value name Locked 
    Value type REG_DWORD 
    Value data 0x1 (1) 
    Registry item (Key path: HKEY_CURRENT_USER\Software\Policies\Microsoft\Internet Explorer\Control Panel, Value name: HomePage)hide
    The following settings have applied to this object. Within this category, settings nearest the top of the report are the prevailing settings when resolving conflicts.HomePagehide
    Winning GPO Student Mandatory 
    Result: SuccessGeneralhide
    Action Update 
    PropertiesHive HKEY_CURRENT_USER 
    Key path Software\Policies\Microsoft\Internet Explorer\Control Panel 
    Value name HomePage 
    Value type REG_DWORD 
    Value data 0x1 (1) 
    Registry item (Key path: HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MINIE, Value name: LinksBandEnabled)hide
    The following settings have applied to this object. Within this category, settings nearest the top of the report are the prevailing settings when resolving conflicts.LinksBandEnabledhide
    Winning GPO Student Mandatory 
    Result: SuccessGeneralhide
    Action Update 
    PropertiesHive HKEY_CURRENT_USER 
    Key path Software\Microsoft\Internet Explorer\MINIE 
    Value name LinksBandEnabled 
    Value type REG_DWORD 
    Value data 0x1 (1) 
    Registry item (Key path: HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MINIE, Value name: ShowTabsBelowAddressBar)hide
    The following settings have applied to this object. Within this category, settings nearest the top of the report are the prevailing settings when resolving conflicts.ShowTabsBelowAddressBarhide
    Winning GPO Student Mandatory 
    Result: SuccessGeneralhide
    Action Update 
    PropertiesHive HKEY_CURRENT_USER 
    Key path Software\Microsoft\Internet Explorer\MINIE 
    Value name ShowTabsBelowAddressBar 
    Value type REG_DWORD 
    Value data 0x1 (1) 
    Registry item (Key path: HKEY_CURRENT_USER\Software\Policies\Microsoft\Internet Explorer\Main, Value name: Start Page)hide
    The following settings have applied to this object. Within this category, settings nearest the top of the report are the prevailing settings when resolving conflicts.Start Pagehide
    Winning GPO Student Mandatory 
    Result: SuccessGeneralhide
    Action Update 
    PropertiesHive HKEY_CURRENT_USER 
    Key path Software\Policies\Microsoft\Internet Explorer\Main 
    Value name Start Page 
    Value type REG_SZ 
    Value data http://kenn.cr.k12.ia.us 
    Shortcutshide
    Shortcut (Path: C:\Users\kennmantest\Favorites\Links\Canvas.url)hide
    The following settings have applied to this object. Within this category, settings nearest the top of the report are the prevailing settings when resolving conflicts.Canvashide
    Winning GPO Student Mandatory 
    Result: SuccessGeneralhide
    Action Update 
    AttributesTarget type URL 
    Shortcut path C:\Users\kennmantest\Favorites\Links\Canvas.url 
    Target URL http://crcsd.instructure.com 
    Shortcut key None 
    Run Normal window 
    Shortcut (Path: C:\Users\kennmantest\Favorites\Links\CR Schools Homepage.url)hide
    The following settings have applied to this object. Within this category, settings nearest the top of the report are the prevailing settings when resolving conflicts.CR Schools Homepagehide
    Winning GPO Student Mandatory 
    Result: SuccessGeneralhide
    Action Update 
    AttributesTarget type URL 
    Shortcut path C:\Users\kennmantest\Favorites\Links\CR Schools Homepage.url 
    Target URL http://www.cr.k12.ia.us 
    Shortcut key None 
    Run Normal window 
    Shortcut (Path: C:\Users\kennmantest\Desktop\Excel 2013.lnk)hide
    The following settings have applied to this object. Within this category, settings nearest the top of the report are the prevailing settings when resolving conflicts.Excel 2013hide
    Winning GPO Student Mandatory 
    Result: SuccessGeneralhide
    Action Update 
    AttributesTarget type File system object 
    Shortcut path C:\Users\kennmantest\Desktop\Excel 2013.lnk 
    Target path C:\Program Files (x86)\Microsoft Office\Office15\EXCEL.EXE 
    Icon path C:\Program Files (x86)\Microsoft Office\Office15\EXCEL.EXE 
    Icon index 0 
    Shortcut key None 
    Run Normal window 
    Shortcut (Path: C:\Users\kennmantest\Desktop\Canvas.url)hide
    The following settings have applied to this object. Within this category, settings nearest the top of the report are the prevailing settings when resolving conflicts.Canvashide
    Winning GPO Student Mandatory 
    Result: SuccessGeneralhide
    Action Update 
    AttributesTarget type URL 
    Shortcut path C:\Users\kennmantest\Desktop\Canvas.url 
    Target URL http://crcsd.instructure.com 
    Shortcut key None 
    Run Normal window 
    Shortcut (Path: C:\Users\kennmantest\Desktop\Word 2013.lnk)hide
    The following settings have applied to this object. Within this category, settings nearest the top of the report are the prevailing settings when resolving conflicts.Word 2013hide
    Winning GPO Student Mandatory 
    Result: SuccessGeneralhide
    Action Update 
    AttributesTarget type File system object 
    Shortcut path C:\Users\kennmantest\Desktop\Word 2013.lnk 
    Target path C:\Program Files (x86)\Microsoft Office\Office15\WINWORD.EXE 
    Icon path C:\Program Files (x86)\Microsoft Office\Office15\WINWORD.EXE 
    Icon index 0 
    Shortcut key None 
    Run Normal window 
    Shortcut (Path: C:\Users\kennmantest\Favorites\Links\PowerSchool.url)hide
    The following settings have applied to this object. Within this category, settings nearest the top of the report are the prevailing settings when resolving conflicts.PowerSchoolhide
    Winning GPO Student Mandatory 
    Result: SuccessGeneralhide
    Action Update 
    AttributesTarget type URL 
    Shortcut path C:\Users\kennmantest\Favorites\Links\PowerSchool.url 
    Target URL http://pscr.gwaea.org 
    Shortcut key None 
    Run Normal window 
    Shortcut (Path: C:\Users\kennmantest\Favorites\Links\Office 365.url)hide
    The following settings have applied to this object. Within this category, settings nearest the top of the report are the prevailing settings when resolving conflicts.Office 365hide
    Winning GPO Student Mandatory 
    Result: SuccessGeneralhide
    Action Update 
    AttributesTarget type URL 
    Shortcut path C:\Users\kennmantest\Favorites\Links\Office 365.url 
    Target URL https://crdistrict-my.sharepoint.com/ 
    Shortcut key None 
    Run Normal window 
    Shortcut (Path: C:\Users\kennmantest\Desktop\PowerSchool.url)hide
    The following settings have applied to this object. Within this category, settings nearest the top of the report are the prevailing settings when resolving conflicts.PowerSchoolhide
    Winning GPO Student Mandatory 
    Result: SuccessGeneralhide
    Action Update 
    AttributesTarget type URL 
    Shortcut path C:\Users\kennmantest\Desktop\PowerSchool.url 
    Target URL http://pscr.gwaea.org 
    Shortcut key None 
    Run Normal window 
    Shortcut (Path: C:\Users\kennmantest\Desktop\Shortcuts.lnk)hide
    The following settings have applied to this object. Within this category, settings nearest the top of the report are the prevailing settings when resolving conflicts.Shortcutshide
    Winning GPO Student Mandatory 
    Result: SuccessGeneralhide
    Action Update 
    AttributesTarget type File system object 
    Shortcut path C:\Users\kennmantest\Desktop\Shortcuts.lnk 
    Target path \\DIST-AP1.crcsd.abc\Dist-std-apps\Mandatory\Kennedy\Shortcuts 
    Shortcut key None 
    Run Normal window 
    Shortcut (Path: C:\Users\kennmantest\Desktop\PowerPoint 2013.lnk)hide
    The following settings have applied to this object. Within this category, settings nearest the top of the report are the prevailing settings when resolving conflicts.PowerPoint 2013hide
    Winning GPO Student Mandatory 
    Result: SuccessGeneralhide
    Action Update 
    AttributesTarget type File system object 
    Shortcut path C:\Users\kennmantest\Desktop\PowerPoint 2013.lnk 
    Target path C:\Program Files (x86)\Microsoft Office\Office15\POWERPNT.EXE 
    Icon path C:\Program Files (x86)\Microsoft Office\Office15\POWERPNT.EXE 
    Icon index 0 
    Shortcut key None 
    Run Normal window 
    Shortcut (Path: C:\Users\kennmantest\Desktop\Internet Explorer.lnk)hide
    The following settings have applied to this object. Within this category, settings nearest the top of the report are the prevailing settings when resolving conflicts.Internet Explorerhide
    Winning GPO Student Mandatory 
    Result: SuccessGeneralhide
    Action Update 
    AttributesTarget type File system object 
    Shortcut path C:\Users\kennmantest\Desktop\Internet Explorer.lnk 
    Target path C:\Program Files (x86)\Internet Explorer\iexplore.exe 
    Icon path C:\Program Files (x86)\Internet Explorer\iexplore.exe 
    Icon index 0 
    Shortcut key None 
    Run Normal window 
    Shortcut (Path: C:\Users\kennmantest\Desktop\Office 365.url)hide
    The following settings have applied to this object. Within this category, settings nearest the top of the report are the prevailing settings when resolving conflicts.Office 365hide
    Winning GPO Student Mandatory 
    Result: SuccessGeneralhide
    Action Update 
    AttributesTarget type URL 
    Shortcut path C:\Users\kennmantest\Desktop\Office 365.url 
    Target URL https://crdistrict-my.sharepoint.com/ 
    Shortcut key None 
    Run Normal window 
    Control Panel Settingshide
    Printershide
    Local Printer (Name: Microsoft XPS Document Writer)hide
    The following settings have applied to this object. Within this category, settings nearest the top of the report are the prevailing settings when resolving conflicts.Microsoft XPS Document Writerhide
    Winning GPO Student Mandatory 
    Result: SuccessGeneralhide
    Action Update 
    PropertiesName Microsoft XPS Document Writer 
    Port XPSPort 
    Shared printer path Microsoft XPS Document Writer 
    Set this printer as default printer True 
    Shared Printer (Name: \\KENN-PRINT1.crcsd.abc\Kenn-68-1nb)hide
    The following settings have applied to this object. Within this category, settings nearest the top of the report are the prevailing settings when resolving conflicts.Kenn-68-1nbhide
    Winning GPO Student Mandatory 
    Result: SuccessGeneralhide
    Action Update 
    PropertiesShare Path \\KENN-PRINT1.crcsd.abc\Kenn-68-1nb 
    Set this printer as default printer False 
    Local Port  
    Shared Printer (Name: \\KENN-PRINT1.crcsd.abc\Kenn-220-1nb)hide
    The following settings have applied to this object. Within this category, settings nearest the top of the report are the prevailing settings when resolving conflicts.Kenn-220-1nbhide
    Winning GPO Student Mandatory 
    Result: SuccessGeneralhide
    Action Update 
    PropertiesShare Path \\KENN-PRINT1.crcsd.abc\Kenn-220-1nb 
    Set this printer as default printer False 
    Local Port  
    Shared Printer (Name: \\KENN-PRINT1.crcsd.abc\Kenn-359-1nb)hide
    The following settings have applied to this object. Within this category, settings nearest the top of the report are the prevailing settings when resolving conflicts.Kenn-359-1nbhide
    Winning GPO Student Mandatory 
    Result: SuccessGeneralhide
    Action Update 
    PropertiesShare Path \\KENN-PRINT1.crcsd.abc\Kenn-359-1nb 
    Set this printer as default printer False 
    Local Port  
    Shared Printer (Name: \\KENN-PRINT1.crcsd.abc\Kenn-LIMC-1nb)hide
    The following settings have applied to this object. Within this category, settings nearest the top of the report are the prevailing settings when resolving conflicts.Kenn-LIMC-1nbhide
    Winning GPO Student Mandatory 
    Result: SuccessGeneralhide
    Action Update 
    PropertiesShare Path \\KENN-PRINT1.crcsd.abc\Kenn-LIMC-1nb 
    Set this printer as default printer False 
    Local Port  
    Shared Printer (Name: \\KENN-PRINT1.crcsd.abc\Kenn-73A-1nb)hide
    The following settings have applied to this object. Within this category, settings nearest the top of the report are the prevailing settings when resolving conflicts.Kenn-73A-1nbhide
    Winning GPO Student Mandatory 
    Result: SuccessGeneralhide
    Action Update 
    PropertiesShare Path \\KENN-PRINT1.crcsd.abc\Kenn-73A-1nb 
    Set this printer as default printer False 
    Local Port  
    Shared Printer (Name: \\KENN-PRINT1.crcsd.abc\Kenn-UIMC-1nc)hide
    The following settings have applied to this object. Within this category, settings nearest the top of the report are the prevailing settings when resolving conflicts.Kenn-UIMC-1nchide
    Winning GPO Student Mandatory 
    Result: SuccessGeneralhide
    Action Update 
    PropertiesShare Path \\KENN-PRINT1.crcsd.abc\Kenn-UIMC-1nc 
    Set this printer as default printer False 
    Local Port  
    Shared Printer (Name: \\KENN-PRINT1.crcsd.abc\Kenn-210A-1nb)hide
    The following settings have applied to this object. Within this category, settings nearest the top of the report are the prevailing settings when resolving conflicts.Kenn-210A-1nbhide
    Winning GPO Student Mandatory 
    Result: SuccessGeneralhide
    Action Update 
    PropertiesShare Path \\KENN-PRINT1.crcsd.abc\Kenn-210A-1nb 
    Set this printer as default printer False 
    Local Port  
    Shared Printer (Name: \\KENN-PRINT1.crcsd.abc\Kenn-64BL-1nc)hide
    The following settings have applied to this object. Within this category, settings nearest the top of the report are the prevailing settings when resolving conflicts.Kenn-64BL-1nchide
    Winning GPO Student Mandatory 
    Result: SuccessGeneralhide
    Action Update 
    PropertiesShare Path \\KENN-PRINT1.crcsd.abc\Kenn-64BL-1nc 
    Set this printer as default printer False 
    Local Port  
    Group Policy Objectshide
    Applied GPOshide
    Default Domain Policy [{31B2F340-016D-11D2-945F-00C04FB984F9}]hide
    Link Location crcsd.abc 
    Extensions Configured Registry
    {3060E8D0-7020-11D2-842D-00C04FA372D4} 
    Enforced No 
    Disabled None 
    Security Filters NT AUTHORITY\Authenticated Users 
    Revision AD (18), SYSVOL (18) 
    WMI Filter   
    Lock Games [{6B299CF0-7BD6-4D6B-865D-BBE672CC8A97}]hide
    Link Location crcsd.abc/Special/Student Mandatory 
    Extensions Configured {B1BE8D72-6EAC-11D2-A4EA-00C04F79F83A}
    Registry 
    Enforced No 
    Disabled None 
    Security Filters CRCSD\Dist Lock Games
    CRCSD\Dist Lock IE 
    Revision AD (23), SYSVOL (23) 
    WMI Filter   
    Student Best Practices [{EB53B206-170A-41FB-8960-B67B936C8E22}]hide
    Link Location crcsd.abc/Special/Student Mandatory 
    Extensions Configured Internet Explorer Zonemapping
    Registry
    Folder Redirection 
    Enforced No 
    Disabled None 
    Security Filters NT AUTHORITY\Authenticated Users 
    Revision AD (2), SYSVOL (2) 
    WMI Filter   
    Student Mandatory [{0FA26CC5-C001-4A02-AACE-930581B7A1CF}]hide
    Link Location crcsd.abc/Special/Student Mandatory 
    Extensions Configured Group Policy Shortcuts
    Group Policy Printers
    Group Policy Registry
    Deployed Printer Connections
    Group Policy Drive Maps
    Registry
    Group Policy Infrastructure 
    Enforced No 
    Disabled None 
    Security Filters NT AUTHORITY\Authenticated Users 
    Revision AD (498), SYSVOL (498) 
    WMI Filter   
    Denied GPOshide
    Local Group Policy [LocalGPO]hide
    Link Location Local 
    Extensions Configured   
    Enforced No 
    Disabled None 
    Security Filters   
    Revision AD (0), SYSVOL (0) 
    WMI Filter   
    Reason Denied Empty 
    WMI Filtershide
    Name Value Reference GPO(s) 
    None 
    Jason

  • Facebook login integration with Oracle Apex

    Hello,
    Wondering if anyone has had success in implementing facebook login for Oracle Apex.  I walked through facebook developer docs and I am able to see through the test api that I am connected to facebook in my apex app, but not sure how to redirect through login using facebook credentials.  If someone could give me some examples that would be great.

    You could look at this plugin:  - Authentication Plugin - Facebook Authentication Plugin if you are on atleast APEX 4.x...  Otherwise you will have your work cut out for yourself..
    Thank you,
    Tony Miller
    LuvMuffin Software

  • I just dowload your version but I can't go to facebook login. How can I do?

    I just download your version but I can't go to facebook login. How can I do?

    You must create a segment of the song as a ringtone which can't be done with music purchased from the iTunes Store or music purchased from the iTunes Store that includes DRM protection. Or you can purchase an available ringtone from the iTunes Store.

  • Ios8.....hate!'After upgrading my iPad will do nothing except refuse to take a charge display a black screen or a battery red line or the occasional apple logo. Have tried soft boot and hard boot and nothing!,!

    After upgrading my iPad will do nothing except refuse to take a charge display a black screen or a battery red line or the occasional apple logo. Have tried soft boot and hard boot and nothing!,!

    Hello there, Victoria.
    Great job on troubleshooting on your own. The following Knowledge Base article offers up some great steps to review and additional recomendations:
    iPhone and iPod touch: Charging the battery
    http://support.apple.com/kb/HT1476
    Resolving issues
    If your battery doesn't charge, or if your device shows a low-battery image, black screen, or "accessory not supported" alert, follow these steps.
    Inspect the connector at the bottom of the phone:
    Make sure that there are no bent pins in the connector.
    Make sure that the connector is free from debris.
    If there are bent pins or debris, please contact Apple Support.
    Otherwise, continue troubleshooting.
    Make sure that the outlet you're using works.
    Make sure that the Apple USB cable and Apple USB power adapter work.
    Plug the device in to power and let it charge until your device turns on. This could take between 10 and 30 minutes. If you don't have an Apple USB power adapter, try connecting to a computer's high-power USB 2.0 port (not a keyboard). The computer must be on.
    If the device still exhibits an issue, try turning your device off and then on again while connected to power.
    If the issue persists, please contact Apple Support.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Change from Facebook login to an actual spotify account?

    When I first setup spotify, I used the facebook login option. But now, I'd like to change this by creating an account for spotify (username and password) but don't know how.
    Is there a way to do that by keeping my account as is, but creating new login details?
    I don't mind keeping it connected to facebook (as I have deactivated all the sharing stuff) but I don't like this trend that everything are dependent of facebook accounts.
    Thanks.
     

    RHaynes212 wrote:
    I have the same issue and frustrated to the point of just cancelling my direct debit on premium account, the suggestion on here don't seem to work. The only way seems to be to get customer services to send you the link direct?  would bgarage full if somebody could do this for me. 
    I want to swap forms a fb login to a spotify login so that I can use a new sonos system. I have a premium account and do not want to have to cancel this to have to set up a new one. Surely there is a solution? 
    Help. R
    Hey! Welcome to the community :) 
    There is no direct way to transfer from a Spotify account creating using Facebook to the dedicated Spotify account. I wrote a tutorial on how to do it here, but it is not ideal and requires a little bit of work. 
    You can use Spotify on Sonos without changing your account type though! You just need to retrieve your device username and password by following the steps outlined in this FAQ and then using those details to login on Sonos. 
    Peter

Maybe you are looking for

  • P55t - External 4K HDMI monitor connection unreliable

    I have a new Satellite P55t laptop with 4K integrated display (PSPNVU-03004P). I have a 4K monitor connected on the HDMI port.  Running Windows 8.1. It works sometimes, but for some reason is entirely unreliable - it seems to lose contact with the mo

  • Urgent..please anyone can help me??????

    <b>Hi all.. please anyone can help me.for this issue.... My Requirements is first need to MR11 tarnsaction and create zmr11 transaction and also the copy the corresponding MR11 program create Z program, which i did it. but now i have create a POPUP w

  • Extreme heat when on charge

    hey everyone, i just bought my macbook pro yesterday.( new 15" 2.2GHz i7 processor) i put it on charge while using it and it became really hot. also when I'm on Skype the fan starts spinning a lot and my macbook heats up and i cant keep it on my lap.

  • Formatting Failed - Media Error

    I am attempting to burn a DVD that has 4.6G of data in the meter. It's chaptered out and ready to go. When I hit the burn button it goes through all the compiling stuff, then at the end gave me an error message I have taken a snapshot of below. Any i

  • Develop presets stopped working

    Having just aquired LR4.1, I was going through the various develop presets to see the various effects available.  It took several clicks to open one of the folders, when open I was able to preview the colour effects and preview.  I shut down that fol