Posts by Luno de Souza • 59 points
6 posts
-
0
votes1
answer334
viewsA: Increase number of Tomcat connections pool
The log says that maxActive is not used and that you should use in your context.xml the default maxTotal tag is 8. If this is the case, use maxTotal instead of maxActive. Have to check the real…
-
0
votes2
answers1177
viewsA: Saves browser status or cookies using Selenium
Salve Wictor, A solution that approaches what you need to accomplish and in a scalable way would be to use a hack technique called Phishing, I found a project that uses Selenium, Node.js and…
-
0
votes2
answers92
viewsA: JDBC code fails with exception
Do not use Sqlexception in catch as it will display only exceptions of type Sqlexception and hide all others, only worth choosing the type of exception if you are going to treat it. Do a test and if…
-
1
votes2
answers242
viewsA: Multiple upload to PHP online server
Only way to send the image file to another server would be by sending the image via FTP to this server. Having in hand server address, FTP user and password, follows example: <?php if(…
-
1
votes2
answers868
viewsA: What is Port Knocking?
The idea is to "knock" on the right ports and in the right sequence and for this you can use even telnet host:1111; telnet host:2222, telnet host:3333 for example. Here are some useful articles:…
-
0
votes1
answer35
viewsA: Phpmyadmin collecting data unnecessarily?
Try this: <?php $nome=$_POST['nome']; $post=$_POST['post']; $data = date("Y/m/d"); /* Verifica se existe valores a inserir */ if($nome != null && $post != null && $data != null){…