https://github.com/gowthamand/cakephp-login-register-crud
CakePHP: Add, Edit, Delete, View , Login , Register, Ajax , JSON , Jquery Demo, CakePHP CRUD, CodeIgniter Boilerplatelogin
https://github.com/gowthamand/cakephp-login-register-crud
crud logging registration
Last synced: 12 months ago
JSON representation
CakePHP: Add, Edit, Delete, View , Login , Register, Ajax , JSON , Jquery Demo, CakePHP CRUD, CodeIgniter Boilerplatelogin
- Host: GitHub
- URL: https://github.com/gowthamand/cakephp-login-register-crud
- Owner: gowthamand
- Created: 2018-02-06T06:51:47.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-15T05:40:11.000Z (over 8 years ago)
- Last Synced: 2025-01-06T21:47:04.755Z (over 1 year ago)
- Topics: crud, logging, registration
- Language: JavaScript
- Homepage:
- Size: 1.93 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CakePHP Application Login, Register, Crud
A skeleton for creating applications with [CakePHP](https://cakephp.org) 3.x.
The framework source code can be found here: [cakephp/cakephp](https://github.com/cakephp/cakephp).
## Installation
1. Download `git clone https://github.com/gowthamand/cakephp-login-register-crud`.
If Composer is installed globally, run
2. Run `composer update`.
3. Configure database config/app.php
CREATE TABLE `users` (
`id` int(10) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`username` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
`password` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`role` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
`created` datetime DEFAULT NULL,
`modified` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
ALTER TABLE `users`
ADD PRIMARY KEY (`id`);
You can now either use your machine's webserver to view the default home page, or start
up the built-in webserver with:
```bash
bin/cake server -p 8765
```
Then visit `http://localhost:8765` to see the welcome page.
## Update
Since this skeleton is a starting point for your application and various files
would have been modified as per your needs, there isn't a way to provide
automated upgrades, so you have to do any updates manually.
## Configuration
Read and edit `config/app.php` and setup the `'Datasources'` and any other
configuration relevant for your application.
## Layout
The app skeleton uses a subset of `Bootstarap 4` custom design