Skip to content
Snippets Groups Projects
Commit 0d2db5a9 authored by Falko Timme's avatar Falko Timme
Browse files

- ISPConfig's fcgi_starter script had two PHP_FCGI_MAX_REQUESTS variables; I...

- ISPConfig's fcgi_starter script had two PHP_FCGI_MAX_REQUESTS variables; I removed one of them. In addition to that I added "-d magic_quotes_gpc=off" to the PHP executable to turn off magic_quotes_gpc.
parent 9787a043
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
PHPRC=/etc/php5/cgi/
export PHPRC
exec /usr/lib/cgi-bin/php
PHP_FCGI_MAX_REQUESTS=5000
export PHP_FCGI_MAX_REQUESTS
export PHP_FCGI_CHILDREN=8
export PHP_FCGI_MAX_REQUESTS=500
\ No newline at end of file
exec /usr/lib/cgi-bin/php -d magic_quotes_gpc=off
export PHP_FCGI_MAX_REQUESTS=5000
export PHP_FCGI_CHILDREN=8
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment