Gabriel Robichaud wrote: > is this a joke? Is this really how I solve this problem?
it's one way. > I just saw this message. How on earth do i convert ALL my files? One unifier, http://www.melody-soft.com/html/unifier.html, works a treat & if you do a lot of i18n work is certainly worth $15 US. > by one? is there an easy way to do this? Can I do this in Dreamweaver? you probably don't have to do it at all. if you're happy with iso-8859-1 (which you know doesn't contain the euro symbol): in application.cfm <cfcontent type="text/html; charset=ISO-8859-1"> <cfset setEncoding("url","ISO-8859-1")> <cfset setEncoding("form","ISO-8859-1")> on each cf page: <cfprocessingdirective pageencoding="iso-8859-1"> for that mysql dsn (advanced option, connection string): useUnicode=true&characterEncoding=iso-8859-1 (not sure it could also be "iso88591", check the mysql docs). or if you want the whole server to just deliver latin-1 changed the defaultCharset value in cf_root/lib/neo-runtime.xml file: <var name='defaultCharset'><string>UTF-8</string></var>" replace utf-8 with the charset you want. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it for free with a 15 day trial account. http://www.houseoffusion.com/banners/view.cfm?bannerid=67 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:199644 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

