Posts by Abraão Levi • 106 points
4 posts
-
3
votes2
answers3280
viewsA: Configure Mysql Workbench on Docker
You need to map the mysql Docker port to the host. In your case it would look like this mysql snippet: mysql: image: mysql:latest volumes: - /var/lib/mysql environment: - MYSQL_ROOT_PASSWORD=123456…
-
0
votes1
answer53
viewsA: Contrutor de Queries
The Query Builder Cakephp works basically in two steps. The first step is to query, in the second step you perform the query and she can return to you an object of her Entity or a Collection. In the…
-
1
votes3
answers543
viewsA: json php error, but json is correct
The error is related to JSON.parse in your javascript code. This can happen when trying to parse an invalid JSON, but as in your example JSON is valid, make sure you are not trying to parse an…
-
2
votes1
answer38
viewsA: Entering IF with missed criteria
This is due to an error in interpreting the php tag opening. On the lines where you have <?php} place a gap between opening the php tag and closing the php keys if, thus: <?php }. That should…
phpanswered Abraão Levi 106