Changeset 223
- Timestamp:
- 09/01/04 16:20:56 (9 years ago)
- Location:
- trunk/wifidog-auth
- Files:
-
- 6 added
- 2 removed
- 2 modified
-
ChangeLog (modified) (1 diff)
-
INSTALL (modified) (1 diff)
-
dump_db_postgres (deleted)
-
sql (added)
-
sql/dump_initial_data_postgres.sh (added)
-
sql/dump_schema_postgres.sh (added)
-
sql/sync_sql_for_cvs.sh (added)
-
sql/wifidog-postgres-initial-data.sql (added)
-
sql/wifidog-postgres-schema.sql (added)
-
wifidog-postgres-schema.sql (deleted)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wifidog-auth/ChangeLog
r222 r223 1 1 # $Header$ 2 2004-08-31 Benoit Gr�goire <bock@step.polymtl.ca> 3 * sql/: Update the postgres schemas and add scripts to ease maintaining it. 4 * sql/sync_sql_for_cvs.sh: Should you modify the schema in your db, run this script to the chances will be available in the cvs schemas and initial data. 5 * sql/dump_initial_data_postgres.sh: This does the actual dump of the data in a runnable form. Note that this needs to be edited manually if you add a new table requiring initial data. 6 * INSTALL: Update for postgres. Somebody please test this. 7 2 8 2004-08-31 Benoit Gr�goire <bock@step.polymtl.ca> 3 9 * wifidog/ping/index.php: Implement logging of which hotspot sent the heartbeat, from which ip and when. -
trunk/wifidog-auth/INSTALL
r162 r223 4 4 php's php-xml extention installed. (Required if RSS support is on) 5 5 php compiled with gettext support (Will be autodetected if unavailable, but you will loose internationalization) 6 PostgreSql (mysql code alse exists, but is looking for a maintainer) 6 7 7 Install :8 Install files: 8 9 9 10 -Uncompress the tarball on your web server. 10 - Put the content of the libs directory inthe smarty tarball in lib/smarty/11 - Put the content of the magpierss-0.xx directory inthe magpierss tarball in lib/magpie. If you do not wish to install RSS support, you must set define('RSS_SUPPORT', false) in config.php.11 -Copy the content of the libs directory of the smarty tarball in lib/smarty/ 12 -Copy the content of the magpierss-0.xx directory of the magpierss tarball in lib/magpie. If you do not wish to install RSS support, you must set define('RSS_SUPPORT', false) in config.php. 12 13 13 14 -local_content/cache/, and everything in tmp/smarty must be at least writable by your web server. Run "sh permissions.sh" to set them 777 14 -Import wifidog.schema to create your database. 15 16 Database: 17 -Create the user wifidog (both in postgres and on your system). 18 -Import the schema: 19 psql -d template1 -U wifidog -W -f sql/wifidog-postgres-schema.sql 20 -Import initial data: 21 psql -d template1 -U wifidog -W -f sql/wifidog-postgres-initial-data.sql 22 23 Configure the system: 15 24 -Edit wifidog/config.php to suit your environment. 16 -Enjoy. 25 26 Enjoy! 17 27 18 28
