Handle hostnames with upper-case letters
[webmin.git] / phpini / install_check.pl
1 # install_check.pl
2
3 do 'phpini-lib.pl';
4
5 # is_installed(mode)
6 # For mode 1, returns 2 if the server is installed and configured for use by
7 # Webmin, 1 if installed but not configured, or 0 otherwise.
8 # For mode 0, returns 1 if installed, 0 if not
9 sub is_installed
10 {
11 return &get_default_php_ini() ||
12        &has_command("php") ||
13        &has_command("php4") ||
14        &has_command("php5") ||
15        &has_command("php-cgi") ||
16        &has_command("php4-cgi") ||
17        &has_command("php5-cgi");
18 }
19