[ Index ]
 

Code source de eZ Publish 3.9.0

Accédez au Source d'autres logiciels libresSoutenez Angelica Josefina !

title

Body

[fermer]

/ -> index_image.php (source)

   1  <?php
   2  /*
   3  This file should be included from a file containing
   4  clustering database settings.
   5  
   6  Here are sample contents of such file:
   7  -------------------------------------------
   8  <?php
   9  define( 'STORAGE_BACKEND',     'mysql'           );
  10  define( 'STORAGE_HOST',        'db'              );
  11  define( 'STORAGE_PORT',        3306              );
  12  define( 'STORAGE_SOCKET',      '/tmp/mysql.sock' );
  13  define( 'STORAGE_USER',        'fred'            );
  14  define( 'STORAGE_PASS',        'secret'          );
  15  define( 'STORAGE_DB',          'cluster'         );
  16  define( 'STORAGE_CHUNK_SIZE',  65535             );
  17  
  18  include_once( 'index_image.php' );
  19  ?>
  20  -------------------------------------------
  21  */
  22  
  23  if ( !defined( 'STORAGE_BACKEND' ) )
  24      die( "No storage backend chosen.\n" );
  25  include_once( 'index_image_' . STORAGE_BACKEND . '.php' );
  26  ?>


Généré le : Sat Feb 24 10:30:04 2007 par Balluche grâce à PHPXref 0.7