I have a clean virtualmin installation.
I am having some problems attempting to exceed php time execution to CERTAIN admin scripts, only those. set_time_limit() is useless.
It seems like there are some trick but if php is an Apache module, which is not the case here, isn’t it?
From a Virtual Host
<Directory …public_html>
AddHandler fcgid-script .php
AddHandler fcgid-script .php5
FCGIWrapper /home/dstonek/fcgi-bin/php5.fcgi .php
FCGIWrapper /home/dstonek/fcgi-bin/php5.fcgi .php5
I don’t remember I added related things here, does it make sense AddHandler, RemoveHandler ?
Do you know a way to apply an exception to php defauld exec time?
Thank you
The /etc/php.ini script is used only for mod_php, not for PHP’s FCGID and CGI modes. You’d likely need to edit $HOME/etc/php.ini.
Also, you may want to try going into Server Configuration -> Website Options, and change the Default Execution Mode to CGI to rule out that you’re not dealing with a FCGID issue too (it has a separate timeout). So, I’d suggest geting it working in CGI mode, then work from there