Posts by Ribamar FS • 11 points
4 posts
-
0
votes2
answers145
viewsA: Problems with Bake in Cakephp 3.x "Your database does not have any Tables."
Another reason for this message is when you do not give proper user privileges in the tables. If it is so that the user us_tests has full permission in the schema sc_tests use: GRANT ALL ON SCHEMA…
-
0
votes2
answers210
viewsA: Difference between table, Entity and behavior
Trying to simplify: Table represents a table. Entity represents only one record. Password handling, which handles a user record is done in the Entity class. Behavior is to the model what the…
-
1
votes1
answer317
viewsA: Cakephp 3 Permissions - Authentication
I created a plugin that controls application access in Cakephp 3, implementing ACL with web manager. Initially it comes with 4 groups, being super (the boss), admin (can everything but only in the…
-
0
votes0
answers130
viewsQ: How to work with plugins in Cakephp 3.6 or 3.6.1
How to work with plugins in Cakephp 3.6 or 3.6.1. Until version 3.5.13 I worked without problem, installed via Poser and loaded with bin/cake plugin load Name But in version 3.6 that was quite…