With the recent upgrade to FF 6.0 how do we get password protection for the internet with FF back?

When our Mac was set up we had a password protected startup for FF, so without the password you could not start it.
With the recent upgrade to 6.0 that password request disappeared. How do we get it back?

When our Mac was set up we had a password protected startup for FF, so without the password you could not start it.
With the recent upgrade to 6.0 that password request disappeared. How do we get it back?

Similar Messages

  • HT201238 If we upgrade to a new monthly plan do we get a refund for the full year plan that we've already purchased?

    If we upgrade to a new monthly plan do we get a refund for the full year plan that we've already purchased?

    You will need to contact Apple - we are all other end users like you here.
    iCloud storage pricing - Apple Support

  • When I download itunes, it says that Ipod Service failed to start. I checked the services under task manager and when I try to start it, it says access denied. How to I get access and for the ipod service to start and run?

    Please help. My ipod classic could not be recognised by itunes when I connect my ipod to PC. Previously it has been recognised before I updated. This was a while ago now and so I removed all apple files and re installed the latest itunes but am having the same problem.
    When I download itunes, it says that Ipod Service failed to start. I checked the services under task manager and when I try to start it, it says access denied. How to I get access and for the ipod service to start and run?

    Some anti-virus programs (e.g., McAfee) have this rule that can be invoked under the "maximum protection" settings: PREVENT PROGRAMS REGISTERING AS A SERVICE. If that rule is set to BLOCK, then any attempt to install or upgrade iTunes will fail with an "iPod service failed to start" message.
    If you are getting this problem with iTunes, check to see if your anti-virus has this setting and unset it, at least for as long as the iTunes install requires. Exactly how to find the rule and turn it on and off will vary, depending upon your anti-malware software. However, if your anti-virus or anti-malware software produces a log of its activities, examining the log may help you find the problem.
    For example, here's the log entry for McAfee:
    9/23/2009 3:18:45 PM Blocked by Access Protection rule NT AUTHORITY\SYSTEM C:\WINDOWS\system32\services.exe \REGISTRY\MACHINE\SYSTEM\ControlSet001\Services\iPod Service Common Maximum Protection:Prevent programs registering as a service Action blocked : Create
    Note that the log says "Common Maximum Protection: Prevent programs registering as a service". The "Common Maximum Protection" is the location of the rule, "Prevent programs registering as a service" is the rule. I used that information to track down the location in the McAfee VirusScan Console where I could turn the rule off.
    After I made the change, iTunes installed without complaint.

  • TS1424 I'm being charged twice for the same order. Playtika coin purchases are a problem on Ipod.  How do I get a credit for the coins I did not get?

    Did anyone else have problems with in App purchases from an IPod?  I get charged twice for the same order...  How do I get a credit for the coins not received?

    Try contacting iTunes support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • Hi everyone, I have received a new iphone today. I have an ipod touch but no longer have the computer it is synced to. How do I get my music from the touch to my new iphone? many thanks Anna-Marie

    Hi everyone, I have received a new iphone today. I have an ipod touch but no longer have the computer it is synced to. How do I get my music from the touch to my new iphone? many thanks Anna-Marie

    Joe Z in VA wrote:
    First try this:
    - Go on iTunes computer
    - plug in the iPod
    - authorize your device from store/authorize
    - iPod / transfer from iPod by right clicking on the left pane
    This will only transfer iTunes purchased music, not ripped CDs. and it is unnecessary now, as the music can just be downloaded from the cloud.

  • How I could get a receipt for the purchase i made in the app store?

    I just purchased an app for my iMac and I was wondering how I could get a receipt for the purchase?

    The redeipt comes in the your email automatically in 24 to 48 hours.

  • How do I get a manual for the i4s phone?

    how do I get a manual for the i4s phone?
    <Re-Titled By Host>

    The iPhone manuals are primarily user guides for a specific operating system version (e.g. iOS 7.1). You can download one from: Apple - Support - Manuals

  • How can I get null values for the later weeks

    Hi All,
    When I execute this code I get the records till current week.
    How can I display the output so that I get null values for the later weeks. (with the help of v_numOfWeeks variable in the code)
    Thanks,
    Vikram
    DECLARE
       v_query VARCHAR2(4000);
       TYPE ref_cursor IS REF CURSOR;
       v_refcur ref_cursor;
       v_sum NUMBER;
       v_id NUMBER;
       v_name VARCHAR2(1000);
       v_weeknum NUMBER;
       v_pernum NUMBER;
       v_numOfWeeks NUMBER := 5;
    BEGIN
    v_query := ' SELECT SUM(product_bkg), postn_id, postn_tbl.postn_name, b.week_num, b.period_num
                              FROM ops_cv_extract b, (SELECT row_id, desc_text postn_name
                          FROM s_postn) postn_tbl
                          WHERE lvl_6_id = 5767
                          AND fiscal_year = 2008
                          AND b.week_num < 4
                          AND b.period_num = 3
                          AND b.postn_id = TO_NUMBER(postn_tbl.row_id)
                          GROUP BY postn_id, postn_tbl.postn_name, b.week_num, b.period_num
                          ORDER BY  postn_tbl.postn_name, b.week_num';
    OPEN v_refcur FOR v_query;
    LOOP
       FETCH v_refcur INTO v_sum, v_id, v_name, v_weeknum, v_pernum;
       EXIT WHEN v_refcur%notfound;
       dbms_output.put_line('P'|| v_pernum||'W'|| v_weeknum||' '||v_name||' '||v_sum);
    END LOOP;
    END;
    This is the output when I execute this code.
    P3W1 COMM CNTRL ISAM 213 26961.61
    P3W2 COMM CNTRL ISAM 213 12870.4
    P3W3 COMM CNTRL ISAM 213 245.88
    P3W1 COMM CNTRL ISAM 273 72831.2
    P3W2 COMM CNTRL ISAM 273 8739.38
    P3W3 COMM CNTRL ISAM 273 3764.92
    P3W1 COMM CNTRL TAM 213 49844
    P3W2 COMM CNTRL TAM 213 20515.17
    P3W3 COMM CNTRL TAM 213 16167.46
    P3W2 COMM CNTRL TAM 216 12561.4
    P3W3 COMM CNTRL TAM 216 2027.1
    P3W1 COMM CNTRL TAM 273 -3336.71
    P3W2 COMM CNTRL TAM 273 -1376.68
    P3W3 COMM CNTRL TAM 273 19707.42
    P3W1 Damon Walters -609.07
    P3W2 Damon Walters 30030.24
    P3W3 Damon Walters 37475.1
    This is the output I'd like to get
    P3W1 COMM CNTRL ISAM 213 26961.61
    P3W2 COMM CNTRL ISAM 213 12870.4
    P3W3 COMM CNTRL ISAM 213 245.88
    P3W4 COMM CNTRL ISAM 213
    P3W5 COMM CNTRL ISAM 213
    P3W1 COMM CNTRL ISAM 273 72831.2
    P3W2 COMM CNTRL ISAM 273 8739.38
    P3W3 COMM CNTRL ISAM 273 3764.92
    P3W4 COMM CNTRL ISAM 273
    P3W5 COMM CNTRL ISAM 273
    P3W1 COMM CNTRL TAM 213 49844
    P3W2 COMM CNTRL TAM 213 20515.17
    P3W3 COMM CNTRL TAM 213 16167.46
    P3W4 COMM CNTRL TAM 213
    P3W5 COMM CNTRL TAM 213
    P3W1 COMM CNTRL TAM 273 -3336.71
    P3W2 COMM CNTRL TAM 273 -1376.68
    P3W3 COMM CNTRL TAM 273 19707.42
    P3W4 COMM CNTRL TAM 273
    P3W5 COMM CNTRL TAM 273
    P3W1 Damon Walters -609.07
    P3W2 Damon Walters 30030.24
    P3W3 Damon Walters 37475.1
    P3W4 Damon Walters
    P3W5 Damon Walters Edited by: polasa on Oct 28, 2008 6:42 PM

    Sure, in a Single SQL ->
    satyaki>
    satyaki>select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
    PL/SQL Release 10.2.0.3.0 - Production
    CORE    10.2.0.3.0      Production
    TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    Elapsed: 00:00:00.01
    satyaki>
    satyaki>
    satyaki>-- Start Of Test Data --
    satyaki>with week_tab
      2  as
      3    (
      4      select 1 period_num, 1 week_num, 10 bkg1 from dual
      5      union all
      6      select 1, 2, 40 from dual
      7      union all
      8      select 1, 3, 30 from dual
      9      union all
    10      select 1, 2, 20 from dual
    11      union all
    12      select 1, 1, 10 from dual
    13      union all
    14      select 1, 1, 20 from dual
    15      union all
    16      select 1, 3, 10 from dual
    17      union all
    18      select 2, 1, 15 from dual
    19      union all
    20      select 2, 2, 20 from dual
    21      union all
    22      select 2, 3, 10 from dual
    23      union all
    24      select 2, 1, 15 from dual
    25      union all
    26      select 2, 2, 30 from dual
    27      union all
    28      select 2, 3, 20 from dual
    29    )
    30  -- End Of Test Data --
    31  select period_num,
    32         week_num,
    33         (
    34            select sum(week_tab.bkg1)
    35            from week_tab
    36            where period_num = m.period_num
    37            and   week_num   = m.week_num
    38            group by week_num, period_num
    39         ) sum_bkg1
    40  from (
    41        select dum.week_num,
    42              wk.period_num
    43        from (
    44                select 1 week_num from dual
    45                union all
    46                select 2 from dual
    47                union all
    48                select 3 from dual
    49                union all
    50                select 4 from dual
    51                union all
    52                select 5 from dual
    53              ) dum ,
    54              (
    55                select distinct period_num
    56                from week_tab
    57          ) wk
    58      ) m;
    PERIOD_NUM   WEEK_NUM   SUM_BKG1
             1          1         40
             1          2         60
             1          3         40
             1          4
             1          5
             2          1         30
             2          2         50
             2          3         30
             2          4
             2          5
    10 rows selected.
    Elapsed: 00:00:00.48
    satyaki>Regards.
    Satyaki De.

  • How do I get Air runtime for the android emulator

    All the links I have found say you can download it after signing up for the pre-release; however, that is no longer viable as it is not pre-release anymore.  I cannot find anywhere to download the apk file anymore...  and I need to get it on the emulator.

    I am still digging ... means I still look for the best way to install a Flex/Air combo that will allow me to develop Air Apps for Android (using a Maven based dev env - flex-mojo), means I actually do NOT want to install or use Flash Builder or Flash Professional CS5 or ... whatever.
    So here is what I found out (the result of 3 days of work (elapse time)).
    To get a Flex/Air SDK up and running you need to ...
    Download the Flex SDK (e.g. 4.1.0.16076) from http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+4This will NOT contain an/the AIR SDK (and that means also no runtimes)
    Download the Air SDK (e.g. 2.5.1) from http://www.adobe.com/products/air/sdk/
    Copy the Air SDK over the Flex SDK as described here http://kb2.adobe.com/cps/495/cpsid_49532.htmlNote: Make sure that the Air SDK is newer than the Flex SDK. Otherwise the Flex SDK might use features of the Air SDK that are not present in the Air SDK and that might result in compile or runtime errors. I was not able to find a definition of "newer", but assume that Air 2.5 is newer than Flex 4.1
    ... or ...
    You download the Flex SDK 4.5.0.17689 from http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+HeroThis actually contains (means is already merged with) an Air SDK (don't know which version)
    Right now, I am stuck to make this work with flex-mojos 3.7.1, but will report back, if I find a solution.

  • How can I get a refund for the u2 album that Apple charged me for

    I have just been charged £27.99 for the U2 album that I did not want. How do I get a refund for this. I can't stand U2!!

    £27.99 for the album ? If you are referring to The Songs Of Innocence album (£7.99) then that was given free to everyone three months ago, and was free until 13th October - you are sure that you've been charged, it's not a temporary store holding charge ? The purchase price should show on your account's purchase history : See your purchase history in the iTunes Store - or http://reportaproblem.apple.com on your iPad.
    If you have been charged for the album but you didn't buy it then try contacting iTunes Support via the above 'report a problem' link.
    Or you can try contacting iTunes Support via this page : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • Since I upgraded to Firefox 6 the recent news feed has disappeared. How do I get it back?

    I play Zynga's Cafeworld on Facebook. The "recent" key on the newsfeed has disappeared with the upgrade to Firefox 6. I must go to individual walls to get current requests. How can I fix this?

    The button is still there with 5.0.2. (At least, still supposed to be there.)
    Are your video drivers or display adaptor drivers up to date? (Plausibly, the higher version of Safari may have outstripped the capabilities of your existing drivers. If so, an update of the drivers may be of some assistance.)

  • Did anyone else lose all their contacts from address book after the Lion upgrade? ...and how do I get them back?

    I seem to have lost all my contacts from my address book after the Lion upgrade.  I am a mobileme user and since it sync's with my MacBook Pro it erased all of by contacts.  How do I retrieve my missing information?
    MacBook Pro mid 2010, just upgraded to Lion and iPhone 4.

    yes, i did too.. will probably just try to restore them from the iphone sync.

  • I had my Ipod touch 4gen on itunes of computer that crashed. On new computer i updated it, hit the wrong button, and lost everything. How do i get my old songs, apps, and account money back?

    I had my ipod 4gen itunes on a computer that crashed. With the new computer I update it to the lastest version. I hit the wrong transfer button and lost everything. How do I get my old songs, apps, and money back from my old account, if thats possible?

    I cant find any of my recently bought songs or the apps i have purchased. When I was updating my ipod there was a button that asked about transfering purchases and I didnt read it, and I didnt update manually so i think thats why i lost everything. I clicked on the intrustions and clicked on apps and i coulnt find any of my old stuff.

  • How can we get record numbers for the rows after grouping them?

    Post Author: preethibaddam
    CA Forum: Formula
    hii everyone,
    i want to number those records which are grouped by a column.
    eg: if i group the emp table with the deptno then the records for the deptno10 group should start from 1 and end with an N number and again when it shifted to deptno20 group than the records for that deptno20 should again start with 1 and end with N number.
    i tried placing record number from the field explorer but it is not working. the other group records start with the ended number from the first group.
    thanks

    Post Author: V361
    CA Forum: Formula
    Record number from CR will count all the records.  You could use a running total, and reset on change of group.

  • Password protection for the iPad Mail App

    Is there any way to set the mail app so that the user must enter a mail password to access the account?

    No, sorry, none. It's not a horrible idea, though . . . .
    FEEDBACK
    If you wish to raise issues with or suggest changes to Apple, then you need to talk to them directly. These forums, strictly user-user and for technical support issues, are not an avenue for that. Use the feedback forms set up for the various hardware and software packages:
    Feedback area of Apple Support: http://www.apple.com/feedback
    iPad Feedback Form: http://www.apple.com/feedback/ipad.html

Maybe you are looking for