How to make username or email login in joomla 1.5
| February 15, 2012 | Posted by Subikar under component, joomla, linux, module, php |
Last time I was having problem with email / username with Password login. There are several plugin but those all are paid but if you want a quick and easy method to do it. here is the code. For Email and Username login 1. components/com_user/models/reset.php Line Number 124 $db->setQuery(‘SELECT id, activation FROM #__users WHERE block…
How to get the blogname of tumblr as well as blogdetails like text, photo of every created blog of tumblr
| December 16, 2011 | 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 | 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 | linux, network, subikar |
Login to unix Croot@cyber-desktop:~# mysql mysql> GRANT ALL ON databasename.* TO username@’mysqlhost’ IDENTIFIED BY ‘databasepassword’; Thats all
Fatal error: Call to undefined method stdClass::onDisplay() in libraries/joomla/html/editor.php
| October 18, 2011 | cms, joomla, module, php, phpmyadmin |
This kill my whole day so dev who ever have this problem you can do this quick fix from here. open this file in joomla libraries/joomla/html/editor.php find this line // Try to authenticate — only add to array if authentication is successful $resultTest = $plugin->onDisplay($editor); if ($resultTest) $result[] = $resultTest; And replace with this below…
Vote and Win Rs 1000/-
| September 20, 2011 | Posted by Subikar under Uncategorized |
We have started a new contest for HumTumLove Member. “Vote and Win Contest” Your one vote you could win Rs 1000/-
How to manage Big Website with n number of subdomain
| March 15, 2011 | Posted by Subikar under php, phpmyadmin |
Hi all , After long time I came up with some new ideas. How to manage big website without using single database. I am sure you all know if a single database is using your big website with a lot of application someday it will crash and obviously it is very hard to manage everything.…
My Name Defination Subikar
| October 4, 2010 | Posted by Subikar under name |
When I meet new people They ask my name and as usual I am ready to give answer. They will come up with another question. “Subikar Your name is unique and what is the meaning of your name?”:) I smile and say subikar: Those who do good for all. I got this meaning from one…
Store which will sell your product a day.
| July 21, 2010 | Posted by Subikar under branding |
Do you want to sell your one product a day. Also your customer can bid on that product and can buy the product. Simply gain your product accessability much easier to customer and get best price for your product. I have built a new script like that If you are interested on it you can…
Exclude Directory While zip file in unix platform
| June 7, 2010 | Posted by Subikar under linux, uniz, zip command |
If you want to zip file and exclude some directory while file zip in linux you can simply use the below command. zip -r filename.zip folder -x folder1 folder2 Where as folder is the going to zip in the name of filename.zip and folder1 and folder2 will be exclude from while zipping.