Help! HTML Data set not working in IE (but in all other browsers)

Hi there,
I am totally desperate - I built a master/detail region page using a HTML data set.
http://www.atcongress.com/programme/continuousLearningByName.html
It works fine in Firefox/Safari/Chrome/Opera.
Only IE7 and IE8 give me grief - displaying javascript errors; apparrently it is not able to bind the HTML data table to the data set:
The IE Javascript Error Console displays "
'Spry.Data.HTMLDataSet' ist Null oder kein Objekt
This is in German but you'll get the idea I presume?! Translation would be something like
'Spry.Data.HTMLDataSet' is Null or not an object"
Anyway, the source HTML data table uses spry as well. This works fine on all browsers. Maybe because the HTML is on the same page?
http://www.atcongress.com/programme/continuousLearningTable.html
Any ideas? Do you need more info?
Please help - the system needs to go out to test users any day now!
Andreas
This is the entire message from the IE8 javascript error console:
Meldung: 'Spry.Data.HTMLDataSet' ist Null oder kein Objekt Zeile: 30 Zeichen: 1 Code: 0 URI: http://www.atcongress.com/programme/continuousLearningByName.html Meldung: 'Spry.Debug' ist Null oder kein Objekt Zeile: 961 Zeichen: 41 Code: 0 URI: http://www.atcongress.com/_spryAssets/SpryData.js Meldung: 'Spry.Data.initRegionsOnLoad' ist Null oder kein Objekt Zeile: 4855 Zeichen: 65 Code: 0 URI: http://www.atcongress.com/_spryAssets/SpryData.js

More info on my trial & error process -  error still in this case...
I cleaned up the code in both the problematic file and the source file that they validate fine now wit the W3C validator:
http://validator.w3.org/check?uri=http://www.atcongress.com/programme/continuousLearningBy Name.html&charset=(detect+automatically)&doctype=Inline&ss=1&outline=1&group=0&No200=1&ver bose=1&st=1&user-agent=W3C_Validator/1.1
Data source file:
http://validator.w3.org/check?uri=http%3A%2F%2Fwww.atcongress.com%2Fprogramme%2Fcontinuous LearningTable.html&charset=%28detect+automatically%29&doctype=Inline&ss=1&outline=1&group= 0&No200=1&verbose=1&st=1&user-agent=W3C_Validator%2F1.1
I'd also like to mention again that the source html file also contains an HTML data set and spry code. No problems there.
In  order to make sure that is not a problem of referencing external data I  also tried copying and pasting the source data table into the  problematic file so that it can be used as a local data source. Still  the same.
Apparently the probem is the master/detail region part.  The working HTML spry file uses a standard HTML table whereas my  problematic one uses a master/detail region
ANY help would be greatly appreciated!

