To allow remote access to MySql first create a MySql user and assign host as %. CREATE USER ‘newuser’@’%’ IDENTIFIED BY ‘password’; then grant privileges GRANT ALL PRIVILEGES ON * . * TO ‘newuser’@’%’; then flush privileges FLUSH PRIVILEGES; You may need to add the following to /etc/mysql/my.cnf to listen for all ip’s instead of […]
Tag: wamp
Safari .local domain names not resolving
When testing a web project using WAMP and Fiddler I could not connect to the virutal host on an iPad running Safari. Worked with other browsers on the devices i.e. Chrome. To get it to resolve I had to change to virtual host from site1.local to site1.lc or anything else but .local.
Wamp Configuration Virtual Hosts
This guide will change the document root, create a virtual host, bypass proxy(if behind corporate server)for the virtual host. 1. Change 2 entries in httpd.conf DocumentRoot “c:/wamp/www/” to DocumentRoot “d:/webdir/” and <Directory “c:/wamp/www/”> to <Directory “d:/webdir/”> 2. Search for and uncomment the line below to enable virtual hosts # Virtual hosts Include conf/extra/httpd-vhosts.conf 3. Add […]