06 Jul 2008 |
View Comments
(1 Vote)
|
Recently I have been working on a huge project took over 2 months. This project involved building a custom Joomla template , modules and modifying existing components and modules. After I finished this site I had like 12 modified component , 5 new and modified modules and a task to install it over 50 websites!! There are some components help you create a backup of your website helping you to install it on new servers like JoomlaCloner. I wanted to do it without any 3rd party addons and it worked. I created my installer version loaded with all the addons and contents I need To create a custom Joomla installer you need :
$DBSample = intval( mosGetParam( $_POST, 'DBSample', 1 ) ); and remove :
<tr>
<td>
<input type="checkbox" name="DBSample" id="DBSample" value="1" <?php if ($DBSample) echo 'checked="checked"'; ?> />
</td>
<td>
<label for="DBSample">Install Sample Data</label>
</td>
<td>
<em>Don't uncheck this option unless you are experienced in using Joomla!</em>
</td>
</tr>
This part remove the ( Install Sample Data ) from the setup to make sure no conflict occure between your version and Joomla's sample content.
Notice: During installation process, Joomla use 2 files to import the data
Some may want to split their sql file into the 2 files. The previous step wont be necessary. You're done |




