All SSL sites return "has set up its website evil. To protect your data against theft, Firefox has not connected to this Web site. »

I can't change A / V settings because of group policy. This ONLY happens on FF, chrome, not MSIE. Is it possible to work around this problem by changing the settings of FF ONLY?

Local support solved the problem. There is a SSL change inside the firewall, and because the FF is not using the same cert DB than IE and Chrome, it did not have the new certificate that was required. Support it has imported for me and problem is solved. Thanks for your replies

Tags: Firefox

Similar Questions

  • Firefox does not connect to any Web site, but other browsers will.

    When I get something in the URL- google.com, localhost, http://127.0.0.1/ one bar the IP address, there is a fraction of a second flash, then the bar becomes empty and nothing has changed. It seems that Firefox is not even try to connect to the internet.

    Yesterday, everything was fine when I was running FF on Windows 7. After the upgrade to Windows Pro 8, Firefox has failed. I've updated for Windows 8.1, hoping for the best, but it's the same problem.

    I've walked by the firewall program, several times (the only race is the built-in Windows Firewall). Finally, I uninstalled Firefox, including all my settings, custom and reinstalled from scratch, twice. And even this version pure and clean Firefox does not connect to the internet.

    I am a computer web developer and would be happy to look at the log files or run a tool (Fiddler?) to see what happens at a low level, if I only knew where to look.

    john99, thanks for the links. I went through all (again), one by one. The last link kb.mozillazine.org/Standard_diagnostic showed me what helped. I've renamed "firefox.exe" to "firefox1.exe" and was able to use firefox.

    It made me suspect the firewall or malicious software. I ran a Malwarebytes full scan, zero problems detected. I have pored on the entries of windows firewall, the "Windows Firewall with advanced security" view and also the simple control panel view. The only mention of Firefox is that I continue to add and remove to allow firefox through.

    Here I knew what was going on, but for now, I can at least use firefox. How frustrating!

  • Firefox will not connect to any Web site. Chrome and IE work fine.

    I use Firefox as my main browser for years without any problem. A couple of days without reason apparent, is no longer connected to ANY Web site. The tab displays indefinitely 'connection '.... "with the circle of rotation. I can use IE and Chrome without any problem. I rechecked the Options-> advanced-> connection to the proxy settings and tried all options but nothing helped. I also started using the safe and still nothing. Also tried uninstalling and reinstalling several times. I'm on version 42.0

    Surely, there must be a way to debug this to understand.

    I use another firewall, so I don't know how operation windows.
    I called the big players to help you. Good luck.

    Type of topic: preferences #advanced< enter > in the address bar.

    Under Advanced, select network.
    Search for configure how Firefox connects and then press the settings button.
    If you use a proxy server, make sure that these settings are correct. If there is no
    proxy, first use No. Proxy. If there is a problem, then try Proxy system.

  • I installed the latest version of Firefox and it does not connect to any Web site. I had no problem with the previous version, I used.

    Can not connect to any Web site.

    texhusky Hello, normally these problems are caused by a security/firewall software which does not recognize and therefore blocks the new versions of firefox. If please delete all the rules of the program for firefox to your firewall and let it detect the new version of the browser again.

    Difficulty of problems connecting to websites after Firefox update

  • Firefox does not connect to any site since the new update to download.

    Firefox does not connect to all websites since the installation of the last update. Google Chrome and Internet work.

    Some problems occurs when your Internet security program was set to trust to the
    a previous version of Firefox, but no longer recognizes your updated as version
    level of confidence. Now how do I solve the problem: to allow Firefox to connect to the Internet
    Once again;

    • Make sure your Internet security software is up-to-date (for example, you are using the latest version)
    • Delete Firefox to list your program of trusted or recognized programs, then add it again. For detailed instructions, see

    Configure the firewall so that Firefox can access the Internet. {web link}

  • Error "batteryInfo" has not declared in this scope

    Hi, I have this error in my project, I understand the example of the battery of the sample, but I get the error of generation.

    'MarcossitMobile10::MarcossitMobile10(bb::cascades::Application*)':
    ../src/MarcossitMobile10.cpp:17:42: error: 'batteryInfo' was not declared in this scope
    cc: C:/bbndk/host_10_0_9_404/win32/x86/usr/lib/gcc/arm-unknown-nto-qnx8.0.0eabi/4.6.3/cc1plus caught signal 1
    make[2]: *** [o.le-v7-g/.obj/MarcossitMobile10.o] Error 1
    make[2]: Leaving directory `C:/Users/marcossit/ndk-10.0.9-workspace/MarcossitMobile10/arm'
    make[1]: *** [debug] Error 2
    make[1]: Leaving directory `C:/Users/marcossit/ndk-10.0.9-workspace/MarcossitMobile10/arm'
    make: *** [Device-Debug] Error 2
    
    **** Build Finished ****
    

    I don't understand this part I declare scope

    This is the main.cpp Batterysample

    /* Copyright (c) 2012 Research In Motion Limited.
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
    * You may obtain a copy of the License at
    *
    * http://www.apache.org/licenses/LICENSE-2.0
    *
    * Unless required by applicable law or agreed to in writing, software
    * distributed under the License is distributed on an "AS IS" BASIS,
    * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    * See the License for the specific language governing permissions and
    * limitations under the License.
    */
    
    #include 
    #include 
    #include 
    #include 
    
    #include 
    #include 
    
    using namespace bb::cascades;
    using namespace bb::device;
    
    /**
     * This sample application shows some basic
     * usage of the BatteryInfo API, such as charging level and charging state.
     */
    Q_DECL_EXPORT int main(int argc, char **argv)
    {
        qmlRegisterUncreatableType("bb.device", 1, 0, "BatteryChargingState", "");
    
        Application app(argc, argv);
    
        QTranslator translator;
        const QString locale_string = QLocale().name();
        const QString filename = QString("batterysample_%1").arg(locale_string);
        if (translator.load(filename, "app/native/qm")) {
            app.installTranslator(&translator);
        }
    
    //! [0]
        // Create the battery info object
        BatteryInfo batteryInfo;
    
        // Load the UI description from main.qml
        QmlDocument *qml = QmlDocument::create("asset:///main.qml");
    
        // Make the BatteryInfo object available to the UI as context property
        qml->setContextProperty("_battery", &batteryInfo);
    //! [0]
    
        // Create the application scene
        AbstractPane *appPage = qml->createRootObject();
        Application::instance()->setScene(appPage);
    
        return Application::exec();
    }
    

    It's my main.cpp

    /*
    * Copyright (c) 2012 Jason I. Carter
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
    * You may obtain a copy of the License at
    *
    * http://www.apache.org/licenses/LICENSE-2.0
    *
    * Unless required by applicable law or agreed to in writing, software
    * distributed under the License is distributed on an "AS IS" BASIS,
    * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    * See the License for the specific language governing permissions and
    * limitations under the License.
    */
    #include "Flashlight.hpp"
    #include 
    #include 
    #include 
    #include 
    
    #include 
    #include 
    #include 
    #include "MobileMarcossit.hpp"
    #include "RegistrationHandler.hpp"
    #include "InviteToDownload.hpp"
    #include 
    
    using namespace bb::cascades;
    using namespace bb::cascades::advertisement;
    
    Q_DECL_EXPORT int main(int argc, char **argv)
    {
        // this is where the server is started etc
        Application app(argc, argv);
    
        // localization support
        QTranslator translator;
        QString locale_string = QLocale().name();
        QString filename = QString( "MobileMarcossit_%1" ).arg( locale_string );
        if (translator.load(filename, "app/native/qm")) {
            app.installTranslator( &translator );
        }
        BatteryInfo batteryInfo;
        const char *uri = "bb.cascades.advertisement";
           qmlRegisterType(uri, 1, 0, "Banner");
           qmlRegisterUncreatableType("bb.device", 1, 0, "BatteryChargingState", "");
           qmlRegisterType("Flashlight", 1, 0, "Flashlight");
    
        // Every application is required to have its own unique UUID. You should
        // keep using the same UUID when you release a new version of your application.
        //TODO:  YOU MUST CHANGE THIS UUID!
        // You can generate one here: http://www.guidgenerator.com/
        const QUuid uuid(QLatin1String("c4e27f7c-f9d2-40dc-8630-1d037a0a1309"));
    
        //Setup BBM registration handler
        RegistrationHandler *registrationHandler = new RegistrationHandler(uuid, &app);
    
        //AppName.cpp file which contains your main.qml file
        MobileMarcossit *mobileMarcossit = new MobileMarcossit(registrationHandler->context(), &app);
    
        // Whenever the registration has finished successfully, we continue to the main UI
        // Added finishRegistration() to registrationFinished()
        // This is to emit signal and by pass use of continue button as shown in sample
        QObject::connect(registrationHandler, SIGNAL(registered()), mobileMarcossit, SLOT(show()));
    
        // we complete the transaction started in the app constructor and start the client event loop here
        return Application::exec();
        // when loop is exited the Application deletes the scene which deletes all its children (per qt rules for children)
    }
    

    It's my MarcossitMobile10.cpp

    // Default empty project template
    #include "MarcossitMobile10.hpp"
    
    #include 
    #include 
    #include 
    #include 
    using namespace bb::cascades;
    
    MarcossitMobile10::MarcossitMobile10(bb::cascades::Application *app)
    : QObject(app)
    {
    
             // create scene document from main.qml asset
        // set parent to created document to ensure it exists for the whole application lifetime
        QmlDocument *qml = QmlDocument::create("asset:///main.qml").parent(this);
        qml->setContextProperty("_battery", &batteryInfo);
        // create root object for the UI
        AbstractPane *root = qml->createRootObject();
    
        // set created root object as a scene
        app->setScene(root);
    }
    

    and get the error in this line that I declare.

     qml->setContextProperty("_battery", &batteryInfo);
    

    Help...

    Organizing in this way PPH, but already now, run nothing comes in my dev alpha application

    MarcossitMobile10.hpp

    // Default empty project template
    #ifndef MarcossitMobile10_HPP_
    #define MarcossitMobile10_HPP_
    
    #include 
    
    #include 
    namespace bb { namespace cascades { class Application; }}
    
    /*!
     * @brief Application pane object
     *
     *Use this object to create and init app UI, to create context objects, to register the new meta types etc.
     */
    class MarcossitMobile10 : public QObject
    {
        Q_OBJECT
    public:
        bb::device::BatteryInfo* batteryInfo;
        MarcossitMobile10(bb::cascades::Application *app);
        virtual ~MarcossitMobile10() {}
    };
    
    #endif /* MarcossitMobile10_HPP_ */
    

    the qml constructor is bateria.qml

    /* Copyright (c) 2012 Research In Motion Limited.
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
    * You may obtain a copy of the License at
    *
    * http://www.apache.org/licenses/LICENSE-2.0
    *
    * Unless required by applicable law or agreed to in writing, software
    * distributed under the License is distributed on an "AS IS" BASIS,
    * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    * See the License for the specific language governing permissions and
    * limitations under the License.
    */
    
    import bb.cascades 1.0
    import bb.device 1.0
    
    // Page laying out the visual components
    Page {
        Container {
            layout: DockLayout {}
    
            ImageView {
                horizontalAlignment: HorizontalAlignment.Fill
                verticalAlignment: VerticalAlignment.Fill
    
                imageSource: "asset:///images/bateria/background.png"
            }
    
            Battery {
                horizontalAlignment: HorizontalAlignment.Center
                verticalAlignment: VerticalAlignment.Center
            }
    
            Container {
                horizontalAlignment: HorizontalAlignment.Center
                verticalAlignment: VerticalAlignment.Bottom
    
                bottomPadding: 50
    
                //! [0]
                Label {
                    id: stateLabel
    
                    horizontalAlignment: HorizontalAlignment.Center
    
                    text: {
                        switch (_battery.chargingState) {
                            case BatteryChargingState.Unknown:
                                return qsTr ("Unknown");
                                break;
                            case BatteryChargingState.NotCharging:
                                return qsTr ("Not Charging");
                                break;
                            case BatteryChargingState.Charging:
                                return qsTr ("Charging");
                                break;
                            case BatteryChargingState.Discharging:
                                return qsTr ("Discharging");
                                break;
                            case BatteryChargingState.Full:
                                return qsTr ("Full");
                                break;
                        }
                    }
                    textStyle {
                        color: Color.White
                        fontSize: FontSize.XLarge
                    }
                }
                //! [0]
    
                Label {
                    id: descriptionLabel
    
                    horizontalAlignment: HorizontalAlignment.Center
                    bottomMargin: 100
    
                    text: {
                        switch (_battery.chargingState) {
                            case BatteryChargingState.Unknown:
                                return qsTr ("Something is up with the battery");
                                break;
                            case BatteryChargingState.NotCharging:
                                return qsTr ("Plugged in, just no charge");
                                break;
                            case BatteryChargingState.Charging:
                                return qsTr ("Plugged in");
                                break;
                            case BatteryChargingState.Discharging:
                                return qsTr ("Unplugged and discharging");
                                break;
                            case BatteryChargingState.Full:
                                return qsTr ("Plugged in, full");
                                break;
                        }
                    }
                    textStyle {
                        color: Color.Gray
                        fontSize: FontSize.Large
                    }
                }
            }
        }
    }
    

    and the qml plugin is Battery.qml

    /* Copyright (c) 2012 Research In Motion Limited.
    *
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
    * You may obtain a copy of the License at
    *
    * http://www.apache.org/licenses/LICENSE-2.0
    *
    * Unless required by applicable law or agreed to in writing, software
    * distributed under the License is distributed on an "AS IS" BASIS,
    * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    * See the License for the specific language governing permissions and
    * limitations under the License.
    */
    
    import bb.cascades 1.0
    import bb.device 1.0
    
    Container {
        preferredWidth: 498
        preferredHeight: 318
    
        layout: DockLayout {}
    
        //! [0]
        ImageView {
            id: batteryOutline
    
            horizontalAlignment: HorizontalAlignment.Center
            verticalAlignment: VerticalAlignment.Center
    
            imageSource: _battery.chargingState == BatteryChargingState.Unknown ? "asset:///images/bateria/battery_plugged_error.png" :
                         _battery.chargingState == BatteryChargingState.NotCharging ? "asset:///images/bateria/battery_plugged_bad.png" :
                         _battery.chargingState == BatteryChargingState.Charging ? "asset:///images/bateria/battery_plugged.png" :
                         _battery.chargingState == BatteryChargingState.Discharging ? "asset:///images/bateria/battery.png" :
                         _battery.chargingState == BatteryChargingState.Full ? "asset:///images/bateria/battery_plugged.png" : ""
        }
        //! [0]
    
        //! [1]
        ImageView {
            id: loadingLevel
    
            horizontalAlignment: HorizontalAlignment.Left
            verticalAlignment: VerticalAlignment.Center
    
            translationX: 75
            preferredWidth: _battery.level * 350.0 / 100.0
    
            imageSource: _battery.level <= 10 ? "asset:///images/bateria/fill_red.png" :
                         _battery.level <= 20 ? "asset:///images/bateria/fill_yellow.png" :
                         _battery.level < 100 ? "asset:///images/bateria/fill_grey.png" : "asset:///images/bateria/fill_green.png"
        }
        //! [1]
    
        ImageView {
            id: stateIndicator
    
            horizontalAlignment: HorizontalAlignment.Center
            verticalAlignment: VerticalAlignment.Center
    
            imageSource: _battery.chargingState == BatteryChargingState.Unknown ? "asset:///images/bateria/exclamation.png" :
                         _battery.chargingState == BatteryChargingState.NotCharging ? "asset:///images/bateria/exlamation.png" :
                         _battery.chargingState == BatteryChargingState.Charging ? "asset:///images/bateria/flash.png" :
                         _battery.chargingState == BatteryChargingState.Discharging ? "" :
                         _battery.chargingState == BatteryChargingState.Full ? "" : ""
        }
    }
    

    It will be something else?

    qml->setContextProperty("_battery", &batteryInfo);
    

    for example

    qml->setContextProperty("_bateria", &batteryInfo);
    
    or
    
    qml->setContextProperty("Battery", &batteryInfo);
    
  • Ie or firefox work on my laptop, all say that the proxy server can not connect. is this a virus?

    My network is fine and the rest of the functions of my laptop works fine, but the internet providers say that the proxy server can not connect. To my knowledge, the proxy servers are used to bypass the blocked Web sites, and I don't use them, although I don't know if this has nothing to do with the problem here.

    In Internet Explorer, click on Tools > Internet Options > connections > LAN settings and uncheck all the boxes. Boulder computer Maven
    Most Microsoft Valuable Professional

  • can not connect to some Web sites with vista, I get invalid email and/or password

    I'm running Vista Ultimate, as is my wife. When I try to connect to some Web sites like the login screen 'to listen online now' at xmradio.com, I get "address incorrect e-mail and/or password" on my computer but it works fine on my wife. I have built and configured two computers in the same way and both are up to date with the latest patches. I also tried several browsers, and they all have exactly the same way, they DO NOT work on my computer but they are working on hers.  Help...

    Hi PeterKnight,

    (a) since when are you facing this problem?

    Well, it seems that the problem is with your \password Email that is not letting you connect to the site Web XMradio. For more information, you can contact XMradio:

    http://www.xmradio.com/help/index.xmc

    Things you want to try:

    O check if your wife can log on XMradio site with its Email and password on your computer.

    O check with XMradio regarding the status of your subscription.

    Thank you, and in what concerns:

    Ajay K

    Microsoft Answers Support Engineer

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • 11 Firefox do not display correctly some Web sites

    Hello. I would like to ask your help to set the browser Firefox 11 for a correct dispay of my site. This is what the site looks like Firefox 11: http://transport-in-comun.ro/firefox/site-Firefox.jpg and that's how it looks in IE8: http://transport-in-comun.ro/firefox/site-IE.jpg .
    About the site: the page is written in FrontPage (I have not much knowledge of web design), and the thumbnail of the photo and the text near it is placed in a tabel wide 796px. For some reason, Firefox 11 "shrinks" the table.
    I had no such problems when I was using Firefox 3.6, although I used it under Windows 7, that had the ClearType on by default. After the upgrade to Firefox 11, I start to have problems in viewing the above website and other sites with a similar structure. I tried to adjust the ClearType settings, but it did not help. With ClearType disabled, the text of the site how it should be, but it's bland.
    Thank you.

    It seems a bit random. When I try to document similarities and difference, there are changes between refreshes. You change the page now?

    Graphic hardware acceleration is not new in Firefox 11, but it's be twisted in each version. You want to try to turn it off?

    You will have to perhaps restart Firefox for it to take effect, so save any work first (e.g. you compose mail, documents online that you are editing, etc.).

    Orange Firefox button or classic menu Tools > Options > advanced

    In the mini ' General' tab, uncheck the box for "use hardware acceleration when available.

  • Firefox does not save previous seession Web sites, even if the box is checked.

    I recently upgraded to Firefox 5.0. I'm having two problems since the upgrade:

    1 Firefox saves more websites that I left 0pen from a previous session even if the box is checked to do. In addition, I am never given the option to 'restore previous session' in the menu background. It is always 'ghost' out and cannot be selected in the menu.

    2. when I open Firefox, I use a shortcut or go to the Web browser in any other way, multiple instances are open automatically. I suspect that the number of instances is the number of tabs that I left open in the previous session, but I'm not sure about this. They all open to a blank page, however and do not open Web sites that have been assigned to each tab in the previous session.

    Thank you for your help.

    You can check if the session restore is activated [1].

    It is possible that there is a problem with the sessionstore.js and sessionstore.bak files in the Firefox profile folder.

    Delete the sessionstore.js file [2] and sessionstore.bak in the Firefox profile folder.

    If you see files sessionstore-# .js with a number in the left part of the name as sessionstore - 1.js then delete those as well.

    Delete sessionstore.js will cause App Tabs and groups of tabs and all tabs open to get lost, so you will need to create them again (take note or bookmarks).

    See:

  • GR 11, 2 has no connection with the web

    I can connect to sqlplus and do everything and also with sql developer.
    But if I try to connect to the web interface to...

    https://MacBookPro:1158 / em

    or sqlplus with the '... @orcl ' option.

    It does not connect.

    At the command prompt, the error is:
    ORA-12154: TNS: COULD NOT RESOLVE THE SPECIFIED IDENTIFIER CONNECT

    In firefox, the error is:
    Firefox can't establish a connection to the server macbookpro:1158.

    This has happened recently, because I connect OK
    Some time ago, sometimes I had to go to the windows services Panel
    and do the activations here to work, but I do not remember
    what I did to make it work yesterday and today it no longer works.

    When I run the listener status, it says...
    Service "orcl" has two instances
    one is 'ready' status, the other in the State "unknown."
    and
    service 'orclXDB' has only one instance "ready".

    I don't know what is the oraclr_connection_data link in the file below, tnsnames
    I don't know how it appeared, or how its configuration.
    I just deleted it and then when I ran the listener
    condition only the orcl instance that is in the 'unknown' State appeared.
    Now I have the files as they appear below (with two connection strings).

    Someone knows something about it?

    I recently installed ORACLE WITH ODAC .NET DEVELOPMENT
    (Oracle Data Access Components) for use with visual studio 2010,
    who installed a new directory of client on my hard drive, but I could
    connect to the web interface after that, but I suspect it may have
    something to do.

    I'm using oracle 11 g 2 = windows 7

    Also, can someone explain to me on the lines... (see "tsnames.ora" below)

    PROTOCOL = IPC
    KEY = EXTPROC1521
    SID = CLRExtProc)
    (PRESENTATION = RO

    I understand these weird lines in my configuration
    so I can have some control over my oracle installation. I don't
    understand the existence of the oraclr_connection_data, I do not know
    If I can remove it.

    Thank you
    Gabriel


    = tsnames.ora =.
    ORACLR_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = CIP)(KEY = EXTPROC1521))
    )
    (CONNECT_DATA =
    (SID = CLRExtProc)
    (PRESENTATION = RO)
    )
    )

    ORCL =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP) (HOST = 127.0.0.1)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = orcl)
    )
    )

    = listener.ora =.

    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    #(SID_NAME = CLRExtProc)
    (SID_NAME = orcl)

    (ORACLE_HOME = C:\app\Oracle\product\11.2.0\dbhome_1)
    #(PROGRAM = extproc)
    #(ENVS = "EXTPROC_DLLS=ONLY:C:\app\Oracle\product\11.2.0\dbhome_1\bin\oraclr11.dll")
    )
    )

    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    #(ADRESSE = (PROTOCOL = TCP) (HOST = 172.16.23.104)(PORT = 1521))
    (ADDRESS = (PROTOCOL = TCP) (HOST = MacBookPro)(PORT = 1521))
    )
    )

    ADR_BASE_LISTENER = C:\app\Oracle

    GabyPR wrote:
    I can connect to sqlplus and do everything and also with sql developer.
    But if I try to connect to the web interface to...

    https://MacBookPro:1158 / em

    or sqlplus with the '... @orcl ' option.

    It does not connect.

    At the command prompt, the error is:
    ORA-12154: TNS: COULD NOT RESOLVE THE SPECIFIED IDENTIFIER CONNECT

    In firefox, the error is:
    Firefox can't establish a connection to the server macbookpro:1158.

    Two errors that are not related. TThe web connection uses http to connect to an agent on port 1158, and this agent is which then connects to the database. The sqlplus connection uses tcp to send a link request to the listener on (probably) port 5121.

    "It does not connect" isn't a useful error message.

    ORA-12154 means that there is no entry for the db requested in your tnsnames.ora file. Please visit http://edstevensdba.wordpress.com/2011/02/26/ora-12154tns-03505/

    This has happened recently, because I connect OK
    Some time ago, sometimes I had to go to the windows services Panel
    and do the activations here to work, but I do not remember


    what I did to make it work yesterday and today it no longer works.

    When I run the listener status, it says...
    Service "orcl" has two instances
    one is 'ready' status, the other in the State "unknown."
    and

    The UNKNOWN simply means that he owns a registration because you told your listener.ora file. The LOAN is due to registering with the listener instance.

    service 'orclXDB' has only one instance "ready".

    I don't know what is the oraclr_connection_data link in the file below, tnsnames
    I don't know how it appeared, or how its configuration.
    I just deleted it and then when I ran the listener
    condition only the orcl instance that is in the 'unknown' State appeared.
    Now I have the files as they appear below (with two connection strings).

    Someone knows something about it?

    I strongly suggest to start here: http://edstevensdba.wordpress.com/2011/02/09/sqlnet_overview/
    >

    I recently installed ORACLE WITH ODAC .NET DEVELOPMENT
    (Oracle Data Access Components) for use with visual studio 2010,
    who installed a new directory of client on my hard drive, but I could
    connect to the web interface after that, but I suspect it may have
    something to do.

    I'm using oracle 11 g 2 = windows 7

    Also, can someone explain to me on the lines... (see "tsnames.ora" below)

    PROTOCOL = IPC
    KEY = EXTPROC1521
    SID = CLRExtProc)
    (PRESENTATION = RO

    I understand these weird lines in my configuration
    so I can have some control over my oracle installation. I don't
    understand the existence of the oraclr_connection_data, I do not know
    If I can remove it.

    Thank you
    Gabriel

    = tsnames.ora =.
    ORACLR_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = CIP)(KEY = EXTPROC1521))
    )
    (CONNECT_DATA =
    (SID = CLRExtProc)
    (PRESENTATION = RO)
    )
    )

    ORCL =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP) (HOST = 127.0.0.1)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = orcl)
    )
    )

    = listener.ora =.

    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    #(SID_NAME = CLRExtProc)
    (SID_NAME = orcl)

    (ORACLE_HOME = C:\app\Oracle\product\11.2.0\dbhome_1)
    #(PROGRAM = extproc)
    #(ENVS = "EXTPROC_DLLS=ONLY:C:\app\Oracle\product\11.2.0\dbhome_1\bin\oraclr11.dll")
    )
    )

    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    #(ADRESSE = (PROTOCOL = TCP) (HOST = 172.16.23.104)(PORT = 1521))
    (ADDRESS = (PROTOCOL = TCP) (HOST = MacBookPro)(PORT = 1521))
    )
    )

    ADR_BASE_LISTENER = C:\app\Oracle

  • Look on OS3 connects to a public wifi network, that has a connection to the Web page.

    in the United Kingdom, we have a public wifi network called "_the cloud", which is free to use, but requires that you register for a free account.

    Once signed, the phone will automatically connect when you are next in the range.

    It seems that since the release of WatchOS3, the Apple Watch will connect now to this public WiFi even with the phone turned off or in flight mode. Suggesting it is connected to a Web page by its self.

    It seems to me that it is only this a public wifi network that does this now, but can't figure out how!

    Great news in any case, I hope that more public wifi networks completely agrees!

    If someone else in the United Kingdom that uses 'cloud _L' public wifi could test this point too, that would be great. I hope that we could get an official comment from Apple?

    https://support.Apple.com/en-GB/HT204562

    Hello

    Thanks for sharing this information.

    Recognition wrote:

    .. I hope that we could get an official comment from Apple?

    It is a community based on the user. If you want to ask Apple about this behavior, contact UK options include:

  • Just updated Firefox updated itself. Does not connect to the web sites when the mouse does not move. This all started after the update installed. PS there are more slow too

    nones

    Yes it's true. You just need to download the .exe file top of page (Firefox Setup 25.0.1.exe).

    Save it to your computer, double click and you should get a wizard to guide you through the installation.

  • Firefox does not work on some Web sites

    I continually run into sites that don't work well with Firefox. I tend to think, because of FF high-speed evolution that he brings to the itself, but nevertheless, it's boring. The sites all say 'use Chrome' as a solution, and most of the time, it works. The thing is, I don't like Chrome. I have FF set in place as I want. It's my browser of choice, despite the fact that he lost for each day of Chrome users. I don't think I'll ever pass, but I really need to work on a regular basis. I'll have to use the portable version now because the desktop version works for me more. After the last update, Flash sites don't load not half the time. They also work in Chrome.

    This time, it's redgage.com. Most of the functionality works only if I use the right click and open in a new tab. I tried safe mode.

    What is the solution to this? I don't have time to make adjustments to the program and get in here to get the answers and everyone says that they have no problems. SERIOUSLY? This is not what say all my friends who have switched to Chrome. I feel I'm losing my right arm.

    Yes, all the links on RedGage are broken. To open in the same tab, you must drag and drop it on the address bar.

    But I think it's their fault. In the browser Console:

    13:46:52.262 ReferenceError: event is not defined MainViewModel.js

    Looks like a rookie mistake in this script:

     self.trigger = function (modelView, evt) {
       var target;
       util.hidePopup();
    
       if (event.ctrlKey || event.metaKey || event.which == 2) {
         return true;
       }
    
       if (evt.preventDefault) {
         evt.preventDefault();
         target = $(evt.target);
       } else
         target = $(evt);
    
       var url = target && $(target).closest('a').attr('href') || $('.filter li.active a').attr('href');
       if (url)
         self.do_load_url(url);
       return false;
     };
    

    In the bold line, 'event' is a typo and should be "TTE". Maybe if tell you them on this subject they will fix it. Although other browsers work this way.

  • Firefox does not print in complete web pages. It prints at best half left of the page. This has happened only recently. It is not my printer I get full page, printing from Internet explore and other applications. Help!

    Firefox has started printibg only the left side of a web page. I've tried the settings without success, in fact he did even smaller print area. I have set all parameters in the print menu, but can not solve this problem. How can I return to printing of entire web pages?

    Try of the reset described here:

    http://KB.mozillazine.org/Problems_printing_web_pages#Reset_printer

Maybe you are looking for