[eluser]wiredesignz[/eluser]
I have successfully installed Freakauth_light with ME5.1 (Should be the same with ME4.2)
Note: No allowance has been made for installing the freakauth example files.
Copy all freakauth files
except controllers into their respective applicaton/directories.
Move models in FreakAuth_light subdirectory up one level into models directory.
Create a freakauth module, add
all of the controllers to freakauth/controllers/, the admin subdirectory is no longer used.
Configure routes:
Code:
$route['auth(.*)'] = 'freakauth/auth$1';
$route['admin'] = 'freakauth/adminhome';
$route['admin/(.*)'] = 'freakauth/$1';
$route['installer'] = 'freakauth/installer';
Autoload freakauth dependencies:
Code:
$autoload['libraries'] = array('database', 'validation', 'fal_validation', 'freakauth_light');
$autoload['helper'] = array('url', 'form', 'array', 'freakauth_light', 'html');
$autoload['config'] = array('freakauth_light');
I think thats about all there is to do, if I have missed something or you have other issues please let me know.