ExpressionEngine CMS
Open, Free, Amazing

Thread

This is an archived forum and the content is probably no longer relevant, but is provided here for posterity.

The active forums are here.

A3M - Account Authentication & Authorization Module

February 06, 2010 5:48am

Subscribe [107]
  • #376 / Nov 05, 2011 8:13pm

    alexaaaaaaaaaa

    91 posts

    I all,
    there’s a way to manage users with A3M?

    thanks !

    As far as i know nope you must write your own code in order to do that.

  • #377 / Dec 24, 2011 3:04pm

    Hi! i’ve noticed that a3m seems abandoned from february… does it still work and is it still secure? or i should use something else?

  • #378 / Dec 28, 2011 9:49am

    Harish Varada

    2 posts

    Hi,

    I’m trying to build a website with all Social sites plug-in integration.

    I need the feature of login with Facebook, Twitter and Google as of now.

    I tried a3m_peanutbutter version but, need some much simpler integration as my db design is finalized and can’t customize it according to a3m_peanutbutter.

    Can you people provide me some better suggestion for the above requirement.

    Regards,
    Harish.Varada

  • #379 / Feb 10, 2012 8:49am

    locodice

    1 posts

    I’m wondering if anybody here is actually using this plugin (sorry if I have not got the terminology correct, as I just started using CodeIgniter) for CodeIgniter? Or even something similar - as it seems this has been abandoned for sometime and I would have thought offering an auth tool like this would be something very popular amongst developers.

    I’ve seen a few - but many of the demos don’t seem to be working or there seems to be many issues in their support forums.

    I’d be interested to hear from you *only* if you’ve actually implemented some and got them to work in the ‘real world’

    Ideally I’m looking for an Auth system that allows registration without any social services (i.e. email and password), Facebook, Google, Yahoo, Twitter and while I’m at it MSN/Hotmail. Facebook and Google are my highest priorities.

    Ideally what I’d like to also do is be able to easily access other various ‘social’ features with this plugin such as the ability to post on a wall, share to contacts, etc.

    I’ve looked through this forum but can only seem to find Facebook or Google or stand alone authentication. Any advice for a newbie?

  • #380 / Feb 14, 2012 11:19am

    Katxarro

    3 posts

    The Facebook connection (sign in, sign up, linked account) it’s not working. Maybe because Facebook changed the way to connect, perhaps because the php-sdk3, I don’t know. Anyway… anybody did fix it? Thanks folks.

  • #381 / Feb 15, 2012 12:03am

    EC

    10 posts

    This is odd.  Out of the blue I am getting an error with Yahoo sign in.

    Here is the error:
    —————————-
    Fatal error: Call to a member function addExtension() on a non-object in ...../application/modules/account/controllers/connect_yahoo.php

    Anyone else having this problem when trying to use Yahoo?

    It’s been working fine, and then all of a sudden I’m getting that error.

    I believe it’s coming from Yahoo. I looked at their developer site, but I didn’t see anything about any changes.

    I went to StackOverflow to see if their’s was working and it is.

    I saw a post on another website from yesterday telling them that they couldn’t log in with Yahoo any more.


    Any help would be greatly appreciated.

  • #382 / Mar 18, 2012 2:02pm

    boltsabre

    543 posts

    @EC / the last post.

    I’m in the middle of installing a3, and after some tinkering and tweaking, I just got it all to work. With regards to your error, I see it sometimes when testing the yahoo login, but not all the time, not sure why it’s happening.

  • #383 / Jun 26, 2012 5:44pm

    cobolCowboy

    19 posts

  • #384 / Sep 10, 2012 3:55pm

    gtrennert

    1 posts

    Hello,

    I installed this a3m abnd got it working - I like it
    I’m using pengkong-A3M-for-CodeIgniter-2.0-887ad87

    I have just a little something to report - Suppose the following :
    A user opens his browser and the browser comes up with the tabs of the last time,
    one of this tab has an URL like :
    http://localhost/a3m/account/account_settings

    So the application redirects to something like this :
    http://localhost/a3m/account/sign_in/?continue=/a3m/account/account_settings

    So the user enters username and password and clicks on Sign In

    But there he gets a “404 Page Not Found - The page you requested was not found.”
    Because he tries to find this :
    http://localhost/a3m/a3m/account/account_settings

    Could someone help me to solve this problem ?
    Thanks!

  • #385 / Sep 10, 2012 5:20pm

    Yakow

    10 posts

    Nice job.
    Hey, have some documentation ?

    Thank you.

  • #386 / Nov 23, 2012 11:57pm

    gangsar

    8 posts

    @Katxarro maybe facebook use oauth2 for their authentication now https://developers.facebook.com/docs/concepts/login/

  • #387 / Mar 13, 2013 6:54pm

    Cioop

    1 posts

    Hi
    first of all I’d like to thank you for the great piece of code and functionality. It’s my first use of it.
    I tried reading this thread - is there a way to search only within a thread - it has already 26 subpages and I couldn’t find answer to my question.

    And now the question: how do the permissions and roles work?
    When I look at the database structure I see there are tables like a3m_acl_permission and a3m_acl_role
    now does the library support these functionalities? I managed to install and run the library. Tested it, and started creating views for non-logged-in and logged-in users. But now I see I will need some more complexity.
    Basically what I need is to divide my users into readers and publishers. Then I will have at least two categories of publishers: these who can write and these who can moderate (higher permission level). How can I achieve that? User management doesn’t seem to be so simple as I thought at the beginning :-(

    Once again, this library is great.
    Thanks in advance

  • #388 / Mar 24, 2013 5:01am

    drofnas

    9 posts

    Hello

    I just started helping out with the A3M project using Jakub’s repo as my starting point (donjakobo/A3M). Right now I have a Pull Request pending that will add an Admin Panel (managing Users, Roles, and Permissions), library for checking if a user has a specific permission, database defaults for system roles/permissions, and other updates to fill out the Authorization piece of A3M.

    The basics of how to use the Roles/Permissions has been added to the updated README.md file on my repo: drofnas/A3M

    Roles are setup as a simple way to group a set of permissions together, so after you apply a role to a user you will be able to check if they have the needed permissions for a feature in your Controller:

    $this->load->library('account/authorization');
    if ( $this->authorization->is_permitted('post_articles'))
    {
      // let them use this feature
    }

    You can see an example of this in one of the Admin Panel Controllers:

    Line 17: Loading the Library
    Line 37: Checking if the user has permission


    WARNING: This is very much a Beta Admin Panel. If you come across any bugs we would love to hear about it on GitHub.

    Thanks,
    Drofnas

.(JavaScript must be enabled to view this email address)

ExpressionEngine News!

#eecms, #events, #releases