Save preferences? send usage info? can't make it stick

Oddity with Lion, mid-2011 Mini.
Been having trouble getting preferences to stick.
Noticed I can't even check the Privacy/Security option to automatically send usage data to Apple -- unlock, click the box, click the lock, looks good.  Come back a few seconds later and it's unchecked.  Lots of other prefs not saving.
Repairing permissions sporadically changes some things, running it again finds nothing, and running it a while later finds other permissions wrong.
Is this the kind of thing you can take to an Apple store and the geniuses will figure out?

Reinstalling 10.7.2 with a USB stick/Internet solved that problem, juts for the record.
Still having problems with ACLs and suddenly needing to authorize things like moving/trashing files every few days, fixed temporarily by deleting the ACLs, but I"ve only had to reinstall Lion twice in a month and only had five or six kernel panics. I guess that's not too bad.

Similar Messages

  • Photobooth video saves in .gif. How can I make it save them as .mov or .avi? PLEASE HELP!!

    For some reason photobooth movie recordings are automatically saved as .gif files by default. How can I make it change?
    Please help me as I'm completely LOST!
    Thanks!!!!
    pamplonica

    The fastest way would be what you had been doing before (dragging the movie to the desktop.) Perhaps it was just a fluke and it's working again?
    Otherwise, you can make an alias to the Photo Booth folder in the Finder's sidebar. Open the Pictures folder (same way as before) and drag the Photo Booth folder in the sidebar on the left under PLACES. Make sure when you drag it that you place it between two folders and not over a folder, like this:
    ^^ Good! (This will place an alias to the Photo Booth Folder in the sidebar)
    ^^ Bad! (This will move the folder into Documents)
    The folder will now show up in the sidebar and you can click on that folder to bring it up. That should make it a bit faster to get there.
    Have your sister try this: right-click (two-finger tap with the trackpad) on the movie file, then go to Open With > QuickTime Player in the menu. Perhaps that will get it to open? I'm not completely sure why it's not working correctly on her computer.

  • How can I make my Contact Form send info to my email?

    Greetings! I have below a contact form that i have creaed with some help but I can't seem to make it send the information to my email address after it is submitted. That is my most important issue right now.
    A secondary issue is, can I make it so once this form is submitted it send the info to my email without doing a page redirect?
    Thanks in advance!

    Ok what about this code located at www.ybcreations.com/ContactTest.php?
    <?php
    // Set email variables
    $email_to = '[email protected]';
    $email_subject = 'BestMarketingNames Inquiry';
    // Set required fields
    $required_fields = array('fullname','email','comment');
    // set error messages
    $error_messages = array(
              'fullname' => 'Please enter a Name to proceed.',
              'email' => 'Please enter a valid Email Address to continue.',
              'comment' => 'Please enter your Message to continue.'
    // Set form status
    $form_complete = FALSE;
    // configure validation array
    $validation = array();
    // check form submittal
    if(!empty($_POST)) {
              // Sanitise POST array
              foreach($_POST as $key => $value) $_POST[$key] = remove_email_injection(trim($value));
              // Loop into required fields and make sure they match our needs
              foreach($required_fields as $field) {
                        // the field has been submitted?
                        if(!array_key_exists($field, $_POST)) array_push($validation, $field);
                        // check there is information in the field?
                        if($_POST[$field] == '') array_push($validation, $field);
                        // validate the email address supplied
                        if($field == 'email') if(!validate_email_address($_POST[$field])) array_push($validation, $field);
              // basic validation result
              if(count($validation) == 0) {
                        // Prepare our content string
                        $email_content = 'New Website Comment: ' . "\n\n";
                        // simple email content
                        foreach($_POST as $key => $value) {
                                  if($key != 'submit') $email_content .= $key . ': ' . $value . "\n";
                        // if validation passed ok then send the email
                        mail($email_to, $email_subject, $email_content);
                        // Update form switch
                        $form_complete = TRUE;
    function validate_email_address($email = FALSE) {
              return (preg_match('/^[^@\s]+@([-a-z0-9]+\.)+[a-z]{2,}$/i', $email))? TRUE : FALSE;
    function remove_email_injection($field = FALSE) {
       return (str_ireplace(array("\r", "\n", "%0a", "%0d", "Content-Type:", "bcc:","to:","cc:"), '', $field));
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <!-- Contact Form Designed by James Brand @ dreamweavertutorial.co.uk -->
    <!-- Covered under creative commons license - http://dreamweavertutorial.co.uk/permissions/contact-form-permissions.htm -->
              <title>Contact Form</title>
              <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
              <link href="Billy testing/ContactForm.css" rel="stylesheet" type="text/css" />
              <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/mootools/1.3.0/mootools-yui-compressed.js"></script>
        <script type="text/javascript" src="Billy testing/validation/validation.js"></script>
              <script type="text/javascript">
    var nameError = '<?php echo $error_messages['fullname']; ?>';
                        var emailError = '<?php echo $error_messages['email']; ?>';
                        var commentError = '<?php echo $error_messages['comment']; ?>';
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
        </script>
    </head>
    <body onload="MM_preloadImages('Billy testing/x.png')">
    <div id="formWrap">
    <h2>We appreciate your business</h2>
    <div id="form">
    <?php if($form_complete === FALSE): ?>
    <form action="ContactTest.php" method="post" id="comments_form">
              <div class="row">
              <div class="label">Your Name</div> <!--end .label -->
              <div class="input">
              <input type="text" id="fullname" class="detail" name="fullname" value="<?php echo isset($_POST['fullname'])? $_POST['fullname'] : ''; ?>"/><?php if(in_array('fullname', $validation)): ?><span class="error"><?php echo $error_messages['fullname']; ?></span><?php endif; ?>
              </div><!-- end. input --><!-- end .context -->
              </div><!-- end .row -->
        <div class="row">
              <div class="label">Your Email Address</div> <!--end .label -->
              <div class="input">
              <input type="text" id="email" class="detail" name="email" value="<?php echo isset($_POST['email'])? $_POST['email'] : ''; ?>"/><?php if(in_array('email', $validation)): ?><span class="error"><?php echo $error_messages['email']; ?></span><?php endif; ?>
              </div><!-- end. input --><!-- end .context -->
              </div><!-- end .row -->
        <div class="row">
              <div class="label">Comments</div> <!--end .label -->
              <div class="input">
              <textarea id="comment" name="comment" class="mess"><?php echo isset($_POST['comment'])? $_POST['comment'] : ''; ?></textarea><?php if(in_array('comment', $validation)): ?><span class="error"><?php echo $error_messages['comment']; ?></span><?php endif; ?>
              </div><!-- end. input -->
              </div><!-- end .row -->
        <div class="submit">
        <input type="submit" id="submit" name="submit" value="Send Message" />
        </div><!-- end .submit-->
        </form>
         <?php else: ?>
    <p style="font-size:25px; font-family:Arial, Helvetica, sans-serif; color:#255E67; margin-left:25px;">Thank you for your Message!</p>
    <script type="text/javascript">
    setTimeout('ourRedirect()', 5000)
    funtion ourRedirect(){
              location.href='contact.html'
    </script>
    <?php endif; ?>
    </div><!-- end #form-->
    </div>
    <p> </p>
    <!-- end formwrap -->
    </body>
    </html>

  • I need to make a copy of an entire email, including the header w/the sender's info and time, etc. to insert into a letter, etc. How can I do this w/out cutting and paste and doing the header separately from the text.

    I need to make a copy of an entire email, including the header w/the sender's info and time, etc. to insert into a letter, etc. How can I do this w/out cutting and pasting   the header separately from the text. I know there is a way besides a screen shot but I've spend hours trying to find it.

    Smurfslayer wrote:
    For the particularly persnickety types you might want to expose the full headers in the email message as well.  It's easy enough to do, from mail's 'menu' select "view"; then "message"; then all headers.
    Another option you could use is a screen capture using Grab.
    Activate Grab, then shift + command + w (for a window screen shot).  Then confirm the window selection and click the mail message. 
    Dave
    Why are you addressing this to me...?
    I am not the OP...

  • Can we extract the "Save" preference info (resolution, JPG quality, etc.) from an existing PDF file?

    Hi,
    Is it possible to obtain *ALL* the save preference data from a PDF file with Adobe Reader alone?
    I'm referring to document resolution, but also what JPG quality and vector settings were used.
    Thanks!

    ridgeline50 wrote:
    I saw a thread that suggested using the sever version of Adobe Acrobat because its OCR engine performs better.
    There isn't a server version of Adobe Acrobat.

  • How do I get past, "Can't save preferences message" in PS CS6?

    Could not save Preferences because the file is locked, you do not have necessary access permissions, or another program is using the file. Use the ‘Get Info’ command in the Finder to ensure the file is unlocked and you have permission to access the file. If the problem persists, save the document to a different file or duplicate it in the Finder.
    Get me past this message. Please! Nothing I have read applies exactly to eliminating this infuriating message. How do I get past, “Can’t save preferences message” in PS CS6?
    Message was edited by: RustyBucket12

    Thanks for showing an interest… But!
         I have tried all the regular stuff. This problem only showed up in OSX Lion. Up till then all was well at Snow Leopard and Adobe CS5.5 Suite. After upgrading to OSX Lion all Hell broke loose. Quite a catastrophe of conflicts. In Design wouldn’t launch. A problem with Suitcase Fusion 4. But PS CS6 had two major problems. One the Epson Artisan 835 could not be seen in Imports. A conflict between 32 and 64 bit formats and again, drivers. But the most persistent and perplexing problem has been that of the preferences. Oh and one other thing, whenever you quit the program, PS CS6, a message appears saying that the program has quit for no good reason and did I want to send a report to Adobe and/or Mac. Well I must have sent them a thousand reports. What I most suspect is file damage and incompatibility. What I have tried has not found the files to replace those that will reset themselves. i.e. .plst etc. without buggering up the works. I have tried to figure out what might have caused such changes between Snow and Lion other than the well known differences regarding supported stuff, formats and out of date software i.e. Rosetta. Some how or other I suspect damaged files. The kind of damage where a single character is missing and nothing works but no file checker in the world can detect as screwing up the works. Now in several cases a lot of re-installation has been done. But again no help. So putting a finger on the culprit file(s) has not been easy. Fortunately this machine has four active drives so reverting back to where all was OK is easy. But as for going forward, well that is at a standstill.
        So, if any body out there has any insight to these three problems I would be most interested to see what you got.
    Many Thanks

  • HT1364 I have moved my library to an external hard drive and changed the location of the iTunes media folder in Preferences, but every time I close and re-open iTunes, I have to do it all over again.  How can I make the iTunes media folder change permanen

    I have moved my library to an external hard drive and changed the location of the iTunes media folder in Preferences, but every time I close and re-open iTunes, I have to do it all over again.  How can I make the iTunes media folder change permanent?  I have an older machine with Windows XP.

    I don't believe mounting the hard drive should be necessary, unless you have several external drives and want your computer to recognise them as folders, rather than drives. I've never had to mount a hard drive, ever. If you don't know how to do it, then it shouldn't be necessary now.
    Try this:
    Prepare iTunes so that it can see the external drive.
    Make a note of which drive-letter the external drive has been allocated. (Look in Windows Exploer)
    Look at the file location for a song. Make sure it plays (and therefore that iTunes has found it). Highlight it and select File/Get Info/Summary>Where: and make a note of the drive letter for that song.
    Close and shut down the computer.
    The next time you turn the computer on again, connect the external drive
    Before you start iTunes - check the external drive in Windows Explorer. Is it ready, does it have the same drive-letter that it had last time? Can you go into the drive and see the files on it?
    Once you can, start iTunes. (If the drive lettter has changed, you need to work out why before going any further.)
    If iTunes fails to find your external drive, you need to check where iTunes is looking for your Library.
    Select the same song you checked before (presumably iTunes can no longer find it). Follow the procedure for locating it. You should be able to see where iTunes thinks the file is. It's the drive that counts. Which drive letter is iTunes looking at? Is it the same one that it was previously (which should also be the same one that the drive has now).
    What happens, which step do you have problems with?
    Message was edited by: the fiend

  • Whenever I close down Photoshop CS5 I get the message: "Could not save Preferences because the file is locked or you do not have the necessary access privileges. Use the get info command in Finder to unlock the file or change permission on the file or enc

    Whenever I close down Photoshop CS5 I get the message: "Could not save Preferences because the file is locked or you do not have the necessary access privileges. Use the get info command in Finder to unlock the file or change permission on the file or enclosing folders." What on earth does it mean? How can I stop this message from appearing?

    See here:
    I cannot save recent images.

  • Can send texts in ireland but can't make or receive calls?

    In I'm southern Ireland and I can't make any calls or get any but I can send messages. I have a s5 and have turned on roaming so I am at a loss as to what else to do. It currently says I am with Vodafone as a carrier. Any help please thanks in advance ☺

    Did you activate roaming before going abroad?
    Click on EE & ME and where it says My Account, click on Devices and Usage and enable it from there, cllick on EE & ME and where it says travel and shopping click on using phone abroad.
    http://ee.co.uk/help/add-ons-benefits-and-plans/call-or-going-abroad/roaming---using-your-phone-abroad/using-4g-abroad

  • Can't Save Preferences Because File is Locked?

    I just had to reinstall after a wipe of my Mac.  Program opens, I can use it, but when I quit it I get this message:
    Could not save preferences because the file is locked or you do no have the necessary privilieges.  Use the "get info" command in the Finder to unlock or change permissions on the file or enclosing folders.
    I went into Applications, right clicked on the CS5 icon, which brought up the "get Info" box.  At the bottom, under Sharing & Permissions it says I have custome access; Me: read & write
    System, read & write
    Admin, read & write
    everyone, read only
    On the "everyone" the only choices I have are read only, write only or no access.
    How can I fix this?

    The preferences are not written into the application, so you're looking in the wrong place. The main preferences file for CS5 should be:
    ~/Library/Preferences/Adobe Photoshop CS5 Settings/Adobe Photoshop CS5 Prefs.psp
    To locate it, copy the following path, press Shift+Cmd+G in Finder, paste the path and hit Go:
    ~/Library/Preferences/Adobe Photoshop CS5 Settings/
    If you have Ps CS5.1, replace "CS5" with "CS5.1" in the above.

  • When I right clock on a song from my library and I click on Obtain information, I can't make changes on the infos, Everything is wriiten in pale letters. Olease help. Thank you.

    Can anyone help me withis. When I right click on a song from my library and I click on Obtain information, I can't make changes on the infos, Everything is written in pale letters.  Thank you.

    Short answer:
    Click Hide Song(s), it is what you wanted to do...
    Long answer:
    iTunes in the Cloud is a feature of your iTunes store account that allows you to redownload or stream your past purchases. When you delete a purchased track that is downloaded to your computer (like the first one shown here) you are asked if you also want to hide the song from iCloud. This would remove it from the computer and also stop it showing up with the iCloud symbol as the other tracks from that album (which are not downloaded) do.
    If a track shows with the cloud symbol you can play (stream) it by double-clicking the title, or click the cloud symbol to download a local copy to your library. If you try to delete one of these tracks you get a slightly different message confirming that you want to hide the track. Clicking hide will remove the listing from the library and any other device that shows your past purchases.
    Should you want to retrieve any item hidden in this way at a later date use Store > View My Account > iTunes in the Cloud > Hidden Purchases > Manage.
    To hide all your previous purchases that are not downloaded to your computer use Edit > Preferences > Store and untick Show iTunes in the Cloud purchases.
    tt2

  • Can I make a static screen saver for an LCD screen?

    Can I make a static screen saver for an LCD screen? In researching screensavers the other day, I read an article saying that moving images were no longer necessary since that was important for cathode monitors and LEDs have no such problems but the iMacs are LCD. Do LCD get "Burn in"?
    I need to know as I am making wallpaper and screensvers for the company I work at.

    LCD's normally are not affected by any burn in, just use the computer. It's a wise idea to put the display to sleep when it's not in use.  You can set the setting in System Preferences - Energy Saver. I set my display to sleep after 15 minutes of not being used and it goes black, I've done this for 8+ years and have never had any display issues.

  • HT2693 what can i do when vendor contact support page can't send my info/msg due to page error and i have paid for an app that no longer works after purchase

    What can i do when i purchase an app then after purchase the app fails to work. I deleted the app rebooted ipa then reinstated app. It still fails to work. I went to vendor support but when i go to send the info to them it comes up with unable to send msg due to page error. I am not happy. My child loved the app now it wont even open. Any help???

    Try talking to iTunes support
    http://www.apple.com/support/itunes/contact/

  • I currently own an iPod 4th gen. but would like to upgrade to a 5th gen. How can I make sure the info on the 4th is transferred and cleaned off before handing it over to my daughter?

    How can I make sure that my info on 4th gen. iPod has transferred to my new 5th gen iPod and all pertinent content deleted before transferring old iPod to my daughter?

    Go to Settings > General > Reset > Erase all content and settings
    Also... See the wjosten post here...
    https://discussions.apple.com/message/20294697

  • How can I make a tent with two halves of the info ( and pictures one direction and the other half the opposite direction ( towards each other of course)

    How can I make a table tent in PAGES with both halves of the info and pictures turned towards each other?  I can figure out how to turn just the picture upside down  AND the text sideways, but not upside down with the picture included so that it is at the top and not the bottom! 

    Layout the picture and text (in text boxes) the way you want them in the lower half of the page. Then Select All and Group them. With the Group selected, type Cmnd+D to duplicate it and then hold down the Shift and Command keys and grab a corner box (you’ll see a double headed arrow) and rotate the box until it’s upside down. (Holding down the Shift key will constrain the rotation to 45 and 90 degree positions.) Now drag the box into position in the top half of the page.
    Walt

Maybe you are looking for