Welcome to the Question2Answer Q&A. There's also a
demo
if you just want to try it out.
Login
Login
Register
All Activity
Questions
Hot!
Unanswered
Tags
Users
Ask a Question
About
Wiki
Welcome to the Q&A for
Question2Answer
.
If you have questions about the platform,
click here to ask
and please use English.
If you just want to try Q2A, please use the
demo
, which also grants admin access.
Apr 29:
Q2A 1.5.2
Related questions
??? encoding problem with user names disables viewing the users info?
How to solve problem with url acentuation?
how may i solve ??? encoding problem in user names?
Has anyone integrated SSO (Single Sign On) with Drupal/vBulletin?
Turkish character problem with SEF Url
problem with 'ask a question' title, it show as '[question/ask_title]:' in my ask page and ask box
how to make a tag with special character
maximum character limit when user answers question
how can i replace plus sign with dash sign in the urls for tags with more than 2 keywords?
Will this work with Joomla sign-on?
All categories
Q2A Core
(3,252)
Plugins
(356)
Question with percent sign " % " character has problem.
+2
votes
If user posted question that include percent sign,
I can't post answer or comment.
I think that is problem with Korean->UTF-8 and url encoding.
How can I automatically change this ?
special-character
asked
Apr 12, 2010
in
Q2A Core
by
xguru
Hi... xguru;
How do you fixed url encoding to korean?
Thank in advance;
mk
Hi. minnkyaw
I didn't changed url encoding. I'm just asking for browser auto conversion of Korean character.
Please
log in
or
register
to add a comment.
Please
log in
or
register
to answer this question.
1 Answer
+1
vote
Best answer
This is a bug in Q2A 1.0, not specifically related to Korean.
You can fix it by changing qa_self_html() in qa-index.php from this:
{
global $qa_rewritten, $qa_request;
$params=$_GET;
unset($params['qa-rewrite']);
return qa_path_html($qa_request, $params, null, $qa_rewritten);
}
... to this ...
{
global $qa_rewritten, $qa_request;
$params=$_GET;
unset($params['qa-rewrite']);
$requestparts=explode('/', $qa_request);
foreach ($requestparts as $index => $requestpart)
$requestparts[$index]=urlencode($requestpart);
$qa_request=implode('/', $requestparts);
return qa_path_html($qa_request, $params, null, $qa_rewritten);
}
Thanks for catching this bug! I'll release version 1.0.1 shortly with this fix (and any others that come up!)
answered
Apr 13, 2010
by
gidgreen
Please
log in
or
register
to add a comment.