Skip to main content

Posts

Showing posts from March, 2011

Yellow Ostrich Whale Lyrics

oh oh oh oh oh oh oh oh whale, swim with me whale we will go far into the sea you will take me onto your back never look back never look back whale, sing to me whale sing me a song tell me that things will never go wrong hide me away don’t let them stay don’t let them stay whale, come with me whale we will go far into the blue i will take you, listen to me then you will see then you will see whale, don’t worry whale just do as you please i will accept if you’d rather leave open my heart if you open your heart open your heart oh oh oh oh oh oh oh oh i’ve been swimming for a thousand years and i’ve seen more than you can realize i accept that you will never understand so i will gladly take your hand whale, come with me whale we will go far into the sea you will take me onto your back never look back never look back never look back never look back whale, come with me whale we will go far into the blue i will take you, listen to me then you will

Wrong permissions on configuration file, should not be world writable!

are u using lampp in ubuntu 10.10 and ur localhost page is wokring fine, but when u click on phpmyadmin u get this stupid error "Wrong permissions on configuration file, should not be world writable!" From what I feel is because we have set username password for mysql and have not updated the right file so that phpmyadmin can know about it so, 1.go to /opt/lampp/htdocs/xampp 2.look for mysql.php 3.update the mysql_connect("localhost") line (it will be inside a if loop) to mysql_connect("localhost"."mysql_username","passwo rd"); and then u can chmod the file to 0755.

XAMPP: Couldn't start MySQL!

XAMPP: Couldn't start MySQL! Trying to run mysql on ubuntu 10.10 and give this vauge error "XAMPP: Couldn't start MySQL!" Try this 1. Open a terminal. 2. run this command sudo chown -hR root /opt/lampp 3. then run this sudo chmod -R 777 /opt/lampp 4. Now Restart XAMPP sudo /opt/lampp/lampp restart U are all set. And if u r getting the follwing warning after restarting "Warning: World-writable config file ‘/opt/lampp/etc/my.cnf’ is ignored" 1.Open terminal 2.Migrate to /opt/lampp/etc 3.run the command sudo chmod 755 my.cnf