Can't change preferences in Safari

I loaded a McAfee program that wasn't very impressive so I uninstalled it. Now Safari will only open with a partual window (not fillng the screen) and defaults to  an "Apple - Start" homescreen. Any changes I make to the perferences won't stick... and are defalted back when I open Safari again.
I have alread "Reset Safari" with all the options.

Back up all data.
This procedure will unlock all your user files (not system files) and reset their ownership and access-control lists to the default. If you've set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it.
Step 1
If you have more than one user account, and the one in question is not an administrator account, then temporarily promote it to administrator status in the Users & Groups preference pane. To do that, unlock the preference pane using the credentials of an administrator, check the box marked Allow user to administer this computer, then reboot. You can demote the problem account back to standard status when this step has been completed.
Triple-click the following line to select it. Copy the selected text to the Clipboard (command-C):
{ sudo chflags -R nouchg,nouappnd ~ $TMPDIR.. ; sudo chown -Rh $UID:staff ~ $_ ; sudo chmod -R u+rwX ~ $_ ; chmod -R -N ~ $_ ; } 2> /dev/null
Launch the Terminal application in any of the following ways:
☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
Paste into the Terminal window (command-V). You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning not to screw up. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
The command will take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear, then quit Terminal.
Step 2 (optional)
The first step should give you usable permissions in your home folder. This step will restore special attributes set by OS X on some user folders to protect them from unintended deletion or renaming. You can skip this step if you don't consider that protection to be necessary.
Boot into Recovery by holding down the key combination command-R at startup. Release the keys when you see a gray screen with a spinning dial.
When the OS X Utilities screen appears, select
Utilities ▹ Terminal
from the menu bar. A Terminal window will open.
In the Terminal window, type this:
resetpassword
That's one word, all lower case, with no spaces. Then press return. A Reset Password window will open. You’re not  going to reset a password.
Select your boot volume ("Macintosh HD," unless you gave it a different name) if not already selected.
Select your username from the menu labeled Select the user account if not already selected.
Under Reset Home Directory Permissions and ACLs, click the Reset button.
Select
 ▹ Restart
from the menu bar.

