Browser button issues

I have an Icebook circa 2001-02 with OS X 10.3.5. On some web sites nothing happens when I press certain buttons. For example, on Hotmail I can login, switch folders and view messages, but when I try to send a message the browser churns for a while and then gives the 'could not connect' message. I can't delete messages on hotmail either. Similar things happen on this and other web sites whether I use Safari, Explorer or Firefox.
I can't find anything about this anywhere. Can anyone help?

Since this happens across all browsers, it's probably not a problem with Safari.
Try booting into Safe Mode. This will take awhile longer than a normal startup because it does a file check and repair of the hard disk.
If this works you will see your normal desktop. Once completely started up, try to restart normally, and go to Applications/Utilities/Disk Utility and repair permissions on the hard drive.
See if a little hard drive maintenance helps things out.

Similar Messages

  • Premiere 10 - Browse button issue

    When you attempt to identify the location to save your new project by using the browse button, you get an error message and the program automatically closes.  Suggestions?

    Can you provide us with a lot more information. This article will tell you what is very important: http://forums.adobe.com/thread/459220?tstart=0
    Also, please give us the complete text of the error message, and the location where you are attempting to Save the Project.
    Good luck,
    Hunt

  • I tried to use the Browse button on the left pane to go to a server which has my local copy so that I can FTP to ISP, but I get a window saying there is a permissions issue. How do I resolve?

    I tried to use the Browse button on the left pane to go to a server which has my local copy so that I can FTP to ISP, but I get a window saying there is a permissions issue. How do I resolve?

    If it has a cloud icon it means its no longer on your device.  Tapping on the cloud will effectively reinstall the App from scratch to your device. 
    There is no way to remove it from the cloud because its not yours to remove from there. Its the general App repository, you are just given access to it to download content you've already purchased.

  • PT 8.51 installation issue - Insert New Media (Disk2) from browse button

    Hi,
    I'm trying to install PT 8.51 on win, I extract disk1, disk2 & disk3 on PS_INSTALL directory.
    The install from disk1 is well-done, to get extract from disk2 i use the browse button, the PT installer didn't get it.
    Message "Please insert the New media ....."
    Any help would be welcome
    Edited by: user2922066 on 18 févr. 2011 08:41

    What is the exact folder path you're extracting things to? I know that the setup.bat file in the disk1 directory doesn't like spaces in the path to the directory. If you extract the disk 1, disk 2 and disk 3 in for example C:\PSINSTALL\disk1 (and disk 2 etc.) you should be able to run the setup.bat. When you run the setup.bat you don't have to select the next disk, the installation will pick it up automatically.
    If you still want to select it manually I think you have to select the parent folder instead of the disk 2 or 3. If you select the disk 2 or 3 folder the installation will not pick it up for some strange reason.

  • Does 6.0.2 have a problem with upload/browse buttons on sites or the save as/open file/export bookmark option or is it just me?

    The box to select a file from/to the HD doesn't open. I can't save pages, images, Export/Import the Bookmarks via HTML, open file (CTRL+O), upload images via a browse button on sites, etc. Since I don't have a printer Print print (CTRL+P) defaults to xps which requires a save as dialog.
    Only in Firefox.
    Version 6.0.2
    Windows XP SP3
    Last confirmed save as via Firefox was August 22nd.

    Well I don't know, I do see in your system details it says..
    WebGL Renderer
    Blocked for your graphics driver version. Try updating your graphics driver to version 6.14.10.5218 or newer.
    GPU Accelerated Windows
    0/3. Blocked for your graphics driver version. Try updating your graphics driver to version 6.14.10.5218 or newer.
    Maybe you driver is causing issues??? I confess I am at a loss.
    http://www.intel.com/support/chipsets/sb/CS-026488.htm

  • Browse button not working in Windows Phone while tyring to upload an image to Pictures library in Sharepoint 2013 online site .

    Hi,
    I am trying to upload an image to SharePoint 2013 online site's Pictures Library from the Windows phone. When I click on  Browse button, nothing happens. Although the same browse button in working in the chrome and allowing to select an image from the
    phone library.
    Please let me know if this is the known issue or any work around is available to overcome this.
    Regards,
    Saurabh M

    Hi,
    Although the mobile version of Internet Explorer is supported by SharePoint 2013, however, for Office 365 SharePoint Online 2013 which keeps updating all the times, there may
    be some compatibility issues during the process.
    As this issue is more relate to SharePoint Online, it would be more appropriate to open a thread in Office 365 forum, you will get more help and confirmed answers from there:
    http://community.office365.com/en-us/forums/default.aspx
    Thanks for your understanding.    
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • How to create a browse button in applet

    Hi All,
    Need another help...
    I want create a Browse Button in java applet frame such that if I click on that button, I can pick a file from any folder of my machine.
    Is there any way to do so? If yes, can you give me a small code as example.
    Regards,
    Uji

    Hey Ujjal,
    I know it's late and I don't know if you're still having this issue but maybe this can be helpful to the next person who has it. As was already said, I think you should probably consider doing this project as an application rather than an applet to avoid file access permission problems. That said, here's how I would do it (since no one has answered your question directly):
    First this class should extend JFrame or some other window class
    Next create a file object (it's static so it can be accessed by anonymous classes later):
    private static File myFile = null;Then, inside the appropriate method (probably something like init() or main()), make the button and give it some functionality with an anonymous MouseListener:
    JButton myBrowseButton = new JButton("Browse");
    myBrowseButton.addMouseListener(new MouseAdapter(){
        // an anonymous MouseAdapter
        public void mouseClicked(MouseEvent e){
            ...now in here you'll want the code to make a JFileChooser in a dialog window
            // create a dialog window
            final JDialog myChooserDialog = new JDialog();
            myChooserDialog.setTitle("Browse");
            // an anonymous JFileChooser
            JFileChooser myFileChooser = new JFileChooser(PATH){
                // an anonymous instantiator to set the text of the select button
                { setApproveButtonText("Select"); }
                // what to do when the user clicks select
                public void approveSelection(){
                    // you might want to make sure the selected file is valid before this step
                    myFile = getSelectedFile();
                    myChooserDialog.dispose();
                // what to do if the user clicks cancel
                public void cancelSelection(){ myChooserDialog.dispose(); }
            ...add the chooser to the dialog and make it visible
            myChooserDialog.add(myFileChooser);
            myChooserDialog.setVisible(true);
            myChooserDialog.pack();
    });Now add the button to the frame and make it visible
    add(myBrowseButton);
    setVisible(true);
    pack();A few notes:
    1) Replace the word PATH with the path to the directory you want to browse (e.g. "." the current working directory)
    2) Make sure all of that code except for private static File myFile = null; goes into a method and isn't just floating around
    3) If ANY of this was confusing then go D.A.F.T (Do A Fecking Tutorial!)
    good luck!
    pieman

  • Browse button does not work in ebay standard uploader for firefox 32.0.3 by it works in IE

    when trying to upload images to eBay to sell items the browse button on the standard uploader does not do anything, this works fine in IE and the basic upload also works well in both. I have cleared all cache and cookies but still not working.

    I understand the uploader is not working and you have cleared the cache and the issue continues. Please also Try [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] this will tell you if it is an add on interfering with the functionality of the Browsing/Upload button.
    In case of Java you can check the Security tab in the Java Control Panel to make sure that Java for browsers is enabled.
    *http://kb.mozillazine.org/Java

  • "Browse"button couldn't change to "Burn Disc"

    itunes 7,Disc Driver DVD+-RW connected via usb and and recognized by itunes,windows XP Pro, mp3 songs authorized,creat playlist in itunes.
    after inserting a blank disc, itunes shows me to choose the songs in playlist and to burn. But "Browse"button couldn't change to "Burn Disc", failed.

    I have a similar issue. For me at least, it seems that I cannot move songs from my ipod into new playlists (and therefore the browse button does not change to burn). This is a recent development, in the last couple of days. I.e., I was previously able to create a new playlist and move songs into it for burning to CD. So, this does not pose any answer to your question, I just have a similar issue: the burn. Does anyone know of a solution?
    compaq nc4010   Windows XP Pro  

  • Exit button issue in Captivate 5

    Hi,
    This is regarding the exit button on the playback controls. I have been using Captivate from version 2. Recently, started using version 5. When I published my simulation, the exit button is not working as earlier. It is also not working from- web server(IIS, Apache), when opened as pop-up as well. In local too however not working. I tried in both IE 7 and Firefox latest version.
    I have seen the response from Adobe on this issue on this forum. It was quite surprising; it did not talk about the solution at all;
    What I am not sure about is -
    1. Why the exit button was working earlier versions.. why is it not working in latest?
    2. Why should when simple code like top.close(); works fine (when coded inside the Captivate)?
    3. Why is Adobe not acknowledging the issue?
    4. Why there is no working around provided in the forums for this issue?
    Could anybody please help me understanding this problem? I am really frustrated.
    Thanks.

    Happy New to all as well!
    You are absolutely correct! The moment reporting is activated, the EXIT no longer functions. Although in my case, we are not using the time/slider bar but custom navigation buttons with an exit button on the last slide (and at the top of each slide).
    This whole EXIT button issue (not just Cp 5 but Cp 6 as well) is nearly bringing me to the point of tears! This is really ridiculous! I am in a tough position right now where my manager may be wondering if I am right person for this job because I cannot make a little EXIT button work in our lessons.
    "Solutions" or excuses that I have received
    - Just remove the EXIT button -- No, we use a standard corporate template which hundreds of employees are already familiar with. To remove the EXIT button and instruct the learner to just close the browser would be unacceptable and a rather inelegant way to exiting a lesson.
    - It is a tough issue that isn't Captivate's fault
      With all due respect to the awesome person who keeps stating that, I have a feeling that you have not used other rapid elearning tools. Building an EXIT button in all the other major elearning tools is easy and works every time.
    The source of my personal difficulty is that every other course that was built by previous developers (not using Captivate), all open in a child window and all have a working EXIT button.
    I believe the PRIMARY reason for this problem might be in the fact that... inexplicably... Captivate does not offer an option to start a lesson in a CHILD window (i.e. separate browser window). This is why no javascript in the world will allow the tab to close (e.g. EXIT button). Closing a tab or browser window via javascript only works when the same instance was previously opened by a script using the window.open method. In other words, you can only use the javascript method to close an instance that was spawned via javascript.
    This should explain why lessons published in Lectora (et al) always have working EXIT buttons every time and in every browser (minor exception is Opera for unrelated reasons).
    The second red box is just another one of my problems with Captivate 6 (not related to this topic).
    Solution????
    I've been racking my brain trying to modify Captivate's HTML/javascript in order to carry over the AICC (or SCORM - same process) variables into a child window.
    Like another participant stated, you can't simply rename the original index.html to index2.html and create a redirection like this:
    <script type="text/javascript">   
    window.open("index2.html","lesson","location=0,toolbar=0,status=0,resizable=1,width=975,he ight=600");</script>
    <body>
    Yes, I tried this as well... but unfortunately, it breaks the AICC to LMS connection. *BUT* I can promise one thing... using the above redirection, does guarantee that your EXIT button works every time! Pity the LMS connection breaks!
    QUESTION?
    Does anyone have advanced knowledge of javascript in order to code the INDEX.HTML to open the lesson in a child windows AND maintain a connection to the LMS?

  • WRVS4400N Can't Upgrade Firmware - Browse Button Greyed Out

    Hello,
    I have a Cisco WRVS4400N v2 and I have downloaded the latest firmware, but when I log into the router and go to Administration > Firmware Upgrade, the Browse button is greyed out.
    I have tried logging in from both the WAN and the LAN side, and the Browse button is greyed out from both sides.
    I also tried enabling Remote Upgrade under the Firewall setting, but the Enable button is greyed out as well.
    Can someone please tell me what I am doing wrong.
    I have tried IE and Firefox and it doesn't appear to be a browser issue.
    Thanks for your help.
    Mark                  

    Hello Mark,
    please try to use IE 8 and make sure that you are logged in as Admin in the top right corner.
    Regards,
    Friedrich

  • The back and forward browser buttons are NOT ALWAYS available to use, so once I open a web-site I can not go back to what I was looking at previously. This has only started happening recently?

    The back and forward browser button always works when we first get online, and then over some time it will not work and then will work again (working again is happening less). I have re-started the computer many times to fix the issue.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Browser specific Issue with af:fileDownloadActionListener/ component.

    Hi all,
    We are facing an issue with <af:fileDownloadActionListener/> component.
    The issue is that when we download a particular file to the local system/machine, after downloading the file using <af:fileDownloadActionListener/>, none of the actions/links/button work on the page thereafter. We have to do a browser refresh or switch the URL.
    After doing some investigation, it is looking like a browser specific issue, as this is reproducible only on chrome but not on firefox or IE.
    The UI component used is <af:fileDownloadActionListener/> component. Below is the snippet of the code. Is there anything to be specified for af:fileDownloadActionListener?
    <f:facet name="buttonBar">
    <af:panelGroupLayout partialTriggers="expPoll expProgess" id="gsexppgl11">
    <af:commandButton text="#{uib_o_w_w_r_WebCenter.LABEL_DOWNLOAD}"
    shortDesc="#{uib_o_w_w_r_WebCenter.LABEL_DOWNLOAD}"
    id="expClientp"
    disabled="#{!pageFlowScope.o_w_w_i_v_b_l_WebCenterExportBean.showExportButtons}">
    <af:fileDownloadActionListener filename="#{pageFlowScope.o_w_w_i_v_b_l_WebCenterExportBean.fileName}"
    contentType="application/force-download; charset=utf-8"
    method="#{pageFlowScope.o_w_w_i_v_b_l_WebCenterExportBean.dumpOAROnClient}"/>
    </af:commandButton>
    </af:panelGroupLayout>
    </f:facet>
    Anyone has faced this issue before? Is this a known issue?
    Thanks,
    Ankush

    Jdveloper version is 11g. But we saw this issue with 12c as well.
    I have reproduced this in a standalone application as well. I had a page on which I just had a button attached to the file download component. And I faced the similar situation - works fine on IE/FF but causing issues on chrome/safari.

  • Browse Button in Webutil

    Hi All
    I'm using Webutil library in Oracle Form Buider 10g to help me create Browse Button.Browse Button is a button when I press it,it will show a Open dialog box which i can select file.
    In the trigger "When Button Pressed" of button
    begin
    :file_name:= CLIENT_GET_FILE_NAME('c:/', File_Filter=>'Text Files (*.txt)|*.txt|');
         get_file_contents(:file_name);
    exception when others then
         message(sqlerrm);
    end;
    and in the Program Unit of Form I write a Procedure Body "GET_FILE_CONTENTS"
    When i compile form,no error but run form and press button,it appear error:"ORA-06508:PL/SQL:could not find program unit being called"
    I can't repair this error.
    Pls,Help me!
    Thanks all

    How to get up and running with WebUtil 1.06 included with Oracle Developer Suite 10.1.2.0.2 on a win32 platform
    Solution
    Assuming a fresh "Complete" install of Oracle Developer Suite 10.1.2.0.2,
    here are steps to get a small test form running, using WebUtil 1.06.
    Note: [OraHome] is used as an alias for your real oDS ORACLE_HOME.
    Feel free to copy this note to a text editor, and do a global find/replace on
    [OraHome] with your actual value (no trailing slash). Then it is easy to
    copy/paste actual commands to be executed from the note copy.
    1) Download http://prdownloads.sourceforge.net/jacob-project/jacob_18.zip
      and extract to a temporary staging area. Do not attempt to use 1.7 or 1.9.
    2) Copy or move jacob.jar and jacob.dll
      [JacobStage] is the folder where you extracted Jacob, and will end in ...\jacob_18
         cd [JacobStage]
         copy jacob.jar [OraHome]\forms\java\.
         copy jacob.dll [OraHome]\forms\webutil\.
      The Jacob staging area is no longer needed, and may be deleted.
    3) Sign frmwebutil.jar and jacob.jar
      Open a DOS command prompt.
      Add [OraHome]\jdk\bin to the PATH:
         set PATH=[OraHome]\jdk\bin;%PATH%
      Sign the files, and check the output for success:
         [OraHome]\forms\webutil\sign_webutil [OraHome]\forms\java\frmwebutil.jar
         [OraHome]\forms\webutil\sign_webutil [OraHome]\forms\java\jacob.jar
    4) If you already have a schema in your RDBMS which contains the WebUtil stored code,
      you may skip this step. Otherwise,
      Create a schema to hold the WebUtil stored code, and privileges needed to
      connect and create a stored package. Schema name "WEBUTIL" is recommended
      for no reason other than consistency over the user base.
      Open [OraHome]\forms\create_webutil_db.sql in a text editor, and delete or comment
      out the EXIT statement, to be able to see whether the objects were created witout
      errors.
      Start SQL*Plus as SYSTEM, and issue:
         CREATE USER webutil IDENTIFIED BY [password]
         DEFAULT TABLESPACE users
         TEMPORARY TABLESPACE temp;
         GRANT CONNECT, CREATE PROCEDURE, CREATE PUBLIC SYNONYM TO webutil;
         CONNECT webutil/[password]@[connectstring]
         @[OraHome]\forms\create_webutil_db.sql
         -- Inspect SQL*Plus output for errors, and then
         CREATE PUBLIC SYNONYM webutil_db FOR webutil.webutil_db;
      Reconnect as SYSTEM, and issue:
         grant execute on webutil_db to public;
    5) Modify [OraHome]\forms\server\default.env, and append [OraHome]\jdk\jre\lib\rt.jar
      to the CLASSPATH entry.
    6) Start the OC4J instance
    7) Start Forms Builder and connect to a schema in the RDBMS used in step (4).
      Open webutil.pll, do a "Compile ALL" (shift-Control-K), and generate to PLX (Control-T).
      It is important to generate the PLX, to avoid the FRM-40039 discussed in
      Note 303682.1
      If the PLX is not generated, the Webutil.pll library would have to be attached with
      full path information to all forms wishing to use WebUtil. This is NOT recommended.
    8) Create a new FMB.
      Open webutil.olb, and Subclass (not Copy) the Webutil object to the form.
      There is no need to Subclass the WebutilConfig object.
      Attach the Webutil.pll Library, and remove the path.
      Add an ON-LOGON trigger with the code
             NULL;
      to avoid having to connect to an RDBMS (optional).
      Create a new button on a new canvas, with the code
             show_webutil_information (TRUE);
      in a WHEN-BUTTON-PRESSED trigger.
      Compile the FMB to FMX, after doing a Compile-All (Shift-Control-K).
    9) Under Edit->Preferences->Runtime in Forms Builder, click on "Reset to Default" if
      the "Application Server URL" is empty.
      Then append "?config=webutil" at the end, so you end up with a URL of the form
          http://server:port/forms/frmservlet?config=webutil
    10) Run your form.Sarah

  • Web Browser button

    I have a  HP Pavilion dv6-6c notebook,  My web page keeps popping up, sporadically, it will sometimes, take me out of my website and pop up fresh.  It had been suggested that my Web Browser button is stuck and suggested that I have it taken out.  Any suggestions to fix this problem and not having to have this button removed.

    Hi ,  Thank you for visiting the HP Support Forums and Welcome. I have looked into your issue about your HP Pavilion dv6-6c Notebook and having issue with  Internet Explorer being erratic. If you are using Internet Explorer, then go to the Tools tab  Internet Options  Advanced and select reset.  Then close and launch Internet Explorer again. Try that out to see if it fixes it. You could try a different browser to see if it still causes the same issue. Here is a document on how to resolve and prevent virus on Windows 7. The computers with Windows 7 come with Windows Defender, I would scan the complete computer, just to make sure.
    Please let me know.
    Thanks.

