Hey Gleb,
thanks for taking your time!
php.ini:
; As of 4.0b4, PHP always outputs a character encoding by default in
; the Content-type: header. To disable sending of the charset, simply
; set it to be empty.
;
; PHP's built-in default is text/html
default_mimetype = "text/html"
default_char
Hello.
What is the value of the default_charset variable in your php.ini file?
What version of MySQL do you use?
Florian Burkart <[EMAIL PROTECTED]> wrote:
> What might help as well is another problem I have:
>
> Somehow, the data I am getting out of mysql and php and is being served
What might help as well is another problem I have:
Somehow, the data I am getting out of mysql and php and is being served by
apache is still in iso format, and not utf8. Which leads to bad displaying
(unless i switch back to iso in the browser, but then the html stuff in utf8
gets strange (whi
mysql> show create table tbl_gruppen;
+-+--
Hello.
Your character_set_xxx variables is ok. The problem could be in
the table definition. Send the output of
SHOW CREATE TABLE tbl_gruppen;
Florian Burkart <[EMAIL PROTECTED]> wrote:
> Hey everyone,
>
> can't figure this one out, might be easy for one of you.
>
>
>
> This is
You're right. It is not related. The same output are shown as before.
However, the links you gave me was quite useful. I re-read and
re-read them over and over until this little query solved my dilemma, sort of:
SET NAMES 'utf8';
Thanks for the help! ^_^
useful links:
http://dev.mysql.com/do
useful links:
http://dev.mysql.com/doc/mysql/en/charset-collation-charset.html
http://dev.mysql.com/doc/mysql/en/Charset-server.html
http://dev.mysql.com/doc/mysql/en/Charset-map.html
http://dev.mysql.com/doc/mysql/en/Option_files.html
http://bugs.mysql.com/bug.php?id=3611
I've found this in my ph
I didn't find any option for character-set-server so I add it under
mysqld as you've stated. I also found default-character-set so I also
set its value to utf8. It didn't work.
I tried adding a dash (utf-8) to it. It didn't work also.
Yes, I did restart MySQL after saving the configuration.
W
Mark Dacasco wrote:
> SHOW VARIABLES LIKE ''%char%;
> character_set_client utf8
> character_set_connection utf8
> character_set_database utf8
> character_set_results utf8
> character_set_server latin1
> character_set_system utf8
>
> SHOW CREATE TABLE `table1`;
> CREATE TABLE `main_peeps` (
> `id
SHOW VARIABLES LIKE ''%char%;
character_set_client utf8
character_set_connection utf8
character_set_database utf8
character_set_results utf8
character_set_server latin1
character_set_system utf8
SHOW CREATE TABLE `table1`;
CREATE TABLE `main_peeps` (
`id` int(11) unsigned NOT NULL auto_incremen
Hello.
Please, send the output of the following statements:
show variables like '%char%';
show create table table1;
"Tulong!" <[EMAIL PROTECTED]> wrote:
> Here's how the problem starts.
> 1. Entered Korean characters in a form.
> 2. Press submit and I receive that error.
>
Hello.
> `key` varchar(255) character set utf8 collate utf8_bin NOT NULL
^^^
Field's character set should be latin1 as well. Change it.
>
> > Illegal mix of collations (latin1_bin,IMPLICIT) and
> > (utf8_general_ci,COERCIBLE) for operation '='' on query. Default
>
> What default charset do your slave's tables have? The coercibility
> value of system constants has changed in 4.1.11. Though it seems not
> related to your problem I re
Hello.
> Illegal mix of collations (latin1_bin,IMPLICIT) and
> (utf8_general_ci,COERCIBLE) for operation '='' on query. Default
What default charset do your slave's tables have? The coercibility
value of system constants has changed in 4.1.11. Though it seems not
related to your problem I
Hello.
Usually debugging of such kind of problems starts with examination of
the output of:
show variables like '%char%';
show variables like '%colla%';
Send the output of:
show create table your_table;
>Hello,
>
>I have problem which I don't understand.
>
>if I send com
Hello.
Please, send us an output of the following statements:
show variables like '%char%';
show variables like '%collation%';
"Stembridge, Michael" <[EMAIL PROTECTED]> wrote:
> When running this simple query:
> SELECT fileid FROM test WHERE ecn='0'
>
>
> MySQL yields
Hello.
See:
http://dev.mysql.com/doc/mysql/en/charset-collation-charset.html
"Cecep Rosuludin" <[EMAIL PROTECTED]> wrote:
> Dear All,
>
> I found an error in mysql message, when I tried to excute this sql in mysql=
> front:
>
> select dsr2.mother_vessel,mother_vessel_voy,voyage.v
Hello,
I think your tables have a collation different from the connection collation.
Open mysql client:
mysql> show variables like 'colla%';
+--+---+
| Variable_name| Value |
+--+---+
| collation_connection
Hello.
Use Perl, DBI :)
Frederic Wenzel <[EMAIL PROTECTED]> wrote:
> On Tue, 30 Nov 2004 19:24:05 +0200, Gleb Paharenko
> <[EMAIL PROTECTED]> wrote:
>> The first impression is that you forgot to convert character
>> columns. See:
>>
>> http://dev.mysql.com/doc/mysql/en/Upgrading-fr
On Tue, 30 Nov 2004 19:24:05 +0200, Gleb Paharenko
<[EMAIL PROTECTED]> wrote:
> The first impression is that you forgot to convert character
> columns. See:
>
> http://dev.mysql.com/doc/mysql/en/Upgrading-from-4.0.html
> http://dev.mysql.com/doc/mysql/en/Charset-conversion.html
Once the Chara
Hello.
The first impression is that you forgot to convert character
columns. See:
http://dev.mysql.com/doc/mysql/en/Upgrading-from-4.0.html
http://dev.mysql.com/doc/mysql/en/Charset-conversion.html
"V. M. Brasseur" <[EMAIL PROTECTED]> wrote:
> Ever since we upgraded to 4.1.7, we'
Ah! Many thanks. That appears to be our problem here:
mysql> show variables like 'colla%';
+--+---+
| Variable_name| Value |
+--+---+
| collation_connection | latin1_swedish_ci |
| collation_database | u
Hello,
I think your tables have a collation different from the connection collation.
Open mysql client:
mysql> show variables like 'colla%';
+--+---+
| Variable_name| Value |
+--+---+
| collation_connection
nt: Monday, November 15, 2004 4:23 PM
To: Donny Simonton
Cc: [EMAIL PROTECTED]
Subject: Re: Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and
(utf8_general_ci,COERCIBLE) and Replication
Donny,
I certainly appreciate your help.
"show create table contacts" shows the same output on
Donny,
I certainly appreciate your help.
"show create table contacts" shows the same output on both the master
and the slave ('latin1').
This is being run by the slave's SQL thread, and the Error is shown in
the "Last error" line of
"show slave status" and the error log.
Thanks again,
Micha
Michael,
Normally I would let a fellow domain registrar fend for themselves, but I'm
feeling nice today. :)
Do a "show create table contacts" and see what the charset is set too.
I bet the character set on the slave is different. Are you running this
from the command line?
Or are you gett
26 matches
Mail list logo