Posts by Felipe Souza • 41 points
5 posts
-
1
votes1
answer53
viewsA: Changing the select in SP gives error
Your class has the id property decorated as Key so it is mandatory. Entity expects the query to return all properties that are not optional In your case your select must be: SELECT id, nome FROM…
-
0
votes2
answers46
viewsA: cakephp login never recognizes
Friend tries the login action: Tell me later if it worked. public function login(){ $this->layout = "login"; if($this->request->is("post")){ $dados = $this->request->data;…
cakephpanswered Felipe Souza 41 -
0
votes1
answer94
viewsA: Cakephp Submit form using Jquery?
If you’re going to help, you don’t have to do an Ajax $(document).ready(function(){ $("ID do Botão de Submit").click(function () { document.querySelector("form").submit(); }) }) This function will…
-
1
votes0
answers145
viewsQ: Is it possible to create one-to-several streaming with webRTC?
I need to develop a tool that allows you to live from a single pc to several others in a virtual room. For this purpose I use webRTC https://webrtc.org/start/ In a simple way I can already make the…
-
1
votes1
answer166
viewsQ: Moodle integration with third-party system
Hello, I have a cruel question today. I need to make the portal Moodle work with users of an external system. Someone has already managed this with few changes to the Moodle source code?…