Similar Messages

  • I just downloaded the latest Windows updates, now videos online will not work on Firefox but will on other browsers, anyone else having this problem?

    After downloading the latest Windows updates I found that I could not play videos on YouTube or at other sites. Switching to other browsers I found I could play those same videos now without any problem. So I did a System Restore to determine if the Windows updates had affected video play using Firefox. The restore point was set to the day before the Windows download occurred. After System Restore was completed I could now play videos using the Firefox browser.
    To make sure that the Windows update was the problem, I again downloaded the newest Windows Updates and once again could not play videos on any site using Firefox. System restore was used to again reset my computer to the day before and once again the videos would ow play in the Firefox browser.

    Actually your reply took me in another direction and I found this on the Adobe site:
    The RealPlayer extension for Firefox, Downloading & Recording, has compatibility issues with Flash Player 11.3. If RealPlayer is installed Flash Player content does not appear. YouTube provides an error message when you try to watch a video.
    As a workaround, do the following:
    Start RealPlayer.
    Click the RealPlayer icon in the upper-left corner and select Preferences.
    Select Download & Recording in the left menu and deselect Enable Web Download & Recording for These Installed Browsers option.
    Click OK and restart Mozilla Firefox.
    Once I followed this I could now again play videos in Firefox.

  • Macbook air not detecting home wifi but detecting all other networks in vicinity. Other devices are able to connect to home network.

    I have had this problem since yesterday. My macbook air is not detecting the home wifi network it used to be connected to. A manual addition of the network is also not working. I also tried using network utility which gives the details of all networks available and their details, but the home network does not feature there.
    However, my iPhone is able to connect to the home wifi without a glitch. I am right now using a mobile data card to access internet, but need to get back to the home network.
    I found various users posting the same problem online, but am yet to find a conclusive problem. Here are two threads on apple support which are similar to my case.
    https://discussions.apple.com/thread/2445976?threadID=2445976
    https://discussions.apple.com/message/10695921?messageID=10695921&start=1#106959 21?messageID=10695921&start=1
    Please help!

    It was not working for me either and I spent a day looking at things other people did when they had similar problems. Never could find a conclusive response and what has been suggested here was always almost the only thing mentioned. I wish you luck and hopefully someone can actually point out the one true thing that is doing this!
    This is the exact sequence of events: I switched off the main supply to the house when I was going out, and when I came back this problem occurred. I was searching desperately online and just when I had given up, I decided to switch mains off and then back on. It picked up the wifi, and has been working since. This was a shocker and mostly a coincidence. Wont hurt to try.

  • HTML Data Set not created?

    I have created a very basic page to test (and learn) about dynamic spry regions, but the data set constructor does not seem to be instantiating the data set.  At this point I'm keeping it very simple just to see how things work.
    Per the Spry Framework documentation, I moved the framework include files into my site and I created a table in a separate .html file containing only the table, fotm_db_frag.html, as a fragment.  The table is simple; opening it in DW CS3 shows it's well formed with a header row and data rows.  It's id tag is set to "dsFotm"
    Here's the entire page file so far:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xmlns:spry="http://ns.adobe.com/spry/">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <!--Link the Spry libraries-->
    <script type="text/javascript" src="includes/SpryData.js"></script>
    <script type="text/javascript" src="includes/SpryHTMLDataSet.js"></script>
    <!--Create a data set object-->
    <script type="text/javascript">
    var dsFotmdb = new Spry.Data.HTMLDataSet("fotm_db_frag.html", "dsFotm");</script>
    dsFotmdb.setColumnType("Date", "date")
    </head>
    <body>
    <div id="container">Content for  id "container" Goes Here</div>
    </body>
    </html>
    At this point, I select the content of the container div and attempt to use visual aids to insert a spry region, but the dialog that pops up says that no data sets have been defined.  I tried saving the file, I looked at Testing server options (left this set at None), I looked in the help to see if there was anything I needed to do in order for the script to run ... but I couldn't find anything that would make the new constructor instantiate data set dsFotmdb.
    Help please !!!
    BTW:  before starting all this, I downloaded Spry 1.6.1 Framework and updated my copy of DW CS3 with the spry updater (that all seemed to work).

    Try making a simple XML file and Dataset to see if that works
    Call this Test.xml
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    - <!-- Just a Text -->
    - <CATALOG>
    - <CD>
    <TITLE>Empire Burlesque</TITLE>
    <ARTIST>Bob Dylan</ARTIST>
    <COUNTRY>USA</COUNTRY>
    <COMPANY>Columbia</COMPANY>
    <PRICE>10.90</PRICE>
    <YEAR>1985</YEAR>
    </CD>
    - <CD>
    <TITLE>Hide your heart</TITLE>
    <ARTIST>Bonnie Tyler</ARTIST>
    <COUNTRY>UK</COUNTRY>
    <COMPANY>CBS Records</COMPANY>
    <PRICE>9.90</PRICE>
    <YEAR>1988</YEAR>
    </CD>
    - <CD>
    <TITLE>Greatest Hits</TITLE>
    <ARTIST>Dolly Parton</ARTIST>
    <COUNTRY>USA</COUNTRY>
    <COMPANY>RCA</COMPANY>
    <PRICE>9.90</PRICE>
    <YEAR>1982</YEAR>
    </CD>
    - <CD>
    <TITLE>Still got the blues</TITLE>
    <ARTIST>Gary Moore</ARTIST>
    <COUNTRY>UK</COUNTRY>
    <COMPANY>Virgin records</COMPANY>
    <PRICE>10.20</PRICE>
    <YEAR>1990</YEAR>
    </CD>
    - <CD>
    <TITLE>Eros</TITLE>
    <ARTIST>Eros Ramazzotti</ARTIST>
    <COUNTRY>EU</COUNTRY>
    <COMPANY>BMG</COMPANY>
    <PRICE>9.90</PRICE>
    <YEAR>1997</YEAR>
    </CD>
    - <CD>
    <TITLE>One night only</TITLE>
    <ARTIST>Bee Gees</ARTIST>
    <COUNTRY>UK</COUNTRY>
    <COMPANY>Polydor</COMPANY>
    <PRICE>10.90</PRICE>
    <YEAR>1998</YEAR>
    </CD>
    - <CD>
    <TITLE>Sylvias Mother</TITLE>
    <ARTIST>Dr.Hook</ARTIST>
    <COUNTRY>UK</COUNTRY>
    <COMPANY>CBS</COMPANY>
    <PRICE>8.10</PRICE>
    <YEAR>1973</YEAR>
    </CD>
    - <CD>
    <TITLE>Maggie May</TITLE>
    <ARTIST>Rod Stewart</ARTIST>
    <COUNTRY>UK</COUNTRY>
    <COMPANY>Pickwick</COMPANY>
    <PRICE>8.50</PRICE>
    <YEAR>1990</YEAR>
    </CD>
    - <CD>
    <TITLE>Romanza</TITLE>
    <ARTIST>Andrea Bocelli</ARTIST>
    <COUNTRY>EU</COUNTRY>
    <COMPANY>Polydor</COMPANY>
    <PRICE>10.80</PRICE>
    <YEAR>1996</YEAR>
    </CD>
    - <CD>
    <TITLE>When a man loves a woman</TITLE>
    <ARTIST>Percy Sledge</ARTIST>
    <COUNTRY>USA</COUNTRY>
    <COMPANY>Atlantic</COMPANY>
    <PRICE>8.70</PRICE>
    <YEAR>1987</YEAR>
    </CD>
    - <CD>
    <TITLE>Black angel</TITLE>
    <ARTIST>Savage Rose</ARTIST>
    <COUNTRY>EU</COUNTRY>
    <COMPANY>Mega</COMPANY>
    <PRICE>10.90</PRICE>
    <YEAR>1995</YEAR>
    </CD>
    - <CD>
    <TITLE>1999 Grammy Nominees</TITLE>
    <ARTIST>Many</ARTIST>
    <COUNTRY>USA</COUNTRY>
    <COMPANY>Grammy</COMPANY>
    <PRICE>10.20</PRICE>
    <YEAR>1999</YEAR>
    </CD>
    - <CD>
    <TITLE>For the good times</TITLE>
    <ARTIST>Kenny Rogers</ARTIST>
    <COUNTRY>UK</COUNTRY>
    <COMPANY>Mucik Master</COMPANY>
    <PRICE>8.70</PRICE>
    <YEAR>1995</YEAR>
    </CD>
    - <CD>
    <TITLE>Big Willie style</TITLE>
    <ARTIST>Will Smith</ARTIST>
    <COUNTRY>USA</COUNTRY>
    <COMPANY>Columbia</COMPANY>
    <PRICE>9.90</PRICE>
    <YEAR>1997</YEAR>
    </CD>
    - <CD>
    <TITLE>Tupelo Honey</TITLE>
    <ARTIST>Van Morrison</ARTIST>
    <COUNTRY>UK</COUNTRY>
    <COMPANY>Polydor</COMPANY>
    <PRICE>8.20</PRICE>
    <YEAR>1971</YEAR>
    </CD>
    - <CD>
    <TITLE>Soulsville</TITLE>
    <ARTIST>Jorn Hoel</ARTIST>
    <COUNTRY>Norway</COUNTRY>
    <COMPANY>WEA</COMPANY>
    <PRICE>7.90</PRICE>
    <YEAR>1996</YEAR>
    </CD>
    - <CD>
    <TITLE>The very best of</TITLE>
    <ARTIST>Cat Stevens</ARTIST>
    <COUNTRY>UK</COUNTRY>
    <COMPANY>Island</COMPANY>
    <PRICE>8.90</PRICE>
    <YEAR>1990</YEAR>
    </CD>
    - <CD>
    <TITLE>Stop</TITLE>
    <ARTIST>Sam Brown</ARTIST>
    <COUNTRY>UK</COUNTRY>
    <COMPANY>A and M</COMPANY>
    <PRICE>8.90</PRICE>
    <YEAR>1988</YEAR>
    </CD>
    - <CD>
    <TITLE>Bridge of Spies</TITLE>
    <ARTIST>T'Pau</ARTIST>
    <

  • Paged view data set not working

    Help - I'm new to spry and web design in general, I'm
    attempting to create a spry table pulling data from an xml file
    which works fine, but the xml file has 70+ records so I want to use
    the SpryPagedView.js function, but when I add the code for the
    SpryPagedView data set the browser displays the following error in
    a red box at the bottom right of the page saying "failed to
    retrieve data set (pv1) for spry:repeat".
    What am I doing wrong???
    The html is as follows: -
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml"
    xmlns:spry="
    http://ns.adobe.com/spry">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Untitled Document</title>
    <script src="SpryAssets/xpath.js"
    type="text/javascript"></script>
    <script src="SpryAssets/SpryData.js"
    type="text/javascript"></script>
    <script src="SpryAssets/SpryPagedView.js"
    type="text/javascript"></script>
    <script type="text/javascript">
    var ds1 = new Spry.Data.XMLDataSet("extlist.xml",
    "Root/Row"});
    var pv1 = new Spry.Data.PagedView(ds1,{ pageSize:20 });
    </script>
    <link href="style.css" rel="stylesheet" type="text/css"
    />
    </head>
    <body>
    <p>
    <input type="button" value="First"
    onclick="pv1.firstPage();" />
    <input type="button" value="Prev"
    onclick="pv1.previousPage();" />
    <input type="button" value="Next"
    onclick="pv1.nextPage();" />
    <input type="button" value="Last"
    onclick="pv1.lastPage();" />
    </p>
    <div spry:region="pv1" spry:repeatchildren="pv1">
    <table>
    <tr>
    <th>First Name</th>
    <th>Surname</th>
    </tr>
    <tr>
    <td>{First_Name}</td>
    <td>{Surname}</td>
    </tr>
    </table>
    </div>
    </body>
    </html>
    and the XML is laid out as follows: -
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <Root xmlns:xsi="
    http://www.w3.org/2001/XMLSchema-instance">
    <Row>
    <Surname>Blogs</Surname>
    <First_Name>Joe</First_Name>
    <Ext>2279</Ext>
    <DDI>657912</DDI>
    </Row>
    </Root>

    Bannana fingers wrote:
    > Help - I'm new to spry and web design in general, I'm
    attempting to create a
    > spry table pulling data from an xml file which works
    fine, but the xml file has
    > 70+ records so I want to use the SpryPagedView.js
    function, but when I add the
    > code for the SpryPagedView data set the browser displays
    the following error in
    > a red box at the bottom right of the page saying "failed
    to retrieve data set
    > (pv1) for spry:repeat".
    > What am I doing wrong???
    If the following is your exact code:
    > var ds1 = new Spry.Data.XMLDataSet("extlist.xml",
    "Root/Row"});
    > var pv1 = new Spry.Data.PagedView(ds1,{ pageSize:20 });
    Then the issue may be that you have a } after "Root/Row"
    which could cause an error in the creation of the ds1 dataset.
    HTH
    Danilo Celic
    |
    http://blog.extensioneering.com/
    | WebAssist Extensioneer
    | Adobe Community Expert

  • Help for date field not working after upgrade

    hi experts,
    In our BSP application for a page we had an inputfield (date).
    Onvaluehelp for input field we were calling the saphelpdate function.
    however after upgrade this functionality is not working properly as no pop up comes after clicking on the icon.
    we have upgraded to SPS 16 recently.
    please help me.
    regards,
    Arvind.

    Hi, I try upper case but nothing happen. This is all my code by far, I hope you can help me:
    DATA: BEGIN OF T_PCONT OCCURS 0,
          PCONT LIKE ZPSPERMISOS-PSOBKEY,
    END OF T_PCONT.
    DATA: BEGIN OF T_FIELDS OCCURS 0.
            INCLUDE STRUCTURE help_value.
    DATA END OF T_FIELDS.
    DATA: BEGIN OF T_VALUES OCCURS 0,
          VALUE(60) TYPE c.
    DATA: END OF T_VALUES.
    DATA: N TYPE i.
    SELECTION-SCREEN BEGIN OF BLOCK  b20 WITH FRAME TITLE text-b02.
      SELECT-OPTIONS:
        P_CONT FOR  ZPSPERMISOSH-PSOBKEY OBLIGATORY NO-EXTENSION NO INTERVALS,
        P_INT  FOR  ZPSPERMISOSH-PARTNER OBLIGATORY NO-EXTENSION NO INTERVALS,
        P_FEC  FOR  ZPSPERMISOSH-ZFINICN NO-EXTENSION NO INTERVALS,    
        P_RAZ  FOR  ZPSPERMISOSH-ZRAZONFINIC NO-EXTENSION NO INTERVALS.
    SELECTION-SCREEN END OF BLOCK b20.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_CONT-LOW.
      PERFORM P_HELP_P_CONT USING P_CONT-LOW.
    *&      Form  P_HELP_P_CONT
    FORM P_HELP_P_CONT  USING P_P_CONT.
      DESCRIBE TABLE T_PCONT LINES N.
      IF N EQ 0.
        T_FIELDS-FIELDNAME  = 'PSOBKEY'.
        T_FIELDS-TABNAME    = 'ZPSPERMISOS'.
        T_FIELDS-SELECTFLAG = 'X'.
        APPEND T_FIELDS.
        CLEAR T_FIELDS.
        SELECT PSOBKEY FROM ZPSPERMISOS
        INTO  TABLE T_PCONT.
        SORT T_PCONT BY PCONT.
      CALL FUNCTION 'HELP_VALUES_GET_WITH_TABLE'
        EXPORTING
          CUCOL        = 10
          CUROW        = 1
          TABNAME      = 'T_PCONT'
          FIELDNAME    = 'PCONT'
        IMPORTING
          SELECT_VALUE = P_P_CONT
        TABLES
          FIELDS       = T_FIELDS
          VALUETAB     = T_VALUES.
    ENDFORM.                    " P_HELP_P_CONT
    Edited by: J. Garibaldi on Nov 25, 2009 11:14 AM
    Edited by: J. Garibaldi on Nov 25, 2009 11:16 AM

  • Urgent Help! Flash Links not working on PC but fine on Mac??

    I need urgent help as my client is expecting a fully working site this week and i can't seem to understand what the problem is with the site i created www.tuarard.ie. The links such as the link 'download current programme' which is on the splash page works fine on mac but not on pc. there are other various links throughout the the site as well which don't work on pc.
    Could someone please help me fix this problem. i am guessing the flash in fine but that the html is causing the problems. i am a beginner in the world of html so i know very little about it.
    any help would be greatly appreciated.
    thanks,
    Peter

    I know this is hindsight, and likely more of an opinion-based answer, but except for the original dynamic "opening" of the flash homepage there wasn't anything I saw on the pages other than the scrolling photos at the top that required flash to accomplish. Flash is cool (I use it frequently for sections of a page - banner animations, etc.), but I've found it's often more trouble than it's worth unless every section of you site will feature something amazing or compelling to use it...
    It's not search engine friendly (unless all of your text is linked externally, and even then limited), the correct player needs to be loaded on the viewer's machine to view, and it opens (generally) much slower than a standard html page...
    Having said that - I think the site looks great - and fits the feel of the content, (and worked fine on the mac and windows browsers I tried here...)

  • Kensington mouse scroll will not work in firefox but does in other apps

    In all other application my scroll works fine, but in Firefox it will not work. I have tried switching the settings and still got nothing. I also check for driver updates on the mouse driver but they are up to date.
    Running XPSP3

    hello phillbatts, the java plugin and javascript are two very different things: http://kb.mozillazine.org/Javascript_is_not_Java
    if websites report that javascript is disabled, try the following: enter '''about:config''' into the firefox address bar (confirm the info message in case it shows up) & search for the preference named '''javascript.enabled'''. make sure that it is set to '''true''' and else double-click it in order to change its value.
    if this doesn't help, please also make sure that you don't have any extensions (like noscript) installed, that might block the execution of javascript or other active content...
    <br>[[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]

  • Named destination not working in Firefox 3.6.3, other browsers are ok

    I've added several named destinations to a PDF.  Links to the named destinations within the PDF are working correctly in IE8, Safari and Chrome, but not Firefox 3.6.3.  (PC/Windows 7)
    With Firefox all the links to named destinations take you to the first page of the PDF instead of to the named destination within the PDF. I've tried changing the format of the links (a href="http://www.anysite.com/mypdf.pdf#location1") instead of (a href="http://www.anysite.com/mypdf.pdf#nameddest=location1").  No success with Firefox.  Other browsers are fine.
    I'd be interested if anyone else has had a similar issue and whether there are any successful workarounds/solutions.
    Thanks a bunch.

    The PDF contaning the named destinations was created with Acrobat 9.3.2 Professional.
    Since the links to the named destinations are working fine with IE, Chrome and Safari, I'd tend to think this is a Firefox issue, but welcome other ideas.

  • When I go to sites and on facebook it says I need to download adobe flash 11. Even when I do it dows not work. what is happening? All other search engines work.

    I can not access my games or anything on facebook when using firefox as it tells me to download flash 11. I have downloaded it and still not working.

    Use http://ninite.com/flash/ninite.exe to download and install the Flash for Firefox

  • HT201274 Facetime is still not working even after restore and all other troubleshooting is performed

    Tried restoring and all other troubleshooting and still cannot obtain Facetime on my phone - have others had this problem and if so how di you resolve the problem?  Please help.

    Which version of Lightroom? Which operating system?

  • My gmail Contacts will not load in Firefox, but OK in other browsers Please advise

    For months now, in each versions of Firefox, when I open my gmail and click of Mail/Contacts, an''' oops''' error message appears, and the Contacts will not load. However, in other browsers, IE and Chrome there is no problem, so it '''has''' to be a Firefox problem. Please help to solves this.

    Reload web page(s) and bypass the cache.
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration 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

  • The bottom bar, which shows the URL, the "lock" on secured sites, etc, is NOT THERE on firefox but is on other browsers. What can I do?

    As above, the bar across the bottom, which shows the URL, the "lock" symbol on secure sites, etc., IS NOT THERE on any firefox page I open. It is there on other browsers but I would like to continue using firefox. What should I do?

    In Firefox 4 and later you no longer have the Status bar that showed the padlock in previous Firefox versions.<br />
    The padlock only shows that there is a secure connection and doesn't guarantee that you are connected to the right server.<br />
    So you might still be connected to the wrong server if you make a typo in the URL and someone has claimed that mistyped URL.
    The functionality of the padlock has been replaced by the [[Site Identity Button]] on the left end of the location bar.
    See also:
    * http://www.dria.org/wordpress/archives/2008/05/06/635/
    * https://support.mozilla.com/kb/Site+Identity+Button
    * http://www.mozilla.com/en-US/firefox/security/identity/
    You can use this extension to get a padlock on the location bar.
    *Padlock: https://addons.mozilla.org/firefox/addon/padlock-icon/

  • Internet suddenly not working - network diagnostics disagrees.  All other ccomputers in house are fine.

    I am running 10.6.8.  Suddenly yesterday without warning my browsers were no longer able to connect to any page.  Network diagnostics claim that "internet appears to be working correctly".  Restarted airport.  Restarted computer.  Other computers in house connecting just fine.  Tried pinging ggoogle.com in terminal.  Haven't tried connecting to other networks.
    Ideas?  Thanks in advance.

    The OP tells us he has already done that.   Might be worth shutting down your machine, unplugging all unnecessary accessiories, wait a minute or so then restart without the accessories.

  • Safari not playing Quicktime from new website, all other browsers can

    Hi, I have a new web site being created. The developer has most of it done but has not been able to get the quicktime movies working correctly. The movies, animations, and panos, can be selected and play from Firefox on the MAC and PC, and IE on the PC.
    Our problem is that these same movies do not show or play on Safari on the MAC. we just get a big "Q". The developer is a pc guy and has no way to get it working, he's tried it for months and everyday it's just a day away. Does anyone have some code or know what is going on and how to fix it. This is most frustrating. I would like to change developers but we are too far into the project to do that now. Thanks in advance for any information.
    g5   Mac OS X (10.4.5)  

    Welcome to Apple's user-to-user discussion forums.
    Can you give us the address of your site so folks here can take a look?

Maybe you are looking for

  • Is there a limit to the number of mails that Mail can import?

    I'm importing from the last Time Machine backup of my MacBook Pro to a new iMac. The import gets stuck at 72k so I can't set up mail. I know it's nuts to have 100k of messages and I'll be doing something about that, but for now I need to get Mail wor

  • Time Machine no longer working on Macbook Pro

    I am at my wits end, have 2 Macbook Pro'sand one no longer backups up in TM (simply spins forever in 'Preparing Files'). I upgraded to Snow Leopard, which exposed the bad disk, and had both the disk replaced and OS re-installed. Still no luck, it sim

  • G/L account restricted list in SC

    Hi Gurus, Is there a standard way to restrict G:L accounts list in SC G/L account match code? Thanks in advance.

  • Move DP and DS (7) from Solaris to Linux

    Hi, I'd like to move my running DP and a couple of DS from a Solaris i386 to a Linux machine. a) Would a simple tar/cp from source to destination work (for same arch)? b) Would dpadm backup/restore as well dsadm/dsconf backup/restore work? best regar

  • Urgent - Performance tuning

    The following code takes more execution time..How can we reduce the execution time through performance tuning.. SELECT DISTINCT bebeln AS bktxt bebelp amblnr avgart bbwart bmatnr bwerks blifnr bmenge bebeln b~erfmg INTO CORRESPONDING FIELDS OF TABLE