Similar Messages

  • Can't access Preferences in Safari 5.0.5

    I have an older Mac Pro running Snow Leopard 10.6.8 and Safari 5.0.5. I've been unable to access Preferences in Safari--half the time the web page doesn't change, the other half the program crashes.
    Any ideas?

    I'd try opening up any Music Project, or Podcast Episode (a garageband project) and trying it. However; I can access GB Prefs while not having a project open. Might be just you, or just me. Either way, try opening up a project.

  • Is there a script or automator action to change Preferences in Safari?

    When I log on to my ISPs website to clean out my spam filter, the site redirects me to a second area that contains the filtered spam. Each time I access it I must change my "Accept Cookies from "Only sites you navigate to" to "Always". The problem is remembering to change it BACK. Is there an applescript or automator thingy that will allow me to to make these changes? I'm using Safari 3.1.2.
    Thank you.

    Andrew, this script also really helped me, and it has the potential to help thousands of others. Safari 3 cookie management is a work in progress. SafariPlus did a wonderful job of improving this previously, but so far no Leopard version. Even limited cookie acceptance accepts waaay too many. So I decided to delete all my cookies, and turn on just limited acceptance the first time I visit certain websites that really need cookies, to get the primary account cookies in place, and then set cookie acceptance level back to never for general browsing.
    Then I looked for an Applescript to simplify this, and found the one you wrote. I then modified it for my purposes and it works great. I run it with XKeys and it makes life easy, and more secure. I think many others could benefit from this, so I think one of us should publish it perhaps at Versiontracker, etc. Your basic script, so I vote for you. If not, can I? Here's my mod:
    tell application "Safari" to activate
    tell me to activate
    display dialog "Would you like to accept LIMITED cookies?" buttons {"Cancel", "OK"} default button "OK"
    if button returned of result is "OK" then
    tell application "Safari" to activate
    tell application "System Events"
    tell process "Safari"
    click menu item "Preferences…" of menu "Safari" of menu bar 1
    delay 1
    tell window 1 to click button "Security" of tool bar 1
    delay 1
    tell window "Security"
    tell group 1
    tell group 1
    tell radio group 1
    click radio button "Only from sites you navigate to"
    delay 0.5
    keystroke "w" using command down
    end tell
    end tell
    end tell
    end tell
    end tell
    end tell
    end if
    delay 60
    tell me to activate
    display dialog "Click 'Cancel' to continue accepting LIMITED cookies... Click 'Not Yet' for continued reminders... Click 'Revert' to STOP accepting cookies." buttons {"Cancel", "Not Yet", "Revert"} default button "Revert"
    if button returned of result is "Revert" then
    tell application "Safari" to activate
    tell application "System Events"
    tell process "Safari"
    click menu item "Preferences…" of menu "Safari" of menu bar 1
    delay 1
    tell window 1 to click button "Security" of tool bar 1
    delay 1
    tell window "Security"
    tell group 1
    tell group 1
    tell radio group 1
    click radio button "Never"
    delay 0.5
    keystroke "w" using command down
    end tell
    end tell
    end tell
    end tell
    end tell
    end tell
    else
    if button returned of result is "Not Yet" then
    repeat while button returned of result is "Not Yet"
    tell application "Safari" to activate
    delay 30 -- increase if desired to lengthen interval between reminders
    tell me to activate
    display dialog "Click 'Cancel' to continue accepting LIMITED cookies... Click 'Not Yet' for continued reminders... Click 'Revert' to STOP accepting cookies." buttons {"Cancel", "Not Yet", "Revert"} default button "Revert"
    end repeat
    if button returned of result is "Revert" then
    tell application "Safari" to activate
    tell application "System Events"
    tell process "Safari"
    click menu item "Preferences…" of menu "Safari" of menu bar 1
    delay 1
    tell window 1 to click button "Security" of tool bar 1
    delay 1
    tell window "Security"
    tell group 1
    tell group 1
    tell radio group 1
    click radio button "Only from sites you navigate to"
    delay 0.5
    keystroke "w" using command down
    end tell
    end tell
    end tell
    end tell
    end tell
    end tell
    end if
    end if
    end if

  • When I change preferences on Safari they don't stay

    How do I make changes to Safari preferences permanent?

    Might be corrupted Safari preferences ...
    Open a Finder window. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following:
    ~/Library/Preferences/com.apple.Safari.plist
    Click Go  then move the com.apple.Safari.plist file to the trash.
    Quit and relaunch Safari to test.

  • How can I change preferences to enable javascript on mac (nothing happens when I click on preferences)?

    I am using Firefox 3.6.13 for Mac. I disabled Javascript (in Preferences) to see if it would affect problems with browsing speed. I then discovered I need Javascript for my email, so I went back to Preferences to enable Javascript, but when I click on Preferences now, nothing happens.

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    You can also try to repair the disk permissions: http://thexlab.com/faqs/repairprocess.html

  • Can I change preferences for the File Find window

    In the search window that opens when you go to File > Find, how do I save changes I make to the search parameters? I want the same settings every time that window pops up. Is this possible? Thanks.
    tlbb

    Hi, and a warm welcome to the forums!
    Are they the settings that are available in System Preferences>Spotlight?

  • Can't change preferences

    Hello,
    since using Captivate 4, I have encountered several times the problem/bug that changes in the preferences section are not accepted: I open the preferences section, make some changes in any of the sub-sections (or even no changes at all!), an when I click on OK a message saying 'Choose a valid action' appears (I am not sure about the exact English phrasing, since I use the German version). One time I bypassed this problem by copying all slides to a new project (where I was able to change the preferences), but this is no feasible procedure.
    Has anyone experienced similar problems or maybe a solution?
    I appreciate your suggestions
    Jan

    If you only see one of the tabs, click the clear button at the top right corner of the window.
    (24665)

  • Can't change preference to apply transitions using available media

    I'm trying to change the preference in FCP X 10.3 to have FC use available media for transitions.  According to my official Apple training materials this should be done in the preferences in the Editing tab.  That preference setting is simply not there (see attached screen shot).  Has it been moved to another location or has the method been changed in this rev of FCP?

    That's been removed. Unfortunately the Apple book came out early, based on 10.0 and has much that is wrong. It is now always set to use available media. If you get an error message when you try to do the transition, it means there is not available media.
    (Screenshot was not attached.)

  • 10.1.0 won't update, can't change preference settings

    My Vista OS seems to be preventing me from making any change to my Reader updater AND I've discovered that the settings are incorrect.  I want “Automatically install updates” selected instead of “Do not download or install updates automatically” and the choice does not stay selected. 
    ALSO, I tried to check for updates manually-- I opened Reader, clicked on “Help” then clicked on “Check for Updates” – got message: “Update failed -- To update Adobe Reader you need administer privileges on this machine.  Error 1200”
    Strange, because I AM the Owner/Administrator on this machine!!
    I think I have traced the possible problem to “User Account Control” as it is the window that pops up when I make a change in Reader.  But I have not been able to turn the UAC on or off. 
    Any suggestions as to how to get out of this mess would be SO appreciated!!!  I need to eventually get the latest update installed and keep the updates coming, as I'm concerned about security. 

    Hi synthead,
    see this http://www.archlinux.org/news/345/
    You must change current repository with core
    Last edited by luca (2007-09-23 12:08:20)

  • How can I change my safari preferences to save a file rather than download

    How can I change my safari preferences to save a file rather than it downloading

    danieladorotiak wrote:
    When I click on the 'save application file, it download's it and doesn't give me the option to save it.
    I can't be sure, but what probably happens is that the page doesn't give you a link to a downloadable file, but a button which activates a script. There's nothing you can do about that, because you don't control the script.
    it just downloads the transcripts not the document.
    It sounds like the downloaded file does not open or execute as it's supposed to (which, for instance, would happen if what you downloaded was a Java application, but you didn't have Java installed).
    If you are allowed to, give us the URL and we'll have a look. Also, you should add what version of Mac OS X and of Safari you are using, and you should correct your profile (which says "Mac Pro" -- this forum is for the MacBook Pro, which is a different computer from the Mac Pro).

  • Im having problems with Safari 5.1.10. I often have several tabs open on screen. And after a while the links/websites become not active. So if click on a tab and want open a previous website it than has to re-load again in the window. Can I change this ?

    Im having problems with Safari 5.1.10. I often have several tabs open and after a while the links/websites become not active. So if click on a tab and want open a previous website it than has to re-load again in the window. Can I change this ?
    Kind regards,
    Faroek Abdoelrahman
    The Netehrlands

    Empty the Safari cache more often.
    From your Safari menu bar click Safari > Preferences then select the Advanced tab.
    Select:  Show Develop menu in menu bar
    Now click Develop from the menu bar. From the drop down menu click Empty Caches.
    Quit and relaunch Safari to test.

  • My Safari on start up now reverts to last opened page. Can I change this back to opening on my homepage?

    Hi
    When I open Safari (Version 6.0.2 (7536.26.17)) now it opens the last page I was on prior to last closure of Safari. It used to open on my homepage (Apple.com) and I would prefer this to be reinstated. ANy ideas how to do this?? I have set Safari preferences to homepage etc.....
    Thanks
    Paul

    Thanks so much Paul for trying to help! I think I am not being clear, and perhaps i have a different issue than the OP.
    My problem is that each time i open safari, the same 3 tabs open, same 3 webpages,  no matter what i do. whether i reset, change preferences, uncheck boxes, etc. Doesn't matter.
    The suggestions you gave should work, in theory, so perhaps i have another issue. I don't know.
    i can still use safari with no other issues, so i'll leave it for now, unless someone else comes up with another idea!
    thanks again!

  • How Can I Change Default Zoom Settings For Safari?

    I just got my new iMac and hate the fact that everytime I open Safari everything is small and centered directly in the Safari screen.  How can I change the default settings so it either zooms in more or is in a landscaped mode so I don't have two big white patches on the sides of my window?

    The only way I know of, (and that I use) is as follows:
    Open textedit and create a new document.
    Add the following 3 lines to the file
    body {
    zoom: 175%
    Save the file as "somename.css". I called mine defaultzoom.css and saved it in Documents.
    In Safari go to Preferences | Advanced.
    In the Style sheet: dropdown box choose "other" and browse to the location of your somename.css file.
    That's it, now webpages will open with the default zoom level you used in the file (I use 175% but you need to tweak it for your screen size). Also, I do run into situations where some pages don't render correctly. If that happens you can go back to Safari | Preferences | Advanced and change the Style sheet dropdown box to none until you are done viewing that paticular website. Then just put it back when you are done.

  • Multiple windows open in safari when click on web site.  Also can't change/edit DNS servers or any other changes in advance window of network tab

    macbook pro
    osx - mavericks
    multiple windows open in safari when click on web site.  Also can't change/edit DNS servers or any other changes in advance window of network tab.
    Basically every time i click on website other windows open and get redirected to other websites selling something (same as that mackeeper site which seems to open often)  Really ***** as in just a few minutes on the web I have many windows open and many are the same pages.  Can't make changes in the advanced tab of network as options are greyed out and the + & - symbols do nothing when clicked.  Hope there is an easy answer as surfing net is really sucking right now

    I hope to get some more info on a similar situation.
    I have a new Mac Pro, less than 2 months old. OSX 10.5 updated to 10.5.2. Quicktime updated too. When I use the Desktop and Screen Saver system pref, I can easily select and use one of the Apple supplied desktop pictures as a desktop background.
    But I wish to use a Photo from an iPhoto (iLife 08) folder / album as the desktop background. I can find all the albums, I can see all the icons for the pictures, I can select an iconed pciture and it appears in the top left of the preference pane (showing the effect of "fit to window" or "stretch to fit", etc). But all I get is a pale blue screen (which might be my default desktop colour). I don't get any of my iPhoto album pics to appear as a dektop background.
    There is one minor note on this, I don't keep the pictures in my iPhoto Library, I just reference them, and the originals are on a different internal disk.
    I've tried the suggestions above, trashing finder and desktop plists, killall Finder, etc. restart. Nothing gets it working again. It did work originally, for most of the time I've had the Mac Pro, then I changed the dektop to an Apple supplied picture of Earth.
    This affects both an Admin, and a standard user. The photos (and enclosing folders) are read / writable by the admin user, and readable by the Standard user. Both users can easily access the photos in their iPhoto. They open the original files on the second internal drive, and performing a right click - Show File shows the original file as expected. I've even emptied the iPhoto library completely and rebuilt it, just in case there was an issue here.
    Any ideas ? or anyone else seen this ? I don't really want to start reformatting disks and reinstalling the OS, but any suggestions short of this are extremely welcome.

  • How can I change the default mailer in Safari?

    How can I change the default mailer in Safari?

    Mail > Preferences > General > Default Email Reader:
    Click inside the box and then "Select..." to choose from the drop down.

Maybe you are looking for

  • Paging problem with Crystal Report Viewer in VS 2013

    I am attempting to upgrade a VS 2008 project that uses a dozen plus Crystal Reports to display data for our owners. The problem that i am having is with navigating to other pages of any multiple page report using the paging buttons of the Report View

  • Just get a black screen with my new Apple TV...help?

    Just got my Apple TV 2.0 and connected via HDMI to my Denon AVR-2807 receiver. Assigned the HDMI in accordingly to VCR-2. After switching the Denon input to VCR-2, I get nothing but a black screen...not even an intermittent flicker or startup or logo

  • Deleting "sensitive" web-pages

    Hi, after visiting sensitive sites, I always do Safari>Reset Safari. Does this clear ALL traces of those sites from my computer? Are there any other files, or items outside of Safari to clear? Thanks imac g5   Mac OS X (10.4.6)  

  • Photo effect - pop art

    Has anyone been able to apply the effects from photo booth - namely pop art - to photos in iPhoto? Alternatively, has anyone been able to import a photo into photo booth and apply any of those effects? Thanks in advance for any help.

  • Adobe form processing issue in portal

    Hi, We have one issue on user processing of adobe form in portal When user clicked on approve or reject button of HR position form its not completing. Its keep on processing till 3o minutes,i mean processing wheel not completing. What is reason for t