A
|
acpan 1/16/2021 |
Try to extend the script execution time before start (and remember to set it back after that), eg: |
![]() |
ruzgarajans author 1/17/2021 |
thank you very much... |
A
|
acpan 1/17/2021 |
It seems your SQL statement is not formed correctly, your $sql should be a string, but you put brackets around it. I suggest you echo out the SQL statements and run manually in your database server and see if you still face the same issue. Likely you may get an error and the loop could not continue and timeout.
|
![]() |
ruzgarajans author 1/18/2021 |
Hello again, |
![]() |
Sergey Kornilov admin 1/18/2021 |
This has nothing to do with PHP or PHPRunner performance, just a poorly written code. If you insert records one by one it will be very slow. You need to find a better way to insert multiple records.
|