diff --git a/docs/TODO.md b/docs/TODO.md index 15a8a41..0148e4d 100644 --- a/docs/TODO.md +++ b/docs/TODO.md @@ -5,13 +5,13 @@ - [x] → Encrypted/Compressed Sessions - [ ] → Ensure JS error reporting works - [ ] → Force Database methods to try Cache First and Save Cache Data -- [ ] → Kernels +- [ ] → Kernels (exists but not used yet) - [x] → HTTP → Requests, Responce - [x] → Middleware - [x] → Macros - [x] → Routes - [x] → Controllers -- [*] → Models +- [@] → Models (is kind of complete...) - [x] → Views (Twig/Liquid/PHP) - [x] → JavaScript/CSS Asset loading - [x] → Strings & Random Engine diff --git a/docs/Zephir_code.md b/docs/Zephir_code.md index b0211b2..af5ca98 100644 --- a/docs/Zephir_code.md +++ b/docs/Zephir_code.md @@ -59,13 +59,19 @@ $ cd /var/www/ProjectCodeHydrater/protected/src/secret_php_files Create you .php files inside of this DIR to keep them Secret. Each file should correspond with the Array_For_Files inside of make_license.php -Don't Ship these secret_php_files, they do not belong on PROD!!!! +Don't Ship these secret_php_files, they do NOT belong on PROD!!!! ``` The .php file names [in secret_php_files folder] must match the .aes file names! # Make a new License File and AES data ``` $ cd /var/www/ProjectCodeHydrater/protected/cli +Becareful to notice the EXPIRES_DATE is 4 years from now...! + +To disable that set the expires variable to "*", by "expires" => "*", or leave out expires all together. + +Also, do NOT save the passwords from PWD1, PWD2, etc... they should be created automatically by $license_maker->makePassword(). + EDIT the make license file: $ nano make_license.php