Magellan Linux

Diff of /alx-src/branches/alx-web-070/include/config.inc.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1608 by niro, Thu Dec 2 22:13:04 2010 UTC revision 1635 by niro, Thu Dec 9 22:44:45 2010 UTC
# Line 1  Line 1 
1  <?  <?
2   // SESSION   // SESSION
3   session_start();   session_start();
4   if( !isset($_SESSION['openclose']) )   if( !isset($_SESSION['openclose']) )
5   {   {
6   session_register('openclose');   session_register('openclose');
7   $_SESSION['openclose'] = array();   $_SESSION['openclose'] = array();
8   }   }
9    
10   // Datenbankverbindungs-Konfiguration   // Datenbankverbindungs-Konfiguration
11   $dbhost  = "localhost";   $dbhost  = "localhost";
12   $dbname  = "alx_web";   $dbname  = "alx_web";
13   $dbuname = "alx_install";   $dbuname = "alx_install";
14   $dbpass  = "@lx";   $dbpass  = "@lx";
15    
16   // Home Verzeichnis des httpd-daemons für ssh-certs   // www root of the alx_install
17   $home = "/var/lib/apache";   $wwwroot = "/var/www";
18    
19   // ping Kommando zum überprüfen der Errreichbarkeit der Hosts   // Home Verzeichnis des httpd-daemons für ssh-certs
20   $pingcmd = "/usr/sbin/fping -c 1 -t 50 -q";   $home = "/var/lib/apache";
21    
22   // ssh Kommando   // ping Kommando zum überprüfen der Errreichbarkeit der Hosts
23   $sshcmd = "/usr/bin/ssh -l root -o ConnectTimeout=5";   $pingcmd = "/usr/sbin/fping -c 1 -t 50 -q";
24    
25   // wake-on-lan Kommando   // ssh Kommando
26   $wolcmd = "/usr/bin/etherwake";   $sshcmd = "/usr/bin/ssh -l root -o ConnectTimeout=5";
27  ?>  
28     // wake-on-lan Kommando
29     $wolcmd = "/usr/bin/etherwake";
30    
31     // fixed config.rc
32     $configrc = $wwwroot."/share/config.rc";
33    
34     // fixed mage.rc
35     $magerc = $wwwroot."/share/mage.rc";
36    ?>

Legend:
Removed from v.1608  
changed lines
  Added in v.1635