Well thank you. After several hours of analysis and reflection, I realized why this script runs synchronously: I open the script.php file, and I notice this and the beginning of the file:
<?php
session_start();
$var1=$_SESSION['SOMEVAR'];
.......
.......
?>
So, I have concurrent ajax calls for a php script that uses a session, but the sessions in this case block calls that will be executed synchronously due to a vars session request, so the solution to this problem:
<?php
session_start();
$var1=$_SESSION['SOMEVAR'];
......
session_write_close();
.......
.......
?>
session_write_close script, ajax- . http://konrness.com/php5/how-to-prevent-blocking-php-requests/