Who is online

We have 12 guests online
Setting up Google Analytics for your Joomla Site.
Written by Chetan Madaan    Tuesday, 23 June 2009 20:57    PDF Print E-mail
( 4 Votes )

In This Tutorial We will be learning install Google analytics Code for your Joomla site.

First of all... there are several different ways to get Google Analytics up to work with your joomla site via modules, plugins, components. But we don't trust third parties that much.So, in this tutorial we will be just editing the html of our site template and inserting the code directly into it!

1. Navigate to Extensions >> Template Manager.

 

2. On this page you will see a list of templates installed in your joomla site. Select the template you want to edit.

 

3. Hit the Edit button on the top right of the page.

4. Some Templates have Parameters which you can change. This can include Color variations, Width and other template properties.

 

5. The other things you can do here is Edit the index file of the template. Every template is based on a main index.php file which can be edited here... Click the Edit HTML button to view the code of the index.php file and make changes to it.

6. After you click on Edit HTML you can see all the code of the Template here. You are free to edit it and make changes to it.

7. Now go to the end of this code and you will see the two lines.

</body>
</html>

Put your Google Analytics code right before the </body> tag and you are done!

 

 
Setting up Godaddy SMTP with joomla.
Written by Chetan Madaan    Tuesday, 23 June 2009 20:30    PDF Print E-mail
( 2 Votes )

In This Tutorial We will be setting up our joomla site email to work with shared Hosting Package. The very first step here will be to create a Email account in your Godaddy shared hosting package. Here is an tutorials from godaddy.com which will tell you on how to setup an email account in your godaddy account Here .After you are done setting up an account follow the steps below to make the things work!

1. Navigate to Site >> Global configuration

Joomla Tutorials

 

2. Navigate to server settings page and on the right hand side you will have the SMTP Mail settings.


Joomla Tutorials

Details needs to be filled:


SMTP Server
Mail from: Full Email Address
From Name: Email address that will appear from the sender. (Can't be blank.)
Sendmail Path: /usr/sbin/sendmail
SMTP Authentication X No Yes
SMTP Username: The user name you created when you set up your email account.
SMTP Password: *****
SMTP Host: relay-hosting.secureserver.net

 
How to Turn off Register Globals using .htaccess OR php.ini STOP RFI
Written by Chetan Madaan    Thursday, 14 May 2009 15:34    PDF Print E-mail
( 5 Votes )

Is this tutorial we will be leaning on how to turn Register globals off to make your joomla secure.

you would need to add this line at the end of your .htaccess file.

php_flag register_globals off

In addition you may need to create (or edit) a php.ini file in your joomla! root directory. The file should contain this line:

register_globals = off
 
Adding a Module Position in a Joomla 1.5 Template
Written by Chetan Madaan    Thursday, 14 May 2009 15:19    PDF Print E-mail
( 3 Votes )

In this tutorial we will be learning on how to add a new module position to our joomla 1.5 template.

1. Add code to template PHP file.

For example, this would go in the index.php file in the template folder - or if you are adding it in an include file.

<?php if ($this->countModules('user6')) : ?>
<div id="user6" >
<jdoc:include type="modules" name="user6" style="xhtml" />
</div>
<?php endif; ?>

2. Add module name to templateDetails.xml

You then need to tell Joomla which module positions are available in this template. If you don’t do this step, then Joomla will not present the module position when giving you the option of where to place a module.

templateDetails.xml is in XML format. Within the <install> namespace, add this:

<positions>
<position>user6</position>
</positions>
If you already have positions listed, just add the <position>user6</position> part along with the rest of them.
 
How to Enable SEF URLs in Joomla 1.5.X
Written by Mike    Monday, 04 May 2009 18:31    PDF Print E-mail
( 2 Votes )

In this tutorial we will enable search Englne Friendly (SEF)URLS.

1. Begin by navigating to Site>> Global Configuration.

 

2. We want to set search Engine Freindly URLS to yes. >>If you are on an Apache server that uses mod_rewrite set this option to yes. otherwise leave it to no.

 

 
  • «
  •  Start 
  •  Prev 
  •  1 
  •  2 
  •  3 
  •  4 
  •  5 
  •  6 
  •  Next 
  •  End 
  • »


Page 1 of 6