IT Community - Software Programming, Web Development and Technical Support

Joomla introduction?

This is a discussion on Joomla introduction? within the PHP Programming forums, part of the Web Development category; Hi, I want to know more on Joomla. I heard that it is very popular PHP framework. How can i ...


Go Back   IT Community - Software Programming, Web Development and Technical Support > Web Development > PHP Programming

Register FAQ Members List Calendar Mark Forums Read
  #1  
Old 01-22-2008, 03:00 AM
Jeyaseelansarc Jeyaseelansarc is offline
D-Web Genius
 
Join Date: Mar 2007
Location: Chennai
Posts: 1,163
Jeyaseelansarc is on a distinguished road
Send a message via AIM to Jeyaseelansarc
Default Joomla introduction?

Hi,
I want to know more on Joomla. I heard that it is very popular PHP framework. How can i start to implement this in my site?
__________________
With,
J. Jeyaseelan

Everything Possible
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2  
Old 01-22-2008, 03:18 AM
Falcon Falcon is offline
D-Web Analyst
 
Join Date: Nov 2007
Location: Chennai
Posts: 289
Falcon is on a distinguished road
Default Re: Joomla introduction?

Joomla! is an Content Management System (CMS) that will help you build websites and other powerful online applications. Best of all, Joomla! is an open source solution that is freely available to everybody.

Joomla! is used all over the world to power everything from simple, personal homepages to complex corporate web applications. Here are just some of the ways people use our software:

* Corporate websites or portals
* Online commerce
* Small business websites
* Non-profit and organizational websites
* Government applications
* Corporate intranets and extranets
* School and church websites
* Personal or family homepages
* Community-based portals
* Magazines and newspapers
* the possibilities are limitless…

Joomla! can be used to easily manage every aspect of your website, from adding content and images to updating a product catalog or taking online reservations.

Thanks
Falcon :-)
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3  
Old 01-22-2008, 03:28 AM
vadivelanvaidyanathan vadivelanvaidyanathan is offline
D-Web Genius
 
Join Date: Feb 2007
Posts: 790
vadivelanvaidyanathan is on a distinguished road
Default Re: Joomla introduction?

For more information visit the following links

Link1
Link2
Link3
Link4
__________________
V.Vadivelan

There never a wrong time to do the right thing.
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4  
Old 01-23-2008, 12:15 AM
Falcon Falcon is offline
D-Web Analyst
 
Join Date: Nov 2007
Location: Chennai
Posts: 289
Falcon is on a distinguished road
Default Re: Joomla introduction?

hi jeyaseelan

At First user have to download the joomla package for the site Joomla! then the user have to unzip that package in the server. Then the user have to access that package through the browser like <p>http://localhost/joomla/</p> that package ask some configuration details for our site. After fillup all the configuration detail the package ask the user to rename the installation folder to no acesses that folder. After rename that folder our site will lauched. Then we can access our site using the url <p>http://localhost/joomla/</p>

Thanks
Falcon
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5  
Old 01-23-2008, 06:04 AM
Jeyaseelansarc Jeyaseelansarc is offline
D-Web Genius
 
Join Date: Mar 2007
Location: Chennai
Posts: 1,163
Jeyaseelansarc is on a distinguished road
Send a message via AIM to Jeyaseelansarc
Default Re: Joomla introduction?

Hi Falcon,
Thanks for the reply
how is it used to create it in my page. Is it needed anything to install in my server?
__________________
With,
J. Jeyaseelan

Everything Possible
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6  
Old 01-25-2008, 05:28 AM
Falcon Falcon is offline
D-Web Analyst
 
Join Date: Nov 2007
Location: Chennai
Posts: 289
Falcon is on a distinguished road
Default Re: Joomla introduction?

hi jey

yes you need to install your own template, component and module in server to view your website. All the three items can install through the admin panel. The admin has all control to dynamically change the template or modules and admin can install and uninstall all the three items

Regards
Falcon
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7  
Old 01-29-2008, 02:34 AM
Falcon Falcon is offline
D-Web Analyst
 
Join Date: Nov 2007
Location: Chennai
Posts: 289
Falcon is on a distinguished road
Default Re: Joomla introduction?

hi jey

When you are installing a template or component or module XML Page must be important otherwise joomla wont accept your template or component or module to install. You have to mention the filenames and also you have to mention that what you are going install template or component or module and its name in that XML Page

Regards
Falcon
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8  
Old 01-31-2008, 09:28 PM
npugila1983 npugila1983 is offline
D-Web Trainee
 
Join Date: Dec 2007
Posts: 13
npugila1983 is on a distinguished road
Default Re: Joomla introduction?

hi

I am using joomla for the first time

I need to get a clear idea about handling user password in joomla....

Can U please explain clearly about that salt algorithm used in joomla?
__________________
# #
Pugalanthi.N
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9  
Old 02-01-2008, 03:53 AM
Falcon Falcon is offline
D-Web Analyst
 
Join Date: Nov 2007
Location: Chennai
Posts: 289
Falcon is on a distinguished road
Default Re: Joomla introduction?

Hi Pugalanthi

For registration, We have to get the password from the input field then we have to create a salt(key) in 16 digit value dynamically then encrypt the password using that salt(key), then concatenate that encrypted password and salt(key), then inserted into your table, for example

$vPassword=$_POST['txtPassword'];
$salt = mosMakePassword(16);
$crypt = md5($vPassword.$salt);
$vPassword = $crypt.':'.$salt;


For Login, Get the username or userid fetch the password from the user table split the password into two part using explode and List function take the salt(key) value for that splited data then encrypted that given password using that salt(key). Check the ecncrypted given password and splited password or equal if its not equal send the error message invalid password. use the same concept for change password also, Example for login password check

$vUsername=$_POST['txtUsername'];
$vPassword=$_POST['txtPassword'];

$vSql="select password from #__users where username = "$vUsername;
$database->setQuery($vSql);
$database->loadObject($vRow)

list($hash, $salt) = explode(':', $row->password);
$cryptpass = md5($vPassword.$salt);
$check = strcmp($hash,$cryptpass);

if($check != 0)
{
echo "Invalid Password";
}

Regards
Falcon

Last edited by Falcon : 02-01-2008 at 04:01 AM.
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10  
Old 02-04-2008, 12:39 AM
Jeyaseelansarc Jeyaseelansarc is offline
D-Web Genius
 
Join Date: Mar 2007
Location: Chennai
Posts: 1,163
Jeyaseelansarc is on a distinguished road
Send a message via AIM to Jeyaseelansarc
Default Re: Joomla introduction?

Hi,
I am very eager to know more on Joomla development. I have installed Joomla. I want to have my own template. how can i install template?

Thanks
__________________
With,
J. Jeyaseelan

Everything Possible
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
Php – Hminformatics | Web 2.0 | Html | Css | Joomla hminformatics Introductions 1 07-04-2009 11:41 PM
My Introduction rony321 Introductions 1 07-04-2009 12:08 PM
Joomla Polls not working!!! bablu Search Engine Optimization 0 01-13-2009 06:12 AM
joomla disadvantages senraj PHP Programming 18 09-30-2008 03:24 AM
Joomla! and SEO Ameno Search Engine Optimization 0 04-23-2008 02:38 AM


All times are GMT -7. The time now is 12:31 AM.


Copyright ©2004 - 2007, DiscussWeb. All Rights Reserved.
Our Partners
Stamford Dentist | Euro Millions Lottery | Tech Support Services

SEO by vBSEO 3.0.0