[ Index ]

PHP Cross Reference of Unnamed Project

title

Body

[close]

/se3master/var/www/se3/tests/ -> test_ftp.php (source)

   1  <?php
   2  
   3     /**
   4     
   5     * Test la connexion au serveur FTP wawadeb
   6     * @Version $Id: test_ftp.php 4764 2009-11-08 17:31:37Z crob $ 
   7     * @Projet LCS / SambaEdu 
   8     * @auteurs Philippe Chadefaux  MrT
   9     * @Licence Distribue selon les termes de la licence GPL
  10     * @note
  11     * Modifications proposées par Sébastien Tack (MrT)
  12     * Optimisation du lancement des scripts bash par la technologie asynchrone Ajax.
  13   
  14     
  15     */
  16  
  17     /**
  18  
  19     * @Repertoire: /tests/
  20     * file: test_ftp.php
  21     */
  22  
  23  
  24  
  25  require_once ('entete_ajax.inc.php');
  26  // Contact serveur de mise a jour ftp
  27  $FTP="wawadeb.crdp.ac-caen.fr";
  28  $CONNECT_FTP=@ftp_connect("$FTP",0,30);
  29  
  30    if($CONNECT_FTP) {  $ok="1";
  31    } else { 
  32         $ok=0;
  33      @ftp_close($FTP);
  34    }
  35  die($ok);
  36  ?>


Generated: Tue Mar 17 22:47:18 2015 Cross-referenced by PHPXref 0.7.1