Posts by Jonatan Pietroski • 109 points
4 posts
-
0
votes1
answer809
viewsA: PHP Sqlserver Stored Procedure does not run correctly
I solved my problem, follow the new code: $chave = (string) $chave; $server = "enderecobanco"; $options = array( "UID" => "usuario", "PWD" => "senha", "Database" => "bancodedados"); $conn =…
-
1
votes2
answers626
viewsA: Laravel and Json Web Token
I found a simple solution, just override the method that searches the password of the password. public function getAuthPassword(){ return md5($this->A901_senha); } and return the password field…
-
3
votes1
answer809
viewsQ: PHP Sqlserver Stored Procedure does not run correctly
Hello, I am developing an application using Laravel Framework Handler from my Backend and found the following error. My Sqlserver Express 2008 R2 database has a stored Procedure that performs a…
-
6
votes2
answers626
viewsQ: Laravel and Json Web Token
I’m having difficulty authenticating through the Json Web Token (JWT) token in the Laravel framework, I’m using the framework recently and I came across the following error. Whoops, looks like…