Log message #4221869

# At Username Text
# Jan 9th 2020, 10:30 jotpe THis defines that the `AdministrationUser` Model uses the table `users.` In your db should be a table users then.
# Jan 9th 2020, 10:28 y.skrzypczyk There is a databases so no ?
# Jan 9th 2020, 10:27 y.skrzypczyk In the plugin I have : <?php /** * UserAdmin Model * * @property Group $Group */ App::uses('AdministrationAppModel', 'Administration.Model'); class AdministrationUser extends AdministrationAppModel { public $useTable = 'users'; /// Utilise la table users
# Jan 9th 2020, 10:27 jotpe Well I guess you have to dig a bit then. Maybe the app doesn't even has db access?! Have a look at the links above and figure out how this app works.
# Jan 9th 2020, 10:22 y.skrzypczyk I was told that the software worked before ... there are no defaults but there are some other variable
# Jan 9th 2020, 10:21 jotpe No credentials, no db access :man-shrugging:
# Jan 9th 2020, 10:21 jotpe So then your db access is not configured :)
# Jan 9th 2020, 10:21 y.skrzypczyk There is no default
# Jan 9th 2020, 10:21 jotpe Also have a look in app/Config/routes.php to see if there're custom routes, otherwise the routing is as follows: https://book.cakephp.org/2/en/development/routing.html#default-routing
# Jan 9th 2020, 10:20 y.skrzypczyk Error: The datasource configuration default was not found in database.php.
# Jan 9th 2020, 10:20 y.skrzypczyk This is one of the multiples problems :
# Jan 9th 2020, 10:19 jotpe So then have a look at app/Config/database.php and search for ```public $default = array(``` there you'll find the db configuration like described here: https://book.cakephp.org/2/en/development/configuration.html#database-configuration
# Jan 9th 2020, 10:15 y.skrzypczyk 2.4.0
# Jan 9th 2020, 10:15 y.skrzypczyk Yes I think so
# Jan 9th 2020, 10:15 jotpe This one should be used by the framework
# Jan 9th 2020, 10:15 jotpe Have a look at Cake folder
# Jan 9th 2020, 10:15 y.skrzypczyk I can't do it ... but I would like
# Jan 9th 2020, 10:14 jotpe Thought about trashing it and rebuild? ;)
# Jan 9th 2020, 10:13 y.skrzypczyk Yes I know
# Jan 9th 2020, 10:12 y.skrzypczyk There are 4 directories : Cake, Cake2.2, Cake2.3, Cake2.7.1
# Jan 9th 2020, 10:08 jotpe @y.skrzypczyk This shounds like a Cake2.x App. Have a look at lib/Cake/VERSION.txt to check the version. Then check the corresponding Docs: https://book.cakephp.org/2/en/development/configuration.html#database-configuration
# Jan 9th 2020, 10:01 y.skrzypczyk In the /app/Config folder I have a database.php file with several configuration variables. How to know which one is used by the plugin?
# Jan 9th 2020, 09:58 y.skrzypczyk Dans le dossier /app/Config j'ai bien un fichier database.php
# Jan 9th 2020, 09:52 neon1024 Database credentials are stored in the `/config/app.php` file under the `Datasources` configuration key
# Jan 9th 2020, 09:49 slackebot connection to the database yet I have the templates.
# Jan 9th 2020, 09:49 y.skrzypczyk First I just need some advice. To try to summarize the problem. There is a first application made on Symfony to connect with the creation of a JWT cookie. After that we can access this second application on cakephp that retrieves the cookie and checks the JWT. If I understand it developed a plugin on cakephp for the access part to the user database: /app/Plugin/Administration/... but in this plugin I do not find any information of
# Jan 9th 2020, 09:42 neon1024 @y.skrzypczyk It sounds like you need to hire a Cake developer to help you. Have you thought about asking CakeDC for help? You might be able to hire them to help you
# Jan 9th 2020, 09:41 neon1024 We had some issues setting them with Nginx though and having Cake read them, but my colleague figured it out in the end
# Jan 9th 2020, 09:41 slackebot www.DeepL.com/Translator (free version)
# Jan 9th 2020, 09:41 y.skrzypczyk Good morning, everyone, I'm looking for some help on cakephp, I'm asked to debug a solution developed by a bad developer who hasn't done any documentation. I have the vague impression that even files are missing in the project and the repository has only one commit. In short not mastering the framework there is some knowledge that I miss. Is there a kind soul to give me some leads ? Thanks in advance. Translated with
# Jan 9th 2020, 09:41 neon1024 You can also set env vars in your server config, so if you have multiple servers you can apply config to each
# Jan 9th 2020, 09:40 damiano thanks
# Jan 9th 2020, 09:40 damiano ok got it
# Jan 9th 2020, 09:40 neon1024 Plus it means you can run dev env vars and live ones and properly manage your environments without having to edit app.php each time
# Jan 9th 2020, 09:39 neon1024 Using env abstracts that away
# Jan 9th 2020, 09:39 neon1024 So if you changed it every time you deployed it would collide with Git changes
# Jan 9th 2020, 09:39 neon1024 It gets copied from the default
# Jan 9th 2020, 09:39 damiano i am using cakephp/app skeleton
# Jan 9th 2020, 09:39 damiano i do not see app.php in gitignore
# Jan 9th 2020, 09:38 neon1024 You do not version `app.php`
# Jan 9th 2020, 09:38 damiano @neon1024 pardon i miss one thing...what the point of putting env variables inside /config/.env then writing them to app.php directly ?