Posts by Rafael Simionato Hayashi • 160 points
6 posts
-
1
votes1
answer323
viewsA: How to Update Only Some Put Fields in Springboot
In case of partial update of the resource the PATCH method should be used instead of the PUT. In the case of PUT the full representation of the resource being updated should be forwarded. Put vs…
-
2
votes1
answer214
viewsA: How to redirect the user to another page with Codeiigniter?
In this your tag is being redirected to the controller nameApp, but your controller is Homepage try replacing the nameApp for Homepage on the tag <li class="nav-item mr-3"> <a…
-
1
votes2
answers336
viewsA: Install Startbootstrap-SB-Admin using Yarn
In his ~Assets/js/app.js try to use the import instead of require import 'startbootstrap-sb-admin/scss/sb-admin.scss'; Don’t forget to rotate $ yarn run encore dev after making this update.…
-
0
votes0
answers69
viewsQ: Git hook post-receive does not checkout on Windows
I’m using git to make a automatic deploy. They are two computers with windows 7 on a local network. One of them would be a server and the other would be my development environment. I created a BARE…
gitasked Rafael Simionato Hayashi 160 -
0
votes1
answer73
viewsQ: Code organization in codeigniter controller
I am using the HTML Table Class and the table settings are defined through an array as documentation of the codeigniter itself…
-
9
votes1
answer23089
viewsA: How to pass excel data to Mysql?
Saves this list as csv and imports via phpmyadmin or Heidisql. phpmyadmin: 1 - In excel, save the spreadsheet as csv 2 - Open phpmyadmin and select the table where you wanted to enter the data 3 -…