-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
charset error #44
Comments
@animaux Would this be a cool thing to do ? |
I have no idea what that line does … so I honestly don’t know. |
Did you ever had any problems with german chars ? |
I did have some problems with url-encoding and german characters. I’m not actively using the excerpt function a lot though. If I recently had a problem with XML-imported data that included UTF-ligature commands that broke processing. I wonder if this could have been avoided like this too. However, I’m only speculation and have no real insight, so still not sure if there are any other caveats. |
OK I'll leave open then. If you ever have similar problem, we will be able to work on it with that reproducible setup. |
Hi i had some issues with charset in search results. (See attach) Database and database connection use 'utf-8' charset.
I change line 414 in data.search.php:
$excerpt = utf8_encode($excerpt);
with:
$excerpt = iconv('UTF-8', 'UTF-8//IGNORE', $excerpt);
And now have right symbols in search results.
The text was updated successfully, but these errors were encountered: