https://bugzilla.wikimedia.org/show_bug.cgi?id=41063
Roy <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from Roy <[email protected]> --- The validation code does not allow for forward slash (/), thus an Easy Connect string will never be accepted. The validation code should be changed to accept both colon and slash. (Ex. localhost/XE:POOLED). Problem is in includes/installer/OracleInstaller.php line 90. A quick workaround is to remove line 90 and 91: } elseif ( !preg_match( '/^[a-zA-Z0-9_\.]+$/', $newValues['wgDBserver'] ) ) { $status->fatal( 'config-invalid-db-server-oracle', $newValues['wgDBserver'] ); -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
