<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.0" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>OpenAppDotOrg: Open Source CMS</title>
	<link>http://joomla.openapp.org</link>
	<description></description>
	<pubDate>Tue, 17 Apr 2007 04:18:06 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0</generator>
	<language>en</language>
			<item>
		<title>5 reasons why should you be using open source content management system?</title>
		<link>http://joomla.openapp.org/2007/04/17/5-reasons-why-should-you-be-using-open-source-content-management-system/</link>
		<comments>http://joomla.openapp.org/2007/04/17/5-reasons-why-should-you-be-using-open-source-content-management-system/#comments</comments>
		<pubDate>Tue, 17 Apr 2007 04:13:31 +0000</pubDate>
		<dc:creator>openappdotorg</dc:creator>
		
	<category>Integration</category>
		<guid isPermaLink="false">http://www.openapp.org/open-source-cms/?p=17</guid>
		<description><![CDATA[There are several techniques or methods one can use to accomplish
certain productivity task. To manage documents, organizations can use
plain document repository or document module as found in popular CRM
systems such as SugarCRM or Salesforce or can think of full fledged
best-of-breed content lifecycle solution.
Choice is largely a function of business process maturity and level of
automation desired. [...]]]></description>
			<content:encoded><![CDATA[<p>There are several techniques or methods one can use to accomplish<br />
certain productivity task. To manage documents, organizations can use<br />
plain document repository or document module as found in popular CRM<br />
systems such as SugarCRM or Salesforce or can think of full fledged<br />
best-of-breed content lifecycle solution.</p>
<p>Choice is largely a function of business process maturity and level of<br />
automation desired. So the question is at what stage you would need a<br />
grown-up enterprise strength content management system like <a href="http://www.alfresco.org">Alfresco</a>?</p>
<p>If following are some of the pains you are having then probably you are ready for Alfresco open source CMS:</p>
<p><strong>1. Document management is in chaos</strong>. To tame this chaos company needs versioning, workflow control and archiving solutions.</p>
<p><strong>2. Not ready for the rich media based IT architecture.</strong><br />
With explosion in video, audio and rich content based on flash<br />
components, companies need a common platform to manage them and do it<br />
in a way which will enable flexible content repurposing.</p>
<p><strong>3. Document Interoperability</strong> - wide support for document conversion capability. PDF, Word, OpenOffice, etc</p>
<p><strong>4. Number of disparate websites keep growing</strong><br />
- challenge of managing multiple websites from a single system. This is<br />
by far the most common problem causing stale web content.</p>
<p><strong>5. Compliance management</strong>.<br />
Record keeping and archiving is a painful but necessary step in staying<br />
clean on the legal front. There is not much choice here thanks to<br />
<a target="_blank" href="http://en.wikipedia.org/wiki/Sarbanes-Oxley_Act"> Sarbanes Oxley</a>.
</p>


<!-- begin(Yahoo ad) --><a href="http://ypn-rss.overture.com/rss/32893/17/click/"><img src="http://ypn-rss.overture.com/rss/32893/17/img/?url=http%3A%2F%2Fjoomla.openapp.org%2F2007%2F04%2F17%2F5-reasons-why-should-you-be-using-open-source-content-management-system%2F&amp;pid=4771206150" alt="Ads by Yahoo!" border="0"/></a><!-- end(Yahoo ad) -->


		]]></content:encoded>
			<wfw:commentRSS>http://joomla.openapp.org/2007/04/17/5-reasons-why-should-you-be-using-open-source-content-management-system/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Switch between secure and non-secure server in Joomla versions 1.4 and lower.</title>
		<link>http://joomla.openapp.org/2006/09/06/switch-between-secure-and-non-secure-server-in-joomla-versions-14-and-lower/</link>
		<comments>http://joomla.openapp.org/2006/09/06/switch-between-secure-and-non-secure-server-in-joomla-versions-14-and-lower/#comments</comments>
		<pubDate>Wed, 06 Sep 2006 17:18:59 +0000</pubDate>
		<dc:creator>RS</dc:creator>
		
	<category>Integration</category>
		<guid isPermaLink="false">http://joomla.openapp.org/?p=16</guid>
		<description><![CDATA[Switching between secure and non-secure servers in Joomla versions 1.4 and lower.
Step:1
This can be done in configuration.php OR in index.php just after the line  define( &#8216;_VALID_MOS&#8217;, 1);
In configuration.php, replace
     $mosConfig_live_site=&#8221;http://www.xyz.com&#8221;;
with
    if ($_SERVER[&#8221;SERVER_PORT&#8221;] == &#8220;443&#8243;){
           $mosConfig_live_site=&#8221;https://www.xyz.com&#8221;;
   [...]]]></description>
			<content:encoded><![CDATA[<p>Switching between secure and non-secure servers in Joomla versions 1.4 and lower.</p>
<p>Step:1<br />
This can be done in configuration.php OR in index.php just after the line  define( &#8216;_VALID_MOS&#8217;, 1);</p>
<p>In configuration.php, replace<br />
     $mosConfig_live_site=&#8221;http://www.xyz.com&#8221;;<br />
with<br />
    if ($_SERVER[&#8221;SERVER_PORT&#8221;] == &#8220;443&#8243;){<br />
           $mosConfig_live_site=&#8221;https://www.xyz.com&#8221;;<br />
    }else{<br />
          $mosConfig_live_site=&#8221;http://www.xyz.com&#8221;;<br />
    }</p>
<p>If modifying index.php, add these line just after the line define( &#8216;_VALID_MOS&#8217;, 1);<br />
    if ($_SERVER[&#8221;SERVER_PORT&#8221;] == &#8220;443&#8243;){<br />
           $mosConfig_live_site=&#8221;https://www.xyz.com&#8221;;<br />
    }else{<br />
          $mosConfig_live_site=&#8221;http://www.xyz.com&#8221;;<br />
    }</p>
<p>Step:2 - To secure the site after login.<br />
In modules/mod_login.php, replace the line </p>
<form>&#8221;  method=&#8221;post&#8221; name=&#8221;login&#8221; &gt;<br />
with </p>
<form>&#8221; method=&#8221;post&#8221; name=&#8221;login&#8221; &gt;</p>
<p>Step:3 - To go back to http after logout.<br />
In modules/mod_login.php, replace the line</p>
<form>&#8221; method=&#8221;post&#8221; name=&#8221;logout&#8221;&gt;<br />
with</p>
<form>&#8221; method=&#8221;post&#8221; name=&#8221;logout&#8221;&gt;</p>
<p>powered by <a href="http://performancing.com/firefox">performancing firefox</a></p>


<!-- begin(Yahoo ad) --><a href="http://ypn-rss.overture.com/rss/32893/16/click/"><img src="http://ypn-rss.overture.com/rss/32893/16/img/?url=http%3A%2F%2Fjoomla.openapp.org%2F2006%2F09%2F06%2Fswitch-between-secure-and-non-secure-server-in-joomla-versions-14-and-lower%2F&amp;pid=4771206150" alt="Ads by Yahoo!" border="0"/></a><!-- end(Yahoo ad) -->


		]]></content:encoded>
			<wfw:commentRSS>http://joomla.openapp.org/2006/09/06/switch-between-secure-and-non-secure-server-in-joomla-versions-14-and-lower/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>MBString Php extension issue</title>
		<link>http://joomla.openapp.org/2006/07/24/mbstring-php-extension-issue/</link>
		<comments>http://joomla.openapp.org/2006/07/24/mbstring-php-extension-issue/#comments</comments>
		<pubDate>Mon, 24 Jul 2006 23:41:55 +0000</pubDate>
		<dc:creator>openappdotorg</dc:creator>
		
	<category>Integration</category>
		<guid isPermaLink="false">http://joomla.openapp.org/?p=15</guid>
		<description><![CDATA[Error handling in php libraries can be made little less initimidating - 
&#8220;The mbstring PHP extension was not found and you seem to be using a
multibyte charset. Without the mbstring extension phpMyAdmin is unable
to split strings correctly and it may result in unexpected results.&#8221;
This is from phpMyAdmin. Fix is in php.ini extensions path.

]]></description>
			<content:encoded><![CDATA[<p>Error handling in php libraries can be made little less initimidating - </p>
<p>&#8220;The mbstring PHP extension was not found and you seem to be using a<br />
multibyte charset. Without the mbstring extension phpMyAdmin is unable<br />
to split strings correctly and it may result in unexpected results.&#8221;</p>
<p>This is from <a href="http://www.phpmyadmin.net/home_page/index.php">phpMyAdmin</a>. Fix is in php.ini extensions path.
</p>


<!-- begin(Yahoo ad) --><a href="http://ypn-rss.overture.com/rss/32893/15/click/"><img src="http://ypn-rss.overture.com/rss/32893/15/img/?url=http%3A%2F%2Fjoomla.openapp.org%2F2006%2F07%2F24%2Fmbstring-php-extension-issue%2F&amp;pid=4771206150" alt="Ads by Yahoo!" border="0"/></a><!-- end(Yahoo ad) -->


		]]></content:encoded>
			<wfw:commentRSS>http://joomla.openapp.org/2006/07/24/mbstring-php-extension-issue/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>How to populate the database from dump in Joomla?</title>
		<link>http://joomla.openapp.org/2006/06/27/how-to-populate-the-database-from-dump-in-joomla/</link>
		<comments>http://joomla.openapp.org/2006/06/27/how-to-populate-the-database-from-dump-in-joomla/#comments</comments>
		<pubDate>Tue, 27 Jun 2006 14:47:39 +0000</pubDate>
		<dc:creator>openappdotorg</dc:creator>
		
	<category>Integration</category>
	<category>Architecture</category>
		<guid isPermaLink="false">http://joomla.openapp.org/?p=14</guid>
		<description><![CDATA[Once you have taken the dump of the database then you can restore using the dump.sql files(learn here to take the dump/back-up from database).
In phpMyAdmin simply click on the SQL tab and then from there you can browse the dump.sql file that you have stored after taking the dump. If the structure is not there [...]]]></description>
			<content:encoded><![CDATA[<p>Once you have taken the dump of the database then you can restore using the dump.sql files<a title="How to take Joomla back-up?" href="http://joomla.openapp.org/?p=13">(learn here to take the dump/back-up from database)</a>.</p>
<p>In phpMyAdmin simply click on the SQL tab and then from there you can browse the dump.sql file that you have stored after taking the dump. If the structure is not there then first of all import the structure file which will create the structure of the table and later you can import the dump.sql file which is having the data.</p>
<p>Through phpMyAdmin it that simple. If you find any problem in importing the whole file. Then you can cut and paste the queries and populate them in the database.</p>
<p>Through the command prompt you can simply use these commands to restore the database. First of all go to the directory where the dump.sql file is stored and from there run these commands:</p>
<p><code>mysql -u USERNAME -pPASSWORD DATABASENAME dump.sql</code></p>
<p><strong>Put the less than sign between DATABASENAME and dump.sql</strong></p>
<p>This command will populate the dump in your database and then you will have your data back in your application.
</p>


<!-- begin(Yahoo ad) --><a href="http://ypn-rss.overture.com/rss/32893/14/click/"><img src="http://ypn-rss.overture.com/rss/32893/14/img/?url=http%3A%2F%2Fjoomla.openapp.org%2F2006%2F06%2F27%2Fhow-to-populate-the-database-from-dump-in-joomla%2F&amp;pid=4771206150" alt="Ads by Yahoo!" border="0"/></a><!-- end(Yahoo ad) -->


		]]></content:encoded>
			<wfw:commentRSS>http://joomla.openapp.org/2006/06/27/how-to-populate-the-database-from-dump-in-joomla/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>How to take Joomla back-up?</title>
		<link>http://joomla.openapp.org/2006/06/27/how-to-take-joomla-back-up/</link>
		<comments>http://joomla.openapp.org/2006/06/27/how-to-take-joomla-back-up/#comments</comments>
		<pubDate>Tue, 27 Jun 2006 14:02:58 +0000</pubDate>
		<dc:creator>openappdotorg</dc:creator>
		
	<category>Architecture</category>
		<guid isPermaLink="false">http://joomla.openapp.org/?p=13</guid>
		<description><![CDATA[It is very important to take the back-up of your data as well as the application to keep things moving and to be on the safer side. It is wiser to take the back-up of data and structure both. There are several ways to take the back-up.
If you are using phpMyAdmin then you it very [...]]]></description>
			<content:encoded><![CDATA[<p>It is very important to take the back-up of your data as well as the application to keep things moving and to be on the safer side. It is wiser to take the back-up of data and structure both. There are several ways to take the back-up.</p>
<p>If you are using <a title="phpMyAdmin" href="http://www.phpmyadmin.net/home_page/index.php">phpMyAdmin</a> then you it very easy to take the back-up. Simply select Joomla database and then export that database. Now it will show you all the tables within and the options to save that file. Select all the files and then check the radio button to take the dump as SQL, LaTeX or CSV. If this is the first time you are taking the back-up then I would prefer to take the Data and Structure individually meaning there will be two SQL files created at the end, one which will be having the structure of table and the another one which will be having the data. It is wiser to take the back-up of data as it changes every time and the structure remains the same most of the time.</p>
<p>The other method of taking the back-up is through the command prompt. In the Linux (DOS on Windows) go to the mysql/bin folder and run these commands:</p>
<p><code>mysqldump -u USERNAME  -pPASSWORD DATABASE-NAME dump.sql</code></p>
<p>Replace the USER, PASSWORD and DATABASE-NAME with your MySQL settings respectively. This command will take the dump of structure and data both. To take the individual run these commands:</p>
<p><code>mysqldump -u  USERNAME -pPASSWORD -t DATABASE-NAME</code> <code>dump_data.sql</code></p>
<p>This command will give you the dump of data only(no structure).</p>
<p><code>mysqldump -u  USERNAME -pPASSWORD -d DATABASE-NAME dump_structure.sql</code></p>
<p><strong>Put the greater than sign between DATABASE-NAME and dump.sql</strong></p>
<p>This command will give you the dump of structure only(no data).</p>
<p>Running these commands will create the <strong>dump.sql</strong> files in the same directory where you are present. In this case, these files can be found at mysql/bin directory.
</p>


<!-- begin(Yahoo ad) --><a href="http://ypn-rss.overture.com/rss/32893/13/click/"><img src="http://ypn-rss.overture.com/rss/32893/13/img/?url=http%3A%2F%2Fjoomla.openapp.org%2F2006%2F06%2F27%2Fhow-to-take-joomla-back-up%2F&amp;pid=4771206150" alt="Ads by Yahoo!" border="0"/></a><!-- end(Yahoo ad) -->


		]]></content:encoded>
			<wfw:commentRSS>http://joomla.openapp.org/2006/06/27/how-to-take-joomla-back-up/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Managing content without technical expertise</title>
		<link>http://joomla.openapp.org/2006/05/30/managing-content-without-technical-expertise/</link>
		<comments>http://joomla.openapp.org/2006/05/30/managing-content-without-technical-expertise/#comments</comments>
		<pubDate>Tue, 30 May 2006 14:33:21 +0000</pubDate>
		<dc:creator>openappdotorg</dc:creator>
		
	<category>Integration</category>
	<category>Business Process</category>
		<guid isPermaLink="false">http://joomla.openapp.org/?p=12</guid>
		<description><![CDATA[Joomla! being open source content management system, benefits the content author to dynamically manage the content of their website without having the technical expertise. This helps in changing the content of the website anytime anywhere. It&#8217;s as easy as 1, 2, 3, and go.
1.Create the content.
2.Save the content(Joomla! Saves the content in database).
3.Now the content [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Joomla!" href="http://www.joomla.org">Joomla!</a> being <a title="Open Source" href="http://www.opensource.org">open source</a> content management system, benefits the content author to dynamically manage the content of their website without having the technical expertise. This helps in changing the content of the website anytime anywhere. It&#8217;s as easy as 1, 2, 3, and go.<br />
1.Create the content.<br />
2.Save the content(Joomla! Saves the content in database).<br />
3.Now the content is published and available on the website.
</p>


<!-- begin(Yahoo ad) --><a href="http://ypn-rss.overture.com/rss/32893/12/click/"><img src="http://ypn-rss.overture.com/rss/32893/12/img/?url=http%3A%2F%2Fjoomla.openapp.org%2F2006%2F05%2F30%2Fmanaging-content-without-technical-expertise%2F&amp;pid=4771206150" alt="Ads by Yahoo!" border="0"/></a><!-- end(Yahoo ad) -->


		]]></content:encoded>
			<wfw:commentRSS>http://joomla.openapp.org/2006/05/30/managing-content-without-technical-expertise/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Control Panel: Global Configuration</title>
		<link>http://joomla.openapp.org/2006/05/26/control-panel-global-configuration/</link>
		<comments>http://joomla.openapp.org/2006/05/26/control-panel-global-configuration/#comments</comments>
		<pubDate>Fri, 26 May 2006 11:24:46 +0000</pubDate>
		<dc:creator>openappdotorg</dc:creator>
		
	<category>Integration</category>
		<guid isPermaLink="false">http://joomla.openapp.org/?p=10</guid>
		<description><![CDATA[You can also configure your site settings after logging in Joomla! as admin. Select the Global Configuration and then you can change all the cofiguration settings like database, content, server, etc.

Go easy and create your own dynamic website.

]]></description>
			<content:encoded><![CDATA[<p>You can also configure your site settings after logging in Joomla! as admin. Select the Global Configuration and then you can change all the cofiguration settings like database, content, server, etc.</p>
<p><img width="482" height="83" alt="Global Cofiguration" src="http://joomla.openapp.org/wp-content/uploads/2006/05/globalconfig3.png" /></p>
<p>Go easy and create your own dynamic website.
</p>


<!-- begin(Yahoo ad) --><a href="http://ypn-rss.overture.com/rss/32893/10/click/"><img src="http://ypn-rss.overture.com/rss/32893/10/img/?url=http%3A%2F%2Fjoomla.openapp.org%2F2006%2F05%2F26%2Fcontrol-panel-global-configuration%2F&amp;pid=4771206150" alt="Ads by Yahoo!" border="0"/></a><!-- end(Yahoo ad) -->


		]]></content:encoded>
			<wfw:commentRSS>http://joomla.openapp.org/2006/05/26/control-panel-global-configuration/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Admin Control Panel</title>
		<link>http://joomla.openapp.org/2006/05/26/admin-control-panel/</link>
		<comments>http://joomla.openapp.org/2006/05/26/admin-control-panel/#comments</comments>
		<pubDate>Fri, 26 May 2006 08:24:11 +0000</pubDate>
		<dc:creator>openappdotorg</dc:creator>
		
	<category>Integration</category>
		<guid isPermaLink="false">http://joomla.openapp.org/?p=9</guid>
		<description><![CDATA[After logging in as admin, the very first page that you see is the Control Panel. This is the page which shows you the most of the controls in Joomla! like adding the new content in the website, managers like user, language, static content, section, categories and menu. You can select any of the category [...]]]></description>
			<content:encoded><![CDATA[<p>After logging in as <strong>admin,</strong> the very first page that you see is the <strong>Control Panel.</strong> This is the page which shows you the most of the controls in Joomla! like adding the new content in the website, managers like user, language, static content, section, categories and menu. You can select any of the category to edit that and save it.</p>
<p><img width="417" height="354" alt="Control Panel" src="http://joomla.openapp.org/wp-content/uploads/2006/05/controlpanel2.png" />
</p>


<!-- begin(Yahoo ad) --><a href="http://ypn-rss.overture.com/rss/32893/9/click/"><img src="http://ypn-rss.overture.com/rss/32893/9/img/?url=http%3A%2F%2Fjoomla.openapp.org%2F2006%2F05%2F26%2Fadmin-control-panel%2F&amp;pid=4771206150" alt="Ads by Yahoo!" border="0"/></a><!-- end(Yahoo ad) -->


		]]></content:encoded>
			<wfw:commentRSS>http://joomla.openapp.org/2006/05/26/admin-control-panel/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Installing Joomla!</title>
		<link>http://joomla.openapp.org/2006/05/26/installing-joomla/</link>
		<comments>http://joomla.openapp.org/2006/05/26/installing-joomla/#comments</comments>
		<pubDate>Fri, 26 May 2006 07:20:05 +0000</pubDate>
		<dc:creator>openappdotorg</dc:creator>
		
	<category>Integration</category>
		<guid isPermaLink="false">http://joomla.openapp.org/?p=7</guid>
		<description><![CDATA[The lattest version of Joomla! is version 1.0.8, you can also find the patches and earlier versions also. Download the zip package from here and uzip it on your localhost directory, that is /var/www/html/MyJoomla. Now open the web browser and write http://localhost/MyJoomla in the address bar, this will lead you to the browser installation of [...]]]></description>
			<content:encoded><![CDATA[<p>The lattest version of Joomla! is <a title="Download Joomla! 1.0.8" href="http://forge.joomla.org/sf/frs/do/viewRelease/projects.joomla/frs.joomla_1_0.1_0_8">version 1.0.8</a>, you can also find the patches and earlier versions also. Download the zip package from <a title="Download Joomla! 1.0.8" href="http://forge.joomla.org/sf/frs/do/viewRelease/projects.joomla/frs.joomla_1_0.1_0_8">here</a> and uzip it on your localhost directory, that is <strong>/var/www/html/MyJoomla</strong>. Now open the web browser and write <strong>http://localhost/MyJoomla</strong> in the address bar, this will lead you to the browser installation of Joomla!</p>
<p>It will check the pre-installation requirements and will display the results there. The main thing to notice here that you have to set the permission of configuration file to be writable. You can skip this step as the configuration script will be given to you latter in the installation and that you can paste in the config.php file and save, but the main thing is to set the permissions of directories and files to be writable by Joomla! Onc you have given the permissions then proceed further.</p>
<p>Now you have to configure <a title="MySQL" href="http://www.mysql.com"><strong>MySQL</strong></a> for your Joomla!</p>
<p><strong>Hostname:</strong> Generally it is localhost<br />
<strong> MySQL Username:</strong> Give the MySQL username e.g. root<br />
<strong> MySQL Password:</strong> Give the password that you have set for the root in MySQL. e.g. root<br />
<strong> MySQL Database:</strong> Give the name of the database that you have created for your Joomla! e.g. My Site<br />
Once Joomla! connects to the database then it will ask for the site name that you want to set.</p>
<p>Now it will ask for the site URL, path and the will provide you with admin password to login as admin. You can change the admin password latter. Now your Joomla! is installed and you can create a dynamic website using Joomla!</p>
<p>The last step is to remove the installation directory from your Joomla! directory.
</p>


<!-- begin(Yahoo ad) --><a href="http://ypn-rss.overture.com/rss/32893/7/click/"><img src="http://ypn-rss.overture.com/rss/32893/7/img/?url=http%3A%2F%2Fjoomla.openapp.org%2F2006%2F05%2F26%2Finstalling-joomla%2F&amp;pid=4771206150" alt="Ads by Yahoo!" border="0"/></a><!-- end(Yahoo ad) -->


		]]></content:encoded>
			<wfw:commentRSS>http://joomla.openapp.org/2006/05/26/installing-joomla/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Wrapper component vs MyPortal module</title>
		<link>http://joomla.openapp.org/2006/05/26/wrapper-component-vs-myportal-module/</link>
		<comments>http://joomla.openapp.org/2006/05/26/wrapper-component-vs-myportal-module/#comments</comments>
		<pubDate>Fri, 26 May 2006 05:08:43 +0000</pubDate>
		<dc:creator>openappdotorg</dc:creator>
		
	<category>Integration</category>
		<guid isPermaLink="false">http://joomla.openapp.org/?p=5</guid>
		<description><![CDATA[Wrapper is a Joomla component which can display any URL in yourweb site.To achieve the same thing SugarCRM uses the module MyPortal.More precise term for both is iFrame.

]]></description>
			<content:encoded><![CDATA[<p>Wrapper is a Joomla component which can display any URL in your<br />web site.<br />To achieve the same thing SugarCRM uses the module MyPortal.<br />More precise term for both is iFrame.
</p>


<!-- begin(Yahoo ad) --><a href="http://ypn-rss.overture.com/rss/32893/5/click/"><img src="http://ypn-rss.overture.com/rss/32893/5/img/?url=http%3A%2F%2Fjoomla.openapp.org%2F2006%2F05%2F26%2Fwrapper-component-vs-myportal-module%2F&amp;pid=4771206150" alt="Ads by Yahoo!" border="0"/></a><!-- end(Yahoo ad) -->


		]]></content:encoded>
			<wfw:commentRSS>http://joomla.openapp.org/2006/05/26/wrapper-component-vs-myportal-module/feed/</wfw:commentRSS>
		</item>
	</channel>
</rss>
