Problems interacting with various sites

I'm having trouble interacting with and viewing numerous sites. For example:
http://www.facebook.com/SmallBusinessSaturday?sk=app_183558821725512
If I enter a zip and hit enter, nothing happens. It works in both FireFox and Chrome, and shows more on the page.
I checked java on their site; it works. I don't have ClicktoFlash installed. Latest versions; 10.7.2. Reset Safari. I've had similar problems on other sites, and thought it was them, not me. Now I think it's Safari.
Ideas?
Rob
Oops. Got a suggestion offline: it's Ghostery extension. I thought I'd turned it off but it was still enabled.

Oops. Got a suggestion offline: it's Ghostery extension. I thought I'd turned it off but it was still enabled.
It was that extension? If so, good to know.

Similar Messages

  • I am having problems interacting with Microsoft Office programs since the last update:cannot create a pdf through the 'print' menu in exel and both Word and Exel docs sent in Mac Mail end up being received as .dat files.

    I am having problems interacting with Microsoft Office programs since the last update:cannot create a pdf through the 'print' menu in exel and both Word and Exel docs sent in Mac Mail end up being received as .dat files.
    Both these situations have cropped up on my MacBook Pro since the last update.
    Thanks for your help.
    Cheers
    Bob

    The 'Winmail.dat' problem has been extensively covered in these forums, I would search for that (a Google search works well) and unfortunately I have not seen the pdf print problem before, but assuming the software is current and functions normally (other than the pdf print problem) I have no suggestion other than the obvious (but time consuming) re-installation of Office.
    I wish I had more

  • Interact with web site

    I'm programming a chatbot that will be able to get information from web site if it isnt in the script. Im at the stage where I want to use a web site's search engine, namely www.imdb.com/search to continue. The idea is I will send the search term on java program, the program connect to the web site, uses the search engine on the site and get the resulting web page. The program get the html code, process it and exact whatever user want to know.
    Problem: I have no idea how to make a program that will be able connect to imdb, to do a search on imdb's search engine and get the html for further process. Can anyone advice me on how to interact with their's search engine and get the result?
    The code i got so far can only exact the html code, however this will not work because imdb connection refuse.
         URL yahoo=new URL("http://www.imdb.com/");
         BufferedReader in = new BufferedReader( new InputStreamReader (yahoo.openStream()));
         String inputLine;
         while ((inputLine=in.readLine())!=null)
              System.out.println(inputLine);
              in.close();
              }

    Thank for the direction and tips. Now I have more understanding of what I needed to do. However, I still cant come up with an solution for what I needed to do. I read the wiki page on
    HttpClientPowered A list of applications that use HttpClient
    Client HTTP Programming Primer
    What I need to do is to use those API to perform search and get the resulting html code, with my limited understand of both Java and web technology, I can find which method I need to perform a search and get the resulting html code.
    Can anyone give me more details please, I need to decide what I need to do within a week depend on if I can make that part of the program.
    Thank
    Also I tried some of those example code, I cant make them run cause im missing org/apache/commons/logging/LogFactory, cant find it on the download section. Im thinking of getting the html code from .Net now...can you show me what is the code to do it in .Net please? I know nothing in .Net btw.
    Edited by: kent99 on Jan 26, 2009 3:25 PM

  • Problems interact with Flash and ASP

    Hello people, I am beginning to learn how flash to interact
    with asp, but im having problems in the execution of the file.
    access the link below to see what happens:
    http://www.trusttarget.com.br/flash/flash_asp.swf
    My AS code:
    var endereco:URLRequest=new URLRequest("
    http://www.trusttarget.com.br/flash/produtos.asp");
    endereco.method=URLRequestMethod.GET;
    var carregar:URLLoader = new URLLoader();
    botao.addEventListener(MouseEvent.CLICK,chama);
    function chama(evento:MouseEvent) :void {
    var variavel:URLVariables = new URLVariables("nome="+
    busca.text);
    endereco.data= variavel;
    carregar.load(endereco);
    carregar.addEventListener(Event.COMPLETE,carregou);
    var texto:String= "";
    function carregou(evento:Event) :void {
    var variaveis:URLVariables= new URLVariables(carregar.data);
    var quantos:int= Number(variaveis.quantidade);
    texto= "";
    if (quantos == 0) {
    texto= "Nenhum Produto encontrado";
    } else {
    for (var i:int=1; i<= quantos; i++) {
    texto+= variaveis["produto"+i] + "\n";
    resultado.text= texto;
    When I execute the file ASP that makes the search in DB, he
    perfectly works, exhibiting the existent information in DB.
    But when I try for the Flash, not of the right.
    Please, help me
    Thanks everbody

    my ASP code
    <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
    <%
    banco = Server.MapPath("livro.mdb")
    Set conexao = Server.CreateObject( "adodb.Connection" )
    conexao.Open "DRIVER={Microsoft Access Driver (*.mdb)};DBQ="
    & banco & ";"
    Dim registros
    Set registros = Server.CreateObject("ADODB.Recordset")
    registros.ActiveConnection = conexao
    registros.Source = "SELECT * FROM produtos WHERE produto LIKE
    '" & Request.QueryString("nome") & "%'"
    registros.CursorType = 0
    registros.CursorLocation = 2
    registros.LockType = 1
    registros.Open()
    x=0
    Do while not registros.eof
    x=x+1
    response.write "produto" & x & "=" &
    (registros.Fields.Item("produto").Value)
    response.write " - Preço= " &
    (FormatCurrency(registros.Fields.Item("preco").Value)) & " "
    registros.MoveNext()
    Loop
    response.write "quantidade=" & x
    registros.Close()
    Set registros = Nothing
    %>
    thanks

  • Need guidance on interacting with FrontPage site (post retry)

    BACKGROUND: redesigning and programming a photographers
    website who is using Frontpage to upload files.
    Murray told me a couple months ago that I can't work with the
    site directly because it will cause problems for Frontpage and that
    I will need to send
    the files to my client to upload through FP.
    QUESTIONS:
    Can I use ftp to download from the site without causing a
    problem?
    Does FP do anything special with extensions would preclude me
    from doing ftp if FP has only been used to upload/download files?
    Can I use ftp to create and use a subdirectory to work in for
    development purposes or will FP puke at that?
    I am going to be doing some basic CF programming to the site
    and it would be really difficult without the ability to ftp.
    I am not sure to what extent my client has used FP extensions
    since she basically has a home page with some pictures and links
    and then Photoshop
    created slide shows everywhere else. There is no programming
    (except for the PS slide shows) anywhere in the site.
    Any help would be appreciated.
    stillwaiting

    > Can I use ftp to download from the site without causing
    a problem?
    Yes.
    > Does FP do anything special with extensions would
    preclude me from doing
    > ftp if FP has only been used to upload/download files?
    No.
    > Can I use ftp to create and use a subdirectory to work
    in for development
    > purposes or will FP puke at that?
    You can try it.
    > I am going to be doing some basic CF programming to the
    site and it would
    > be really difficult without the ability to ftp.
    > I am not sure to what extent my client has used FP
    extensions since she
    > basically has a home page with some pictures and links
    and then Photoshop
    > created slide shows everywhere else. There is no
    programming (except for
    > the PS slide shows) anywhere in the site.
    >
    Post a link to the site - I'll take a look and see if I see
    anything....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Stephen H." <[email protected]> wrote in message
    news:[email protected]...
    > BACKGROUND: redesigning and programming a photographers
    website who is
    > using Frontpage to upload files.
    >
    > Murray told me a couple months ago that I can't work
    with the site
    > directly because it will cause problems for Frontpage
    and that I will need
    > to send
    > the files to my client to upload through FP.
    >
    > QUESTIONS:
    > Can I use ftp to download from the site without causing
    a problem?
    > Does FP do anything special with extensions would
    preclude me from doing
    > ftp if FP has only been used to upload/download files?
    > Can I use ftp to create and use a subdirectory to work
    in for development
    > purposes or will FP puke at that?
    >
    > I am going to be doing some basic CF programming to the
    site and it would
    > be really difficult without the ability to ftp.
    > I am not sure to what extent my client has used FP
    extensions since she
    > basically has a home page with some pictures and links
    and then Photoshop
    > created slide shows everywhere else. There is no
    programming (except for
    > the PS slide shows) anywhere in the site.
    >
    > Any help would be appreciated.
    >
    > stillwaiting

  • Problem interacting with HTTP unit on forms

    Hello
    My problem is that I can't change a form I want to change to what I need. There is no option allowing me to change it:
    <select name="RESPONSE"><option value="L">Lancaster</option><option selected value="Y">York</option><option value="G">Gloucester</option></select>
    I can't use the setParameter or setCheckbox, this is a popup window.
    now York is selected, i want to select for example Lancaster.
    Are there any alternatives to httpunit?
    thanks
    Jossi

    perhaps there's some way to interact with forms on mobile devices too?
    perhaps HTTP unit is written in java?
    well...

  • Error 0x000006F7 - Problems interacting with the card

    Hello,
    I am using
    - GPShell
    - Java Card Gemalto TOP IM GX4
    - Smart Card Reader Gemalto IDBridge CT40
    I've tried this GPShell script:
    mode_201
    enable_trace
    enable_timer
    establish_context
    card_connect
    select -AID A000000018434D00
    open_sc -security 3 -keyind 0 -keyver 0 -key 47454d5850524553534f53414d504c45 -keyDerivation visa2 // Open secure channel
    get_status -element 20
    card_disconnect
    release_context
    But I get the following error:
    select_application() returns 0x000006F7 (The fragment has received incorrect data)
    I get This error with any script that interacts with the Java Card after installing and testing an applet on the card that generates a message encrypted with the DES algorithm.
    Console:
    mode_201
    enable_trace
    enable_timer
    establish_context
    command time: 218 ms
    card_connect
    command time: 203 ms
    select -AID A000000018434D00
    Command --> 00A4040008A000000018434D00
    Wrapped command --> 00A4040008A000000018434D00
    select_application() returns 0x000006F7 (El fragmento ha recibido datos incorrectos)
    What should I do?
    Thanks in Advance.

    Hi Shane,
    I checked mi smart card reader, is working correctly with the drivers correct.
    I think that the card is Unconfigured because now for show all applets that are installed on the card, is generated the same error. Before I could do it, without problems.
    mode_201
    enable_trace
    enable_timer
    establish_context
    command time: 265 ms
    card_connect
    command time: 203 ms
    select -AID A000000018434D00
    Command --> 00A4040008A000000018434D00
    Wrapped command --> 00A4040008A000000018434D00
    select_application() returns 0x000006F7 (The fragment has received incorrect data)
    I can reboot the JavaCard to reset it to its initial state? do you know do it?

  • Firefax ver 12 crashes when I try to open a second tab with various sites

    crashing ver 12 firefox, just shuts down frequently

    Hey stewell,
    Have you tried starting Firefox in Safe Mode? Hold down "shift" while Firefox is starting up. If the crash doesn't happen in Safe Mode, you should read [[Troubleshooting extensions and themes]].
    There is also a lot of useful stuff in the [[Firefox crashes]] Knowledge Base article and you could also try [https://support.mozilla.org/en-US/kb/Managing-profiles?s=create+a+new+profile&r=2&e=es&as=s#w_creating-a-profile Creating a new profile].
    Hopefully this helps!

  • Problem with various programs freezing/not working

    I'm not sure if it's a problem with the computer itself or with the software, but perhaps someone on here can help me.
    For about a week now I've been having problems with various programs on my iMac. These programs include iTunes, Force Quit, Shut Down, Safari, Finder, and certain functions on the keyboard.
    The problems I've been having revolve around the programs freezing up when you either first try to operate them or after opening the programs and trying to click on things within the program itself.
    A good example: I haven't been able to use iTunes past the point of opening it up. Once I try to play a song, it freezes up and the rainbow wheel comes up and just keeps on spinning for eternity, or until I manually reboot the computer via the power button.
    The volume controls on the keyboard don't work at all. When I first boot up the computer, I can press a volume button and the symbol will appear on the screen, but the level won't move up or down and if you press it again after that disappears then it doesn't reappear.
    Force Quit and other applications tend to stay on the screen after you click the quit button or other end/cancel button and won't go away until iMac is rebooted manually by button on back.
    Safari gets stuck on occasion depending on which site I go to. It happened once when I went to MySpace.com, but only cos of one of the flash sites they were advertising. I went to the same site an hour later and it was fine since it was advertising something else. I have a job site I can't access because when I click on the 'jobs' link to look for a job, it gets 3/4 of the way through the upload and freezes.
    And right now I can't tell you which model I have since I can't access the 'About This Mac' info, other than to tell you it's the 20" with 320 GB with Leopard software, Mac OS X v10.5. It gets regular updates.
    So... if there's anyone who could help me, I would greatly appreciate it.
    Please note, I don't have Apple Care since I can't afford it yet, and I just bought my computer in October 2007. Thanks!

    Start with http://www.thexlab.com/faqs/multipleappsquit.html

  • A problem caused this program to stop interacting with Windows.  Problem signature:   Problem Event Name:     AppHangB1

    I have received the following error message with Adobe Acrobat Pro XI when working with Portfolio Files. I am operating Windows 7 Professional.
    Has anyone found a fix for this issue?
    Description:
      A problem caused this program to stop interacting with Windows.
    Problem signature:
      Problem Event Name: AppHangB1
      Application Name: Acrobat.exe
      Application Version: 11.0.10.32
      Application Timestamp: 547e97af
      Hang Signature: 8dc7
      Hang Type: 0
      OS Version: 6.1.7601.2.1.0.256.48
      Locale ID: 1033
      Additional Hang Signature 1: 8dc7ed9d7ff41b8cc5ee35b7294b45e9
      Additional Hang Signature 2: e6d0
      Additional Hang Signature 3: e6d001594873a6b1363ccd82616a4edf
      Additional Hang Signature 4: 8dc7
      Additional Hang Signature 5: 8dc7ed9d7ff41b8cc5ee35b7294b45e9
      Additional Hang Signature 6: e6d0
      Additional Hang Signature 7: e6d001594873a6b1363ccd82616a4edf
    Read our privacy statement online:
      http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
    If the online privacy statement is not available, please read our privacy statement offline:
      C:\Windows\system32\en-US\erofflps.txt
    Please help
    John Sorkin [email protected]

    jamodi
    What computer operating system is your Premiere Elements 12 installed?
    How far into the opening of the program do you get? Do you get to the Expert or Quick workspaces?
    And, if so, how long can you stay there? What are you doing when you get this message, opening a new project
    or opening an existing one that has been saved/closed or just trying to launch the program from the desktop icon.
    Are you running the program Run As Administrator and from a User Account with Administrative Privileges?
    Do you have the McAfee antivirus program? Do you have the latest version of QuickTime installed on your computer
    with Premiere Elements 12?
    What video card/graphics card does your computer use? Have you verified at the web site of the manufacturer of the
    card that the video card/graphics card driver is up to date?
    If you do not know, check the Device Manager/Display
    Adapters to determine if you have 1 or 2 cards.
    Depending on your answers, the next step will be
    Uninstall the program the usual Control Panel way.
    (If you can get into the program long enough to go to Help Menu/Sign Out, please do that to deactivate the program
    before going to the uninstall in Control Panel area.)
    Do a run through with ccleaner (both the regular cleaner and registry cleaner parts) to get rid of leftovers from
    incomplete uninstalls and reinstalls.
    https://www.piriform.com/ccleaner
    Reinstall the program with the antivirus and firewalls disabled.
    (If you have McAfee as the antivirus, that may be problem, and we can take care of that without having to go
    through this uninstall/ccleaner/reinstall.)
    Let us start here and then decide what next.
    Thank you.
    ATR

  • HT204416 My Safari is no longer working with many sites.  However Chrome and Firefox work fine.  I would like to re-install Safari in an effort to clear up the problem I can not resolve.

    My Safari is no longer working with many sites.  However Chrome and Firefox work fine.  I would like to re-install Safari in an effort to clear up the problem I can not resolve.

    1. From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Extensions
    Turn all extensions OFF and test. If the problem is resolved, turn extensions back ON and then disable them one or a few at a time until you find the culprit.
    2. Select
              Safari ▹ Preferences... ▹ Privacy ▹ Remove All Website Data...
    and confirm. Test.
    3. If the above steps don't resolve the problem, please describe it in more detail.

  • Itunes wont open; A problem caused this program to stop interacting with Windows. Problem Event Name:     AppTermFailureEvent

    Itunes wont open: has a fault :
    Itunes will not interact with Windows?? problem called App Term failure ?
    Anyone got an idea on how to get itunes open?
    Regards

    I suspect a RAM or hardware problem.

  • Exchange 2010/Outlook 2010 Security Alert (...there is a problem with the site's security certificate.)

    I've been looking to resolve this issue for a while now and was hoping someone could help me understand my options.
    We have Exchange 2010 & Outlook 2010 in our environment. I've created a SSL cert for our ActiveSync from a reputable CA and unfortunately, as you may not be surprised, we are seeing an alert each time we open Outlook that states:
    "Security Alert; Information you exchange with this site cannot be viewed or changed by others. However, there is a problem with the site's security certificate.
    The name on the security certificate is invalid or does not match the name of the site."
    Of course my internal server name does not match my external server name. So the SSL I had created for use with OWA and ActiveSync is rejected by my internal Outlook clients.
    After doing some research I believe this is related to the Autodiscover service being configured with my internal server name and not my external name. 
    I've found some info about adding New-AutodiscoverVirtualDirectory and Set-ClientAccessServer commands and then found this article that might help.  (Configure
    Outlook Anywhere to Use Multiple SSL Certificates) but nothing is specific to my configuration and I'm concerned about what will happen to my existing configuration if this fails. 
    What happens when you run Set-ClientAccessServer? Does it retain and keep the old server config in place and add a new one or does it wipe it out? Will all of my devices need to be reconfigured?
    Same with New-AutodiscoverVirtualDirectory.  Does this simply add another virtual directory or is it going to overwrite my existing config?
    Then there is the question of whether or not any of this will actually address my issue at all.
    absolutezero273c

    Sorry.
    "[PS] C:\Windows\system32>Set-ClientAccessServer -Identity MailExt -AutoDiscoverServiceInternalUri "https://MailExt
    .contoso.com/autodiscover/autodiscover.xml"
    The operation couldn't be performed because object 'MailExt' couldn't be found on 'DomainController2.contoso.local'.
        + CategoryInfo          : NotSpecified: (0:Int32) [Set-ClientAccessServer], ManagementObjectNotFoundException
        + FullyQualifiedErrorId : 4D980455,Microsoft.Exchange.Management.SystemConfigurationTasks.SetClientAccessServer"...is the error I get.
    I've created the split zones and populated the Forward Lookup Zones as follows:
    CONTOSO.COM
    MailExt(CNAME)MailInt.contoso.local
    _tcp _autodiscover(SRV)MailExt.contoso.com
    CONTOSO.LOCAL
    MailInt(A)192.168.1.10
    MailExt(CNAME)MailInt.contoso.com
    One thing I did notice is that there isn't a _tcp _autodiscover entry for MailInt in my Forward Lookup Zones.  It was recommended that I make that entry for _tcp _autodiscover(SRV)MailExt.contoso.com in another post I read somewhere.
    I believe what I am trying to do is create a new autodiscover object as is shown here:
    I see there is a Get-ClientAccessServer & Set-ClientAccessServer command but I need to add a CAS. Does the Set-ClientAccessServer add or simply modify?
    Or would that require the New-AutodiscoverVirtualDirectory command? I read
    this page that discussed creating new virtual directories but that seemed a little risky without knowing all the ins and outs of how this service functions and to what degree this would affect the existing configuration.
    I was able to use the Set-ClientAccessServer command and change the actual internal autodiscoverUri to https://MailExt.contoso.com/autodiscover/autodiscover.xml but the name still says MailInt and I continue to get the SSL cert warnings because it is looking
    at MailInt.contoso.local.
    absolutezero273c

  • Problems getting Reader (9.4 and up) to interact with WSDL, rights-enabled or not

    Somehow I must be doing something wrong - My form works just fine in Designer,
    Preview, Acrobat Pro, etc as expected. When I open the form in Reader, I am not gett
    ing my data back. I have rights-enabled the form, still no go. Am I mis
    sing something? Any suggestions appreciated!

    Thanks - Adobe is certainly misleading about what & where they are calling
    Reader Extension. Grrr.  Thanks so much for your answer!
    Tabi Freedman
    Developer
    BTS-PAS
    P. 212-919-3135  M. 917-370-7229
    7 Hanover Square H-4-A, New York, NY 10004
    The Guardian Life Insurance Company of America
    GuardianLife.com
    From:   pguerett <[email protected]>
    To:     Tabi M Freedman <[email protected]>
    Date:   07/29/2011 01:42 PM
    Subject:        Problems getting Reader
    (9.4 and up) to interact with WSDL, rights-enabled or not
    Thats your issue .....Acrobat does not add the right to enabe Web Services
    in Reader. That can only be done via LiveCycle Reader Extensions.
    Paul

  • A problem caused this program to stop interacting with Windows

    I try to run Photoshop.exe, but it doesn't respond. I get this error message. How to fix it? I have no idea where is a problem? I had no problems with it earlier.
    ERROR MESSAGE:
    Description:
    A problem caused this program to stop interacting with Windows.
    Problem signature:
    Problem Event Name: AppHangB1
    Application Name: Photoshop.exe
    Application Version: 8.0.0.0
    Application Timestamp: 3fce5708
    Hang Signature: 1875
    Hang Type: 0
    OS Version: 6.0.6001.2.1.0.256.1
    Locale ID: 1063
    Additional Hang Signature 1: 3732c99c21cdca196fbfee3cc7094b85
    Additional Hang Signature 2: 848c
    Additional Hang Signature 3: 5c7261f725b6a443e8327138a3fe0208
    Additional Hang Signature 4: 1875
    Additional Hang Signature 5: 3732c99c21cdca196fbfee3cc7094b85
    Additional Hang Signature 6: 848c
    Additional Hang Signature 7: 5c7261f725b6a443e8327138a3fe0208
    Read our privacy statement:
    http://go.microsoft.com/fwlink/?linkid=50163&clcid=0x0409

    I suspect a RAM or hardware problem.

Maybe you are looking for

  • PSE7 and Windows 7

    I just updated my windows 7 and now my editor in PSE7 doesn't work. What can I do?

  • ISight in not working in Photo Booth, iChat, and VMWare with Snow Leopard

    System Info Model Name: iMac Model Identifier: iMac8,1 Processor Name: Intel Core 2 Duo Processor Speed: 2.8 GHz Number Of Processors: 1 Total Number Of Cores: 2 L2 Cache: 6 MB Memory: 4 GB Bus Speed: 1.07 GHz Boot ROM Version: IM81.00C1.B00 SMC Vers

  • File download issue in 4.6

    Hi all, I need to download a file from 4.6 version SAP system into Excel sheet with tab as a seperator, GUI_DOWNLOAD has no field seperator option in this version, is there any other FM to download this file into excel so that every field should be d

  • Default Administrator password for Windows XP PXIE-1062Q Controller

    My PXIE controller was installed and setup with LabView (I assume) at NI. The OS is Windows XP,  what is the Administrator password that was set during this process? ie how can I log in to the controller for the first time. Thanks Ian Solved! Go to S

  • Missing records in table

    Hi All, I am using XML publisher APIs to generate reports. For a particular table the report shows a single record but when I run the query(used in the data template) in SQL plus it retrieves 3 records. The RTF template has a FOR-EACH statement and t