Posts

Image
老婆 辛苦了 小王子哥哥说得真准 八月八号八点多 小公主妹妹 出生啦

Welcome to use my Magoosh coupon code: CNAMBLER

Image
                                Welcome to use my Magoosh coupon code: CNAMBLER

Install firefox addon from a file

Image

Easy to install adobe flash plugin for firefox and chrome browser on you ubuntu.

install chrome: sudo wget http://www.linuxidc.com/files/repo/google-chrome.list -P /etc/apt/sources.list.d/ wget -q -O - https://dl.google.com/linux/linux_signing_key.pub  | sudo apt-key add - sudo apt-get update sudo apt-get install google-chrome-stable install firefox sudo apt-get install firefox install adobe flash plugin for firefox and chrome sudo apt-get install adobe-flashpluginsudo apt-get install adobe-flashplugin sudo apt-get install adobe-flashplugin

surfmore ed addon firefox

Image
Firefox addon for surfmore.eu It can auto surf and auto click klick4credits. If you want the addon, please register on surfmore.eu via my ref http://surfmore.eu/index.php?ref=errong_leng Once ref confirmed, I will send you the addon. errong.leng@gmail.com|

Recovery your wordpress password if you forgot it.

$ mysql -u root -p mysql> use wpdb mysql> update wp_users set user_pass=MD5(' ucLinux1! ') where wp_users.user_login=' errong.leng '; mysql> flush preligage; mysql> quit PS: wpdb is the database name in  wp-config.php wp-config.php define('DB_NAME', ' wpdb '); please refer to your case. errong.leng is the user name, please refer to your case too. ucLinux1! is the new password, please modify to your own password. Must call flush preligage; otherwise you have to restart your mysql service. define('DB_NAME', 'wpdb');

How to recovery mysql root password if you forgot it.

One of the recovery methods for a .MySQL password If you forget the MySQL root password, you can use the following methods to re-set: 1. Switch to root Su root 2. KILL out of the system in the MySQL process; Killall -TERM mysqld 3. Start MySQL with the following command to start without checking the permissions; Safe_mysqld --skip-grant-tables & 4. Then use the empty password to use the root user login to MySQL; Mysql -u root 5. Modify the root user's password; Mysql> update mysql.user set authentication_string = PASSWORD ('123456') where User = 'root'; Mysql> flush privileges; Mysql> quit Restart MySQL, you can use the new password login. Second, the MySQL password recovery method II There may be no system safe_mysqld procedures (ubuntu operating system, apt-get installed mysql), the following method can be restored 1. Switch to root Su root 2. stop mysqld;     /etc/init.d/mysql stop 3. Start MySQL with the following command to start without checking