pat_reqlib.php
Upload User: feiyaoda
Upload Date: 2016-11-21
Package Size: 9556k
Code Size: 2k
Category:

WEB Mail

Development Platform:

PHP

  1. <?php
  2. include ('config.php');
  3. send_execute_header('Required Librairies');
  4. echo "<body bgcolor='#E1E4FA'><p>In order to have complete access to the whole features of PAT, you should hav installed :</p>";
  5. echo "<hr>n";
  6. echo "<p class="big_text">Zip Creation</p>n";
  7. echo "<p>This librairy is used in PAT for Creating Zip files, as they are different from Gzip files</p>n";
  8. echo "<p><b>On this server : </b> ";
  9. if (is_file('./extensions/zip.class.php'))
  10.     echo "<font color=green>";
  11. else
  12.     echo "<font color=red>Not ";
  13. echo "Installed</font></p>n";
  14. echo "<hr>n";
  15. echo "<p class="big_text">Zip Compression & Decompression</p>n";
  16. echo "<p>This librairy is used for Decoding zip files (for informations of zip files) and extract a folder structure</p>n";
  17. echo "<p><b>On this server : </b> ";
  18. if ($_PHP_EXT['gzip'])
  19.     echo "<font color=green>";
  20. else
  21.     echo "<font color=red>Not ";
  22. echo "Installed</font></p>n";
  23. echo "<hr>n";
  24. echo "<p class="big_text">BZip2 Compression & Decompression</p>n";
  25. echo "<p>This librairy is used for managing compressed bz2 files.</p>n";
  26. echo "<p><b>On this server : </b> ";
  27. if ($_PHP_EXT['bzip2'])
  28.     echo "<font color=green>";
  29. else
  30.     echo "<font color=red>Not ";
  31. echo "Installed</font></p>n";
  32. echo "<hr>n";
  33. echo "<p class="big_text">GD</p>n";
  34. echo "<p>This librairy is used for creating thumbnails of images for specific view</p>n";
  35. echo "<p><b>On this server : </b> ";
  36. if ($_PHP_EXT['gd'])
  37.     echo "<font color=green>";
  38. else
  39.     echo "<font color=red>Not ";
  40. echo "Installed</font></p>n";
  41. echo "<hr>n";
  42. echo "<p class="big_text">Upload</p>n";
  43. echo "<p>It's not a librairy, but you can affect ini values, which may be used in upload script</p>n";
  44. echo "<p><b>On this server : </b> ";
  45. if ($_PHP_EXT['gd'])
  46.     echo "<font color=green>";
  47. else
  48.     echo "<font color=red>Not ";
  49. echo "Authorised</font></p>n";