Posts Tagged ‘computers’
How to reset MySQL password.
I am browsing blog and i just found this thing that i didn’t know
Reseting mysql password
-
-
- Stop the server
- #/etc/init.d/mysql stop
- Login as root
- #mysqld_safe –skip-grant-tables –user=root
- #mysql -u root
- Enter this command
- mysql>update mysql.user set password=password(’newpassword’) where user=’root’;
- start the service again
- #etc/init.d/mysql start
- login again
- #mysql -u root -p
- Stop the server
-
The sequence is the same in windows. But the thinks is for the complete stuff go to mysql.com aand read the documentation.
Custom CSS for Internet Explorer 6 & 7
I was working on my mini-project. The project was a CMS for a school. I finished everything about it. I mean the php, mysql javascript, flash, and all that. But i had a small problem with the theme.
To be specific the CSS was different in Internet Explorer. I mean that i had to give internet explorer a different code to get the same effect in the various browsers. Firefox(my all time favorite), Safari and the rest.
IT was only internet explorer that gave me the issues.
Let me get to it.