Thứ Sáu, 21 tháng 6, 2013

Edit connect mysq and php.ini for Server

By default, Debian-based distros configure MySQL to bind to localhost only, which means that other hosts cannot connect to it. Fix your MySQL configuration and it will work.
Edit /etc/mysql/my.cnf and change this line:
bind-address = 127.0.0.1
To this:
bind-address = 0.0.0.0
This will expose MySQL to all network interfaces, so make sure that you have security measures in place if this server is exposed to untrusted hosts.
sudo service mysql restart;
 
 
---------
edit php.ini
sudo nano /etc/php5/apache2/php.ini 
 
 

Không có nhận xét nào:

Đăng nhận xét

Học lập trình web căn bản với PHP

Bài 1: Các kiến thức căn bản Part 1:  https://jimmyvan88.blogspot.com/2012/05/can-ban-lap-trinh-web-voi-php-bai-1-cac.html Part 2:  https://...