Search found 1 match

by designosis
Fri Dec 30, 2022 12:50 am
Forum: MAMP - General Discussion & Troubleshooting
Topic: Internal Server Error on PHP requests > 29 seconds
Replies: 0
Views: 31338

Internal Server Error on PHP requests > 29 seconds

Running MAMP PRO 6.6.4 (build 34077) on macOS 12.6.2, I use PHP 8.1.11 with the stock php.ini, with a single INI setting adjusted:


max_execution_time = 60


However this simple PHP code ...

<?php
sleep(30);
echo 'SUCCESS';

... shows the ugly white "500 Internal Server Error". If you change ...