CodeIgniter 3.0的登录系统

Tik*_*kky 5 php frameworks login login-script codeigniter-3

我正在CodeIgniter 3.0(dev)寻找简单易用的/安装登录系统 .

我见过几个不同的脚本,但主要是CodeIgniter 2.x.

我将不胜感激任何帮助.

Sob*_*lic 7

最好的Auth库是Ben Edmunds的Ion-Auth

从repo页面:

CodeIgniter Version 3 Compatibility

CodeIgniter v3 requires the class names to be ucfirst(). In order to support this follow the standard installation procedures and then either rename the following files or create symlinks

config/ion_auth.php               =>   config/Ion_auth.php
models/ion_auth_model.php         =>   models/Ion_auth_model.php
models/ion_auth_mongodb_model.php =>   models/Ion_auth_mongodb_model.php
Run Code Online (Sandbox Code Playgroud)

注意:Ion-Auth在许多项目中实施.像PyroCMS一样.

  • 谢谢你。我已经安装了 Ion-Auth 并且一切正常,但是这是一个强大的解决方案并不简单;-) (2认同)