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 ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| |||
| |||
| 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 |
|
#2
| |||
| |||
| 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 :-) |
|
#4
| |||
| |||
| 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 ![]() |
|
#5
| |||
| |||
| 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 |
|
#6
| |||
| |||
| 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 ![]() |
|
#7
| |||
| |||
| 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 ![]() |
|
#8
| |||
| |||
| 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 |
|
#9
| |||
| |||
| 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. |
|
#10
| |||
| |||
| 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 |
![]() |
| Thread Tools | |
| Display Modes | |
| |
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 |
Our Partners |