Summary | mysql database dsn ~ horde not using port from config |
Queue | Horde Framework Packages |
Type | Bug |
State | Not A Bug |
Priority | 2. Medium |
Owners | |
Requester | andrew.nimmo+horde.org (at) email (dot) sh |
Created | 03/21/2005 (7383 days ago) |
Due | |
Updated | 03/21/2005 (7383 days ago) |
Assigned | |
Resolved | 03/21/2005 (7383 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
State ⇒ Not A Bug
use this parameters, it's DB's fault. Try upgrading to the latest DB
version, and report a bug on pear.php.net if that doesn't help.
State ⇒ Unconfirmed
Priority ⇒ 2. Medium
Type ⇒ Bug
Summary ⇒ mysql database dsn ~ horde not using port from config
Queue ⇒ Horde Framework Packages
port parameter. i have a mysql instance running on port 3307 (it's
actually the endpoint of an stunnel). horde ignores the port
specification, for example:
- horde/conf.php
$conf['sessionhandler']['params']['port'] = 3307;
$conf['sessionhandler']['params']['hostspec'] = '192.168.0.130';
the obvious workaround is to specify the port parameter directly in
the hostspec:
$conf['sessionhandler']['params']['hostspec'] = '192.168.0.130:3307';
andrew