Reynier Perez Mira wrote: >> What did the connection string look like? > Loke as Wiki said: postgres://user:[EMAIL > PROTECTED]:5432/dbname?schema=schemaname. In my particular case: > postgres://[EMAIL PROTECTED]@localhost:5432/trac?schema=local_projects
This is your problem. It should look like: postgres://trac:[EMAIL PROTECTED]:5432/trac?schema=local_projects However, you could also drop the port number, as 5432 is the default port for PostgreSQL and just have postgres://trac:[EMAIL PROTECTED]/trac?schema=local_projects -John --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~----------~----~----~----~------~----~------~--~---
