If you are seeing this in your browser, PHP is not installed on your web server!!! *******************************************/ /* * We will perform some sanity checking here, since this file is normally loaded first when users * first setup PLA. */ define('LIBDIR',sprintf('%s/',realpath('../lib/'))); ini_set('display_errors',1); error_reporting(E_ALL); # General functions needed to proceed. ob_start(); if (! file_exists(LIBDIR.'functions.php')) { if (ob_get_level()) ob_end_clean(); die(sprintf("Fatal error: Required file '%sfunctions.php' does not exist.",LIBDIR)); } if (! is_readable(LIBDIR.'functions.php')) { if (ob_get_level()) ob_end_clean(); die(sprintf("Cannot read the file '%sfunctions.php' its permissions may be too strict.",LIBDIR)); } if (ob_get_level()) ob_end_clean(); require LIBDIR.'functions.php'; $config_file = CONFDIR.'config.php'; # Make sure this PHP install has gettext, we use it for language translation if (! extension_loaded('gettext')) pla_error('

Your install of PHP appears to be missing GETTEXT support.

GETTEXT is used for language translation.

Please install GETTEXT support before using phpLDAPadmin.
(Dont forget to restart your web server afterwards)

'); /* * Helper functions. * Our required helper functions are defined in functions.php */ foreach ($pla_function_files as $file_name ) { if (! file_exists($file_name)) pla_error(sprintf('Fatal error: Required file "%s" does not exist.',$file_name)); if (! is_readable($file_name)) pla_error(sprintf('Fatal error: Cannot read the file "%s", its permissions may be too strict.',$file_name)); ob_start(); require $file_name; if (ob_get_level()) ob_end_clean(); } # Configuration File check if (! file_exists($config_file)) { echo ''; echo ''; echo ''; printf('phpLDAPadmin - %s',pla_version()); echo ''; echo ''; echo ''; echo '

Configure phpLDAPadmin

'; echo '

'; echo '
'; printf(_('You need to configure phpLDAPadmin. Edit the file "%s" to do so. An example config file is provided in "%s.example".'),$config_file,$config_file); echo '
'; echo ''; echo ''; die(); } elseif (! is_readable($config_file)) { pla_error(sprintf('Fatal error: Cannot read your configuration file "%s", its permissions may be too strict.',$config_file)); } # If our config file fails the sanity check, then stop now. if (! check_config($config_file)) { $www = new page(); $body = new block(); $www->block_add('body',$body); $www->display(); exit; } include './cmd.php'; ?>