Coolies on Internet Explorer

ON Internet Explorer whenever I try to set my cookie privacy high and just allow certain sites they are always deleted soon after - all except  motive.com  which is the BT software provider.  What's going on and how do I get over this?
Norry

Norry wrote:
ON Internet Explorer whenever I try to set my cookie privacy high and just allow certain sites they are always deleted soon after - all except  motive.com  which is the BT software provider.  What's going on and how do I get over this?
Norry
BT supplies you with a Managed Service. One of the consequences of this is that BT assumes control of many aspects of your home network and PC, and any hands-on control you wish to have is liable to be overruled. This is carried out by software provided by Motive.Com. They are an Alcatel company, and their products can be used to remotely control and monitor pretty well every aspect of your computing environment. More details at :
http://www.motive.com/products/display.php/home-device-manager-1
http://www.motive.com/products/display.php/homeview
For many customers this may be fine - they don't want to be involved in the technical complexities. For others this is less satisfactory - as I think you have found. If you are a technically able customer and wish to manage the functioning of your own networks and PCs, you may have to consider these actions :
1  Replace your Home Hub with a non-BT router. This is because the Hub acts as BT's access gateway to your home network. (This is via a hidden port to which you have no access or visibility).
2  Don't use any of the software on the BT CD, as it's likely this instals client modules of the Motive management system.
3  Don't use Internet Explorer - use Firefox with script filtering tools such as NoScript.
It's unfortunate that many people have to do do this, but it's down to BT giving no options - you get a managed service only. If you want to take full responsibility for your own systems, then you have to actively block BT's access.

