Is there a reason why I can’t run two or more scripts in parallel in a local host environment? They just simply stop without any error message.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
tcp connections have connection timeouts. after some idle time without data on the wire the connection closes and thus the script stops.
php has time_limits additionaly to prevent high cpu usage. but this limit is not directly related to actual seconds but to uses cpu cycles.
for long running scripts its better to run the from command line instead of the browser.