Name:		GD LIB Systeminformationen V1.1 Final
Datum:		22-07-2009
Author: 	Crack
Homepage:	www.kit-coding.de
Email: 		webadmin@kit-coding.de


---------------------------------------------------------------------------------------------------
INSTAL HowTo 
---------------------------------------------------------------------------------------------------
1.  ndern Sie folgende 2 Dateien

pkinc/admin/sysinfo.php
pkinc/admintpl/about.htm

=======================================================================

pkinc/admin/sysinfo.php

Suche:

eval("\$site_body.= \"".pkTpl("about")."\";");
?>

Fge DARBER ein:

//GD Bibliothek Prfungstool ANFANG
	if (function_exists('gd_info')) {
        $load= gd_info();
		
		if ($php_version<'5.1.2'){
			$gdinfos.='<tr>
             <td class="left">PHP Versions Konflikt<br /><font class="small">PHP Version '.$php_version.' ist kleiner als 5.1.2</font> </td>
             <td class="right"><font style="color:red;">Damit alle Funktionen zum erstellen der Thumb Grafiken genutzt werden k&ouml;nnen, m&uuml;ssen sie eine PHP Version installiert haben die h&ouml;her ist als 5.1.2 .<br />
			 Die Funktionalit&auml;t der Bildverkleinerung ist nicht garantiert!
			 </font></td>
            </tr>';
		}
		
		foreach ($load as $key=>$val) {
 
			if ($val===true) {
				$val='<font style="color:green;">Enabled</font>';
			}
	
			if ($val===false) {
				$val='<font style="color:red;">Disabled</font>';
			}
			
			if ($key=='GIF Read Support' || $key=='GIF Create Support' )
				$val.='&nbsp;(Erforderlich zum verkleinern von <u>GIF</u> Grafiken)';
			elseif ($key=='JPG Support')
				$val.='&nbsp;(Erforderlich zum verkleinern von <u>JPG</u> Grafiken)';
			elseif ($key=='PNG Support')
				$val.='&nbsp;(Erforderlich zum verkleinern von <u>PNG</u> Grafiken)';

			$gdinfos.='<tr>
             <td class="left">'.$key.'</td>
             <td class="right">'.$val.'</td>
            </tr>';

		}		
		        
    }
	else{
		$gdinfos.='<tr>
             <td class="left">GD Version</td>
             <td class="right"><font style="color:red;">Die GD Bibliothek ist nicht installiert. Die automatische Bildgr&ouml;enanpassung wird nicht funktionieren.</font></td>
            </tr>';
	}
//GD Bibliothek Prfungstool ENDE

=======================================================================

pkinc/admintpl/about.htm

Suche:

</table>

Fge DARBER ein:

<!-- LIB GD Prfungstool ANFANG -->
 <tr>
  <td class="heads" colspan="2">GD Bibliothek System-Informationen</td>
 </tr>
  $gdinfos
<!-- LIB GD Prfungstool ENDE -->

=======================================================================

Support:
============================

Support & Fragen: 

Support gebe ich gerne unter www.kit-coding.de


