Code:
System Linux ispcp 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686
Build Date Dec 13 2011 18:29:47
Server API CGI/FastCGI
Virtual Directory Support disabled
Configuration File (php.ini) Path /etc/php5/cgi
Loaded Configuration File /etc/php5/cgi/php.ini
Scan this dir for additional .ini files /etc/php5/cgi/conf.d
Additional .ini files parsed /etc/php5/cgi/conf.d/adodb.ini, /etc/php5/cgi/conf.d/curl.ini, /etc/php5/cgi/conf.d/gd.ini, /etc/php5/cgi/conf.d/mcrypt.ini, /etc/php5/cgi/conf.d/mysql.ini, /etc/php5/cgi/conf.d/mysqli.ini, /etc/php5/cgi/conf.d/pdo.ini, /etc/php5/cgi/conf.d/pdo_mysql.ini
PHP API 20090626
PHP Extension 20090626
Zend Extension 220090626
Zend Extension Build API220090626,NTS
PHP Extension Build API20090626,NTS
Debug Build no
Thread Safety disabled
Zend Memory Manager enabled
Zend Multibyte Support disabled
IPv6 Support enabled
Registered PHP Streams https, ftps, compress.zlib, compress.bzip2, php, file, glob, data, http, ftp, phar, zip
Registered Stream Socket Transports tcp, udp, unix, udg, ssl, sslv3, sslv2, tls
Registered Stream Filters zlib.*, bzip2.*, convert.iconv.*, string.rot13, string.toupper, string.tolower, string.strip_tags, convert.*, consumed, dechunk, mcrypt.*, mdecrypt.*
so basically i need to bump up max_execution_time for a client who hosts civicrm and imports a buttload of contacts via csv. it takes about 15 minutes for the script to process them all. So i go into
Code:
nano /var/www/fcgi/domain.tld/php5/php.ini
and make the change from max_exectution_time = 30 to max_execution_time = 900
That should stick, now i restart apache and view the phpinfo and its still on 30. So then i copy a php.ini into the htdocs of domain.tld and restart apache no go.... Then i manually edit the ispconfig master
so finally i say to heck with it and do this:
Code:
nano /etc/php5/cgi/php.ini
now unfortunately thats modifying everyone. What am i missing here to allow per domain.tld php.ini files to process?
David