5

I looked into older questions

https://craftcms.stackexchange.com/questions/4661/fastcgi-error-when-accessing-a-local-development-site-using-mamp-pro/6573#6573?newreg=aa4ad11b453f4c7f93882ce478d837a3

How do you increase the apache fastCGI timeout on MAMP / MAMP Pro?

but my configuration is quite differente because I'm using MAMP Pro 4 and I have multiple PHP versions running

I tried to edit MAMP/fcg-bin/phpx.x.x.fcgi and add -idle-timeout 3600, since it seems a little cleaner

#!/bin/sh
export PHP_FCGI_CHILDREN=4
export PHP_FCGI_MAX_REQUESTS=200
exec /Applications/MAMP/bin/php/php5.4.45/bin/php-cgi -c "/Library/Application Support/appsolute/MAMP PRO/conf/php5.4.45.ini" -idle-timeout 3600

and also

#!/bin/sh
export PHP_FCGI_CHILDREN=4
export PHP_FCGI_MAX_REQUESTS=200
exec /Applications/MAMP/bin/php/php5.6.30/bin/php-cgi -c "/Library/Application Support/appsolute/MAMP PRO/conf/php5.6.30.ini" -idle-timeout 3600

but it doesn't seem to have any effect i still get the same error

FastCGI: comm with server "/Applications/MAMP/fcgi-bin/php5.6.30.fcgi" aborted: idle timeout (30 sec)

and i also try to edit apache > httpd.conf

#MAMP_FastCgiServer_MAMP
FastCgiServer /Applications/MAMP/fcgi-bin/php5.4.45.fcgi -idle-timeout 2400
FastCgiServer /Applications/MAMP/fcgi-bin/php5.6.30.fcgi -idle-timeout 3600

in this case Apache would not start

al404IT
  • 1,380
  • 3
  • 21
  • 54

3 Answers3

12

The only way it seem to be possible is by checking Xdebug in PHP tab. I did try that before, but did not seem to work on first attempt. I then checked, save, quit and relaunch MAMP PRO and it worked.

al404IT
  • 1,380
  • 3
  • 21
  • 54
6

In Mamp pro usally this problem is for the setting: "Individual Php version for every Host (CGI mode)" .. uncheck this and save.

PeterDev
  • 141
  • 1
  • 8
  • Thank you so much. It looks like CGI Mode uses a different timeout. Although max_execution_time 300 is set in php.ini it is somehow ignored. How can I change the timeout in CGI Mode? –  Aug 16 '21 at 14:14
  • 1
    Yes! Thank you - 6 hours of research and this was the answer! MAMP > PHP > Mode > Module (instead of CGI) – Narkanister Apr 17 '23 at 13:22
2

I had this problem (MAMP Pro 4.6). It turned out it was caused by a PHP script I had that was stuck in an infinite loop and timed out. However, restarting the servers in MAMP did nothing. It seemed to only fix itself after restarting the actual MAMP application as shown below.

Obviously, you need to fix the script that is timing out but to get MAMP going again without a restart or having to edit httpd.conf:

  1. Stop the servers
  2. Open up Activity Monitor and search for php-cgi
  3. Force quit all occurrences of php-cgi
  4. Start the servers

You should find it runs again without issue. If it does happen again, just repeat the four steps.

texelate
  • 2,460
  • 3
  • 24
  • 32