Posts by Felipe Parente • 3 points
5 posts
-
-2
votes1
answer1467
viewsQ: Flutter: Container with two Expanded and a background image
UPDATED WITH THE ENTIRE SCREEN CODE I wonder if anyone can help me with this? I have a Listview, and in the construction of your itemBuilder, I intend to have a Container divided by two Expanded.…
-
0
votes1
answer55
viewsQ: Cakephp 3 Debugkit
In Cakephp 2 I usually enable/disable Debubkit by Appcontroller, according to the user who is logged in to the system: // AppController -> CakePHP 2 public function beforeFilter(){…
-
0
votes0
answers20
viewsQ: Cakephp 3 Download Large Files
I have the following problem. My Cakephp 3 application stores some BIG files (200mbs), uploaded via FTP. These files are in a folder outside of my project. When you click on the download link, it…
-
0
votes1
answer141
viewsA: Java failed to locate the main class of my program
As you are studying and learning now, remove the "package" line and try again. At the time of compiling: java PrimeiroPrograma
javaanswered Felipe Parente 3 -
0
votes2
answers107
viewsA: Problem with the include
The tip is before include you check if the file exists. $file = $_SERVER['DOCUMENT_ROOT']."/controleEstoque/controller/MaterialController.class.php"; if(file_exists($file)){ include $file; } You can…