Ask a Question related to Macromedia ColdFusion, Design and Development.
-
chuck1rar #1
Japanese pages
I have just upgraded from MX6 to CFMX7 on a machine that also runs apache 2.0.5
now when I open my website which is in Japanese the characters are not
displayed properly and it is just all garbage...even if I change the IE
encoding settings still not right..not sure if it is a apache thing or due to
CF???
Thanks
chuck1rar Guest
-
Japanese Fonts
Hi, Been having some problems with my Illustrator CS and trying to input japanese. I have gone as far as getting the US flag up and have changed... -
Japanese Localization
Hello I need to localize a Director 8.5 project to japanese language. What do I need to do this? There is quite a bit of text in the applictaion... -
Japanese Characters?
How do I incorporate Japanese characters into a German version of Flash MX? Is Japanese text right-to-left? Top-to-bottom? Any clues would be... -
Japanese Studio MX
I bought Studio MX from someone online and I go to install it and it's Japanese... someone please tell me I can somehow install the english... -
create html pages in japanese language
a client wants me to create a stripped down version of his website for submission to the japanese search engines. he will write the text and get a... -
PaulH #2
Re: Japanese pages
what exactly do you see when you say "not displayed properly and it is just all
garbage."? is this for text from a database or static? what encoding did you
use before? if your text is from a database, what database? what driver? is
there a page we can see?
PaulH Guest
-
chuck1rar #3
Re: Japanese pages
It is just static text and encoding before was SJIS.
So how do I set the default encoding in CFMX7?
[url]http://www.nathess.com/company/aboutus.cfm[/url]
chuck1rar Guest
-
PaulH #4
Re: Japanese pages
how was it set before? mx 6.x also defaulted to utf-8.
if you wnt the whoel cf server to run under tha encoding then in
cf_root/lib/neo-runtime.xml file change the UTF-8 in
<var name='defaultCharset'><string>UTF-8</string></var>
to Shift_JIS (or its aliases).
if you don't want to change the whole server then for just that application:
(application.cfm or in application.cfc)
<cfset setEncoding("url","shift_JIS")>
<cfset setEncoding("form","shift_JIS")>
<cfcontent type="text/html; charset=shift_JIS">
at the top of your cf pages add:
<cfprocessingdirective pageEncoding="shift_JIS">
PaulH Guest
-
chuck1rar #5
Re: Japanese pages
Yes u were right that CFMX6 used the same default and changing it to SHIFT_JIS
did not make any difference.
So I assume it must be somethign DWMX..
FOr example when u changed the encoding to ShiftJIS did u see the below text
dieplayed as this??
Is this what see as the top left menu name?
??????
Is the below text what u see on the first line of the body text
??????????????A?????????????????????????E????
If so then the body text is just garbage...it is not being encoded properly
and I have no idea why since this was fine a few days ago when I was still on
CFMX6..Any further ideas???
Thanks
chuck1rar Guest
-
PaulH #6
Re: Japanese pages
yes that's what i see for the "top left menu name". not sure which part you're
referring to for that other text snippet. if the body text is garbaged then
probably entered using a different encoding. just get your encodings straight &
you should be good to go.
PaulH Guest



Reply With Quote

