Welcome Guest, Not a member yet? Register   Sign In
A3M - Account Authentication & Authorization Module

[eluser]Peng Kong[/eluser]
ok let's talk about the package file structure today.

in root folder

/css - put css style sheets .css
/img - put your images .jpg, .gif, etc
/js - put your javascripts .js
/uploads - user uploaded files (profile pic, etc)
/system - CORE FILES - DO NOT TOUCH - let CI/ellislab/opensourcecommunity maintain this
/system/cache - has 3 folders to cache the stuff openid needs
/system/logs - you can clear your cache here
/system/application - all our stuff goes here
/system/application/controllers
/system/application/models
/system/application/views - im not really using these as i've used HMVC by wiredesignz therefore a3m is located at
/system/application/library
Controller, Modules and MY_Router is necessary for HMVC to work
MY_Session is a modification i made to allow us to do "remmeber me" and KeepAllSessionFlashData.

/system/application/module/account <-- this is where all the a3m files are kept.
account/controller <-- the naming should be obvious. Each controller should roughly map to one page which the user sees taking care of requests to that page
account/helper <-- ssl_helper is something i created to help us create https a3m systems
account/language <-- all text in views come from language files the naming should be obvious which views use which language files.
account/models <-- models -.- don't need i think explain that
account/library <-- things which you should load from your main application.
a3m should remain in the hmvc module folder... you should code your main application in the /application folder. you should called the a3m libraries by doing a $this->load->library('account/authentication'); look at the /application/controller/home.php file and see how i loaded the a3m authentication and user library
account/plugins <-- external libraries are stored in the 'library' folder in the plugins folder. plugins are used to load the external libraries. DO NOT hack external libraries let their respective open source community manage them. if you hack it report to the respective community so it gets updated in the next version and you can replace the whole library.
account/views <-- your xhtml + css. follows yahoo best practice. css loaded in header. js loaded at the end of body tag. using gs960 grid (which you of cuz can throw away) and use something else.


