Monthly Archives: December 2011
How to get the blogname of tumblr as well as blogdetails like text, photo of every created blog of tumblr
| December 16, 2011 | Posted by Ankan under Uncategorized |
For that authentication is needed. To authenticate with tumblr we need consumer key and consumer secret key.We will have to register in developer portion of tumblr. And after then I will get consumer key and consumer secret key. And after then We get oauth_token and oauth_secret. After then by oauth_token, oauth_secret, consumer key and consumer…
Tumblr Blogpost from my site like
| December 16, 2011 | Posted by Ankan under Uncategorized |
We can post text as well as photo from my own site like mysite to Tumblr. For that I have got code by searching google. For blog post in Tumblr We need tumblr user name and password.After then We can post text as well photo using curl. The full code is given below: <?php //…
How to grant privilege to database for particular user using unix
| December 2, 2011 | Posted by Subikar under linux, network, subikar |
Login to unix Croot@cyber-desktop:~# mysql mysql> GRANT ALL ON databasename.* TO username@’mysqlhost’ IDENTIFIED BY ‘databasepassword’; Thats all