Similar Messages

  • Can't open website in Internet Explorer

    So I have this website I created in Dreamweaver and Flash. I uploaded it using FileZilla, everything's perfect I just can't seem to open it in PC's. When I try it in my Mac it works perfectly on Firefox or Safari, but on PC's Internet Explorer simply won't operate the flash buttons. I mean, one can see the page but you can't navigate through it like in a Safari or Firefox browser. This is the website, it's a medical center. Hope you guys can help me out. Peace. www.imaxtampico.com

    No real reason for using Flash buttons, just simple aesthetics. Want it to look nice, and I think Flash buttons add a good touch for doing so. Basically I just want to do cool buttons, that's why I do them in Flash. I've tried in Dreamweaver but I just can't seem to manage to do them the way I like them... any suggestions? Thanks again.

  • HP Photo Creation and Internet Explorer 9?

    Does HP Photo Creation work with Internet Explorer 9? When IE 9 was released i had to uninstall it to be able to use HP Photo Creations. Has your software been updated yet in order to function with IE 9?

    Hi CarolAnn.
    Please let us know how it goes. We still recommend you contact our customer support team because there may be something else going on, such as a misconfiguration on your computer. Customer Support has a variety of tools to diagnose problems and get you printing again.
    Thanks for trying HP Photo Creations,
    RocketLife
    RocketLife, developer of HP Photo Creations
    » Visit the HP Photo Creations Facebook page — news, tips, and inspiration
    » See the HP Photo Creations video tours — cool tips in under 2 minutes
    » Contact Customer Support — get answers from the experts

  • AppletViewer won't run an applet that runs in Internet Explorer?? Whats up?

    I have an applet that I created. It runs in Internet Explorer perfectly. I mean perfectly, every single time, without a problem.
    But, if I try to run appletviewer with this applet, it gives all kinds of exception messages: Ever seen this before?
    Thanks!

    Why not just paste the applet code. I know it is simple, but here it is. I am new to java so you may see some weird code for sure.... It is suppose to countdown to a given date/time... Just something simple to help me learn Java.
    If anyone else has time and wants to compile it and try to get it to run as an Active Desktop Item that would be super cool
    Thanks!!!!
    Here is the html page code:
    <HTML>
    <HEAD>
    <TITLE>Countdown Applet</TITLE>
    </HEAD>
    <BODY>
    <APPLET CODE="PKVTimer.class" HEIGHT=30, WIDTH=120>
         <param name=BackColorRed value="0">
         <param name=BackColorGreen value="128">
         <param name=BackColorBlue value="0">
         <param name=ForeColorRed value="255">
         <param name=ForeColorGreen value="255">
         <param name=ForeColorBlue value="255">
         <param name=Year value="2003">
         <param name=Month value="9">
         <param name=Day value="27">
         <param name=Hour value="6">
         <param name=Minute value="30">
    </APPLET>
    </BODY>
    </HTML>
    Here is the code:
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    import java.util.*;
    class TimeInMillis extends GregorianCalendar {
         public long getMillisForDate(Calendar calIn) {
              getInstance();
              setTime(calIn.getTime());
              long now = getTimeInMillis();
              return now;
    public class PKVTimer extends Applet implements Runnable
         private Thread thThread;
         private Label tfCountdown;
         private Panel P1;
         private Calendar clCalendar, clHuntCalendar;
         private String sDays, sTime, sHrs, sMins, sSecs;
         private int iYear, iMonth, iDay, iHour, iMinute;
         public void init()     
              String cRed = getParameter("BackColorRed");
              String cGreen = getParameter("BackColorGreen");
              String cBlue = getParameter("BackColorBlue");
              String cfRed = getParameter("ForeColorRed");
              String cfGreen = getParameter("ForeColorGreen");
              String cfBlue = getParameter("ForeColorBlue");
              iYear = Integer.parseInt(getParameter("Year"));
              iMonth = Integer.parseInt(getParameter("Month"));
              iDay = Integer.parseInt(getParameter("Day"));
              iHour = Integer.parseInt(getParameter("Hour"));
              iMinute = Integer.parseInt(getParameter("Minute"));
              Color background = new Color(Integer.parseInt(cRed),
                                  Integer.parseInt(cGreen),
                                  Integer.parseInt(cBlue));
              Color foreground = new Color(Integer.parseInt(cfRed),
                                  Integer.parseInt(cfGreen),
                                  Integer.parseInt(cfBlue));
              // Set the applet background color to match the label background
              setBackground(background);
              tfCountdown = new Label("asdfasdfasdfasdfasdf");
              tfCountdown.setBackground(background);
              tfCountdown.setForeground(foreground);
              tfCountdown.setFont(new Font("Arial",Font.PLAIN,10));
              P1 = new Panel();
              P1.setLayout(new FlowLayout(FlowLayout.LEFT,0,2));
              P1.add(tfCountdown);
              add("North",P1);
              tfCountdown.setBounds(10,10,300,30);
              clHuntCalendar = Calendar.getInstance();
    clHuntCalendar.set(iYear,iMonth-1,iDay,iHour,iMinute,0);
              sTime = new String();
              thThread = new Thread(this);
              thThread.start();
         public void run()
              while(true)
                   clCalendar = Calendar.getInstance();
                   TimeInMillis gcTM = new TimeInMillis();
                   long lMilliHunt = gcTM.getMillisForDate(clHuntCalendar);
                   long lMilliNow = gcTM.getMillisForDate(clCalendar);
                   if (lMilliNow >= lMilliHunt) {
                        tfCountdown.setText("Go Bust One!!!");
                        this.stop();
                        return;
                   long elapsedTime = lMilliHunt - lMilliNow;
                   long lTemp, lDays, lHrs, lMins, lSecs;
                   lTemp = elapsedTime/(60*60*1000L);
                   lHrs = lTemp;
                   lDays = lHrs / 24;
                   lHrs = lTemp - (lDays * 24);
                   if (clCalendar.get(clCalendar.SECOND) >= clHuntCalendar.get(clHuntCalendar.SECOND)) {
                        lSecs = 60 - (clCalendar.get(clCalendar.SECOND) - clHuntCalendar.get(clHuntCalendar.SECOND));
                        clCalendar.set(clCalendar.MINUTE,clCalendar.get(clCalendar.MINUTE)+1);
                   else {
                        lSecs = (clHuntCalendar.get(clHuntCalendar.SECOND) - clCalendar.get(clCalendar.SECOND));
                   if (lSecs == 60) {
                        lSecs = 0;
                   if (clCalendar.get(clCalendar.MINUTE) >= clHuntCalendar.get(clHuntCalendar.MINUTE)) {
                        lMins = 60 - (clCalendar.get(clCalendar.MINUTE) - clHuntCalendar.get(clHuntCalendar.MINUTE));
                   else {
                        lMins = (clHuntCalendar.get(clHuntCalendar.MINUTE) - clCalendar.get(clCalendar.MINUTE));
                   if (lMins == 60) {
                        lMins = 0;
                   sDays = String.valueOf(lDays) + " Days ";
                   if (lHrs < 10) {sHrs = "0" + String.valueOf(lHrs);} else {sHrs = String.valueOf(lHrs);}
                   if (lMins < 10) {sMins = "0" + String.valueOf(lMins);} else {sMins = String.valueOf(lMins);}
                   if (lSecs < 10) {sSecs = "0" + String.valueOf(lSecs);} else {sSecs = String.valueOf(lSecs);}
                   sTime = sDays + sHrs + ":" + sMins + ":" + sSecs;
                   tfCountdown.setText(sTime);
                   try {
                        thThread.sleep(1000);
                   } catch (InterruptedException e) {}
         public void stop()
              thThread = null;

  • Debugging from Internet Explorer ?

    Can I get a value of a variable when I run an applet in Internet Explorer ? I know the name of the variable, and have Java console running. (I'm trying to learn Java with Java 2 SDK )
    Thanks for the answer.

    Use System.out.println and the output will go to the console.
    Answer provided by Friends of the Water Cooler. Please inform forum admin via the
    'Discuss the JDC Web Site' forum that off-topic threads should be supported.

  • Problem with jinitiator in my internet explorer

    I am using Forms and Reports 10g and Database 10g. Installed both successfully.
    When i try to run a form(even Test.fmb) , it is not working in internet explorer.... i still could not understand the problem. But, i noticed one thing... either, JInitiator is not installed or it is not invoking automatically when i run the forms... this is the problem.. can someone help me on this please?

    I am using Forms and Reports 10g and Database 10g.
    Installed both successfully.
    When i try to run a form(even Test.fmb) , it is not
    working in internet explorer.... i still could not
    understand the problem. But, i noticed one thing...
    either, JInitiator is not installed or it is not
    invoking automatically when i run the forms... this
    is the problem.. can someone help me on this please?When you say "it is not working..." what do you mean??
    What is the error message raised??
    Does the browser crashes??
    Keep in mind that to run a form from the forms builder (including test form) you must start the OC4J instance.
    Tony

  • How can I open just one of my several homepages in the current tab? You can in Internet Explorer but can only open all at once in lots of tabs with Firefox?!?

    Within Internet Explorer you can click on a little arrow next to the homepage icon and a dropdown appears with a list of your homepages (I have 5). So if I want to quickly check my facebook or e-mail I can click on it and then on whichever I want to visit (both are homepages). It is much quicker than using bookmarks/typing it in and I don't like the 'permanent tab' feature as I don't want them always open. Does this feature already exist?

    You can create a folder with the home pages by using "Bookmark All Tabs" to open a specific page.
    You can place that folder on the bookmarks toolbar or use the Bookmarks menu button that you can find in the toolbar palette to get access to that folder easily.
    * Open the Customize window via "View > Toolbars > Customize" or via "Firefox > Options > Toolbar Layout"
    * "Bookmark All Tabs" can be accessed via the right-click context menu of a tab on the tab bar.
    * "Bookmark This Page" can be accessed via the right-click context menu of that browser page.

  • Remote Panel and Internet Explorer

    Hello. I have a problem with a Remote Panel and Internet Explorer. I create a measurement system in LabVIEW. It�s composed of a main front panel and a few subVIs with independent front panels opened from main Front Panel when I press appropriate button. As a local system everything works ok but I try to create a web version of this system. I decide that I can use a Remote Panel. In Web Publishing Tool I was creating a web page for each of Front Panel. I try to have the same functionality as in local system, so when in Front Panel (opened in Internet Explorer window) I press appropriate button I want to open secondary Internet Explorer window with a subVI inside. And now I�m stuck because I can�t open this secondary window in a network w
    orkstation. Has anyone have an idea how can I do it?

    > Hello. I have a problem with a Remote Panel and Internet Explorer. I
    > create a measurement system in LabVIEW. It?s composed of a main front
    > panel and a few subVIs with independent front panels opened from main
    > Front Panel when I press appropriate button.
    I think you have two options. You can open most modal subVI panels
    directly on a remote machine. The popup panels won't be in a web page,
    but it will work with few changes.
    A second approach would be to change the app slightly. The buttons that
    launch the subVIs will turn into URL links. The links will open a web
    page with a different embedded panel.
    Greg McKaskle

  • Did you know that your Internet Explorer is out of date?

    Hello there,
    when i access this site http://www.sickkids.ca/ , I am getting this error message, please advice.
    Did you know that your Internet Explorer is out of date?
    To get the best possible experience using our website we recommend that you upgrade to a newer version or other web browser. A list of the most popular web browsers can be found below"

    It's probably giving you that warning because your Firefox is very out of date. Please read [http://www.getfirefox.com www.getfirefox.com] to see how to update to the latest version of Firefox (14.0.1 right now)

  • Photo gallery not showing up in internet explorer

    Hi,
    I have created a site with multiple photo pages. On my mac using safari it all appears correctly, but using my laptop and internet explorer none of the photos appear, and it states "done with errrors on page".
    Any ideas?
    thansk

    Welcome to the Apple Discussions. What's the URL of the site so we can examine it directly? What version of IE are you using? Check out this site for tips on making iWeb pages more IE compatible: http://www.iwebformusicians.com/WebMusic/iWebandInternetExplorer.html
    OT

  • How to install Adobe PDF toolbar in Internet Explorer after uninstalling IE 10 and installing IE 9

    Hello.  I need help installing Adobe PDF convert web page to pdf toolbar to my Internet Explorer 9.  I uninstalled Internet Explorer 11 and 10 because I could not open pdf files in IE 10 or 11 -- trying to open pdf documents froze/locked up Internet Explorer and I had to use Task Manager to exit Internet Explorer every time I tried opening a pdf document.  I have downgraded to IE 9 with the hope that I will have better luck.
    I am using Windows 7 operating system.  I have Adobe Acrobat X Pro installed on my computer.
    Now that I downgraded to IE 9, I've lost the Adobe convert web page to pdf toolbar.  It is not even in my choice of add ons in Internet Explorer when I go to Manage Add Ons.  How do I get the Adobe toolbar add on back?
    I lost my Adobe Acrobat X Pro disk so do not have that to help me in any way.  What can I do?
    Your help is greatly appreciated!

    If it is an issue of the AA X disk, you can download from http://helpx.adobe.com/acrobat/kb/acrobat-downloads.html. Be sure to create a replacement CD in case it is not available in the future. You will still need your S/N for any reinstall. You can usually get that from the Adobe site as long as you registered Acrobat (http://helpx.adobe.com/x-productkb/global/find-serial-number.html).

  • Why my Firefox is to slow?? Same as GoogleChrome?? Only Internet Explorer is working good! And i want to know Firefox its to slow open web sites! I want to use Firefox but i do no not wht to do is to slow! help me pls!

    Srry ill explain very bad myself there! The problem is at the time the Firefox its connecting to a "X" website, it takes to much time get in on the website =/, I got the same problem with GoogleChrome! But if i use Internet Explorer all works perfectly, but I dont want it to use IE, I want Firefox ^^ and I not know wht to do, I cleaned the registry, cleaned the cache and cookies mmmm I ´ve Avira Antivirus on the computer i did a full system scan and everything looks ok also I did a scan with MalwareBytes` Anti-Malware and all its ok again, I not know wht else to do!!! I turned off the avira and firewall of the windows 7 64 bits and didnt work too. Help me what can I do?

    Hello cor-el, thanks for your reply. I changed my settings for downloads to desktop and it has appeared on there. When I double click I am asked which program I want to open file. I click firefox and another box "opening install" says I have chosen to open the file which is an application and do I want to save it. This is the only real option so I press save file. I get a box saying this is an executable file which may contain viruses - do you want to run. I press ok and the final box showing C drive file name and desktop appears stating application not found.
    This happens the same whenever I try to install.
    To my untrained eye the application is not being recognised as an application and I cannot work out how to get it to do that.
    My plugin is still showing as out of date.
    Is there anything you could suggest. Thanks for your time.

  • Por que novas abas a partir de um site (yahoo) não abrem e não dão mensagem de erro? Abro notícia em nova aba, fica em branco. No internet explorer abre normal.

    Abro a página br.yahoo.com normalmente, mas quando abro uma notícia em nova aba, a nova aba fica em branco, apesar do endereço eletrônico aparecer na barra de endereços. Não aparece nenhuma mensagem de erro. No internet explorer abre tudo normal. Eu já desinstalei e reinstalei o Mozilla. Eu já Restaurei o firefox pelo site de suport do Firefox. Quando eu navego com o internet explorer não dá esse problema.

    Olá,
    '''Execute o Firefox em Modo Seguro''' para verificar se o problema é resolvido. O Modo Seguro é utilizado para resolução de problemas, ele desabilita a maioria dos add-ons.
    Existem duas maneiras de iniciar o Firefox em Modo Seguro:
    #Segure a tecla '''Shift''' quando for iniciar o Firefox através do menu Iniciar ou por um atalho.
    #Execute o Firefox normalmente, vá até o menu '''Ajuda''' e em seguida clique em '''Reiniciar com extensões desativadas...'''.
    ''Quando o pop-up for exibido, selecione "Iniciar em Modo Seguro" ''
    '''Se o problema não ocorrer no Modo Seguro''', uma extensão pode estar causando o erro e você precisa descobrir qual é a correta. Por favor, leia o artigo [[Troubleshooting extensions and themes]] para determinar isso.
    ''Para fechar o Firefox em Modo Seguro, basta sair normalmente e aguardar alguns segundos para reabrí-lo.''
    ''Quando você descobrir qual o problema, por favor mande um retorno! :) Isso poderá ajudar outros usuários que tenham o mesmo problema.''
    Obrigado e conte conosco!

  • How do I stop Firefox from creating untitled web pages when I try to send email from a web page. The only way I have found is to turn the computor off and then reboot. I don't have this problem when using Internet Explorer

    Every time I click on a web site that has an email option the browser starts making untitled web pages and never stops unless I turn the computer off. It is very frustrating to not be able to use an email option when offered by a web site. The only way I can send email messages on the Firefox browser is to go into my hotmail acct. and copy and paste the addresses. I don't have this problem when I use the Internet Explorer browser.

    See [[Firefox keeps opening many tabs or windows]]

  • Cannot send emails from my yahoo account.,but can from internet explorer.Why?

    Hi, I can receive emails on my yahoo account;read them and so on,but cannot reply to them.A message comes which states that they are trying to re-load the original mail ,but fail to.I went into the yahoo help page and was told if it worked on a different browser the fault lay with firefox (my default browser).It worked on Internet explorer ,which I hardly ever use.The problem first occurred yesterday ,no idea why.

    hello, in [https://support.mozilla.org/en-US/questions/947471 this thread] a user has found out that the problem might be related to the ghostery addon - do you have it installed too?

Maybe you are looking for

  • How to sent  a document to the inbox

    Hi all:     By default,th document can sent to someon by the channel of mail,but I want to sent the document to the inbox inside the portal, and generates notifications in the uwl.    Please tell me what I can do.   Thanks!

  • Ipod 80gb  won't sync with itunes

    I bought an 80GB yesterday. When I connected it to my computer, it said i could not sync my iPod with my itunes b/c i was running itunes version 7.3 and i needed version 7.4 or later. When i went to download version 7.7 or whatever the latest version

  • No mail date  and now no mail

    About a week ago the date disappeared on my incoming mail . Today i stopped getting mail. I downloaded 10.4.11 tiger software update and installed it but that didn't help. i can't find mail as an app to reinstall if that is the problem. Can anybody h

  • Logic Pro X crash while opening project

    Hello all, Using Logic since 9 came out. Saw that X was released so I figured I'd do it right...new SSD OS X drive, clean install of Mountain Lion 10.8, maxed out my 12 core Mac Pro with 64 GB ram, downloaded the new Logic Pro X, re-installed my Nati

  • Help needed on linking drop down boxes

    Hello there, I am using adobe life cycle designer 8 to make forms. These forms are usesd to collect information on persons working in the healthcare industry. I want to use drop down lists that are "connected". Depending on the choice made in the fir