Messages In This Thread
A3M - Account Authentication & Authorization Module - by El Forum - 02-06-2010, 03:48 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-06-2010, 03:58 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-06-2010, 04:00 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-06-2010, 04:12 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-06-2010, 08:34 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-06-2010, 09:42 PM
A3M - Account Authentication & Authorization Module - by El Forum - 02-09-2010, 08:57 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-09-2010, 08:44 PM
A3M - Account Authentication & Authorization Module - by El Forum - 02-09-2010, 09:41 PM
A3M - Account Authentication & Authorization Module - by El Forum - 02-09-2010, 10:10 PM
A3M - Account Authentication & Authorization Module - by El Forum - 02-10-2010, 06:08 PM
A3M - Account Authentication & Authorization Module - by El Forum - 02-11-2010, 02:04 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-11-2010, 03:24 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-11-2010, 07:51 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-11-2010, 06:59 PM
A3M - Account Authentication & Authorization Module - by El Forum - 02-11-2010, 07:54 PM
A3M - Account Authentication & Authorization Module - by El Forum - 02-12-2010, 12:23 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-12-2010, 12:43 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-12-2010, 11:40 PM
A3M - Account Authentication & Authorization Module - by El Forum - 02-18-2010, 02:18 PM
A3M - Account Authentication & Authorization Module - by El Forum - 02-18-2010, 08:40 PM
A3M - Account Authentication & Authorization Module - by El Forum - 02-19-2010, 03:45 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-19-2010, 04:24 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-19-2010, 06:01 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-19-2010, 07:53 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-19-2010, 07:57 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-19-2010, 08:00 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-26-2010, 04:58 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-05-2010, 03:02 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-05-2010, 06:31 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-06-2010, 11:26 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-07-2010, 03:21 PM
A3M - Account Authentication & Authorization Module - by El Forum - 03-07-2010, 07:45 PM
A3M - Account Authentication & Authorization Module - by El Forum - 03-07-2010, 10:24 PM
A3M - Account Authentication & Authorization Module - by El Forum - 03-07-2010, 11:21 PM
A3M - Account Authentication & Authorization Module - by El Forum - 03-07-2010, 11:23 PM
A3M - Account Authentication & Authorization Module - by El Forum - 03-08-2010, 06:59 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-08-2010, 07:54 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-10-2010, 10:29 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-10-2010, 12:08 PM
A3M - Account Authentication & Authorization Module - by El Forum - 03-10-2010, 12:12 PM
A3M - Account Authentication & Authorization Module - by El Forum - 03-10-2010, 12:35 PM
A3M - Account Authentication & Authorization Module - by El Forum - 03-11-2010, 07:39 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-11-2010, 10:31 PM
A3M - Account Authentication & Authorization Module - by El Forum - 03-12-2010, 02:22 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-12-2010, 02:25 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-12-2010, 06:59 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-12-2010, 09:07 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-12-2010, 10:10 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-13-2010, 10:44 PM
A3M - Account Authentication & Authorization Module - by El Forum - 03-15-2010, 04:13 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-15-2010, 05:53 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-17-2010, 01:46 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-17-2010, 01:59 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-17-2010, 02:16 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-17-2010, 06:35 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-17-2010, 06:45 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-17-2010, 07:59 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-17-2010, 08:18 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-22-2010, 09:11 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-22-2010, 11:32 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-22-2010, 02:04 PM
A3M - Account Authentication & Authorization Module - by El Forum - 03-23-2010, 08:42 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-24-2010, 05:35 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-26-2010, 09:30 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-29-2010, 01:05 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-30-2010, 03:32 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-30-2010, 06:37 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-30-2010, 07:36 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-31-2010, 06:43 PM
A3M - Account Authentication & Authorization Module - by El Forum - 03-31-2010, 08:17 PM
A3M - Account Authentication & Authorization Module - by El Forum - 03-31-2010, 08:18 PM
A3M - Account Authentication & Authorization Module - by El Forum - 03-31-2010, 08:30 PM
A3M - Account Authentication & Authorization Module - by El Forum - 03-31-2010, 08:46 PM
A3M - Account Authentication & Authorization Module - by El Forum - 04-01-2010, 06:20 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-01-2010, 06:37 PM
A3M - Account Authentication & Authorization Module - by El Forum - 04-03-2010, 07:49 PM
A3M - Account Authentication & Authorization Module - by El Forum - 04-04-2010, 07:56 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-04-2010, 10:38 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-06-2010, 01:54 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-06-2010, 02:06 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-06-2010, 02:09 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-06-2010, 02:21 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-06-2010, 02:59 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-06-2010, 04:53 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-06-2010, 06:04 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-06-2010, 06:10 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-06-2010, 07:42 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-06-2010, 07:59 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-06-2010, 08:03 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-06-2010, 01:58 PM
A3M - Account Authentication & Authorization Module - by El Forum - 04-06-2010, 02:59 PM
A3M - Account Authentication & Authorization Module - by El Forum - 04-06-2010, 08:57 PM
A3M - Account Authentication & Authorization Module - by El Forum - 04-06-2010, 10:29 PM
A3M - Account Authentication & Authorization Module - by El Forum - 04-07-2010, 08:39 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-07-2010, 08:55 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-07-2010, 11:22 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-07-2010, 11:26 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-07-2010, 07:55 PM
A3M - Account Authentication & Authorization Module - by El Forum - 04-08-2010, 10:26 PM
A3M - Account Authentication & Authorization Module - by El Forum - 04-08-2010, 11:54 PM
A3M - Account Authentication & Authorization Module - by El Forum - 04-08-2010, 11:58 PM
A3M - Account Authentication & Authorization Module - by El Forum - 04-09-2010, 01:50 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-09-2010, 01:54 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-09-2010, 02:01 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-09-2010, 02:03 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-09-2010, 02:47 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-09-2010, 03:19 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-09-2010, 03:30 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-09-2010, 03:34 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-09-2010, 03:38 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-09-2010, 03:55 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-09-2010, 04:02 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-09-2010, 04:28 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-09-2010, 08:41 PM
A3M - Account Authentication & Authorization Module - by El Forum - 04-10-2010, 12:53 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-10-2010, 01:10 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-10-2010, 01:32 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-10-2010, 01:34 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-10-2010, 01:41 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-10-2010, 04:47 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-10-2010, 09:06 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-10-2010, 04:33 PM
A3M - Account Authentication & Authorization Module - by El Forum - 04-10-2010, 04:45 PM
A3M - Account Authentication & Authorization Module - by El Forum - 04-10-2010, 10:47 PM
A3M - Account Authentication & Authorization Module - by El Forum - 04-10-2010, 11:37 PM
A3M - Account Authentication & Authorization Module - by El Forum - 04-10-2010, 11:42 PM
A3M - Account Authentication & Authorization Module - by El Forum - 04-11-2010, 12:54 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-12-2010, 09:06 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-12-2010, 09:12 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-14-2010, 10:04 PM
A3M - Account Authentication & Authorization Module - by El Forum - 04-14-2010, 11:13 PM
A3M - Account Authentication & Authorization Module - by El Forum - 04-14-2010, 11:41 PM
A3M - Account Authentication & Authorization Module - by El Forum - 04-15-2010, 12:04 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-15-2010, 09:40 PM
A3M - Account Authentication & Authorization Module - by El Forum - 04-19-2010, 02:05 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-20-2010, 02:29 PM
A3M - Account Authentication & Authorization Module - by El Forum - 04-20-2010, 09:57 PM
A3M - Account Authentication & Authorization Module - by El Forum - 04-21-2010, 07:49 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-21-2010, 08:07 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-21-2010, 08:38 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-22-2010, 08:04 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-23-2010, 08:16 AM
A3M - Account Authentication & Authorization Module - by El Forum - 05-07-2010, 12:47 PM
A3M - Account Authentication & Authorization Module - by El Forum - 05-11-2010, 01:22 PM
A3M - Account Authentication & Authorization Module - by El Forum - 05-11-2010, 08:42 PM
A3M - Account Authentication & Authorization Module - by El Forum - 05-12-2010, 02:46 AM
A3M - Account Authentication & Authorization Module - by El Forum - 05-12-2010, 03:07 AM
A3M - Account Authentication & Authorization Module - by El Forum - 05-12-2010, 03:26 AM
A3M - Account Authentication & Authorization Module - by El Forum - 05-12-2010, 03:42 AM
A3M - Account Authentication & Authorization Module - by El Forum - 05-12-2010, 03:59 AM
A3M - Account Authentication & Authorization Module - by El Forum - 05-12-2010, 04:09 AM
A3M - Account Authentication & Authorization Module - by El Forum - 05-12-2010, 04:28 AM
A3M - Account Authentication & Authorization Module - by El Forum - 05-12-2010, 06:53 AM
A3M - Account Authentication & Authorization Module - by El Forum - 05-13-2010, 08:18 AM
A3M - Account Authentication & Authorization Module - by El Forum - 05-13-2010, 08:58 AM
A3M - Account Authentication & Authorization Module - by El Forum - 05-18-2010, 11:45 PM
A3M - Account Authentication & Authorization Module - by El Forum - 05-18-2010, 11:59 PM
A3M - Account Authentication & Authorization Module - by El Forum - 05-20-2010, 05:19 AM
A3M - Account Authentication & Authorization Module - by El Forum - 05-20-2010, 06:01 AM
A3M - Account Authentication & Authorization Module - by El Forum - 05-20-2010, 06:13 AM
A3M - Account Authentication & Authorization Module - by El Forum - 05-20-2010, 06:19 AM
A3M - Account Authentication & Authorization Module - by El Forum - 05-21-2010, 12:18 AM
A3M - Account Authentication & Authorization Module - by El Forum - 05-21-2010, 01:07 AM
A3M - Account Authentication & Authorization Module - by El Forum - 05-21-2010, 02:02 AM
A3M - Account Authentication & Authorization Module - by El Forum - 05-21-2010, 02:16 PM
A3M - Account Authentication & Authorization Module - by El Forum - 05-22-2010, 10:04 PM
A3M - Account Authentication & Authorization Module - by El Forum - 05-24-2010, 10:48 PM
A3M - Account Authentication & Authorization Module - by El Forum - 06-03-2010, 12:36 PM
A3M - Account Authentication & Authorization Module - by El Forum - 06-24-2010, 09:35 AM
A3M - Account Authentication & Authorization Module - by El Forum - 06-28-2010, 04:59 AM
A3M - Account Authentication & Authorization Module - by El Forum - 07-07-2010, 02:54 PM
A3M - Account Authentication & Authorization Module - by El Forum - 07-08-2010, 12:46 AM
A3M - Account Authentication & Authorization Module - by El Forum - 07-10-2010, 09:09 AM
A3M - Account Authentication & Authorization Module - by El Forum - 07-10-2010, 02:30 PM
A3M - Account Authentication & Authorization Module - by El Forum - 07-10-2010, 04:20 PM
A3M - Account Authentication & Authorization Module - by El Forum - 07-10-2010, 09:00 PM
A3M - Account Authentication & Authorization Module - by El Forum - 07-11-2010, 10:57 AM
A3M - Account Authentication & Authorization Module - by El Forum - 07-11-2010, 12:39 PM
A3M - Account Authentication & Authorization Module - by El Forum - 07-11-2010, 03:12 PM
A3M - Account Authentication & Authorization Module - by El Forum - 07-11-2010, 03:25 PM
A3M - Account Authentication & Authorization Module - by El Forum - 07-12-2010, 09:08 AM
A3M - Account Authentication & Authorization Module - by El Forum - 07-12-2010, 09:10 AM
A3M - Account Authentication & Authorization Module - by El Forum - 07-15-2010, 10:39 AM
A3M - Account Authentication & Authorization Module - by El Forum - 07-15-2010, 09:32 PM
A3M - Account Authentication & Authorization Module - by El Forum - 07-18-2010, 08:49 AM
A3M - Account Authentication & Authorization Module - by El Forum - 07-18-2010, 08:58 AM
A3M - Account Authentication & Authorization Module - by El Forum - 07-19-2010, 05:38 AM
A3M - Account Authentication & Authorization Module - by El Forum - 07-19-2010, 09:34 AM
A3M - Account Authentication & Authorization Module - by El Forum - 07-19-2010, 09:58 AM
A3M - Account Authentication & Authorization Module - by El Forum - 07-19-2010, 10:01 AM
A3M - Account Authentication & Authorization Module - by El Forum - 07-19-2010, 01:37 PM
A3M - Account Authentication & Authorization Module - by El Forum - 07-19-2010, 10:53 PM
A3M - Account Authentication & Authorization Module - by El Forum - 07-20-2010, 07:42 AM
A3M - Account Authentication & Authorization Module - by El Forum - 08-19-2010, 03:33 PM
A3M - Account Authentication & Authorization Module - by El Forum - 09-03-2010, 02:09 PM
A3M - Account Authentication & Authorization Module - by El Forum - 09-04-2010, 12:14 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-05-2010, 12:03 PM
A3M - Account Authentication & Authorization Module - by El Forum - 09-05-2010, 02:34 PM
A3M - Account Authentication & Authorization Module - by El Forum - 09-08-2010, 09:54 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-12-2010, 03:22 PM
A3M - Account Authentication & Authorization Module - by El Forum - 09-14-2010, 02:24 PM
A3M - Account Authentication & Authorization Module - by El Forum - 09-16-2010, 10:17 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-16-2010, 04:53 PM
A3M - Account Authentication & Authorization Module - by El Forum - 09-16-2010, 06:13 PM
A3M - Account Authentication & Authorization Module - by El Forum - 09-16-2010, 11:39 PM
A3M - Account Authentication & Authorization Module - by El Forum - 09-19-2010, 12:50 PM
A3M - Account Authentication & Authorization Module - by El Forum - 09-19-2010, 09:59 PM
A3M - Account Authentication & Authorization Module - by El Forum - 09-19-2010, 10:23 PM
A3M - Account Authentication & Authorization Module - by El Forum - 09-20-2010, 02:33 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-20-2010, 02:49 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-20-2010, 02:57 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-20-2010, 03:20 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-20-2010, 03:41 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-20-2010, 04:46 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-20-2010, 07:25 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-20-2010, 08:46 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-20-2010, 09:26 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-20-2010, 09:41 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-20-2010, 09:47 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-20-2010, 11:02 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-20-2010, 11:18 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-20-2010, 11:28 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-20-2010, 11:35 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-20-2010, 11:36 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-20-2010, 11:38 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-20-2010, 12:41 PM
A3M - Account Authentication & Authorization Module - by El Forum - 09-20-2010, 02:11 PM
A3M - Account Authentication & Authorization Module - by El Forum - 09-20-2010, 03:15 PM
A3M - Account Authentication & Authorization Module - by El Forum - 09-21-2010, 03:32 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-21-2010, 05:57 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-21-2010, 06:59 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-21-2010, 08:13 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-21-2010, 08:15 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-21-2010, 08:33 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-21-2010, 08:41 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-21-2010, 08:52 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-21-2010, 10:05 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-21-2010, 11:08 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-21-2010, 11:18 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-21-2010, 11:27 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-21-2010, 12:52 PM
A3M - Account Authentication & Authorization Module - by El Forum - 09-21-2010, 01:19 PM
A3M - Account Authentication & Authorization Module - by El Forum - 09-21-2010, 01:28 PM
A3M - Account Authentication & Authorization Module - by El Forum - 09-21-2010, 03:26 PM
A3M - Account Authentication & Authorization Module - by El Forum - 09-22-2010, 10:20 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-22-2010, 01:57 PM
A3M - Account Authentication & Authorization Module - by El Forum - 09-22-2010, 02:04 PM
A3M - Account Authentication & Authorization Module - by El Forum - 09-22-2010, 02:11 PM
A3M - Account Authentication & Authorization Module - by El Forum - 09-22-2010, 02:30 PM
A3M - Account Authentication & Authorization Module - by El Forum - 09-22-2010, 02:41 PM
A3M - Account Authentication & Authorization Module - by El Forum - 09-22-2010, 02:48 PM
A3M - Account Authentication & Authorization Module - by El Forum - 09-23-2010, 08:03 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-23-2010, 11:57 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-23-2010, 11:58 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-23-2010, 12:00 PM
A3M - Account Authentication & Authorization Module - by El Forum - 09-23-2010, 12:06 PM
A3M - Account Authentication & Authorization Module - by El Forum - 09-23-2010, 01:14 PM
A3M - Account Authentication & Authorization Module - by El Forum - 09-24-2010, 07:11 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-27-2010, 01:11 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-28-2010, 11:42 AM
A3M - Account Authentication & Authorization Module - by El Forum - 09-29-2010, 07:40 AM
A3M - Account Authentication & Authorization Module - by El Forum - 10-06-2010, 07:17 PM
A3M - Account Authentication & Authorization Module - by El Forum - 10-22-2010, 07:30 AM
A3M - Account Authentication & Authorization Module - by El Forum - 10-25-2010, 07:59 AM
A3M - Account Authentication & Authorization Module - by El Forum - 11-18-2010, 11:01 PM
A3M - Account Authentication & Authorization Module - by El Forum - 11-19-2010, 11:27 AM
A3M - Account Authentication & Authorization Module - by El Forum - 11-19-2010, 11:45 AM
A3M - Account Authentication & Authorization Module - by El Forum - 11-19-2010, 11:50 AM
A3M - Account Authentication & Authorization Module - by El Forum - 11-19-2010, 01:04 PM
A3M - Account Authentication & Authorization Module - by El Forum - 11-24-2010, 01:04 PM
A3M - Account Authentication & Authorization Module - by El Forum - 11-29-2010, 07:08 PM
A3M - Account Authentication & Authorization Module - by El Forum - 11-29-2010, 08:30 PM
A3M - Account Authentication & Authorization Module - by El Forum - 11-29-2010, 09:57 PM
A3M - Account Authentication & Authorization Module - by El Forum - 12-04-2010, 08:23 PM
A3M - Account Authentication & Authorization Module - by El Forum - 12-07-2010, 07:54 AM
A3M - Account Authentication & Authorization Module - by El Forum - 12-07-2010, 08:14 AM
A3M - Account Authentication & Authorization Module - by El Forum - 12-08-2010, 06:10 PM
A3M - Account Authentication & Authorization Module - by El Forum - 12-08-2010, 09:11 PM
A3M - Account Authentication & Authorization Module - by El Forum - 12-09-2010, 04:11 AM
A3M - Account Authentication & Authorization Module - by El Forum - 12-09-2010, 05:33 AM
A3M - Account Authentication & Authorization Module - by El Forum - 12-09-2010, 10:56 AM
A3M - Account Authentication & Authorization Module - by El Forum - 12-09-2010, 11:41 AM
A3M - Account Authentication & Authorization Module - by El Forum - 12-10-2010, 04:10 AM
A3M - Account Authentication & Authorization Module - by El Forum - 12-10-2010, 10:57 AM
A3M - Account Authentication & Authorization Module - by El Forum - 12-11-2010, 12:39 PM
A3M - Account Authentication & Authorization Module - by El Forum - 12-12-2010, 12:25 PM
A3M - Account Authentication & Authorization Module - by El Forum - 12-18-2010, 04:38 AM
A3M - Account Authentication & Authorization Module - by El Forum - 12-18-2010, 04:43 AM
A3M - Account Authentication & Authorization Module - by El Forum - 12-19-2010, 05:29 PM
A3M - Account Authentication & Authorization Module - by El Forum - 12-20-2010, 02:35 AM
A3M - Account Authentication & Authorization Module - by El Forum - 12-20-2010, 01:39 PM
A3M - Account Authentication & Authorization Module - by El Forum - 12-21-2010, 03:31 PM
A3M - Account Authentication & Authorization Module - by El Forum - 12-21-2010, 08:04 PM
A3M - Account Authentication & Authorization Module - by El Forum - 12-23-2010, 10:19 AM
A3M - Account Authentication & Authorization Module - by El Forum - 01-04-2011, 07:01 AM
A3M - Account Authentication & Authorization Module - by El Forum - 01-04-2011, 01:15 PM
A3M - Account Authentication & Authorization Module - by El Forum - 01-05-2011, 04:08 AM
A3M - Account Authentication & Authorization Module - by El Forum - 01-05-2011, 01:11 PM
A3M - Account Authentication & Authorization Module - by El Forum - 01-05-2011, 11:16 PM
A3M - Account Authentication & Authorization Module - by El Forum - 01-15-2011, 04:22 PM
A3M - Account Authentication & Authorization Module - by El Forum - 01-15-2011, 10:40 PM
A3M - Account Authentication & Authorization Module - by El Forum - 01-15-2011, 10:41 PM
A3M - Account Authentication & Authorization Module - by El Forum - 01-15-2011, 10:49 PM
A3M - Account Authentication & Authorization Module - by El Forum - 01-15-2011, 11:11 PM
A3M - Account Authentication & Authorization Module - by El Forum - 01-16-2011, 12:00 AM
A3M - Account Authentication & Authorization Module - by El Forum - 01-16-2011, 12:01 AM
A3M - Account Authentication & Authorization Module - by El Forum - 01-16-2011, 08:01 PM
A3M - Account Authentication & Authorization Module - by El Forum - 01-21-2011, 02:33 AM
A3M - Account Authentication & Authorization Module - by El Forum - 01-21-2011, 10:20 PM
A3M - Account Authentication & Authorization Module - by El Forum - 01-22-2011, 02:26 AM
A3M - Account Authentication & Authorization Module - by El Forum - 01-22-2011, 01:10 PM
A3M - Account Authentication & Authorization Module - by El Forum - 01-23-2011, 05:31 AM
A3M - Account Authentication & Authorization Module - by El Forum - 01-23-2011, 07:16 AM
A3M - Account Authentication & Authorization Module - by El Forum - 01-23-2011, 08:41 PM
A3M - Account Authentication & Authorization Module - by El Forum - 01-24-2011, 08:03 AM
A3M - Account Authentication & Authorization Module - by El Forum - 01-25-2011, 08:48 AM
A3M - Account Authentication & Authorization Module - by El Forum - 01-25-2011, 07:03 PM
A3M - Account Authentication & Authorization Module - by El Forum - 02-01-2011, 10:19 PM
A3M - Account Authentication & Authorization Module - by El Forum - 02-02-2011, 03:49 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-02-2011, 06:29 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-02-2011, 08:23 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-03-2011, 10:05 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-09-2011, 04:31 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-10-2011, 11:36 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-10-2011, 12:28 PM
A3M - Account Authentication & Authorization Module - by El Forum - 02-13-2011, 02:40 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-13-2011, 06:28 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-13-2011, 09:58 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-17-2011, 12:55 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-17-2011, 01:16 PM
A3M - Account Authentication & Authorization Module - by El Forum - 02-17-2011, 11:44 PM
A3M - Account Authentication & Authorization Module - by El Forum - 02-20-2011, 01:31 PM
A3M - Account Authentication & Authorization Module - by El Forum - 02-21-2011, 02:09 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-22-2011, 06:57 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-22-2011, 06:59 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-22-2011, 07:02 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-22-2011, 07:03 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-22-2011, 07:04 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-22-2011, 07:07 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-22-2011, 07:07 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-22-2011, 07:08 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-22-2011, 07:10 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-28-2011, 03:00 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-01-2011, 03:29 PM
A3M - Account Authentication & Authorization Module - by El Forum - 03-02-2011, 08:47 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-03-2011, 11:46 AM
A3M - Account Authentication & Authorization Module - by El Forum - 03-08-2011, 04:24 PM
A3M - Account Authentication & Authorization Module - by El Forum - 03-21-2011, 02:54 PM
A3M - Account Authentication & Authorization Module - by El Forum - 03-22-2011, 08:07 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-18-2011, 06:50 AM
A3M - Account Authentication & Authorization Module - by El Forum - 04-19-2011, 12:00 PM
A3M - Account Authentication & Authorization Module - by El Forum - 04-21-2011, 10:35 AM
A3M - Account Authentication & Authorization Module - by El Forum - 05-17-2011, 06:25 AM
A3M - Account Authentication & Authorization Module - by El Forum - 05-24-2011, 02:05 PM
A3M - Account Authentication & Authorization Module - by El Forum - 05-24-2011, 04:43 PM
A3M - Account Authentication & Authorization Module - by El Forum - 05-24-2011, 05:23 PM
A3M - Account Authentication & Authorization Module - by El Forum - 05-24-2011, 06:33 PM
A3M - Account Authentication & Authorization Module - by El Forum - 05-25-2011, 06:27 AM
A3M - Account Authentication & Authorization Module - by El Forum - 05-25-2011, 08:28 AM
A3M - Account Authentication & Authorization Module - by El Forum - 05-25-2011, 09:28 AM
A3M - Account Authentication & Authorization Module - by El Forum - 06-06-2011, 10:06 PM
A3M - Account Authentication & Authorization Module - by El Forum - 06-07-2011, 05:30 AM
A3M - Account Authentication & Authorization Module - by El Forum - 06-07-2011, 05:37 AM
A3M - Account Authentication & Authorization Module - by El Forum - 06-07-2011, 06:33 AM
A3M - Account Authentication & Authorization Module - by El Forum - 06-12-2011, 05:16 PM
A3M - Account Authentication & Authorization Module - by El Forum - 06-17-2011, 11:07 AM
A3M - Account Authentication & Authorization Module - by El Forum - 06-25-2011, 07:17 AM
A3M - Account Authentication & Authorization Module - by El Forum - 06-25-2011, 01:34 PM
A3M - Account Authentication & Authorization Module - by El Forum - 08-02-2011, 10:29 AM
A3M - Account Authentication & Authorization Module - by El Forum - 08-10-2011, 07:12 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-10-2012, 06:49 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-14-2012, 09:19 AM
A3M - Account Authentication & Authorization Module - by El Forum - 02-14-2012, 10:03 PM
A3M - Account Authentication & Authorization Module - by El Forum - 03-18-2012, 11:02 AM
A3M - Account Authentication & Authorization Module - by El Forum - 06-26-2012, 02:44 PM
A3M - Account Authentication & Authorization Module - by El Forum - 09-10-2012, 12:55 PM
A3M - Account Authentication & Authorization Module - by El Forum - 09-10-2012, 02:20 PM
A3M - Account Authentication & Authorization Module - by El Forum - 11-23-2012, 09:57 PM
A3M - Account Authentication & Authorization Module - by El Forum - 03-13-2013, 03:54 PM
A3M - Account Authentication & Authorization Module - by El Forum - 03-24-2013, 02:01 AM



Theme © iAndrew 2016 - Forum software by © MyBB