One of my friend asked me a simple question,
"How to sort an array of string without using php function?"
I am surprised!!! because PHP has sort(), arsort, asort(), rsort() functions
.... then use it.....
BUT this is not answer to my friend's question.
so here you go: Read More >>
What is difference between MYISAM and InnoDB?
I am writing this article to all those PHP follower to understand the difference between MYISAM and INNODB.
MYISAM:
1. MYISAM supports Table-level Locking
2. MyISAM designed for need of speed
INNODB:
1. InnoDB supports Row-level Locking
2. InnoDB designed for maximum performance when processing high volume of data
Read More >>
MYISAM:
1. MYISAM supports Table-level Locking
2. MyISAM designed for need of speed
INNODB:
1. InnoDB supports Row-level Locking
2. InnoDB designed for maximum performance when processing high volume of data
Read More >>
MyBlog and JomSocial Integration
Here is solution to add a "Community Home" on the toolbar of MyBlog
You need to modify the given below files
a. language/en-GB/en-GB.com_myblog.ini
SEARCH # Toolbar menu and ADD
TOOLBAR MENU COMMUNITY HOME=Community Home
b. components/com_myblog/templates/default/toolbar.tmpl.html

c. components/com_myblog/task/base.php
$myCommunityItemid = myGetCommunityItemId();
$communityHomeLink = JRoute::_("index.php?option=com_community&view=frontpage&Itemid=$myCommunityItemid");
$toolbar['communityHomeLink'] = $communityHomeLink;
$active['communityhome'] = '';
d. Write function myGetCommunityItemId() in components/com_myblog/functions.myblog.php
You need to modify the given below files
a. language/en-GB/en-GB.com_myblog.ini
SEARCH # Toolbar menu and ADD
TOOLBAR MENU COMMUNITY HOME=Community Home
b. components/com_myblog/templates/default/toolbar.tmpl.html

c. components/com_myblog/task/base.php
$myCommunityItemid = myGetCommunityItemId();
$communityHomeLink = JRoute::_("index.php?option=com_community&view=frontpage&Itemid=$myCommunityItemid");
$toolbar['communityHomeLink'] = $communityHomeLink;
$active['communityhome'] = '';
d. Write function myGetCommunityItemId() in components/com_myblog/functions.myblog.php
Include Any Module Within Content in Joomla 1.5!
Today I received a request to insert a new module position inside the article template of a joomla 1.5 website.
Yes, Joomla gives this faclilty to call the module in article.
Here are the simple three steps: Read More >>
Yes, Joomla gives this faclilty to call the module in article.
Here are the simple three steps: Read More >>
Ning Data Can be migrated to Joomla?
Yes, Ning Data Can be migrated to Joomla 1.5.
I have succesfully done Ning Data migration successfully for my one of project.
What you can do: Read More >>
I have succesfully done Ning Data migration successfully for my one of project.
What you can do: Read More >>
Subscribe to:
Posts (Atom)