Articles
How to move content from one joomla site to another

My partner Colin was amidst another relaunch of his business website and opted to do a joomla 1.5 version to replace his current Joomla 1.0.15 site but I guess he did not want to bother with the funky migration script when all he really needed was the actual content form the old site and not much else...

He found a cool content export tool here:

http://www.bestdownloadsites.com/joomla/download-component

It compiles your webpages into a component that you simply install and PRESTO! - all your content is on your new site!

Make sure you get the correct version for each site - the 1.5 component has to go on the 1.5 website (your "new" one) and you need to export from your 1.0.15 site using the 1.0.15 component.

The link to this resource on the JED is:

http://extensions.joomla.org/extensions/hosting-&-servers/data-conversion/4054/details

 

 

 

 

 
These are the blog comment extensions for Joomla 1.5:

These are the blog comment extensions for Joomla 1.5:

 
Understanding Output Overrides

Copied From Joomla! Documentation -

http://docs.joomla.org/Understanding_Output_Overrides


Module Chrome

"Joomla!" 1.0 had a number of fixed styles that could display a list of modules in a particular position. These where represented by numbers:

  • 0 (the default) displayed modules in a vertical table
  • 1 displayed them in a horizontal table
  • -1 displayed the raw module output
  • -2 displayed the modules in a XHTML compatible format with the title in a H3 tag.
  • -3 displayed modules in a set of nested DIVs that allowed for rounded-corner techniques

 

 


 

 

It was a great system except for two things:

  1. Nobody could remember which number was which, and
  2. You couldn't expand on the styles.

Well, in 1.5, the numbers are still recognised, but more commonly the style is represented as a word. As well as that, the syntax for displaying a module position was changed. For example, this snippet displays each module in the left position in the xhtml style:

<jdoc:include type="modules" name="left" style="xhtml" />

The built-in styles that are now available are:

  • table (was 0 and is the default)
  • horz (was 1)
  • none (was -1)
  • xhtml (was -2)
  • rounded (was -3)
  • outline (new - used to preview module positions - see screenshot above)

In the source code, these styles are actually referred to ask "chrome". The default chrome can actually be found in the system template provided in the default "Joomla!" install:

/templates/system/html/modules.php

This file is maintained by the project so you should never modify it directly otherwise there is a risk that you will loose your changes if and when you upgrade your "Joomla!" installation.

To create your own chrome, or module styles, all you need to do is create or edit modules.php under the templates /html/ directory (this is the same directory we have been talking about for component and module layout overrides).

The rhuk_milkyway template actually does provide some extra chrome as an example (it provides and new example style called "slider"). This can be found in the following file:

/templates/rhuk_milkyway/html/modules.php

To create your own chrome is really easy. Let's look at ficticious example that displays the module in a Definition List (a set of DL's, DT's and DD's).

Just add the following function to the /html/modules.php file in your default template directory (create it if it does not exist):

/*
* Module chrome that wraps the module in a definition list
*/

function modChrome_dlist($module, &$params, &$attribs)
{ ?>
<dl class="<?php echo $params->get('moduleclass_sfx'); ?>">
<?php if ($module->showtitle != 0) : ?>
<dt>
<?php echo $module->title; ?>
</dt>
<?php endif; ?>
<dd>
<?php echo $module->content; ?>
</dd>
</dl>
<?php
}



We will be calling the style "dlist", so the name of the function needs to be modChrome_dlist and caled via the template like this:

<jdoc:include type="modules" name="left" style="dlist" />

The function must take the three arguments as shown for the module object, the module parameters, and lastly the $attribs is an array of all the attributes in the jdoc XML tag.

There are three main properties in the module object to be concerned with:

  • showtitle tells you whether to show the title of the module of not
  • title is the title of the module
  • content is the output of the module (from its layout)

This is a very simple case and you can of course design more complex styles, possibly using custom atrributes in the XML tag.


 
Save Money Using the Web
a list of a few things I can cover in a nuts and bolts class....

Save money with opensource!

MS Office Clone - Open Office save $499.00
Quickbooks - Vtiger- Free CRM - save $399.00

Fire your webmaster! - Save hundreds, if not thousands w/ Joomla

Save Money w/ Skype save $24.00 - 100.00
Save Money w/ Picasa -Save $79.00 of Paint Shop Pro

Paypal Intro
Godaddy.com intro

-------------------------------------------------

Additional Courses:
  • Building Income Generating Websites w/Joomla
  • Building Blogs and Podcasts w/serendipity instead of wordpress
  • Social Sites and why you should be on them!
  • Facebook Intensive
  • Youtube and simple video (pc, no mac)
  • Paypal Intensive
  • Joomla Intensive
  • Blogging / Podcasting sites Intensive
  • etc....

thats about it for now....


 
A Commercial CMS

http://www.ektron.com/index.aspx

The Standard deployment of CMS400.NET v7.6 supports the core features you need, from author-friendly content editing to Web 2.0 blogs, forums, polls and surveys. Ektron’s market-leading taxonomy, search and Smart Forms round out the functionality you look for in an initial deployment, and give you reliability and scalability that open source and custom CMS packages lack. The Standard deployment of CMS400.NET provides your organization the core CMS functionality that can grow with your business.

Description Price
1 URL/5 CMS Users $5,000
1 URL/10 CMS Users $7,500
1 URL/25 CMS Users $15,000
1 URL/Unlimited CMS Users $30,000
 
<< Start < Prev 1 2 Next > End >>

Page 1 of 2