Category: php
Fatal error: Call to undefined method stdClass::onDisplay() in libraries/joomla/html/editor.php
| October 18, 2011 | Posted by Subikar under 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…
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.…
simple regular expression to search all the emails from a web page.
| April 12, 2010 | Posted by Subikar under email, link, php |
Hi Developers If you want to search all the emails from a web page you can use this simple regular expression to search all the email from any website. (href=["|\'])(mailto:)(.*?)(["|\']) If you are using php script then your code will be like this. preg_match(‘(href=["|\'])(mailto:)(.*?)(["|\'])’, $Your String, $Return the data in Array);
How to create simple block module in drupal 6.x
| July 31, 2009 | Posted by Subikar under block, cms, community, drupal, drupal 6.x, module, php |
Creating simple block module in drupal is easy you just need to concentrate on this artcile to learn to create simple block module in drupal step by step. For drupal all block module whould uploaded to the folder sites/all/modules Suppose I am creating an exampl module to display news from a single category. Step 1:…
Currency converter calculator in php
| July 15, 2009 | Posted by Subikar under converter, currecny, php |
I hope a lot of people will like this module. Let me show you the demo work here if you like it just click here for Free Download. And install it to your website. Step guide how to install and use to your own website. 1. Download the code from here Free Download 2. Add…