Advertisement
Guest User

Untitled

a guest
May 8th, 2014
487
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.56 KB | None | 0 0
  1. <?php
  2.     //
  3.     //ZAPORT SERVER CONFIGURATION TEST
  4.     //
  5.     if ( function_exists ('imap_open') )
  6.         echo 'IMAP Installed! OK <br/>';
  7.     else
  8.         echo 'IMAP NOT Installed! ERROR <br/>';
  9.     if ( function_exists ('curl_init') )
  10.         echo 'CURL Installed! OK <br/>';
  11.     else
  12.         echo 'CURL NOT Installed! ERROR <br/>';
  13.  
  14.     if ( function_exists ('openssl_open') )
  15.         echo 'OPENSSL Installed! OK <br/>';
  16.     else
  17.         echo 'OPENSSL NOT Installed! ERROR <br/>';
  18.  
  19.     if ( function_exists ('mcrypt_encrypt') )
  20.         echo 'MCRYPT Installed! OK <br/>';
  21.     else
  22.         echo 'MCRYPT NOT Installed! ERROR <br/>';
  23. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement