Cannot enable parental controls for Guest if FileVault enabled

FileVault is enabled on my Mac.  When I subsequently enabled Find My Mac, the Guest User account was automatically enabled, as it is required for Find My Mac's theft recovery feature. When I accessed the Guest User in the Users & Groups Preferences panel, the "Enable parental controls" option for Guest User was greyed out.  Thus, anyone with physical access to my computer, such as my kid, can gain unfettered access to the Internet without a password. 
I did find a solution.  I unchecked the "Allow guests to log in to this computer" box in the Preferences panel.  This caused the "Enable parental controls" box to become checked (seems to be a bug).  I then checked the "Allow guests to log in to this computer" box, which caused the "Enable parental controls" box to become unchecked.  At this point, the "Enable parental controls" box was no longer greyed out, and I was able to check it. 
System: Late 2014 Retina iMac with 3.5 GHz Intel Core i5, 8 GB memory, OS 10.10

Update: Although the method above appeared to enable parental controls, they do not work.  When I log in as Guest (causing the computer to reboot into Safari-only mode), I am able to access a very well-known adult website (play*** dot com). 

Similar Messages

  • Restoring Parental Controls for Guests

    So I stumbled across the Security features on my Macbook Pro. My kid's been bothering me to play with my Mac. But, I was worried about him running across the "evils" of the internet that daddy regularly "stumbles" across.
    Anyway, I enabled a guest account and then activated Parental Controls. But, foolishly, I saw a minus sign over the "Other" tab and clicked it, believing it would expand. Instead, the minus sign disappeared. So I clicked it again, and now there's a check mark there. When I finally expanded it, there was a whole slew of programs that asked me whether I wanted to allow the Guest access to them. But, I never got to see what the default settings were. Also, I have no idea what many of these programs do, whether they are vital or not.
    Basically, I just want to know what the default Parental Control settings were, under the "Other" folder.
    Also, how do you create additional "guest" accounts. I figured my two older boys (6-8) would appreciate their "own" accounts. You know, kids like to think they have something special just for them.
    I tried to name that Guest account but got freaked by the warning that any changes may make the account unusable. I'm guessing that that first Guest account cannot be deleted or modified, right?
    Thanks.

    Quick Kick wrote:
    Thank you.
    But does anyone know the default Parental Controls Settings, specifically under the Other tab?
    you can find them out yourself. make a new account and enable parental controls on it. then expand "other" and see what's checked and what's not checked.

  • Enabling Parental Controls creates a cannot connect to serve message Safari

    Any time I enable Parental controls in the System Preferences that account gets a message that Safari is unable to connect to the server no matter what URL is selected. All web browsers are checked and unlimited access to websites is allowed. This even happens when I have Guest Account enabled; no internet access. What gives?

    Hi Desperata,
    Thanks for visiting Apple Support Communities.
    If you're not able to view web pages in Safari, first reset the program. From the main Safari menu, choose Reset Safari.
    I'd recommend choosing "Remove all website data." See this article for an explanation of the other options in the Reset Safari menu:
    Safari 6 (OS X Mountain Lion): Reset Safari
    http://support.apple.com/kb/ph11914
    Best,
    Jeremy

  • Parental Controls for Safari

    Does anyone know of an effective parental control for OX 10.3 for Safari to not allow my teens on inappropriate web sites?

    I can't remember what we did for our child in Panther but what happens when you go to User Accounts in System Preferences and click on Limitations for a User other than the Admin? I know that we were able to create a User Account with more limited access in 10.3.9 for our young child.
    We're about to test out KidsBrowser (because of its graphical interface for young kids) but the same company makes CutX for Safari for teens. (More info at company's site here and you can download a trial version.) CutX will allow you to limit objectionable websites (based on certain keywords and URLs) but it doesn't help with other critical children's internet safety issues such as email and especially chat access and transmission of personal information.
    You can also look at What's New in Tiger—Family Controls which has many more parental control options. You can even enable parental controls from within Safari and limit email access by specific address in the User Preferances pane.
    (Just in case you haven't checked them out already, there's more information about the issue in general at GetNetWise (including information on internet safety products) and NetSmartz.
    I don't envy you - it's a lot simpler doing this for our younger-aged children.
    Good luck!

  • Controlling email under parental controls for network accounts

    I use OS X server (10.8) to mange kids accounts at home, so they can logon to laptop or desktop and all there stuff is there.
    This works perfectly as does the profile server ensuring that they have their parental controls set.
    I've just stated to look at creating an email account for the older one and found that whilst there is a great 'People' tab in the Systems Preferences parental controls this doesn't seem to exist in profile manger at all.
    Does anyone kniow how to setup 'safe' lists of people for inbound and outbound email using profile manager or directory admin ?
    Thanks in advance

    Quick Kick wrote:
    Thank you.
    But does anyone know the default Parental Controls Settings, specifically under the Other tab?
    you can find them out yourself. make a new account and enable parental controls on it. then expand "other" and see what's checked and what's not checked.

  • Issue while enabling Access Control for a Coherence server node

    Hi
    Im trying to enable access control for a Coherence server node, using the default Keystore login method shipped with Coherence. When i start the server i get the error "java.security.AccessControlException: Unsufficient rights to perform the operation". Please see below for the sequence of steps I've followed to enable access control. I just need to be enable Authentication (not authorization) at this stage
    1. I have added the following entry in the Coherence Operational override file
    <security-config>
              <enabled system-property="tangosol.coherence.security">true</enabled>
              <login-module-name>Coherence</login-module-name>
              <access-controller>
                   <class-name>com.tangosol.net.security.DefaultController</class-name>
                   <init-params>
                        <init-param id="1">
                             <param-type>java.io.File</param-type>
                             <param-value>keystore.jks</param-value>
                        </init-param>
                        <init-param id="2">
                             <param-type>java.io.File</param-type>
                             <param-value>permissions.xml</param-value>
                        </init-param>
                   </init-params>
              </access-controller>
              <callback-handler>
                   <class-name>com.sun.security.auth.callback.TextCallbackHandler</class-name>
              </callback-handler>
         </security-config>
    2. The following is the entry in the Permissions.xml
    <?xml version='1.0'?>
    <permissions>
    <grant>
    <principal>
    <class>javax.security.auth.x500.X500Principal</class>
    <name>CN=admin,OU=Coherence,O=Oracle,C=US</name>
    </principal>
    <permission>
    <target>*</target>
    <action>all</action>
    </permission>
    </grant>
    </permissions>
    3. The following is the content of the Login configuration file "Coherence_Login.conf"
    Coherence {
    com.tangosol.security.KeystoreLogin required
    keyStorePath="keystore.jks";
    4. The following is the command line tag for starting the server
    java -server -showversion -Djava.security.auth.login.config=Coherence_Login.conf -Xms%memory% -Xmx%memory% -Dtangosol.coherence.cacheconfig=PROXY-cache-config.xml -Dtangosol.coherence.override=FOL-coherence-override.xml -Dcom.sun.management.jmxremote.port=6789 -Dcom.sun.management.jmxremote.authenticate=false -Dtangosol.coherence.security=true -cp "%coherence_home%\lib\coherence.jar" com.tangosol.net.DefaultCacheServer %1
    Following is the output on the Console when running the command. It asks for a username and password for the JKS store (If i provide the wrong password, it gives a different error, which shows that it is able to authenticate aganst the Keystore). After i put in the password, it throws the error as shown below "java.security.AccessControlException: Unsufficient rights to perform the operation"
    D:\Coherence\FOL_CacheServer>fol-cache-server
    java version "1.6.0_20"
    Java(TM) SE Runtime Environment (build 1.6.0_20-b02)
    Java HotSpot(TM) 64-Bit Server VM (build 16.3-b01, mixed mode)
    Username:admin
    Password:
    Exception in thread "main" java.security.AccessControlException: Unsufficient ri
    ghts to perform the operation
    at com.tangosol.net.security.DefaultController.checkPermission(DefaultCo
    ntroller.java:153)
    at com.tangosol.coherence.component.net.security.Standard.checkPermissio
    n(Standard.CDB:32)
    at com.tangosol.coherence.component.net.Security.checkPermission(Securit
    y.CDB:11)
    at com.tangosol.coherence.component.util.SafeCluster.ensureService(SafeC
    luster.CDB:6)
    at com.tangosol.coherence.component.net.management.Connector.startServic
    e(Connector.CDB:20)
    at com.tangosol.coherence.component.net.management.gateway.Remote.regist
    erLocalModel(Remote.CDB:10)
    at com.tangosol.coherence.component.net.management.gateway.Local.registe
    rLocalModel(Local.CDB:10)
    at com.tangosol.coherence.component.net.management.Gateway.register(Gate
    way.CDB:6)
    at com.tangosol.coherence.component.util.SafeCluster.ensureRunningCluste
    r(SafeCluster.CDB:46)
    at com.tangosol.coherence.component.util.SafeCluster.start(SafeCluster.C
    DB:2)
    at com.tangosol.net.CacheFactory.ensureCluster(CacheFactory.java:998)
    at com.tangosol.net.DefaultConfigurableCacheFactory.ensureServiceInterna
    l(DefaultConfigurableCacheFactory.java:923)
    at com.tangosol.net.DefaultConfigurableCacheFactory.ensureService(Defaul
    tConfigurableCacheFactory.java:892)
    at com.tangosol.net.DefaultCacheServer.startServices(DefaultCacheServer.
    java:81)
    at com.tangosol.net.DefaultCacheServer.intialStartServices(DefaultCacheS
    erver.java:250)
    at com.tangosol.net.DefaultCacheServer.startAndMonitor(DefaultCacheServe
    r.java:55)
    at com.tangosol.net.DefaultCacheServer.main(DefaultCacheServer.java:197)

    Did you create the weblogic domain with the Oracle Webcenter Spaces option selected? This should install the relevant libraries into the domain that you will need to deploy your application. My experience is based off WC 11.1.1.0. If you haven't, you can extend your domain by re-running the Domain Config Wizard again (WLS_HOME/common/bin/config.sh)
    Cappa

  • Web Parental Controls for 10.2.8?

    I'm giving my old G3 iBook to my grandkids, but I notice OS 10.2.8 does not have the parental controls for the internet for users like later versions. Unfortunately, this computer barely crawls if I update the system and had to reinstall 10.2.8. I tried to get an older version of BumperCar or MacMinder, but neither are available any longer for the older systems. Any ideas of another program, or any other way I can control web pages the kids visit?? (This machine: late 2001 dual USB white iBook G3-300 with Mac OS 10.2.8) Thanks if you can help.

    Look at some of the apps on this page http://www.pure-mac.com/censor.html
    Also look at NetNanny @ http://www.guardchild.com/netnanny.php
     Cheers, Tom

  • Parental controls for windows 7?

    hi,
    how do you get parental controls for windows 7 on skype? i have tryed to look online  for the answer but i came out blank. please help!!

    you need to download a third party application.such as AthTek Skype Recorder.http://www.skype-record.com

  • Parental controls for the itouch 2nd generation

    How do you go about setting up parental controls for an itouch?

    I know this is not helpful at all
    But if your kid has half a brain he'll (or she'll) be able to get past parental locks.
    Instead of ignoring and blocking something you think is a problem how about you talk to them about it.
    *Does a load of good.*
    but if your INTENT on doing this, you can easily find the parental control options in the touch's settings. But i assure you they will be able to get past it.

  • Parental Controls for Droid X

    Are there parental controls for the Droid X.  Need to limit what websites children can go to.
    Thanks

    @ Kooshie
    I have verified Content Filters works on Droid and all other Android devices for web browsing.
    The choices for web browsing control are similar to those used for movies:
    Ages 7+
    This material contains little or no violence, no strong language, no drug use, limited alcohol or tobacco use, no modeling content, little or no sexual dialogue and situations and no themes of a mature nature. This content is considered suitable for children age 7 and above and parents can comfortably allow this content to be accessed by children 7 and above unattended.
    Ages 13+
    This material may contain mild coarse language, moderate violence, mildly suggestive lingerie, drug use depicted without being designed to encourage use, some sexuality or suggestive dialogue or themes that may not be appropriate for younger children. This content would be considered suitable for children 13 and above by most parents. Parents are cautioned against allowing children under 13 to access or view this content unattended.
    Ages 17+
    This content may contain one or more of the following: crude language, graphic violence, sexual situations, criminal activity, drug abuse, sexual situations without nudity or themes that may not be appropriate for younger youth. Many parents would consider this material unsuitable for children under 17 and parents are strongly cautioned against allowing children under 17 to access or view this content.
    Filters Off
    Turning off the content filter provides access to all content accessible through your mobile phone, including content that you may consider objectionable due to the ages of your children or your personal desire to avoid certain types of content.
    Please note: Some content may require additional authentication and/or age verification prior to access, download, use or purchase.
    Also note that there is a page to read up on android content filters specifically: http://www.parentalcontrolcenter.com
    Here is the android article: http://parentalcontrolcenter.com/parents/content-filtering-for-android-devices/

  • Using Safari Parental Controls for Myspace

    We use Parental Controls for my daughter's MacBook running Leopard 10.5.6. With MySpace, it restricts her at each new page. For instance, mail, photos, her home page etc, we have all manually added so they work OK. BUT, if she gets a new friend, which happens all the time, we have to add those pages as well. It is quite cumbersome and difficult to keep up with. Is there a better way? I would like to just approve the whole site, but it won't let me do that.

    The problem is that a lot of these programs actually don't get the proper ratings. This is a bug. For instance:
    Take a look at the app for OpenTable.  It's rated 4+.  But if you go into the app and click "About" in the menu, then go to "help and Support," it pops you into an embedded web browser that is directed to the Opentable website.  With a little bit of work, you can get the browser to navigate to Google or somewhere else that will give you carte blanche to see any site, including ****. I have watched this happen with family members, and it reveals a serious defect in the parental controls portion of the iOS ratings system.
    Here's how to fix If a browser is embedded in an app, even for reading local HTML, the app gets a 17+.  The only ways to avoid the 17+ rating are: (1) use Safari to open HTML pages/links (which honors parental control settings); or (2) restrict all browser activity to either local files or a very select set of remote web pages on a trusted site.

  • Parental controls for internet access

    I would like to be able use my macbook pro to manage our 4 children's access to the internet. Most importantly times of access but also some internet policing.
    We have an airport extreme base station and airport express.
    The children all have iPads of varying age and model number.
    Can this be done and if so how?

    You can set restrictions in the devices. Settings > General > Restrictions > Enable Restrictions. You would do this on each of their devices. Be sure you use different passcodes for each device and make them strong passcode. Write them down somewhere and keep them hidden so your children cannot find them.
    If the kids also have access to a computer, then you can control it by opening Users & Groups and creating Managed user accounts for them to use. Clicking on Parental Controls will allow you to determine what they have access to.

  • Parental Controls for iPad

    I just bought the iPad today and my parents want to control me. Does anyone know of built-in Parental Controls, like the "Restrictions" built into my iPod Touch? I don't want to take the cellophane off until this problem is solved. Thanks.

    Restrictions
    You can set restrictions for the use of some applications and for iPod content on iPad. For example, parents can restrict explicit music from being seen on playlists, or turn off YouTube access entirely.
    Turn on restrictions:
    Choose General > Restrictions, then tap Enable Restrictions.
    Enter a four-digit passcode.
    Reenter the passcode.
    Turn off restrictions: Choose General > Restrictions, then enter the passcode. Tap Disable Restrictions, then reenter the passcode.
    If you forget your passcode, you must restore the iPad software using iTunes. See “Updating and Restoring iPad Software” on page 139.
    Set application restrictions: Set the restrictions you want by tapping individual controls on or off. Initially, all controls are on (unrestricted). Tap an item to turn it off and restrict its use.
    Safari is disabled and its icon is removed from the Home screen. You cannot use Safari to browse the web or access web clips. Other third-party applications may allow web browsing even if Safari is disabled.
    YouTube is disabled and its icon is removed from the Home screen.
    The iTunes Store is disabled and its icon is removed from the Home screen. You cannot preview, purchase, or download content.
    The App Store is disabled and its icon is removed from the Home screen. You cannot install applications on iPad.
    Location data isn’t provided to applications.
    Restrict purchases within applications: Turn In-App Purchases off. When enabled, this feature allows you to purchase additional content or features within applications downloaded from the App Store.
    Set content restrictions: Tap Ratings For, then select a country in the list. You can set restrictions using that country’s ratings system for the following categories of content:
     Music & Podcasts  Movies  TV Shows  Apps
    In the United States, for example, to allow only movies rated PG or below, tap Movies, then select PG from the list.
    Note: Not all countries have a rating system.

  • I am trying to reset my 4th generation ipod touch via itunes (as I cannot remember parental controls code). In itunes it does a download but then says the software was corrupted during download. Itunes is up to date. Operating system is vista. Any ideas?

    I have given my 4th generation ipod touch to my husband and he wants to download some in app purchases, so I am trying to reset it via itunes. I dont remember setting parental controls but I must have at some point, maybe when I lent it to the kids. But I cannot remember the password and nothing I have tried works. So I have backed the ipod up and am trying to reset it but after speding 10 minutes doing a download I get a message that says:
    "The softwaar for the iPod was corrupted during download. Disconnect and reconnect, then try again. Make sure your network settings are correct and your network connection is active, or try again later"
    I have tried many times. All the settings are correct, and the network seems to be working fine in all respects.
    Any advice very much appreciated.
    Thank you
    UPDATE - decided to try one more time after trying for hours and it has worked! I now suspect it may have been because my son was playing an online game. Though we have plenty of bandwidth. But in case, I guess it could be a bandwidth problem.

    A Complete Guide to Restore or Recover Your iDevice (or if you forgot your passcode)
    iTunes 10 for Mac- Update and restore software on iPod, iPhone, or iPad
    iPhone, iPad, iPod touch: Wrong passcode results in red disabled screen
    iOS- Understanding passcodes
         If you have forgotten your Restrictions code, then follow the instructions
         below but DO NOT restore any previous backup. If you do then you will
         simply be restoring the old Restrictions code you have forgotten. This
         same warning applies if you need to restore a clean system.
    If you need to restore your device or if you cannot remember the passcode, then you will need to restore your device using the computer with which you last synced it. This allows you to reset your passcode and re-sync the data from the device (or restore from a backup). If you restore on a different computer that was never synced with the device, you will be able to unlock the device for use and remove the passcode, but your data will not be present. Refer to Updating and restoring iPhone, iPad and iPod touch software.
    Try restoring the iOS device if backing up and erasing all content and settings doesn't resolve the issue. Using iTunes to restore iOS devices is part of standard isolation troubleshooting. Restoring your device will delete all data and content, including songs, videos, contacts, photos, and calendar information, and will restore all settings to their factory condition.
    Before restoring your iOS device, Apple recommends that you either sync with iTunes to transfer any purchases you have made, or back up new data (data acquired after your last sync). If you have movie rentals on the device, see iTunes Store movie rental usage rights in the United States before restoring.
    Follow these steps to restore your device:
         1. Verify that you are using the latest version of iTunes before attempting to
             update.
         2. Connect your device to your computer.
         3. Select your iPhone, iPad, or iPod touch when it appears in iTunes under Devices.
         4. Select the Summary tab.
         5. Select the Restore option.
         6. When prompted to back up your settings before restoring, select the Back Up
             option (see in the image below). If you have just backed up the device, it is not
             necessary to create another.
         7. Select the Restore option when iTunes prompts you (as long as you've backed up,
             you should not have to worry about restoring your iOS device).
         8. When the restore process has completed, the device restarts and displays the Apple
             logo while starting up:
               After a restore, the iOS device displays the "Connect to iTunes" screen. For updating
              to iOS 5 or later, follow the steps in the iOS Setup Assistant. For earlier versions of
              iOS, keep your device connected until the "Connect to iTunes" screen goes away or
              you see "iPhone is activated."
         9. The final step is to restore your device from a previous backup.
    If you can not restore your device then you will need to go to recovery mode.
    Placing your device into recovery mode:
    Follow these steps to place your iOS device into recovery mode. If your iOS device is already in recovery mode, you can proceed immediately to step 6.
         1. Disconnect the USB cable from the iPhone, iPad, or iPod touch, but leave the other end
             of the cable connected to your computer's USB port.
         2. Turn off the device: Press and hold the Sleep/Wake button for a few seconds until the
             red slider appears, then slide the slider. Wait for the device to turn off.
              If you cannot turn off the device using the slider, press and hold the Sleep/Wake
              and Home buttons at the same time. When the device turns off, release the Sleep/Wake
              and Home buttons.
         3. While pressing and holding the Home button, reconnect the USB cable to the device.
             The device should turn on. Note: If you see the screen pictured below, let the device
             charge for at least ten minutes to ensure that the battery has some charge, and then
             start with step 2 again.
         4. Continue holding the Home button until you see the "Connect to iTunes" screen.
             When this screen appears you can release the Home button.
         5. If necessary, open iTunes. You should see the following "recovery mode" alert:
         6. Use iTunes to restore the device.
    If you don't see the "Connect to iTunes" screen, try these steps again. If you see the "Connect to iTunes" screen but the device does not appear in iTunes, see this article and its related links.
    Additional Information:
    Note: When using recovery mode, you can only restore the device. All user content on the device will be erased, but if you had previously synced with iTunes on this computer, you can restore from a previous backup. See this article for more information.

  • If I were to set up Parental Controls for the only user on a MacBook, would I need to create another, separate account?

    Parental controls

    Welcome to Apple Support Communities
    It is not possible to set parental control on the administrator account, so you have two choices: create a new user account to apply parental control or use the Guest user for that. You can set parental control in System Preferences -> Parental Control

Maybe you are looking for