I moved a web site that works perfectly on multiple other servers onto a new server. We just patched the server, but I am still getting the following error:

ColdFusion is not defined
ColdFusion.Ajax.importTag('CFAJAXPROXY'); 

ColdFusion is not defined
var _cf_customers=ColdFusion.AjaxProx.../GlobalAdmin/customers.cfc','jsApp'); 

Our ColdFusion version is:

 9,0,0,251028

Because this site works on other Windows machines quite well, my guess is that this is a simple patch or update.

Can you help?

UPDATE --

This is the updated version of CF installed:

9,0,1,274733  
link|improve this question

Could it be a lack of access to the needed files in /CFIDE? – Jason Dean Sep 26 '11 at 21:43
@Jason, that might be a good hint. How could I confirm that is true? – Evik James Sep 26 '11 at 21:46
As a server-related problem, this really belongs on Server Fault. However, to answer your response to Jason's suggestion: view source to get the HTML and locate the appropriate HTML script tag (it'll look something like <script src="/cfide/something.js"></script>), then try browsing to that file directly (i.e. goto http://domain.com/cfide/something.js) and see what it comes out as - if you get a 403 or 404 error then that's the problem. – Peter Boughton Sep 26 '11 at 21:59
Just an FYI - it also looks like you aren't running the latest version of CF (9.0.1). I doubt that will solve your problem, but it might be a good idea to install the 9.0.1 updater and subsequent hotfixes. If you are using IIS for your webserver, you'll need to either add a virtual CFIDE directory pointing to your ColdFusion CFIDE folder, or copy the CFIDE folder into your webroot (although I wouldn't recommend copying the whole thing for security, just the debug and scripts folders should do). I don't know Apache well, so if that is your web front-end, you'll need to do something similar. – cfvonner Sep 26 '11 at 22:07
@Peter, thanks for that tip. The problem seems to be in the mappings. Our CF Server is running and is now updated, but the CF Administrator won't come up. It's not getting served, even though we are definitely accessing the file. Do you know how we might tweak the mappings without having the CF Administrator open? – Evik James Sep 26 '11 at 22:11
show 3 more comments
feedback

2 Answers

up vote 2 down vote accepted

You don't need a MAPPING to CFIDE, you need a web server virtual directory. IE: the CFIDE dir neds to be browsable, rather than accessible to CF code.

So make sure in IIS or Apache or whatever that you have a virtual directory for CFIDE.

That said, your CFIDE dir should not be browsable on a production machine, really. It's a bit of a security risk.

link|improve this answer
3  
Simply blocking the whole /CFIDE directory is a bit of a sledgehammer/nut solution. The /CFIDE/administrator directory should be blocked or IP restricted, (and in doing that it's important to check /CFIDE/administrator/index.cfm isn't still accessible - IIS doesn't always apply directory blocks to files), and I think otherwise only /CFIDE/scripts and /CFIDE/debug actually need web server access (the latter not publically) - but in general I think it's best for people to understand what/why they are blocking or not blocking, so an explanation along those lines would make a good answer. – Peter Boughton Sep 27 '11 at 12:29
We couldn't get anything working perfectly until our server administrator read Adam's solution. He implemented it and it worked perfectly. Neither he nor I are "CF Administrator configuration experts". He'll fix the security holes in the near future. For now, we are up and running. Thanks, Adam. – Evik James Sep 28 '11 at 13:20
TBH Peter, I disagree, but I see where you're coming from so we can just agree to disagree, perhaps. One shouldn't have debugging switched on in production, so the debug templates aren't needed. Equally, if if one is using CFFORM and other stuff that's deployed in the scripts dir, I'd home them elsewhere in production (and use CFAJAXIMPORT to point to the new location). It's just easier to not deploy the whole CFIDE dir at all. There's less scope for security-risk cock-ups then. – Adam Cameron Sep 28 '11 at 19:36
feedback

Is your ColdFusion installation exactly the same? IE was your old server a Standalone installation or an EAR / WAR installation? This can effect where the installer puts the /cfide/ dir.

link|improve this answer
no. I don't think the previous installation was normal which is why the update failed. We are probably just going to have to reinstall. – Evik James Sep 27 '11 at 12:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.