ColdFusion designed websites
December 22, 2006 5:22 PM
Subscribe
A question for ColdFusion gurus. A guy in our company has used ColdFusion to design a password protected website, and I need to know how it works as ColdFusion is a total unknown to me.
The ColdFusion "entry" page authenticates the clients signing in against a database and then they can view the pages. This works without a problem, but unfortunately his idea of design is horrible to say the least so everything after the sign-in page totally sucks. We have a nice looking website designed by somebody else in the office that we would like to use for the client site, but our ColdFusion guy says that he can't use or integrate anything done by somebody else that is not made using ColdFusion. So after the ColdFusion part has done its part by authenticating the client can we then just "hand it off" to the html/css site that has no ColdFusion in it at all but looks really good? Any advise or maybe a resource I can read up on over the holidays so I can go back next week and hopefully call CF guys bluff and give our client a nice looking website??
posted by 543DoublePlay to computers & internet (13 comments total)
If so, then unfortunately, your CF guy may be at least partly right, especially if he doesn't know the platform. It's generally not a good idea to mix application service providers (coldfusion, asp, perl, php, etc). Making them share authentication can be a pain in the ass. It's doable, but.....using CF to handle authentication (login) and then handing it off to some other application server (php, or something) is unlikely to be reasonably secure, especially if your developer is dweeb.
BUT. If the rest of the site is really just html/css, then ANY CF developer should be able to take the raw html and integrate it into an existing site. Part of a web programmer's JOB is to take raw HTML layout and/or designs and implement them within existing application frameworks. It's called division of labor. Designers design. Web developers develop. If he can't or is unwilling to do so, then you need to find a real developer.
One of the great things about CF is that a retarded monkey can learn the language. One of the problems is that they often do.
(As for specific resources, I'll be no help. I learned the language by reading the manual (already having years of exp. in other languages). sorry)
posted by jaded at 5:59 PM on December 22, 2006