NetBeans 7.3: Cannot execute Google Chrome
I have got today an error in NetBeans 7.3 while starting a HTML5 application in Google Chrome: Cannot execute /opt/google/chrome/chrome. Check external browser configuration. The solution was simple:...
// 17 matches
I have got today an error in NetBeans 7.3 while starting a HTML5 application in Google Chrome: Cannot execute /opt/google/chrome/chrome. Check external browser configuration. The solution was simple:...
Once upon a time, namely today, I run # git status and to my big surprise I have got: # On branch master # Your branch is ahead of 'origin/master' by 3 commits. # nothing to commit (working directory...
In case of date format checking in PHP just use this function: function checkDateFormat($date) { //match the format of the date if (preg_match ("/^([0-9]{4})-([0-9]{2})-([0-9]{2})$/", $date, $parts))...
Error on attempt to connect locally to MySQL server DB with PHP on MacOS X Lion 10.7: No such file or directory (trying to connect via unix:///var/mysql/mysql.sock) Solution 1: instead of localhost...
Git features The Stash, which is as much as a good place to store uncommitted changes. When you stash you changes, the will be stored, and your working copy will be reverted to HEAD (the last commit...
Configuration identify yourself to git: email and your name git config --global user.name "John Smith" git config --global user.email "abc@mail.com" To view all options: git config --list OR cat...
Problem: How to copy / paste text from git? Text select and Ctrl-C + Ctrl-V does not paste the copied text. And there is no Edit / Copy / Paste menu item. Solution: gitk supports the normal X...
At some point, you may have a situation where you want to center multiple elements (maybe <div> elements, or other block elements) on a single line in a fixed-width area. Centering a single element...
You can push the branch up to a remote very simply: git push origin newfeature Where origin is your remote name and newfeature is the name of the branch you want to push up. Deleting is also a pretty...
Error: Fatal error: Uncaught exception 'Zend_Mail_Transport_Exception' with message 'Unable to send mail. ' in /.........../Zend/Zend/Mail/Transport/Sendmail.php:137 Postfix is running, PHP can...