Changeset 518

Show
Ignore:
Timestamp:
03/31/05 10:47:50 (8 years ago)
Author:
fproulx
Message:

2005-03-30 Francois Proulx <francois.proulx@…>

  • Added PEAR install procedure
Location:
trunk/wifidog-auth
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/wifidog-auth/ChangeLog

    r517 r518  
    11# $Header$ 
     22005-03-30 Francois Proulx  <francois.proulx@gmail.com> 
     3        * Added PEAR install procedure 
     4         
    252005-03-30 Fran�ois Proulx  <francois.proulx@gmail.com> 
    36        * Finished RADIUS authentication and accounting 
  • trunk/wifidog-auth/INSTALL

    r315 r518  
    77-php compiled with gettext support (Will be autodetected if unavailable, but you will loose internationalization) 
    88-PostgreSQL (mysql code also exists, but is looking for a maintainer) 
     9-PEAR ( if you need RADIUS auth support, see below ) 
    910 
    1011Install files: 
     
    2627-Edit wifidog/config.php to suit your environment. 
    2728 
     29***************************** 
     30RADIUS authentication support 
     31***************************** 
     32 
     33You'll need these RPM packages 
     34 
     35libphp5-commons 
     36php5-cli 
     37php5-devel 
     38php5-xml 
     39php5-xmlrpc ---> requires libxmlrpc 
     40 
     41run this in a shell 
     42"lynx -source http://go-pear.org | php5" 
     43 
     44************* 
     45WARNING: 
     46You must have PHP5 CLI with php5ize installed 
     47************* 
     48Make sure your include_path refers to your PEAR install 
     49ie. /usr/share/pear 
     50 
     51Now you'll need a few packages, you can let PEAR install them 
     52automatically, make sure you have Console_Opt, Archive_Tar et XML_RPC 
     53before you do this. 
     54 
     55Run those scripts 
     56/usr/share/pear/scripts/pear.sh install Auth 
     57/usr/share/pear/scripts/pear.sh install radius   ( PECL module compilation) 
     58/usr/share/pear/scripts/pear.sh install Auth_RADIUS 
     59 
     60 
    2861Enjoy! 
    2962