Monthly Archive: March 2015

Add a wordpress user through mySQL 0

Add a wordpress user through mySQL

Add an administrator username through SQL only There are three insertions to do : One row in wp_users Two rows in wp_usermeta INSERT INTO `mcera850_bleue`.`wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`,...

Remote Desktop Connection is missing from Windows 7 0

Remote Desktop Connection is missing from Windows 7

How to access Remote Desktop Connection in Windows 7 Click the Start button Run mstsc.exe All flavours of Windows 7 (home, professional, ultimate) have the remote desktop client. However not all flavours of Windows...

CSS filter opacity for cross-browser transparency 0

CSS filter opacity for cross-browser transparency

Solution To reach almost all users now (in 2015) : opacity:0; filter: "alpha(opacity=0)"; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; The full CSS cross-browser (some might be useless now) opacity:0; filter: "alpha(opacity=0)"; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; -moz-opacity: 0.5; -khtml-opacity: 0.5;