CodeIgniter Forums
Manually Install Myth::Auth and Boilerplate - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28)
+--- Forum: CodeIgniter 4 Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=31)
+--- Thread: Manually Install Myth::Auth and Boilerplate (/showthread.php?tid=77111)



Manually Install Myth::Auth and Boilerplate - InsiteFX - 07-20-2020

Manually install Myth/Auth

1) Download the Myth/Auth.
2) Unzip the Myth/Auth.
3) Create a new folder called Myth and in that folder create a folder called Auth.
4) You should have now.

Myth
-- Auth

5) Copy all the files to the Myth folder, then copy the src folder to the Auth folder.
6) Copy the Myth folder to the root of your installation with app etc;

app
Myth
public
system

7) Add this line to your ./app/Config/Autoload.php psr4 section.

'Myth\Auth' => ROOTPATH . 'Myth/Auth',  // Module Myth::Auth

8) Follow the instructions to setup Myth/Auth.

---------------------------------------------------------------

Manually install Boilerplate.

1) Download Boilerplate and unzip it.
2) Create the following folder structure.

agungsuiarto
-- boilerplate

3) copy all the unzipped files and folders into agungsuiarto.
4) copy all files in the src folder to the boilerplate folder.
5) Copy the Myth folder to the root of your installation with app etc;

app
agungsuiarto
public
system

6) Add this line to your ./app/Config/Autoload.php psr4 section.

'agungsuiarto\boilerplate' => ROOTPATH . 'agungsuiarto/boilerplate'

7) Follow the instructions to setup agungsuiarto/boilerplate.


I get asked a lot for this so I' am posting it here enjoy.