Hi there,
I'm moving my development server (Windows) into production (Ubuntu
12.04) and I'm facing some issues with, among other things, the
PostgreSQL driver.
I'm getting an:
"Error: External module not found"
My database login is as follows:
sampleLogin
^Login new
� database: (PostgreSQLPlatform new characterEncoding: 'utf8');
� username: 'user';
� password: 'secret';
� connectString: 'localhost_db';
� encodingStrategy: (DBXStaticEncoding newForEncoding: #utf8).
And then just a regular accessor for the previous login:
DatabaseAccessor forLogin: self sampleLogin.
How should I install the dependencies?
I have a libpq.dll in my windows environment, and I already installed
libpq5 drivers in the server (apt-get install libpq5)
What else should I do?
Regards,
Esteban A. Maringolo