gatekeeper
gatekeeper copied to clipboard
Gatekeeper: An Authentication & Authorization Library
I was all set to use Gatekeeper as a "drop in" authorization system for a new site I was working on, but I stopped when I realized it had no...
setup.sh
Executing setup.sh I get this response: cp: cannot stat `./vendor/psecio/gatekeeper/phinx.dist.yml': No such file or directory sed: can't read ./phinx.yml: No such file or directory sed: can't read ./phinx.yml: No such...
I authenticate, Ok. Remeber user with cookies Ok. But, how use token session (for permanent login) instead PHPSESSID? I view that my browser use default PHPSESSID session and not Token...
I find that hasPermission() have wrong in UserModel.php. the function return ($perm->id !== null && $**perm->id** === $permId) ? true : false; should be modified as return ($perm->id !== null...
sorry i am a newbie, but I am confused and havetotally no idea how to setup/install gatekeeper, I looked at: "http://gatekeeper-auth.readthedocs.io/en/latest/installation-and-configuration/" and installed composer and inserted the CMD command and...
I tried to make a switch over to PHP 7 on a server using this in one of the sites living on it and it borked something. I didn't have...
I think the update function should not set the 'created' date and only set the 'update' date. ``` public function update(\Modler\Model $model) { $data = $model->toArray(); $data['created'] = date('Y-m-d H:i:s');...
Perhaps my own configuration is incorrect, but executing `setup.sh` for a remote database caused a 'MySQL Connection Failure' error. A simple edit to the `setup.sh` script fixed the issue, just...
There's a bit of functionality already in the system to support two-factor authentication tokens, but it needs to be finished out. This includes: - Updating the `create_auth_token_table` migration to add...