Maybe you are looking for

  • What sort of cable do i need?

    Hi there, my current setup is mac mini connected to TV using the DVI / s-video adapter on the apple store, however i also switch to a VGA connection on a monitor which is currently beside my tv using the DVI / VGA adapter i got in the mini's box. I h

  • Read the characteristics of a planned order in APO

    how can we read the characteristics of a planned order in APO.What Function Module can be used for this? how can we manually schedule the order activities based on the characteristics. Can we use the function module  /SAPAPO/OM_ACT_SCHEDULE by copyin

  • DVD Files not completely copied to hard drive

    I recently bought a new Macbook and seem to be having problems with the DVD drive. I am trying to pull home movies off of DVD's and put into a format for Apple TV. I seem to have all the right software and the conversion process works well. I tried u

  • Problem with iDVD Chapter selection

    Hi everyone, I've a problem when burning a DVD. In the preview mode of iDVD, I can select the chapter I want using the scene selection menu, but once the DVD is burnt, every scene selection on my DVD player relaunches the DVD main menu (splash screen

  • Can I remove scuff marks my ipad cover made on my ipad air screen?

    I just got an ipad air 2 and logitech keyboard case. I have only had it for a month and the ipad screen is scuffed/scratched. I had an ipad 2 for 5 years and the screen held up pretty well. Does anyone know if there is a way to remove the scuffs or s