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 Jey To insert the module you select the tab "Installer" in admin panel there you have to ...


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

Register FAQ Members List Calendar Mark Forums Read
  #21 (permalink)  
Old 02-07-2008, 12:54 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

To insert the module you select the tab "Installer" in admin panel there you have to select the "Modules" sub menu. Then upload the modules zip file

Regards
Falcon

Last edited by Falcon : 03-20-2008 at 04:16 AM.
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
  #22 (permalink)  
Old 02-08-2008, 02:03 AM
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 want to use ajax in my joomla site...

Can u please give some hint on it...

I am just getting Restricted Access alert...
Even i Re-installed the component with that ajax file...
__________________
# #
Pugalanthi.N
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #23 (permalink)  
Old 02-08-2008, 03:14 AM
Vani Sri Vani Sri is offline
D-Web Trainee
 
Join Date: Aug 2007
Posts: 33
Vani Sri is on a distinguished road
Default Re: Joomla introduction?

Hi,

pls explain the folder structure in joomla?
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #24 (permalink)  
Old 02-08-2008, 08:37 PM
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?

Quote:
Originally Posted by npugila1983 View Post
hi

I want to insert a record in member table and after that i want insert record in the members roles table for the current user.

After inserting into the member table i need the member id of the last inserted user. Then only i can able toinsert record into the role table.

I am using the store() function to insert this both.

How can i get the member id. ie, last insert_id
Hi Pugal

At first you have to insert data to the first table using store funtion then you can bind the second class using the variable used in the first class for example

$oRow=mosUser($database);
$oRow->id='';
$oRow->username=$_request['user'];
$oRow->password=$_request['user'];
$oRow->store();

$oRowProfile=mosUserProfile($database);
$oRowProfile->id='';
$oRowProfile->userid=$oRow->id;
$oRowProfile->name=$_request['name'];
$oRowProfile->Store();

I think its helpful for you

Regards
Falcon
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #25 (permalink)  
Old 02-08-2008, 08:44 PM
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?

Quote:
Originally Posted by npugila1983 View Post
Hi

I want to use ajax in my joomla site...

Can u please give some hint on it...

I am just getting Restricted Access alert...
Even i Re-installed the component with that ajax file...
hi Pugal

If you are using the ajax page in your site. Don't use this Defined function efined( '_VALID_MOS' ) or die( 'Restricted access' ); it will shows that error. For the ajax page u have to use this define function define( '_VALID_MOS', 1 ); and then you have to include the necessary file like joomla.php, configuration.php and global.php in this format

include_once "../../configuration.php";
require_once('../../globals.php');
include_once "../../includes/joomla.php";

I think it will help you

Regards
Falcon
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #26 (permalink)  
Old 02-08-2008, 08:53 PM
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?

Quote:
Originally Posted by Vani Sri View Post
Hi,

pls explain the folder structure in joomla?

hi

This are the folder structure in joomla

1.adminstrator
2.cache
3.components
4.editor
5.help
6.images
7.installation
8.includes
9.language
10.mambots
11.media
12.modules
13.templates

After installation You have to rename the installation folder

Regards
Falcon

Last edited by Falcon : 02-08-2008 at 11:35 PM.
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #27 (permalink)  
Old 02-10-2008, 09:54 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 have installed a component in joomla. Every thing is working fine.

Now I want to uninstall that component. How can i do this?

Can i able to do this from the admin panel???
__________________
# #
Pugalanthi.N
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #28 (permalink)  
Old 02-11-2008, 04: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?

Hi pugal

You can uninstall the components from admin panel. click installer->components menus there it shows the installed component at the bottom in table format select the component which you want to uninstall and click the unintstall button at the top of the page

Regards
Falcon
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #29 (permalink)  
Old 02-11-2008, 06:01 AM
Jeyaseelansarc Jeyaseelansarc is offline
D-Web Genius
 
Join Date: Mar 2007
Location: Chennai
Posts: 1,162
Jeyaseelansarc is on a distinguished road
Send a message via AIM to Jeyaseelansarc
Default Re: Joomla introduction?

Hi Falcon,
It really help me to learn Joomla to implement in my site. Can i know the way to install the components?
__________________
With,
J. Jeyaseelan

Everything Possible
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #30 (permalink)  
Old 02-11-2008, 06:21 AM
Jeyaseelansarc Jeyaseelansarc is offline
D-Web Genius
 
Join Date: Mar 2007
Location: Chennai
Posts: 1,162
Jeyaseelansarc is on a distinguished road
Send a message via AIM to Jeyaseelansarc
Default Re: Joomla introduction?

Hi,
is there any user defined templates or modules or components available to download and install in my sites?
__________________
With,
J. Jeyaseelan

Everything Possible
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #31 (permalink)  
Old 02-11-2008, 11:48 PM
chocoguy chocoguy is offline
D-Web Sr.Programmer
 
Join Date: Dec 2007
Posts: 103
chocoguy is on a distinguished road
Default Re: Joomla introduction?

