File tree 2 files changed +15
-0
lines changed 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -459,6 +459,8 @@ feat_clonealias=.. not necessary for alias domains
459
459
feat_eclonefind=.. could not find new virtual host named $1 after cloning!
460
460
feat_modifyproxy=Modifying proxy destination ..
461
461
feat_module=Nginx Webserver (for virtual host)
462
+ feat_evalidatefcgiwrapinit=No FCGIwrap server bootup action exists!
463
+ feat_evalidatefcgiwraprun=The FCGIwrap server for this domain is not running
462
464
463
465
fcgid_ecmd=No PHP command found!
464
466
fcgid_ecmdexec=PHP command $1 could not be executed : $2
Original file line number Diff line number Diff line change @@ -997,6 +997,19 @@ sub feature_validate
997
997
}
998
998
}
999
999
1000
+ # Make sure fcgiwrap server is running
1001
+ if ($d -> {' nginx_fcgiwrap_port' }) {
1002
+ &foreign_require(" init" );
1003
+ my $name = &init_script_fcgiwrap_name($d );
1004
+ my $st = &init::action_status($name );
1005
+ if (!$st ) {
1006
+ return $text {' feat_evalidatefcgiwrapinit' };
1007
+ }
1008
+ elsif (!&init::status_action($name )) {
1009
+ return $text {' feat_evalidatefcgiwraprun' };
1010
+ }
1011
+ }
1012
+
1000
1013
return undef ;
1001
1014
}
1002
1015
You can’t perform that action at this time.
0 commit comments