Frequently asked questions:

1. I have installed barracuda but it said it cannot connect to the database.


Answers:

1. I have installed barracuda but it said it cannot connect to the database.
A:
	First of all make sure you have updated pg_hba.conf by hand. We don't
	do it for you, because we dont want to break your nicely built database 
	security. You might call it a bug, we call it a feature.
	So you have to put the following line into /etc/postgresql/pg_hba.conf:
	host         all         127.0.0.1     255.255.255.255   crypt
	
	If this does not help, you may have too many (or too few) pgsql.so 
	loaded. Barracuda depends on php3-pgsql, which contains pgsql.so
	The file /var/www/barracuda/db.inc loads it.
	If your php3 config already contains instructions to load it (i.e. the
	file /etc/php3/apache/php3.ini contains the line
	    extension=pgsql.so
	You want to uncomment the line
	dl("pgsql.so");
	to prevent redundant loading of the shared library.
	Thanks to Mark Johnson <mark@phy.duke.edu> for pointing it out.

