PHP Login / Register / User Management Script

Is there something lightweight and existing that fully functions (i.e. not like some CodeCanyon scripts that have bugs in abundance) or a tutorial / guide that explains everything from best security practice to validation?

I want to integrate a simple user management script (login / registration / editing basic details).

Greetings.

+6
source share
8 answers

I stumbled upon UserCake, Self proclaimed "one of the easiest and most secure user management systems on the Internet":

http://usercake.com/

Never tried, but this seems to be what you are looking for.

+8
source

Take a look at UserFrosting . This is a fully functional extensible framework and user management application built on Slim and several Laravel components (you don't really need to know that Laravel uses it).

Screenshots from demo :

Login screen User Management Page Permissions Management Page

Full disclaimer: I am the creator of UserFrosting; -)

+5
source

I know this is an old thread, but I know a couple of more useful systems.

UserSpice UserSpice is a PHP user management platform. It is designed from the ground up to be the ideal starting point for any web development project that requires users to log in.

UserApplePie UserApplePie v2 is based on a simple MVC Framework. Allows the use of plugins and enhances security. The goal of UserApplePie is to create an easy-to-use user management system based on MySQL and PHP.

+2
source

There is https://phpregister.com that I use. It is very powerful and easy to install and edit to create your own project from this script.

phpRegister default pages:

  • home
  • Contact
  • Example
  • entrance
  • Sign up
  • My Account Section
    • Details and multi-address management
    • User support (help desk)
    • Example

A plus:

  • Support for multiple languages.
  • Responsive Design (Android and iOS Support)
  • Full compatibility with Firefox, Chrome, Opera, IE10 + and Edge.

phpRegister Administration Functions:

  • Account Registration
  • Account management
  • Support service

And a free version of the example is available.

+2
source

I found this PHP script built into the CodeIgniter framework, which is why the HMVC framework really helps me start my new project. May help others http://www.webprojectbuilder.com/item/user-login-and-management

+1
source

I went for most of the solutions mentioned (thanks!) And found that UserBase 2 is the best for the following reasons:

  • It seems quite reliable and well maintained; when I read support answers, all errors and problems are fixed quickly
  • provides you with all the common login options (email, Facebook, Google, etc.) and - which was important in our case - OpenID. This last one is very useful, since most of our partners are coders who are unlikely to be able to use their Facebook (if any) to log in.
  • Clean, easy to use client-side interface. There are some additional materials that you may find useful, such as the admin area with statistics, captcha, contact, etc. Fair price ($ 18), however I paid a bit more at Envato's expense to keep purchases under one roof. Find here or here .
0
source

There are many scenarios in the PHP Resource Index (both free and for purchase): http://php.resourceindex.com/Complete_Scripts/User_Management/

-1
source

I hid and learned a lot here at Stack Overflow that I have to contribute to a resource that embodies the very spirit here in terms of usability and security;

Script users Register, login, online

This is a PHP script for registering and logging in users to a website and shows users online. He has the ability to log in using Facebook, Yahoo or with a Google account. It is created using a method based on classes and objects (OOP). Uses PHP, MySQL and Ajax / JavaScript (with jQuery) [it can work in browsers with JavaScript disabled). Connecting to MySQL is done with PDO.

HTML code is valid. HTML5 also works in Internet Explorer browsers that do not recognize HTML5 tags.

I PERSONALLY used this and helped the developer to erase ONLY the error in the application, so if this is the registration / management system you need, this is your script. And it's free.

http://coursesweb.net/php-mysql/register-login-script-users-online_s2

-1
source

Source: https://habr.com/ru/post/915553/


All Articles