Quote:
Originally Posted by Falcon View Post
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
Thnaks for the coding. I have already downloaded Joomla on my computer and I'm also thinking of asking the same question. I 'm glad to see this coding. It has save me a lot of head aches.
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #32 (permalink)  
Old 02-12-2008, 09:52 PM
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?

Quote:
Originally Posted by Jeyaseelansarc View Post
Hi Falcon,
It really help me to learn Joomla to implement in my site. Can i know the way to install the components?
Hi Jey

If you want to install a component for your site, login to the admin panel select the menu Installer->components then browse your component zip file, finally click the upload button. That component will be installed in your site

Regards
Falcon
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #33 (permalink)  
Old 02-12-2008, 09:58 PM
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?

Quote:
Originally Posted by Jeyaseelansarc View Post
Hi,
is there any user defined templates or modules or components available to download and install in my sites?
Hi Jey

Yes there are lot of user defined templates, modules and coponents availabe to download in the following links for joomla. I think it will help you

Joomla! Extensions Directory
Joomla CMS - Download Joomla Components, Modules, Templates - Home
Joomla CMS - Download Joomla Components, Modules, Templates - Home

Regards
Falcon
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #34 (permalink)  
Old 02-13-2008, 06:33 AM
Jeyaseelansarc Jeyaseelansarc is offline
D-Web Genius
 
Join Date: Mar 2007
Location: Chennai
Posts: 1,162
Jeyaseelansarc is on a distinguished road
Send a message via AIM to Jeyaseelansarc
Default Re: Joomla introduction?

hi,
Thanks for the reply and it really help me to get more application easily to my site.

So as we have discussed for the installation procedure for the various modules or templates or components we can do this too.
__________________
With,
J. Jeyaseelan

Everything Possible
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #35 (permalink)  
Old 02-13-2008, 06:36 AM
Jeyaseelansarc Jeyaseelansarc is offline
D-Web Genius
 
Join Date: Mar 2007
Location: Chennai
Posts: 1,162
Jeyaseelansarc is on a distinguished road
Send a message via AIM to Jeyaseelansarc
Default Re: Joomla introduction?

It seems many developer as me who wants to learn Joomla can benefit from this thread here.
__________________
With,
J. Jeyaseelan

Everything Possible
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #36 (permalink)  
Old 02-13-2008, 10:21 PM
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?

Quote:
Originally Posted by Jeyaseelansarc View Post
hi,
Thanks for the reply and it really help me to get more application easily to my site.

So as we have discussed for the installation procedure for the various modules or templates or components we can do this too.
Hi Jey

Yes we can also do those templates, modules, and components, but it has certain file format. We have to follow that file format to create templates, modules and components

Regards
Falcon
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #37 (permalink)  
Old 02-13-2008, 10:24 PM
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?

Quote:
Originally Posted by Jeyaseelansarc View Post
It seems many developer as me who wants to learn Joomla can benefit from this thread here.
Hi

You are right if any developer saw this thread to know about joomla they can easily learn the basic concepts for joomla

Regards
Falcon
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #38 (permalink)  
Old 02-22-2008, 05:05 AM
rajkumar rajkumar is offline
D-Web Trainee
 
Join Date: Nov 2007
Posts: 31
rajkumar is on a distinguished road
Default Re: Joomla introduction?

hi falcon

first i congrats ur replies....
how to implement multiple file upload in joomla....


thanks
rajkumar...
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #39 (permalink)  
Old 02-26-2008, 02:03 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?

Quote:
Originally Posted by rajkumar View Post
hi falcon

first i congrats ur replies....
how to implement multiple file upload in joomla....


thanks
rajkumar...
Hi Rajkumar

Thankyou for your comment on my replies.....

Regards
Falcon
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #40 (permalink)  
Old 02-26-2008, 02:10 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?

Quote:
Originally Posted by rajkumar View Post
hi falcon

first i congrats ur replies....
how to implement multiple file upload in joomla....


thanks
rajkumar...
Hi Rajkumar

First you have to include that multiple file upload javascript or Ajax class at which component that multiple file upload is needed for you and continue with your normal code for multiple file upload

Thanks
Falcon
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 On
Pingbacks are On
Refbacks are On

LinkBacks (?)
LinkBack to this Thread: http://www.discussweb.com/php-programming/5045-joomla-introduction.html
Posted By For Type Date
DiscussWeb IT Community - Technical Support and Technology Discussions This thread Refback 02-05-2008 04:37 AM

Similar Threads
Thread Thread Starter Forum Replies Last Post
Introduction to ColdFusion MasterMind ColdFusion Programming 6 10-04-2008 09:45 PM
joomla disadvantages senraj PHP Programming 18 09-30-2008 03:24 AM
Introduction myself Bettypeng Introductions 3 02-10-2008 12:59 AM
An Introduction to SAP Jeyaseelansarc eCommerce 1 07-18-2007 07:28 AM
HTML Introduction spid4r HTML, CSS and Javascript Coding Techniques 0 03-08-2007 10:10 PM


All times are GMT -7. The time now is 10:48 PM.