How do you set location based reminders with location restrictions turned on?

I can set location based reminders with location restrictions turned off, but I want them on. Otherwise if I lost or if somebody stole my iPhone they could just turn off the find my iPhone function. Yet if I have location services restricted to prevent this then location based reminders are unavailable. Any help would be appreciated

I can set location based reminders with location restrictions turned off, but I want them on. Otherwise if I lost or if somebody stole my iPhone they could just turn off the find my iPhone function. Yet if I have location services restricted to prevent this then location based reminders are unavailable. Any help would be appreciated

Similar Messages

  • I connected my Canon printer to time capsule, and can print OK. However, I can't get the printer scanner to work. How do you set up the scanner with Time Capsule?

    I connected my Canon printer to time capsule, and can print OK. However, I can't get the printer scanner to work. How do you set up the scanner with Time Capsule?

    You cannot use USB. It has to be a network capable printer.. is it?? You did not indicate how it is connected.. but by wireless or ethernet then scanning is possible otherwise not.

  • How do you set up ftp services with outside of network access?

    What are the steps to set up a password protected directory for our clients to ftp files to?
    I've turned on ftp services and created a testftp directory, with access to everyome, but can't access the files. It never asks me for a password.
    We have AT&T dsl service. The connection goes to a Linksys router and on to multiple switches. Each of our users have assigned static ip's.
    Thanks for the help,
    Chas

    The Mac OS X Server Security manual has a discussion of setting up ftp and the share points and related. Here's the [Tiger Security|http://images.apple.com/server/macosx/docs/TigerServer_Security_Config021507.pdf] manual, and here's [Leopard|http://images.apple.com/server/macosx/docs/LeopardServer_Security_Configv10.5.pdf].
    If you'd prefer a description here rather than the manuals, what follows are the basics.
    I'm here assuming you have a firewall between the Internet and your server; a firewall attached to the DSL modem. If you have an external static IP and an internal private (192.168.0.0/16, 10.0.0.0/8, etc) via NAT, you'll need a firewall with reasonable port-mapping capabilities. If you're static and public throughout, you need only poke holes; you probably don't need the port-mapping stuff. (Or you could have a direct connection to your Mac OS X box; I don't usually configure things that way.)
    First, open your firewall and allow access via the ftp ports (port 20 outbound and port 21 inbound, typically) and open up the ephemeral port range.
    Then create a user and directory via whichever service you are using -- Workgroup Manager, Open Directory or otherwise. Within Workgroup Manager, you can set up share points; basically locations that the ftp daemon is permitted to touch.
    Then wander into Server Admin and enable the ftp server.
    Now if I wanted to do this without exposing my cleartext username and cleartext password over every hotel and coffee shop LAN I might use (and I'm not kidding; "ftp security" is an oxymoron), I'd create a username and its directory per your usual means, use Server Admin to configure and launch sftp daemon, and open up port 22 at the firewall. In my experience, sftp is easier to administer, and operates with ssh and with PKE authentication, and it doesn't post your password to Craigslist -- and beyond discussions of the (lack of) security, ftp tends to be somewhat fragile; it really gets into trouble traversing firewalls.
    Given my experience with ftp over the years, here is [why I don't want to use ftp|http://64.223.189.234/node/530] -- sftp is just so much easier to deal with, and to secure.

  • How do you set up Paged View with Spry Data Sets

    Hope someone can help. I have constructed a Spry data set using a html table and want  to use the paged view javascript to limit the amount of rows displayed on one page at a time to 10 then forcing a new page. Have found the java script file in the spry 1.6 download and attached it to the spry assets folder and have followed the instructions found at the Adobe development center   http://labs.adobe.com/technologies/spry/articles/pager/index.html        with no luck. Have attached  files to show what I have done. If someone could look at this and point out my error or suggest a better way I would be grateful. I am not a code warrior so simple  instructions would be so helpful. Many thanks in advance.
    Here is the code
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xmlns:spry="http://ns.adobe.com/spry">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <script src="SpryAssets/SpryData.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryHTMLDataSet.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryPagedView .js"></script>
    <link href="SpryAssets/SpryMasterDetail.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript">
    <!--
    var ds1 = new Spry.Data.HTMLDataSet("table.html", "ds1", {sortOnLoad: "Name", sortOrderOnLoad: "ascending"});
    ds1.setColumnType("Phone", "number");
    var pv1 = new Spry.Data.PagedView( ds1 ,{pageSize: 10});
    //-->
    </script>
    </head>
    <body>
    <input type="button" value="First" onclick="pv1.firstPage();" />
    <input type="button" value="Prev" onclick="pv1.previousPage();" />
    <input type="button" value="Next" onclick="pv1.nextPage();" />
    <input type="button" value="Last" onclick="pv1.lastPage();" /
    <div class="MasterDetail">
      <div spry:region="ds1" class="MasterContainer">
        <div class="MasterColumn" spry:repeat="ds1" spry:setrow="ds1" spry:hover="MasterColumnHover" spry:select="MasterColumnSelected">{Name}</div>
      </div>
      <div spry:detailregion="ds1" class="DetailContainer">
         <div class="DetailColumn">{Name}</div>
        <div class="DetailColumn">{Product}</div>
        <div class="DetailColumn">{Contact}</div>
        <div class="DetailColumn">{Phone}</div>
      </div>
      <br style="clear:both" />
    </div>
    <input type="button" value="First" onclick="pv1.firstPage();" />
    <input type="button" value="Prev" onclick="pv1.previousPage();" />
    <input type="button" value="Next" onclick="pv1.nextPage();" />
    <input type="button" value="Last" onclick="pv1.lastPage();" /
    </body>
    </html>

    Your region needs to refer to the pageview, not the dataset.  Your paged view var is already looking at/pulling in the ds.
    I would change the following code:
    <div spry:detailregion="ds1" class="DetailContainer">
         <div class="DetailColumn">{Name}</div>
        <div class="DetailColumn">{Product}</div>
        <div class="DetailColumn">{Contact}</div>
        <div class="DetailColumn">{Phone}</div>
      </div>
    to read the following:
    <div spry:region="pv1">
    <table>
    <tr spry:repeat="pv1">
    <td>{Name}</td>
    <td>{Product}</td>
    <td>{Contact}</td>
    <td>{Phone}</td>
    </tr>
    </table>
    Regards,
    Michael

  • How do you set up airport extreme with a windstream all in one modem with the wireless router built in

    I have a wireless network that I want to extend so there will be wifi coverage all over the whole house. I want to use the airport extreme to do so. so far all i can get to work is the airport making another network via a eithernet cable that is pluged into one of the ports on the windstream wireless router/moden (all in one you plug the phone line into this and it has the wireless built in) and the other end is in the WAN port of the airport. I guess the real question is do I need to change any settings on the windstream wireless router/modem to do so. Every time I select all the options to extend a network wirelessly I keep getting errors.

    The Airport Extreme can not wirelessly extend a 3rd party router, it can only extend another Apple router. If you can somehow keep the two connected via ethernet, you can setup a roaming network. A roaming network is essentially "extending" your network by using an ethernet cable to bridge the two routers.

  • How do you set up the passbook?

    How do you set up the Passbook with the new iOS6 software?

    I would highly suggest searching the community before posting in this case since this discussion is currently going on in a lot of threads.   Long answer short - wait for your apps to be updated by the developers and then you can link them - as of right now, only Fandago and Walgreens have update.

  • How do you set up "debug kernel"

    How do you set up debug kernel with solaris 10. ?

    There is no such thing as a Solaris debug kernel (at least not
    outside of Sun).
    You can load the Solaris 10 kernel under kernel debugger control
    (kmdb), by booting Solaris 10 with the "-k" option.
    And you can enable kernel heap memory checking, by setting the
    kernel variable kmem_flags to 0xf, for example by adding
    the following line to /etc/system:
    set kmem_flags=0xf

  • HT2513 How do you set up reminders if the New Reminders tab is not located under file?

    How do you set up reminders if the New Reminders tab is not located under file? This is a iCal question.

    You set up reminders in the Reminders app.

  • How do you set up a different ipad on same computer with different itunes library

    I am trying to update a clients ipad (who does not have access to internet at his residence) on my personal computer.  When I open up itunes with his apple ID, I continue to get my itunes library information.  I don't want to mix my information with his information.  How do you set up a different i pad/itunes on the same computer?  What I need to do is update the version of his i pad as his i pad is version 4.2.1.  Thank you

    Create a new Windows user account on the computer.
    (86398)

  • How do you set up TC with cable internet?

    I know this may sound ******** but if I have a coaxial cable coming out of my wall and the is no coaxial cable input on the TC, how do you set it up without using the crappy router I got from TW cable?  Is there a coaxial cable to ethernet adapter?

    but if I have a coaxial cable coming out of my wall and the is no coaxial cable input on the TC, how do you set it up without using the crappy router I got from TW cable?
    Suggest that you ask TW to provide you with a simple modem.....not a router. The TC is also a router. You don't need two routers and it just makes things more complicated.
    Is there a coaxial cable to ethernet adapter?
    No. You need to connect the coax cable to a modem. The modem provides an Ethernet signal to the TC.

  • How do you set up usb device (remote for ppt) to work with iPad2

    How do you set up a USB Device (a remote) to work with an iPad 2?  I have the digital camera connector but when I plug the remote in, the device is not recognizable.  We are trying to run a slideshow on the iPad using the remote to advance the slides.  Thus, the viewer does not have to swipe to advance to the next slide. 

    ...I have the digital camera connector...
    Simple answer: no, you can't use that remote with the iPad.
    The Camera Connection Kit (CCK) is only for importing pictures.  It is not a general purpose USB port so will not work with just any USB device, other than cameras and USB flash drives (but only to import pictures.)

  • How do you set up the alert for FaceTime with sound

    How do you set up the alert for FaceTime with sound?

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime: Set-up, Use, and Troubleshooting Problems
    http://tinyurl.com/32drz3d
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
     Cheers, Tom

  • How  do you set up with pc

    How  do you set up with pc.

    I set up last year with Win 7. I downloaded Airport Utility from apple.com. I don't recall any difficulty. Wireless is not my forte. Sorry I can't offer better assistance.
    I installed Software Update on the pc to keep software up to date.
    Hope this helps.

  • How do you set up location services

    how do you set up location services

    Look on the side of your WiFi router/modem and there should be a string of numbers and letters, unless you set up a custom password when you bought it. In that case, you would probably have to call your WiFi service provider and talk to them.

  • How do you set a default on the Mac that automatically starts a sentence with a capital letter after a full stop? Thanks guys....

    How do you set a default on the Mac that automatically starts a sentence with a capital letter after a full stop? Thanks guys....

    I use SpellCatcher.  
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 

Maybe you are looking for