Category: cms
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 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:…
Auto Login Joomla function
| May 27, 2009 | Posted by Subikar under cms, it professional, joomla, myblogplanner |
One of my client always like to sent mail to his members with updates of the website to make them participate. For long time he was demanded me a auto login system in joomla. Today at last we got the solution how we can do it. I am sharing this with you hope that may…
Create New joomla password function
| April 27, 2009 | Posted by Subikar under cms, joomla, myblogplanner, subikar |
Let me show you how you can create joomla password function Here is the exmaple how you can create joomla 1.5.x password function. function FnGenerateNewPassword($Password) { jimport(‘joomla.user.helper’); $salt = JUserHelper::genRandomPassword(32); $crypt = JUserHelper::getCryptedPassword($Password, $salt); $password = $crypt.’:’.$salt; return $password; } Hope this will help you in some program.
Drawing component module
| December 1, 2008 | Posted by Subikar under cms, drawing module, joomla |
Hi All itcslive introducing a new module for email drawing. Feature: This module wil help user to subscribe any drawing image to his email. I am sharing this module with all give your comment how this is benifit for you. Drawing Component Drawing Module
Justforjoomla review
| October 10, 2008 | Posted by Subikar under cms, it professional, joomla, just for joomla, myblogplanner, network, subikar |
Joomla1.5 is basically the higher version of joomla 1.0 and the open source content management system.It is one of the most successful cms system here internet world. If you want see my joomla1.5 cms website you can check it here in this url. http://subikar.justforjoomla.com You are thinking why I am writing all this stuff to…