Monthly Archives: May 2014

Grant privileges with MySql

Description: Grant privileges on a number of databases containing the same prefix. Solution: The tricky part is to take care of the right quotes to use, in particular the backtick ( ` ) Syntax is then as follows: GRANT ALL ON `wordpress_%`.* … Continue reading

Posted in Uncategorized | Leave a comment

Ignore file permissions with git

Description: Running a git status command shows modified files, with only changed file permissions. This can be due the IDE, for example PHPStorm is known for being a bit too nosy. diff –git a/myproject/index.php b/myproject/index.php old mode 100644 new mode 100755 … Continue reading

Posted in Version control | Tagged , , , , , | Leave a comment