Posts by João.Mistura • 107 points
10 posts
-
2
votes1
answer75
viewsA: Query Beego problem
In the Beego framework it is not possible to use the QueryBuilder with PgSql, with only MySql. So it was like this: No Controller: package controllers import ( "fmt" "hello/models"…
-
0
votes1
answer75
viewsQ: Query Beego problem
I’m having problems to mount a Query in Go, using the Beego framework. Error: 2018/12/20 09:21:32.104 [C] [asm_amd64.s:522] Handler Crashed with error Runtime error: invalid memory address or nil…
-
-1
votes1
answer252
viewsQ: Problem of Laravel routes
I’m having a problem with a route of my system. Route::get('/atualizacoes/list', 'AtualizacoesController@listarIndex')->name('atualizacoes.listar'); From what I understand he is interpreting the…
-
0
votes1
answer551
viewsQ: csrf token error in the Laravel
I’m getting the bug Tokenmismatchexception in Verifycsrftoken.php (line 68) when I submit the following view information. Detail is that in all my views I have csrf_token because of the Blade…
-
0
votes1
answer264
viewsQ: Registration of users with Adm logged in
I am developing a system with Laravel and I have the following objective: To make only the admin user can register new users. My problem is not to block the access of ordinary users to the user…
-
1
votes1
answer1135
viewsQ: Undefined error Property
I’m getting the following error by clicking on permissions, button that directs to this controller: Error: Undefined Property: App Http Controllers Rolescontroller::$role Controller: <?php…
-
1
votes1
answer622
viewsQ: Get the login user id
How do I get the logged-in user id and insert it into the table along with Description and title? I imagine it’s pretty simple. public function saveCallRegister() { $title =…
-
0
votes1
answer40
viewsQ: Error sending information to the bank. Editing form
I have an edit form for a post feed. When I click to save the edit the following error appears: SQLSTATE[23502]: Not null violation: 7 ERROR: null value in column "title" violates not-null…
-
1
votes1
answer66
viewsQ: Error url $feed->id
Hello, I am working on a system with feed scheme. Clicking on "Edit" appears the following error: SQLSTATE[22P02]: Invalid text representation: 7 ERROR: invalid input syntax for integer:…
-
2
votes1
answer57
viewsQ: send login information to the bank for comparison
I am developing a system with login and password, using Windows. The registration part was even easy: public function salvar(){ $usu_email = Request()->input('usu_email'); $usu_senha =…