CF8 AJAX CFC doesn't work on site

I have two websites running under the same ColdFusion installation.    I have an autolook up CFC that works on one website and not the other.   Same code, etc.   Both IIS websites have the same access to the CFIDE directory.
I get a whole bunch of ugly errors using Firefox debugger:
Warning: reference to undefined property o.stopPropagation
Source File: https://mysite/CFIDE/scripts/ajax/ext/ext-core.js
Line: 17
but I get those on the site that is working too.   Same code, same file - just two different web addresses using the same CF installation.   This is making me crazy!

I have an autolook up CFC that works on one website and not the other.
Can you elaborate on what you mean by "doesn't work"?  What does it do that is different from when it does work?
I get a whole bunch of ugly errors using Firefox debugger:
Warning: reference to undefined property o.stopPropagation
Source File: https://mysite/CFIDE/scripts/ajax/ext/ext-core.js
Line: 17
but I get those on the site that is working too.
Whether or not it's part of your current problem, you're gonna want to fix those as well.  It's not a very good look having JS errors pop-up.  Or indeed have the JS not working ;-)
Adam

Similar Messages

  • Running MacOS 10.6.8 & FF 3.6.17, upgrade popup to 3.6.20 doesn't work (just sits and spins forever) - any suggestions?

    I have a MacBook Air running MacOS 10.6.8 and am using FireFox 3.6.17. I get an auto upgrade popup suggesting that I upgrade to 3.6.20. However, when I select to perform the upgrade, the download box comes up and acts like it is downloading, but it never actually downloads the upgrade. I tried version 4.0, but that didn't work right, so I would like to say with version 3.6, but would like the latest upgrades if possible.

    Ran the OS X verify and repair util it fixed a fair few permission issues, then tried to add in a 2nd sample in logic - re-indexed still showing the first initial sample.

  • Email link doesn't work when site published

    OKAY...I entered as a hyperlink my email address in my website..
    It is a gmail account and everytime you hit the link on the website, it takes you to gmail to sign in.
    I also have one on the site that is a hotmail account and it too goes to gmails sign in page.
    Whats up with that?
    I thought it was supposed to open an email for the person to send?
    PLEASE advise what I might be doing wrong?
    Kathi

    Highlight your text or image link, select "Link to: An email message" in the Link inspector. Enter your email address and the Subject.

  • Ajax cfc issue -- indeterminent error msg

    I have one ajax cfc app that works fine.  This app uses the file name from the browse button on the file input object that is passed to my proxy.cfc, which in turn, queries the attachments table in my db to see if this file has already been uploaded for this project.  If the file is not there, then I upload it to the server.  If it is there, I pop-up an error message to the user giving him/her the date/time it was uploaded and by whom.  These values are returned by testing code in the cfc.   It works great.
    I am now working on another app that will populate a lower-order select box in a hierarchy of select boxes based upon the new value in the current select box that has just been selected.  It seems doable, but there is an immediate error that I cannot seem to get past an error thrown by the IE error handler as an unhandled error.  This error is a “throw msg” error within the core Adobe code, which I’ve pasted in below:
    I have modeled the new app after the one that I have working.  In a effort to figure out this cause of this problem, I have even housed it in the original proxy.cfc to eliminate any question about having it in the correct location on the server. 
    At the current point, I am only trying to return an input value from the app, getAreasRmt.  Here are the calling and called code.  The line in the calling code that generates the error is the one where I call the cfc function: “alert (‘Rtnd BuGrpID: ‘ + areaProxy.getAreasRmt(….)));”
    Calling JS:
    getAreasRmt:
         This code will eventually pass back a structure containing all of the areas whose Business Group ID is sBuGrpID. 
         I am running CF8 on a W2003 x64 server with IIS 6.0.
         Thanks in advance for any help/suggestioins.
    Len

    Folks,
    This is my first attempt to bind a CFC to a <cfselect> so I may be missing something very basic that everyone elses knows.
    I've made some progress on this issue, but I'm not sure I'm actually moving forward.   After Googling, reviewing CF8 books and searching this site, I have converted this over to binding my CFC to a <cfselect>, which then calls the procedure within the cfc.  I've also started using cfdebug and FireBug from time to time to try to gain some insight into what is happening.
    But I think that I'm just at a different form of the original error message.  Here is the error from the Ajax Debug Log window:
    window:global: Exception thrown and not caught (http://192.168.1.100/CFIDE/scripts/ajax/package/cfajax.js, line 798) [Note: 798 could be the loction of the original error.  Or not]
    info:http: CFC invocation response:{"COLUMNS":["LOCATIONNAME","LOCATIONID"],"DATA":[["CDPG BOARDS",1],["CDPG Boxed Processor",12],["DIJIC",13],["EPSD BOARDS",2],["EPSD SYSTEM",3],["KM-RDV",4],["LAD",5],["MCPD",6],["MWG",7],["New BOARDS",9],["NEW_BIZ-RDV",11],["NPG",10],["OPD",8],["TestBus",14],["Testing ",15]]}
    info:http: HTTP GET /PHREDsevenInternal/Templates/hierchy.cfc?method=getLocs&returnFormat=json&argumentCollec tion=%7B%7D&_cf_nodebug=true&_cf_nocache=true&_cf_clientid=999030C7709D5E20E12A17ED431EFB2 A&_cf_rc=0
    info:http: Invoking CFC: /PHREDsevenInternal/Templates/hierchy.cfc , function: getLocs , arguments: {}
    info:LogReader: LogReader initialized
    info:global: Logger initialized.
    It is returning the query from the CFC finally. I'm assuming that if there would not have been an error, then the query would have been loaded into the <cfselect> that called it.
    Here is the latest version of both sides of the cfc binding:
    Call side:
    <cfselect bind="CFC:hierchy.getLocs()" bindonload="true" value="LocationID" display="LocationName" name="Location" />
    Here is the CFC code:
    <cfcomponent output="false">
    <!--- Test to see if the passed-in name is in the db already --->
    <cffunction name="getLocs" access="remote" returntype="query">
      <cftry>
        <cfquery name="getLocQry" datasource="PHREDsevenInternalSQL">
         SELECT LocationName,LocationID
         FROM Locations
         ORDER BY LocationName
        </cfquery>
        <cfcatch type="Any">
         <cfdump var="#getLocQry#">
        </cfcatch>
      </cftry>
      <cfreturn getLocQry>
    </cffunction>
    </cfcomponent>
    Question about location of the CFC.  I prefer to keep all my CFC's in a CFC directory so that they can be reuseable.  I tried both relative and full location methods but neither worked.  If it didn't find the CFC, then it would throw an error telling me that it didn't find it, but I could not get the query to run and return the info you see above until I moved it into the directory where the calling cfm lives.  Is there some mystical/magically method for letting CF know where it is if it isn't in the invoking directory?  I know that if I were invoking a CFC that I would have to use the full path dotted method.   I actually did that here but it didn't get me a result back.  It just told me that I needed to return a 2D arrary or serialized query, which told me that I wasn't actually running the query even though CF could not find it.  Or I think that is what it meant.
    I'm at a total loss as how to proceed.  I've spent 4 days on this now and need to get this issue resolved.
    Thanks again for any suggestions/help on this matter.
    Len

  • Youtube doesn't work on https: in Firefox 20

    YouTube stop working via https after I updated from Firefox 19.0.2 to 20.0.1. But via http it works fine. Also embedded YouTube doesn't work on sites that use src=https:// and works on that use src=http:// ones. Everything working fine as I roll back to 19.0.2 and stop working after re-update.
    I've tested the Safe Mode — the same effect, doesn't help.
    I've tested new profile — everything seems fine, YT works via http and https.
    So, if there's no clear solution to my problem, is there any way to dump full 'about:config'-config to diff with default one?

    hello reiser, this issue is likely caused by the following configuration you've performed in about:config: ''security.mixed_content.block_active_content: True'' & ''security.mixed_content.block_display_content: True''.

  • XMLhttprequest doesn't work in safari

    i have a website and it works fine in Internet Explorer, but the website doesn't work in Safari.
    i use xmlhttprequest to get data from the database and that data i want to put in an selectbox.
    i have multiple selectboxes and the first one i don't use ajax to get the data and that one works fine. but as soon as i use ajax it doesn't work anymore in safari.
    this is the function i call to get the data.
    function UpdateOrder(custid)
          var xhrrequest = getXhr();
              // Ici on va voir comment faire du post
          xhrrequest.open("GET","ajax/UpdateOrder.php" +"?q=" + custid, true);
          // ne pas oublier ?a pour le post
          xhrrequest.setRequestHeader('Content-Type','application/x-www-form-urlencoded') ;
          xhrrequest.send("bedrijfsnaam="+custid);
          // On d?fini ce qu'on va faire quand on aura la r?ponse
          xhrrequest.onreadystatechange = function(){
           // On ne fait quelque chose que si on a tout re?u et que le serveur est ok
           if(xhrrequest.readyState==4 && xhrrequest.status==200){
            var string=xhrrequest.responseText;
            var array=eval(string);
            var tdaddress = document.getElementById("tdorderid");
            var selectiebox = document.getElementById("selorderid");
            if (array.length > 0)
             //selectiebox vullen met straatnamen
             var splarray = array.toString();
             var strarray = splarray.split(",");
             var i=0;
             for(i=0; i< strarray.length; i++)
              var oOption=document.createElement("option");
              oOption.setAttribute(i,strarray[i]);
              oOption.setAttribute('value',strarray[i]);
              var oText=document.createTextNode(strarray[i]);
              oOption.appendChild(oText);
              selectiebox.appendChild(oOption);
    i also viewed the errorlog and there it said:
    Failed to load resource: the server responded with a status of 404 (Not Found)
    INVALID_CHARACTER_ERR: DOM Exception 5: An invalid or illegal character was specified, such as in an XML name.
    can anyone help me please?

    it works. there were some problems with the select box. the way it was created didn't work in safari and chrome. but now it does

  • I'm trying to set up a new feed reader (Brief) using Live Bookmarks but the suscribe button doesn't work. Anyone got a solution to this?

    I'm currently using Google reader for my feeds but Google is discontinuing it in July. So I need a new feed reader option. I am trying to set up the Brief add-on as my reader, using Live Bookmarks but when I attempt to subscribe to a feed, the subscribe button doesn't work.

    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''

  • Hello, My web site is using the javascript function transformDocument but it looks like it doesn't working in version 6

    Hello,
    My we site is using a lot of ajax, and I have a function transformDocument that it doesn't works in version 6.
    Please help!!!

    Thanks a lot!!

  • FF4b - AJAX features don't work on most sites

    AJAX stuff doesn't seem to work on a lot of sites. For example I can't get users' video lists on YouTube, the site just says it's loading endlessly.
    Other sites like Google Reader are unusable because they rely on AJAX to fetch info every time you load the page. Everything works fine on other browsers though.
    == URL of affected sites ==
    http://www.google.com/reader/

    You can try to disable Firebug.
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    You can use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    You have to close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • Adobe 10.2 flash player doesn't work on some site with diff browsers

    WTF! I've been through every forum about new adobe flash player it doesnt work on some site i.e facebook, ustream, fox news, dailymotion and cartoon network...Nobody, not even adobe has a real solution to this problem! Some site stream good other don't at all. All I get is a blue box in the display sometimes it loads, but doesn't play the video or games. Updated Java and SWF and by the way this a brand new computer fresh out the box WIN7 64 worked before why not now! I've reinstall and uninstall, checked active X java scripting, and global settings and so on, but nothing seems to work. WHY? Global settings doesn't work for some unknown reason can't enable some of the settings. Everything work fine on my PC before the update, so go figure adobe. No! browser works with the new flash player properly. Fire, IE, Safari, and Opera none of these browser work with the flash player like it should! HELP!!! "I see why apple doesnt wont to have anything to do with adobe flash."

    I don't understand - in your post you mention "new Flash Player" several times, but in the subject you mention 10.2...?
    What is the exact FP version you have?
    For your blue box problem, have you tried to disable Hardware Acceleration?

  • Ever since I upgraded to firefox 5, a site that required flash player doesn't work - it worked with the older version

    A site that worked on your old version doesn't work anymore. When I go to the page it says to download a plugin, but then it comes up with "no suitable plugins were found." I believe the site requires flash player. I have reinstalled it and it works with other programs that require it.

    I wasn't able to get to any of those sites without having serious hanging issues. I just uninstalled Flash, rebooted, then reinstalled it. Everything seems to be working fine now.

  • I upgraded my 3 yr old iMac to Snow Leopard and now my HP C4150 Scanning function doesn't work (not recognized).  I downloaded updated Drivers from the HP site, but still no joy.  Any suggestions?

    I upgraded my 3 yr old iMac to Snow Leopard (OS X 10.6) and now my HP C4150 Scanning function doesn't work (not recognized).  I downloaded updated Drivers from the HP site and installed them, but still no joy.  Any suggestions?

    aspaceman,
    Perhaps I owe you an apology.   Having re-read that downloading from HP was unsuccessful I feel uncomfortable.  Can I suggest you update your 10.6 system (as noted in your profile) to 10.6.8 (if it is not already there) by using the
    Mac OS X 10.6.8 Update Combo v1.1 combo update plus any software updates that then apply.  

  • HT5706 I am trying to set up Apple TV with my Uverse WiFi, but I get errors when entering my password.  One site said that Apple TV doesn't work with WPA which Uverse uses.  Is there anyway around this or will Uverse and Apple TV just not work together.

    Trying to set up Apple TV with ATT Uverse.  I get errors when trying to enter my WiFi password.  One site says that Apple TV doesn't work with Uverse because it uses WPA for encryption.  If true, does that mean Uverse subscribers cannot use Apple TV?

    Spurs63 wrote:
    does that mean Uverse subscribers cannot use Apple TV?
    No, that's a rather silly conclusion.
    There are two options:
    stop using the crappy router provided by the ISP.
    Physically connect the ATV to the router via Ethernet.

  • Why doesn't my javascript site work in Safari? (works on PC/IE)

    Can I find a site that details the problems that Safari has in correctly parsing javascript and/or rendering HTML generated by that javascript?
    My site has some frames, some document.write()'s, some simple on-the-fly pages with nothing fancy, some pictures, some links, totally not rocket science. It works great on PC/IE but none of the Mac browsers (incl. IE5 and FireFox and especially Safari) will handle it. They kinda sorta run SOME of my script, but they have lots of errors and the site just "doesn't work right" anywhere but in IE on Windows. I didn't use any code that's Windows-specific, either.
    I am seriously not going to do a browser detection and write multiple sets of codes for the various browsers (God, how many are there? over a hundred according to w3.org) ... it just ain't gonna happen, so spare me that lecture cuz I've been there before and I ain't going back.
    Am I screwed? or does somebody out there actually know how to handle this. Woe to us all, from the lack of standards on the web! How do we put up with it?
    I really appreciate any insights and assistance dealing with this. Thanks!
    -- töff
    g5   Mac OS X (10.3.9)   meh

    Welcome to Apple Discussions
    Wish I could help you but creating java code is not one of my strengths. I do create the pages on my web site though (using GoLive CS). I'm amazed how differently each browser renders the page. I came across this site via a Google search. It may be germane to your question?
    You may have better success though posting your question on the MacFixit Internet forum.
    Good Luck.
    iMac G5 Rev C 20" 2.5gb RAM 250 gb HD/iBook G4 1.33 ghz 1.5gb RAM 40 gb HD   Mac OS X (10.4.8)   LaCie 160gb d2 HD Canon i960 printer

  • Create a PDF from webpage using entire site option doesn't works

    OK, guys, this is the problem...
    After YEARS of testing from Acrpbat 4 thru 9 on Create a PDF from webpage using entire site option... it doesn't works properly and doesn't got the entire site. ALWAYS get an error of memory or any other error but FINALLY you NEVER got the entire site. I'm talking for a big website... not like amazon.com, but a big one.
    I make a walkarround to try to capture the website in parts but Acrobat is not "intelligent" to make a resume capture of the site, because ALWAYS start from the begining instead from the resume position of the site...
    My question is, HOW can get the ENTIRE SITE in a PDF document... without getting errors or stopping the capture process...
    Don't have problem of low RAM memory because I'm in a MONSTER MACINTOSH.... 3.2 GHZ with 8 Core and 32 GB of RAM under Mac OS X Leopard 10.5.6 in Acrobat 9 Pro.
    If I'm not wrong, the GET ENTIRE SITE option in Web Capture (Create a PDF from webpage using entire site option) doesn't works from Acrobat 4 thru 9 in Pro version... tested, you'll never got the entire site... I'm talking in capture a huge entire site and not a little one...
    Can someone help me?
    Thanks.

    Ok so I go to a web page and select something to print. Once I've clicked print I switch over from printer/micosoft xps docu writer/fax and select Adobe PDF. All goes through with a 'Create Adobe PDF' coming up progressing through to eventually save and store. Once I open the file it end up as the picture above. I have the same version on another computer and that works fine but this particular Sony laptop it doesn't seem to work properly. 

Maybe you are looking for

  • Task Not Appearing in UWL

    Hi All,    I have able to build a process & deployed Successfully. Also am able to see the Proicess Instance ID as well as Task Id in Manage Process & Manage Task respectively. But am not able to see the Task in UWL. I am using Local system ie.., bot

  • Apple AV component cable problem

    Hi I'm new, i hope you can help me! my brother gave me the Apple AV component cable (audio: red white, video: red green blue), I was very happy about it and wanted to try it on my tv, but then i recognized that my tv doesn't has the red green and blu

  • Pages Textwrapping to Next Page

    Hey guys, Sorry if this is redundant with another topic. It's only my 2nd day on a Mac so I'm a little lost right now. In Pages, I've noticed that text seems to wrap an entire paragraph to the second page when you are typing, leaving a large amount o

  • Dynamic wsdl

    We have an application where some attributes are known in advance, and described in the WSDL. We call a web service using the WSDL and everything goes fine. However some other attributes can be user-defined and are not known in advance to the applica

  • Nokia 5530XM - missing date and operator on the ho...

    hello guys, this probably seems like a total nonsense, but its kinda important for me to fix it...i dunno when, but once i looked at my home screen and i saw no date and no operator (eg. Vodafone UK)...ive tried like everything...i got the latest sof