Changeset 518
- Timestamp:
- 03/31/05 10:47:50 (8 years ago)
- Location:
- trunk/wifidog-auth
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/wifidog-auth/ChangeLog
r517 r518 1 1 # $Header$ 2 2005-03-30 Francois Proulx <francois.proulx@gmail.com> 3 * Added PEAR install procedure 4 2 5 2005-03-30 Fran�ois Proulx <francois.proulx@gmail.com> 3 6 * Finished RADIUS authentication and accounting -
trunk/wifidog-auth/INSTALL
r315 r518 7 7 -php compiled with gettext support (Will be autodetected if unavailable, but you will loose internationalization) 8 8 -PostgreSQL (mysql code also exists, but is looking for a maintainer) 9 -PEAR ( if you need RADIUS auth support, see below ) 9 10 10 11 Install files: … … 26 27 -Edit wifidog/config.php to suit your environment. 27 28 29 ***************************** 30 RADIUS authentication support 31 ***************************** 32 33 You'll need these RPM packages 34 35 libphp5-commons 36 php5-cli 37 php5-devel 38 php5-xml 39 php5-xmlrpc ---> requires libxmlrpc 40 41 run this in a shell 42 "lynx -source http://go-pear.org | php5" 43 44 ************* 45 WARNING: 46 You must have PHP5 CLI with php5ize installed 47 ************* 48 Make sure your include_path refers to your PEAR install 49 ie. /usr/share/pear 50 51 Now you'll need a few packages, you can let PEAR install them 52 automatically, make sure you have Console_Opt, Archive_Tar et XML_RPC 53 before you do this. 54 55 Run 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 28 61 Enjoy! 29 62
