All About Mambo! - Mambo is a Content Management System...
googlue
Apr 16 2005, 04:25 PM
Mambo is the best CMS. I have written about it in many other posts elsewhere. I am not going to write about it's pros and cons. However, this tutorial will tell you how to install and maintain this smooth CMS.
Just in case you are wondering what is CMS, it is the acronym for Content Management System. To get a fel of how it looks and what can be done with Mambo, check out my site. There are many other beautiful websites that have ben created with Mambo and I will write about them later.
How to install:
You must have a host with PHP and MySQL facilities. If you are here at trap17 and hosted, you do qualify for this! Congratulations!! That is the first step.
You can install from Fantastico, but it does not always have the latest releases... Currently, Mambo version 4.5.2 is the latest, but Fantastico has version 4.5.1. If you need to install the latest version, you may wish to follow this tutorial.
Notice from jlhaslip:
*edit* per report: Please update to current info. Fantastico currently has 4.5.2.3 Patched-3 or something like that. *end edit*
Go to http://www.mamboserver.com or http://www.mamboforge.com Mamboserver.com is the homepage of Mambo and all new announcements are made there. On the other hand, Mamboforge.net is the official storage site where the latest releases of the base Mambo, aditional components, modules and templates are hosted. When you go to the Mamboforge.net homepage, look at the box on the right side. It has the latest releases listed.
Now you are just one step away from actually installing, you are about to download the Mambo base. Click on the latest release (version 4.5.2 as of today) and download it to your PC. Now log on to your cpanel and create a new folder named mambo or something like that. Upload your Mambo base tar.gz file and extract the contents.
Now, before proceeding further, you have to go the PhpMyAdmin section of the cpanel of trap17 and create a new database and give all permissions to a user with a password.
Now it is a cakewalk, just follow the instructions... you need to give the name of the database, username and password and then everything will be smooth.
Then go to the administration section and play around . Download and install more components, modules and mambots... You will just enjoy it.
If you need any help, you may either post here or go to http://www.mambers.com which is a forum of Mambo users where common problems are discussed and sorted out.
Now that you have installed Mambo, you may need to backup your data in case there is some server problems. There is a component just for this. BigAPE sitebackup component for Mambo can be downloaded here.
When you make large content articles inside Mambo, you can paginate them, which means that you can divide them automatically into many pages with automatic generation of page numbers and links to those pages with a table of contents too!
You use a mambot called 'mospaging' for this purpose and this comes installed by default. YOu ust have to type {mospagebreak} wherever you want the page break to appear.
Under each page, you will have two links, one to the previous page and one to the next page. Many people have asked me how to turn these links into image links rather than text links. I have done this on my site http://www.medspan.info. You can check it there.
Here is the code to do that conversion.
You need to replace the contents of the file - 'mospaging.php' in the /mambots/content/ folder of the Mambo folder.
Here goes the code:
CODE
<?php /** * @version $Id: mospaging.php,v 1.6 2005/02/04 21:13:48 saka Exp $ * @package Mambo * @copyright (C) 2000 - 2005 Miro International Pty Ltd * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * Mambo is Free Software */
/** ensure this file is being included by a parent file */ defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
// find all instances of mambot and put in $matches $matches = array(); preg_match_all( $regex, $row->text, $matches, PREG_SET_ORDER );
// split the text around the mambot $text = preg_split( $regex, $row->text );
// count the number of pages $n = count( $text );
// we have found at least one mambot, therefore at least 2 pages if ($n > 1) { // load mambot params info $query = "SELECT id FROM #__mambots WHERE element = 'mospaging' AND folder = 'content'"; $database->setQuery( $query ); $id = $database->loadResult(); $mambot = new mosMambot( $database ); $mambot->load( $id ); $params =& new mosParameters( $mambot->params );
$title = $params->def( 'title', 1 );
// adds heading or title to <site> Title if ( $title ) { $page_text = $page + 1; $row->page_title = _PN_PAGE .' '. $page_text; if ( !$page ) { // processing for first page parse_str( $matches[0][2], $args );
$heading = $row->title; // allows customization of first page title by checking for `heading` attribute in first bot if ( @$matches[0][2] ) { parse_str( $matches[0][2], $args );
if ( @$args['heading'] ) { $heading = $args['heading']; } }
This tutorial is an extension to my 7 tutorial series about the Cpanel. The 7 different Cpanel
tutorials can be found below. Part 1: E-mail Management Part 2: Useful Site Management Tools
Part 3: Useful Site Management Tools2.1 Part 4: Analysis/Log Files Part 5: Advanced Tools Part
6: PreInstalled Scripts, Extras, and Cpanel Options Part 7: Fantastico Detailed Cpanel
Tutorial Part 2.2: FTP Management For this tutorial, you will need to locate the Icon under
Site Management Tools labeled FTP Manager and also inside of the FTP:// Accounts area...
This tutorial is an extension to my 7 tutorial series about the Cpanel. The 7 different Cpanel
tutorials can be found below. Part 1: E-mail Management Part 2: Useful Site Management Tools
Part 3: Useful Site Management Tools2.1 Part 4: Analysis/Log Files Part 5: Advanced Tools Part
6: PreInstalled Scripts, Extras, and Cpanel Options Part 7: Fantastico Detailed Cpanel
Tutorial Part 2.1: MySQL Management In this tutorial, i will explain how to add, edit, delete
and over-all manage the MySQL Feature in the Cpanel. Creating a MySQL Database 1) ...
This tutorial is an extention to my 7 tutorial series about the Cpanel. The 7 different Cpanel
tutorials can be found below. Part 1: E-mail Management Part 2: Useful Site Management Tools
Part 3: Useful Site Management Tools2.1 Part 4: Analysis/Log Files Part 5: Advanced Tools Part
6: PreInstalled Scripts, Extras, and Cpanel Options Part 7: Fantastico Detailed Cpanel
Tutorial Part 1.1: E-mail Management In this tutorial i will, in detail explain all of the
uses for the E-mail Section of the Cpanel. Then, if this is your first time in the cpane...
This Tutorial will be divided into 7 different parts, and this is the first part, when i get the
other parts together, i will post the links under here /biggrin.gif" style="vertical-align:middle"
emoid=":D" border="0" alt="biggrin.gif" /> Enjoy. Part 1: E-mail Management Part 2: Useful Site
Management Tools Part 4: Analysis/Log Files Part 5: Advanced Tools Part 6: PreInstalled
Scripts, Extras, and Cpanel Options Part 7: Fantastico Detailed Cpanel Tutorial Part 2.1:
Useful Site Management Tools In this tutorial I will, in detail explain all of th...
This Tutorial will be divided into 7 different parts, and this is the first part, when i get the
other parts together, i will post the links under here /biggrin.gif" style="vertical-align:middle"
emoid=":D" border="0" alt="biggrin.gif" /> Enjoy. Part 1: E-mail Management Part 3: Useful Site
Management Tools2.1 Part 4: Analysis/Log Files Part 5: Advanced Tools Part 6: PreInstalled
Scripts, Extras, and Cpanel Options Part 7: Fantastico Detailed Cpanel Tutorial Part 2:
Useful Site Management Tools In this tutorial I will, in detail explain all of t...
This Tutorial will be divided into 7 different parts, and this is the first part, when i get the
other parts together, i will post the links under here /biggrin.gif" style="vertical-align:middle"
emoid=":D" border="0" alt="biggrin.gif" /> Enjoy. Part 2: Useful Site Management Tools Part 3:
Useful Site Management Tools2.1 Part 4: Analysis/Log Files Part 5: Advanced Tools Part 6:
PreInstalled Scripts, Extras, and Cpanel Options Part 7: Fantastico Detailed Cpanel Tutorial
Part 1: E-mail Management In this tutorial I will, in detail explain all of th...
There are many ways to build content for your blog. I am just sharing some ways that I have
personally used to build content-rich blog for my company. (http://blogasia.biz) While I am trying
my best to provide as much information as possible, these are not all the ways to do it. I am merely
sepeking from the point of a 4 month old blogger. So if you have anything to add to this thread
please feel free to do so. 1) Feeds. Also commonly known as RSS / XML / Syndication etc. What
ever it is .. these are merely ways of grabbing information from a website / blog that have...
Looking for mambo, mambo, content, management, system
Searching Video's for mambo, mambo, content, management, system
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE
forum, Create your own topics, Ask Questions, track topics, setup
subscriptions & notifications and Get a Free Website w/ Email and FTP.