Database credentials: connect to a non-standard MySQL port
PermalinkI'd like C5 to connect to a MySQL server which runs on a non-standard port. How would I do that? I've tried config/site.php:
define('DB_SERVER', 'localhost:3333');
It seems that the colon and everything after it is ignored. I can even write 'localhost:HELLO' and it connects to port 3306.
After that I've thought about hacking the core (not nice, I know). In concrete/libraries/loader.php around line 195..200 I've tried adding '?port=3333' to both variants of $dsn string according to some AdoDB manual I found, still with no luck.
Thanks for any enlightenment in this case,
Alex

you'll be pleased to know that there's actually a really easy way to do this.
define('DB_DATABASE', 'dbname?port=3333');
strange but true :)
Jon
Which file i need to edit ?
example.com;port=3307