What should I prepare for an installation with postgres?
1. create a database: createdb phprojekt This must be done as user postgres (su – postgres) If this fails, it’s very likely that postgres is not running properly. (/etc/rc.d/postgres restart for postgres restart) 2. create a user who also has a UNIX account, he must be identical with the webserver (often wwwrun or nobody) – createuser wwwrun Give him the privilege to create tables 3. now insert the fields below with db_name = phprojekt and db_user wwwrun, mostly no password required.