When I go to firefox start page, why does it not show https- in the menu bar? Instead it shows http without https

Doesn't https when it is displayed in the menu bar, when there is an s at the end, mean it is a secure website?

Just upgraded to v4. It did NOT fix the problem.

Similar Messages

  • After the free download of Firefox 4.0 why does it not show or tell me how, when, or where it will be installed?

    OK then. I click on the "Free Upgrade to Firefox 4.0" to get
    the download started. The Windows XP download dialog box opens and the upgrade downloads. Then the "Save file" dialog box opens. That states....."You have chosen to open or run this file. exe. ect. blah blah blah".
    I click on "Save File". The dialog box disappears.
    Then nothing about how to install, when it will install itself, or anything about installation.
    I have my downloads set up to appear on my desktop (as an icon) when they are complete. Nothing appeared and nothing happened. What's the deal?
    Thank you very much....................i40.

    If you don't usually get a choice of where to save a downloaded file, you can change that using:
    Edit > Preferences > General > "Always ask me where to save files"
    Then you may want to go directly to the source:
    http://www.mozilla.com/firefox/
    You should get the options to Save File or Cancel (not Open). Hopefully after saving you will be able to find the downloaded file in the location you specified.
    One other note, before upgrading, you may want to back up your Firefox settings just in case. [https://support.mozilla.com/en-US/kb/Backing+up+your+information Backing up your information].

  • HT1277 when i delete emails from apple mail why does it not delete them from the account??

    Why doesn't it delete them from both??

    Keeping mail in sync is a function of what type of mail account you have. Sounds like you have an IMAP or Exchange account, & that's the way things are designed to work. Why don't you just create another folder on the server & move these emails to that folder. That way, they'll be out of your inbox, but still available on your laptop.

  • Put movies in itunes on one computer why does it not show up when i access itunes from other computers or ipad2?

    put movies in itunes on one computer why does it not show up when i access itunes from other computers or ipad2?

    i just purchased a file that had videos in it. i put them in the itunes library on my pc where i first downloaded them. i was able to transfer them to my other pc, a laptop, through my home network. i am now trying to get them on my mac pro desktop and my ipad2. my mac pro can see the other computers on my home network but i cannot get it to connect to them. i know the operating systems are different but was hoping i could transfer pictures and files from pc to mac this way. haven't been able to get it to work yet. the videos i am trying to get my mac to see came in a folder with both mac and pc versions. i thought if i got the videos i purchased into itunes that i would then be able to get them to my mac pro and my ipad2. i am new to mac/apple and have always been pc-centric so trying to marry it all has been difficult. i speak pc pretty well but am just learning apple. am i trying to do things that are not possible? i sure could use a knowledgable friendly soul to walk me through my issues of having pc and mac on the same network. i have been able to get all computers and ipad to print on my network. thanks.

  • Why is there a sync icon on the menu bar how can i get it off?

    Why is there a sync icon on the menu bar how can i get it off?

    That is from thw Address book. you have set up sync with Google or Yahoo. Open the Address book and then Preferences you find where to turn it off or hide the icon.

  • Why does is not show the radio buttons

    I want to display the buttons in a row then radio button in a row under the button and then log scroll pane under the radio buttons. This is my code:
            //Add the buttons and the log to this panel.
            add(buttonPanel, BorderLayout.PAGE_START);
            add(radioPanel, BorderLayout.CENTER);
            add(logScrollPane, BorderLayout.CENTER);When i run it it display the buttons and the logsrollpane. Why does it not display the radio buttons?

    Thanks guys.
    This is my problem. We have a big system that produce lots of log files and the software testers have to manually have to go through the logs file and look for a certain XML tags in the log file.
    What I want to do is help the software testers my developing a small tool that will allow them to open a log file and then click on a radio button corresponding to a xml tags that they are looking for and automatically highlight the tags in the file in yellow color .
    I am not sure how feasible this is and I am stuck.
    This is what I have done so far.
    Can you please guys help me go forward.
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.filechooser.*;
    public class FileChooserDemo extends JPanel
                                 implements ActionListener {
        static private final String newline = "\n";
        JButton openButton;
        JButton clearButton;
        JTextArea log;
        JFileChooser fc;
        // Radio Buttons
        static String em01 = "EM01";
        static String em07 = "EM07";
        /*static String dogString = "Dog";
        static String rabbitString = "Rabbit";
        static String pigString = "Pig";*/
        public FileChooserDemo() {
            super(new BorderLayout());
            //Create the radio buttons.
            JRadioButton em01Button = new JRadioButton(em01);
            em01Button.setMnemonic(KeyEvent.VK_B);
            em01Button.setActionCommand(em01);
            em01Button.setSelected(true);
            JRadioButton em07Button = new JRadioButton(em07);
            em07Button.setMnemonic(KeyEvent.VK_C);
            em07Button.setActionCommand(em07);
            //Group the radio buttons.
            ButtonGroup group = new ButtonGroup();
            group.add(em01Button);
            group.add(em07Button);
            //Register a listener for the radio buttons.
            em01Button.addActionListener(this);
            em07Button.addActionListener(this);
            //Put the radio buttons in a column in a panel.
            JPanel radioPanel = new JPanel(new GridLayout(0, 1));
            radioPanel.add(em01Button);
            radioPanel.add(em07Button);       
            //Create the log first, because the action listeners
            //need to refer to it.
            log = new JTextArea(40,60);
            log.setMargin(new Insets(5,5,5,5));
            log.setEditable(false);
            JScrollPane logScrollPane = new JScrollPane(log);
            //Create a file chooser
            fc = new JFileChooser();
            //Uncomment one of the following lines to try a different
            //file selection mode.  The first allows just directories
            //to be selected (and, at least in the Java look and feel,
            //shown).  The second allows both files and directories
            //to be selected.  If you leave these lines commented out,
            //then the default mode (FILES_ONLY) will be used.
            //fc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
            //fc.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
            //Create the open button.  We use the image from the JLF
            //Graphics Repository (but we extracted it from the jar).
            openButton = new JButton("Open File");
            openButton.addActionListener(this);
            //Create the save button.  We use the image from the JLF
            //Graphics Repository (but we extracted it from the jar).
            clearButton = new JButton("Clear Text Area");
            clearButton.addActionListener(this);
            //For layout purposes, put the buttons in a separate panel
            JPanel buttonPanel = new JPanel(); //use FlowLayout
            buttonPanel.add(openButton);
            buttonPanel.add(clearButton);
            //Add the buttons and the log to this panel.
            add(buttonPanel, BorderLayout.PAGE_START);
            add(radioPanel, BorderLayout.LINE_START);
            add(logScrollPane, BorderLayout.CENTER);
        public void actionPerformed(ActionEvent e) {
            //Handle open button action.
            if (e.getSource() == openButton) {
                int returnVal = fc.showOpenDialog(FileChooserDemo.this);
                if (returnVal == JFileChooser.APPROVE_OPTION) {
                     log.setText("");
                    File file = fc.getSelectedFile();
                    try{
                         BufferedReader in = new BufferedReader(new FileReader(file));
                             String data;
                             while ((data = in.readLine()) != null) {
                                  log.append(data + newline);
                    }catch(IOException ioe){
                log.setCaretPosition(log.getDocument().getLength());
            //Handle save button action.
            }else if (e.getSource() == clearButton) {
                  log.setText("");
         * Create the GUI and show it.  For thread safety,
         * this method should be invoked from the
         * event-dispatching thread.
        private static void createAndShowGUI() {
            //Create and set up the window.
            JFrame frame = new JFrame("PROGRESS Message Viewer");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Create and set up the content pane.
            JComponent newContentPane = new FileChooserDemo();
            newContentPane.setOpaque(true); //content panes must be opaque
            frame.setContentPane(newContentPane);
            //Display the window.
            frame.pack();
            frame.setVisible(true);
        public static void main(String[] args) {
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
    }

  • When i'm search firefox crashes also why does my internet explore opens in new window

    while i'm working online with firefox why does my internet explore open up in a new window?

    while i'm working online with firefox why does my internet explore open up in a new window?

  • The firefox icon shows on my desk top and in my task bar, but why does it NOT show in my list of Program files?

    My Firefox icons are showing and usable from the desktop and from the task bar; however, the Mozilla Firefox does not show in my list of program files. Why doesn't it show?

    Hello,
    Certain Firefox problems can be solved by performing a ''Clean reinstall''. This means you remove Firefox program files and then reinstall Firefox. Please follow these steps:
    '''Note:''' You might want to print these steps or view them in another browser.
    #Download the latest Desktop version of Firefox from http://www.mozilla.org and save the setup file to your computer.
    #After the download finishes, close all Firefox windows (click Exit from the Firefox or File menu).
    #Delete the Firefox installation folder, which is located in one of these locations, by default:
    #*'''Windows:'''
    #**C:\Program Files\Mozilla Firefox
    #**C:\Program Files (x86)\Mozilla Firefox
    #*'''Mac:''' Delete Firefox from the Applications folder.
    #*'''Linux:''' If you installed Firefox with the distro-based package manager, you should use the same way to uninstall it - see [[Installing Firefox on Linux]]. If you downloaded and installed the binary package from the [http://www.mozilla.org/firefox#desktop Firefox download page], simply remove the folder ''firefox'' in your home directory.
    #Now, go ahead and reinstall Firefox:
    ##Double-click the downloaded installation file and go through the steps of the installation wizard.
    ##Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    More information about reinstalling Firefox can be found [https://support.mozilla.org/en-US/kb/troubleshoot-and-diagnose-firefox-problems?esab=a&s=troubleshooting&r=3&as=s#w_5-reinstall-firefox here].
    <b>WARNING:</b> Do not run Firefox's uninstaller or use a third party remover as part of this process, because that could permanently delete your Firefox data, including but not limited to, extensions, cache, cookies, bookmarks, personal settings and saved passwords. <u>These cannot be recovered unless they have been backed up to an external device!</u>
    Please report back to see if this helped you!
    Thank you.

  • Why does the 'Downloads' gives me a full page which I can not just minimize to the task bar.

    I'm running Firefox 34.05 as opposed to what the data will say (34.0)
    Lately, when I press the 'Downloads' in Tools, I get a full page as if it is a new tab. I use to have a small block that I could minimize to the task bar. Is there something I can do to restore it to it former glorious self?
    As a secondary question which seemed to happen at the same time comes this question. now when I download a clip it does not appear in the Download (now) page. It still downloads but I can not view it download, stop the download or even go to where it was downloaded. Any help would be appreciated.

    Normally Tools > Downloads or Ctrl+j launches the Library dialog and displays the Downloads section (the Library dialog also shows History and Bookmarks). Regarding the size of the window, it could be that you used the dialog to view history or bookmarks and enlarged it. Firefox doesn't remember the size separately for the 3 different lists.
    On the second point, since you have a few different downloaders, I'm not sure which one is malfunctioning, or maybe there's a conflict between them. You might check their pages on the Add-ons site to see if reviews or support information reports the same issue and mentions any workarounds.
    * https://addons.mozilla.org/firefox/addon/video-downloadhelper/
    * https://addons.mozilla.org/firefox/addon/download-flash-and-video/
    * https://addons.mozilla.org/firefox/addon/video-downloader-profession/

  • Why does it not show all the pictures when i open myspace

    Hello,
    I have apple mac pro desktop. When i open some profile on www.myspace.com, does my computer not show all pictures on that profile site. Can some one tell me if i need to download some software or plugin to see all pictures on the pages. I use safari beta.

    deniz aya wrote:
    Hello,
    I have apple mac pro desktop. When i open some profile on www.myspace.com, does my computer not show all pictures on that profile site. Can some one tell me if i need to download some software or plugin to see all pictures on the pages. I use safari beta.
    Hello deniz aya,
    Welcome to Apple discussions..
    No, you do not need additional software to view the pic, myspace is just not very mac friendly, as they say ( long time coming) they are working on it.
    Myspace pages can be a nightmare, a couple of my friends pages for instance
    have been known to crash my Safari beta & when on version S 2.
    Try using Firefox as well, the "other" browser they recommend other then Safari
    for Mac users, albeit they do not say which version of Safari to use.
    Check pages including the one you have an issue viewing the pics on with the http://validator.w3.org/ to get an idea of how poorly coded they are.
    Eme '~[ ) 
    I just checked my page which has not half the items that other pages use & it Failed validation, 91 Errors, one of my friends pages failed with 490 odd........
    Of course I presume you have flash, as mentioned by QuickTimeKirk.
    To check, in Safari under the Help menu, click on -> Installed plug-ins.
    and check for Flash player.
    Under Safari menu, Safari's preferences, Security tab- Web Content: you have Enable Plug-ins checked correct?
    Message was edited by: Eme

  • New Mac user. On a website the "Browse" button/link to upload pics and files is not showing, but shows up when I check from another computer. Why is it not showing on my MacBook Pro?

    I just got my new MacBook Pro over the weekend, and was sooo excited. I wanted it to take back and forh to work with me. However on a website I use for work, I need to be able to upload files and pictures. but the area where the link/button "Browse" is normally at to add the pics or files, it is not showing up on my Mac. I thought maybe the site was messed up, but when I helped another coworker, I noticed on her screen (an HP computer) the link/button to browse files and upload is there. I came back to my MacBook Pro thinking maybe the website was working correctly again, but its still not showing up on mine. So I'm thinking its Mac related. MAybe theres a certain function I need to turn on for this?
    I tried to unblock pop ups, even though its not a pop up screen, but this didn't do anything. HELP!!!!!

    If the modem is also a router, either use the modem in bridge and run pppoe client on the TC.. that is assuming ADSL or similar eg vdsl. If it is cable service.. and the modem is a router, then bridge the TC.. go to internet page and select connect by ethernet and below that set connection sharing to bridge.
    Please tell us more about the modem if the above gives you issues.

  • Why does Photoshop not show PSD file image tile in 'Open File' when Facebook can?

    When selecting a PSD file in Photoshop the image tile just says "PSD" so visually you cannot select it knowing which version it is.  Why can't Photoshop show the image tile like Facebook can instead of having to use Bridge?  Bridge is a huge memory hog and to have to jump back and forth is a pain.  If I choose a file to upload to Facebook, I can see the standard file icons and also the PSD versions.
    Any ideas or should this be a request in the next update?

    That's happened a more than a couple of times where I spend 20 minutes carefully preparing a post and then find out some else got it.
    Anyway, psd icons in the Explorer is a sure sign of the Windows OS. They could work with Adobe to render thumbnails, but seems something I'm not privy to in their internal policies prevents that.
    Chris Cox did offer some insights. The OS vendors expect their rules to be followed, so if the OS does not respond properly, it's not Adobe's job to work around that. I do wonder how third party codec vendors do it. I'll have to ask.
    Btw, John Ellis has a quicklook plugin for the Mac that renders PSB thumbnails should you be interested.
    PSB Quick Look Plugin
    Gene

  • Exchange 2013 Delivery Reports - Why does it not show forwarded mail?

    We just migrated from 2010 to 2013 and all seems to be working well... We started using EOP at the same time with only a few hiccups.  Our Get-MessageTrackingLog command shows all of our email that was delivered or failed, etc... but when I try to run
    "Mail Flow -> Delivery reports", it forces me to select a mailbox and I leave the other fields empty - and it only shows emails that come directly to me.  The problem is, I have half a dozen email accounts that are set to forward their email
    to my exchange account.  None of those emails show up with the delivery reports method - but they DO show up via the powershell get-messagetrackinglog command...
    With EOP I can see all the emails if I use "Mail Flow -> Message Trace"... why does it work with EOP, but on our local box - it's nerfed to just emails who specify my direct exchange address?

    Hi,
    I have tested to use Delivery Reports to search my manually forward messages in my Exchange 2013 CU1 environment. And the forward messages can be searched and listed in the Search results.
    Please make sure the users who forwarded emails to you are in your organization and they are sending
     messages by using the Microsoft Outlook or Outlook Web App email clients. Because Delivery Reports doesn’t track messages send from POP or IMAP email clients. For more information about Delivery Reports, please refer to:
    http://technet.microsoft.com/en-us/library/jj150554(v=exchg.150).aspx
    Additionally, I also tested auto-forward scenario:
    User1 is configured to auto-forward messages to User2 in Exchange side(for details, please click
    here), when User3 sends a message to User1, the message is forwarded to User2 automatically. If so, when we use Delivery Report to search this forward message for User2, we
    need to use Search for messages received from User3 instead of User1 to get this forwarded message.
    Thanks,
    Winnie Liang
    TechNet Community Support

  • Why does a ? get put in the title bar?

    When this page loads, a question mark (?) appears on the title page. Anyone know why?
    http://web.me.com/tjkk1/JR/Blog/Blog.html
    Thank you!

    Ratty Mouse wrote:
    Is that possible that she deleted a text box?
    No, I don't think so. This text box seems impossible to delete on blog main page.
    Don't forget to show layout for your search (iWeb > Menu > View > Show Layout).
    the tooltips displays after a few seconds if you let the cursor over this text box

  • I own iLife '11, why does it not show as installed?

    I have iLife '11 loaded on my computer as well as iWork '09.  Why don't they show up as installed from the app store?

    Because they were purchased as a the suite of software, not as individual components that are availablw from the App Store.
    The updates for your iLife and iWork software are available from your Apple menu / Software Update.
    If you had purchased the components, the updates would be available from the App Store.

Maybe you are looking for