Hi,
I have many question about mod_fcgid related to Cpanel configurations but the principal one is
How can I have different fcgid values per user/account/site?
I need to have different values per user for these fast cgi parameters
mod_fcgid - Apache HTTP Server
mod_fcgid - Apache HTTP Server
actually fcgidoutputbuffersize is great to test if the values are working or not
I did some experiments
in my php.conf (I left the # just for safe copy paste and test)
but these two sentences produce different errors after
in my fcgid wrapper I tried this (that should be perfect)
where [[ -f ~/php.conf ]] && source ~/php.conf is the line that should load or include the fcgid settings if the file exists but this file should be included outside the wrapper I guess.
Other of my questions is how can I see after a "ps aux" what script is being executed
I am trying to add manually in the wrapper [[ -f ~/php.flag ]] && itgadd=" -d file=$0:$1:$2:$3:$4"; but it only show php5::::
I hope is easy to understand
Thanks!
I have many question about mod_fcgid related to Cpanel configurations but the principal one is
How can I have different fcgid values per user/account/site?
I need to have different values per user for these fast cgi parameters
mod_fcgid - Apache HTTP Server
mod_fcgid - Apache HTTP Server
actually fcgidoutputbuffersize is great to test if the values are working or not
I did some experiments
in my php.conf (I left the # just for safe copy paste and test)
Code:
LoadModule fcgid_module modules/mod_fcgid.so
#<If "$req{Host} != 'www.ecuadorbeaches.org'">
# FcgidOutputBufferSize 0
#</If>
#<Directory "/home/ecuadorb/public_html/webcams">
# FcgidOutputBufferSize 0
#</Directory>
Code:
service httpd restart
Code:
itgadd=' -d noflag ';
#source $dir/incl.sh
[[ -f ~/php.flag ]] && itgadd=" -d file=$0:$1:$2:$3:$4";
[[ -f ~/php.conf ]] && source ~/php.conf
[[ -f ~/php.ini ]] && exec /usr/bin/php -c ~/php.ini -d wrapper3 $itgadd
[[ -f ~/public_html/php.ini ]] && exec /usr/bin/php -c ~/public_html/php.ini -d wrapper2 $itgadd
exec /usr/bin/php -d wrapper1 $itgadd
Other of my questions is how can I see after a "ps aux" what script is being executed
I am trying to add manually in the wrapper [[ -f ~/php.flag ]] && itgadd=" -d file=$0:$1:$2:$3:$4"; but it only show php5::::
I hope is easy to understand
Thanks!