¡@

Home 

php Programming Glossary: my.cnf

Automatically clip strings to the proper length on insert

http://stackoverflow.com/questions/1018954/automatically-clip-strings-to-the-proper-length-on-insert

empty string no modes set . You can set SQL mode in your my.cnf file with the sql mode option for mysqld or using a SET statement...

PHP 5.4 PDO could not connect to MySQL 4.1+ using the old insecure authentication

http://stackoverflow.com/questions/10420831/php-5-4-pdo-could-not-connect-to-mysql-4-1-using-the-old-insecure-authenticatio

you might need to remove the old passwords flag from your my.cnf file I've also tried to do these queries when logged in with..

Which is the best character encoding for Japanese language for DB, php, and html display?

http://stackoverflow.com/questions/1045338/which-is-the-best-character-encoding-for-japanese-language-for-db-php-and-html

charset UTF 8 As for MySQL put the following into your my.cnf config file mysqld collation_server utf8_unicode_ci character_set_server..

Having Timezone problems with PHP and MySQL

http://stackoverflow.com/questions/1053252/having-timezone-problems-with-php-and-mysql

into the database use UTC in PHP and in MySQL. In my.cnf I have time_zone UTC to avoid any issues in MySQL and in PHP..

MySQL Case Sensitive Tables Conversion

http://stackoverflow.com/questions/1262258/mysql-case-sensitive-tables-conversion

databases in phpmyadmin to lowercase names. Modified the my.cnf on the Linux server to use lower_case_table_names 1 Restarted..

mysqli::mysqli(): (HY000/2002): Can't connect to local MySQL server through socket 'MySQL' (2)

http://stackoverflow.com/questions/13769504/mysqlimysqli-hy000-2002-cant-connect-to-local-mysql-server-through-sock

the socket in php.ini open the MySQL configuration file my.cnf to find where MySQL creates the socket and set PHP's mysqli.default_socket..

Is “SET CHARACTER SET utf8” necessary?

http://stackoverflow.com/questions/1566602/is-set-character-set-utf8-necessary

all the reuired variables can be set statically in your my.cnf frees you from the performance overhead of the extra query required..

Mysql: latin1-> utf8. Convert characters to their multibyte equivalents

http://stackoverflow.com/questions/1714629/mysql-latin1-utf8-convert-characters-to-their-multibyte-equivalents

In PHP with PDO, how to check the final SQL parametrized query?

http://stackoverflow.com/questions/1786322/in-php-with-pdo-how-to-check-the-final-sql-parametrized-query

on the server. With mySQL this can be done by updating the my.cnf or my.ini in my case with Wamp server and adding a line like..

MySql Proccesslist filled with “Sleep” Entries leading to “To many Connections”?

http://stackoverflow.com/questions/2407732/mysql-proccesslist-filled-with-sleep-entries-leading-to-to-many-connections

the port open without a phpscript attached or something my.cnf in case it's helpful innodb_buffer_pool_size 1024M max_allowed_packet..

UTF-8 Database Problem

http://stackoverflow.com/questions/2615611/utf-8-database-problem

8 after connecting to the database. If you have access to my.cnf you can also set the correct default value there but keep in..

PHP to MySQL SSL Connections

http://stackoverflow.com/questions/3657765/php-to-mysql-ssl-connections

where PHP should be able to pick it up possibly etc mysql my.cnf but this may vary depending on your distribution client ssl..

MySQL Table does not exist error, but it does exist

http://stackoverflow.com/questions/4260546/mysql-table-does-not-exist-error-but-it-does-exist

to copy those over everything worked as expected. If your my.cnf file contains innodb_file_per_table the .ibd file will be present..

Can't connect to MySQL on Mac — missing mysql.sock file

http://stackoverflow.com/questions/5784791/cant-connect-to-mysql-on-mac-missing-mysql-sock-file

trying to connect via unix tmp mysql.sock Also there is no my.cnf file in my mysql installation directory usr local mysql. There.. my mysql installation directory usr local mysql. There are my.cnf files for the mysql installations that come along with XAMPP...

Mysql - connect to remote server using IP address

http://stackoverflow.com/questions/7754757/mysql-connect-to-remote-server-using-ip-address

to the local machine. Look for the bind address setting in my.cnf on the server and make sure it's listening on the IP address..

mysqlnd cannot connect to MySQL 4.1+ using the old insecure authentication.

http://stackoverflow.com/questions/8831183/mysqlnd-cannot-connect-to-mysql-4-1-using-the-old-insecure-authentication

you might need to remove the old passwords flag from your my.cnf file I using php 5.3.8 and mysql 5.5.16 on my local machine.. this question Remove or comment old_passwords 1 in my.cnf Restart MySQL. If you don ™t MySQL will keep using the old password..

How can I easily convert dates from UTC via PHP?

http://stackoverflow.com/questions/952975/how-can-i-easily-convert-dates-from-utc-via-php

usr share zoneinfo mysql u root p mysql Edit my.cnf and add the following within the mysqld section default time..