2009-06-30 08:07:14 +00:00
|
|
|
<?php
|
2009-06-30 09:24:29 +00:00
|
|
|
// $Header: /cvsroot/phpldapadmin/phpldapadmin/index.php,v 1.32 2005/02/26 12:35:05 wurley Exp $
|
2009-06-30 09:22:30 +00:00
|
|
|
|
2009-06-30 09:24:29 +00:00
|
|
|
/**
|
|
|
|
* @package phpLDAPadmin
|
|
|
|
*/
|
2009-06-30 08:07:14 +00:00
|
|
|
|
|
|
|
/*******************************************
|
|
|
|
<pre>
|
2009-06-30 08:05:37 +00:00
|
|
|
|
|
|
|
If you are seeing this in your browser,
|
|
|
|
PHP is not installed on your web server!!!
|
|
|
|
|
2009-06-30 08:07:14 +00:00
|
|
|
</pre>
|
|
|
|
*******************************************/
|
2009-06-30 08:05:37 +00:00
|
|
|
|
2009-06-30 09:22:30 +00:00
|
|
|
require './common.php';
|
2009-06-30 08:05:37 +00:00
|
|
|
|
2009-06-30 08:09:20 +00:00
|
|
|
if( ! file_exists(realpath( 'config.php' )) ) {
|
|
|
|
?>
|
2009-06-30 08:05:37 +00:00
|
|
|
|
|
|
|
<html>
|
|
|
|
<head>
|
2009-06-30 08:07:14 +00:00
|
|
|
<title>phpLDAPadmin - <?php echo pla_version(); ?></title>
|
2009-06-30 09:24:29 +00:00
|
|
|
<link rel="stylesheet" href="style.css" />
|
2009-06-30 08:05:37 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2009-06-30 08:07:14 +00:00
|
|
|
<h3 class="title">Configure phpLDAPadmin</h1>
|
2009-06-30 08:05:37 +00:00
|
|
|
<br />
|
|
|
|
<br />
|
2009-06-30 09:24:29 +00:00
|
|
|
|
2009-06-30 08:05:37 +00:00
|
|
|
<center>
|
2009-06-30 09:22:30 +00:00
|
|
|
<?php echo $lang['need_to_configure']; ?>
|
2009-06-30 08:05:37 +00:00
|
|
|
</center>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|
2009-06-30 09:24:29 +00:00
|
|
|
<?php } elseif( check_config() ) {
|
2009-06-30 08:09:20 +00:00
|
|
|
|
2009-06-30 09:24:29 +00:00
|
|
|
require './config.php';
|
2009-06-30 08:07:14 +00:00
|
|
|
echo "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n";
|
2009-06-30 08:05:37 +00:00
|
|
|
|
|
|
|
?>
|
|
|
|
|
2009-06-30 09:24:29 +00:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.0//EN"
|
|
|
|
"http://www.w3.org/TR/xhtml-basic/xhtml-basic10.dtd">
|
2009-06-30 08:05:37 +00:00
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="no-NO">
|
2009-06-30 09:24:29 +00:00
|
|
|
|
2009-06-30 08:07:14 +00:00
|
|
|
<head><title>phpLDAPadmin - <?php echo pla_version(); ?></title></head>
|
2009-06-30 08:05:37 +00:00
|
|
|
|
|
|
|
<frameset cols="<?php echo $tree_width; ?>,*">
|
|
|
|
<frame src="tree.php" name="left_frame" id="left_frame" />
|
2009-06-30 08:07:14 +00:00
|
|
|
<frame src="welcome.php" name="right_frame" id="right_frame" />
|
2009-06-30 08:05:37 +00:00
|
|
|
</frameset>
|
|
|
|
|
|
|
|
</html>
|
|
|
|
|
2009-06-30 09:24:29 +00:00
|
|
|
<?php }
|
2009-06-30 08:05:37 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Makes sure that the config file is properly setup and
|
|
|
|
* that your install of PHP can handle LDAP stuff.
|
|
|
|
* TODO: Check ALL config elements for correctness in syntax
|
|
|
|
* TODO: Make sure all required config stuff is defined.
|
|
|
|
*/
|
2009-06-30 09:24:29 +00:00
|
|
|
function check_config() {
|
|
|
|
global $lang;
|
|
|
|
|
2009-06-30 08:09:20 +00:00
|
|
|
/* Make sure their PHP version is current enough */
|
|
|
|
if( strcmp( phpversion(), REQUIRED_PHP_VERSION ) < 0 ) {
|
|
|
|
pla_error( "phpLDAPadmin requires PHP version 4.1.0 or greater. You are using " . phpversion() );
|
|
|
|
}
|
|
|
|
|
2009-06-30 08:05:37 +00:00
|
|
|
/* Make sure this PHP install has LDAP support */
|
2009-06-30 09:24:29 +00:00
|
|
|
if( ! extension_loaded( 'ldap' ) ) {
|
2009-06-30 08:05:37 +00:00
|
|
|
pla_error( "Your install of PHP appears to be missing LDAP support. Please install " .
|
2009-06-30 09:24:29 +00:00
|
|
|
"LDAP support before using phpLDAPadmin. (Don't forget to restart your web server afterwards)" );
|
2009-06-30 08:05:37 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Make sure the config file is readable */
|
2009-06-30 08:09:20 +00:00
|
|
|
if( ! is_readable( realpath( 'config.php' ) ) ) {
|
2009-06-30 09:22:30 +00:00
|
|
|
pla_error( "The config file 'config.php' is not readable. Please check its permissions." );
|
2009-06-30 08:05:37 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-06-30 09:22:30 +00:00
|
|
|
// Make sure their session save path is writable, if they are using a file system session module, that is.
|
|
|
|
if( 0 == strcasecmp( "Files", session_module_name() && ! is_writable( realpath( session_save_path() ) ) ) ) {
|
2009-06-30 09:24:29 +00:00
|
|
|
pla_error( "Your PHP session configuration is incorrect. Please check the value of session.save_path
|
|
|
|
in your php.ini to ensure that the directory specified there exists and is writable.
|
|
|
|
The current setting of \"". session_save_path() . "\" is un-writable by the web server." );
|
|
|
|
return false;
|
2009-06-30 09:22:30 +00:00
|
|
|
}
|
2009-06-30 09:24:29 +00:00
|
|
|
|
2009-06-30 08:05:37 +00:00
|
|
|
/* check for syntax errors in config.php */
|
|
|
|
// capture the result of including the file with output buffering
|
|
|
|
ob_start();
|
2009-06-30 09:24:29 +00:00
|
|
|
include './config.php';
|
2009-06-30 08:05:37 +00:00
|
|
|
$str = ob_get_contents();
|
|
|
|
ob_end_clean();
|
2009-06-30 09:24:29 +00:00
|
|
|
|
|
|
|
if( $str && false !== strpos( $str, 'error' ) ) {
|
2009-06-30 08:05:37 +00:00
|
|
|
$str = strip_tags( $str );
|
2009-06-30 08:09:20 +00:00
|
|
|
$matches = array();
|
|
|
|
preg_match( "/on line (\d+)/", $str, $matches );
|
2009-06-30 08:05:37 +00:00
|
|
|
$line_num = $matches[1];
|
|
|
|
$file = file( 'config.php' );
|
|
|
|
?>
|
2009-06-30 09:24:29 +00:00
|
|
|
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>phpLDAPadmin Config File Error</title>
|
|
|
|
<link rel="stylesheet" href="style.css" />
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<h3 class="title">Config file error</h3>
|
|
|
|
<h3 class="subtitle">Syntax error on line <?php echo $line_num; ?></h3>
|
|
|
|
|
|
|
|
<center>
|
|
|
|
Looks like your config file has a syntax error on line <?php echo $line_num; ?>.
|
|
|
|
Here is a snippet around that line
|
|
|
|
<br />
|
|
|
|
<br />
|
|
|
|
<div style="text-align: left; margin-left: 80px; margin-right: 80px; border: 1px solid black; padding: 10px;">
|
|
|
|
<tt>
|
|
|
|
|
|
|
|
<?php for( $i=$line_num-9; $i<$line_num+5; $i++ ) {
|
|
|
|
if( $i+1 == $line_num )
|
|
|
|
echo "<div style=\"color:red;background:#fdd\">";
|
|
|
|
|
|
|
|
if( $i < 0 )
|
|
|
|
continue;
|
|
|
|
echo "<b>" . ($i+1) . "</b>: " . htmlspecialchars($file[ $i ]) . "<br />";
|
|
|
|
|
|
|
|
if( $i+1 == $line_num )
|
|
|
|
echo "</div>";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
|
|
|
|
</tt>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<br />
|
|
|
|
Hint: Sometimes these errors are caused by lines <b>preceding</b> the line reported.
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|
|
|
|
<?php return false;
|
2009-06-30 08:05:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* check the existence of the servers array */
|
2009-06-30 09:24:29 +00:00
|
|
|
require './config.php';
|
|
|
|
|
2009-06-30 09:22:30 +00:00
|
|
|
if( ! isset( $servers ) || ! is_array( $servers ) || count( $servers ) == 0 ) {
|
|
|
|
pla_error( "Your config.php is missing the \$servers array or the \$servers array is empty.
|
2009-06-30 09:24:29 +00:00
|
|
|
Please see the sample file config.php.example ", false );
|
2009-06-30 08:05:37 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Make sure there is at least one server in the array */
|
|
|
|
$count = 0;
|
|
|
|
foreach( $servers as $i => $server )
|
2009-06-30 09:22:30 +00:00
|
|
|
if( isset( $server['host'] ) )
|
2009-06-30 08:05:37 +00:00
|
|
|
$count++;
|
2009-06-30 09:24:29 +00:00
|
|
|
|
2009-06-30 08:09:20 +00:00
|
|
|
if( $count == 0 ) {
|
2009-06-30 09:22:30 +00:00
|
|
|
pla_error( "None of the " . count($servers) . " servers in your \$servers configuration is
|
|
|
|
active in config.php. At least one of your servers must set the 'host' directive.
|
|
|
|
Example: <br><pre>\$servers['host'] = \"ldap.example.com\";<br></pre>
|
|
|
|
phpLDAPadmin cannot proceed util you correct this.", false );
|
2009-06-30 08:05:37 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-06-30 09:24:29 +00:00
|
|
|
// Check that 'base' is present on all serve entries
|
|
|
|
foreach( $servers as $id => $server ) {
|
|
|
|
if( isset( $server['host'] ) && isset( $server['name'] ) )
|
|
|
|
isset( $server['base'] )
|
|
|
|
or pla_error ( "Your configuration has an error. You omitted the 'base' directive
|
|
|
|
on server number $id. Your server entry must have a 'base' directive
|
|
|
|
even if it's empty ('')." );
|
|
|
|
}
|
2009-06-30 09:22:30 +00:00
|
|
|
|
2009-06-30 08:09:20 +00:00
|
|
|
// Check each of the servers in the servers array
|
|
|
|
foreach( $servers as $id => $server ) {
|
|
|
|
if( isset( $server['host'] ) ) {
|
|
|
|
|
|
|
|
// Make sure they specified an auth_type
|
|
|
|
if( ! isset( $server['auth_type'] ) ) {
|
2009-06-30 09:24:29 +00:00
|
|
|
pla_error( "Your configuration has an error. You omitted the 'auth_type' directive on server number $id
|
2009-06-30 09:22:30 +00:00
|
|
|
'auth_type' must be set, and it must be one of 'config', 'cookie', or 'session'.", false );
|
2009-06-30 08:09:20 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure they specified a correct auth_type
|
2009-06-30 09:22:30 +00:00
|
|
|
if( ! in_array( $server['auth_type'], array( 'config', 'cookie', 'session' ) ) ) {
|
|
|
|
global $lang;
|
|
|
|
pla_error( sprintf( $lang['error_auth_type_config'], htmlspecialchars( $server['auth_type'] ) ) );
|
2009-06-30 08:09:20 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-30 08:05:37 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
?>
|