Removed default mysql port settings from files and left empty values (#403)
parent
5e61d89b7f
commit
1f2dde3963
|
@ -4,5 +4,5 @@ define('PSM_DB_USER', 'db_user');
|
||||||
define('PSM_DB_PASS', 'db_pass');
|
define('PSM_DB_PASS', 'db_pass');
|
||||||
define('PSM_DB_NAME', 'db_name');
|
define('PSM_DB_NAME', 'db_name');
|
||||||
define('PSM_DB_HOST', 'localhost');
|
define('PSM_DB_HOST', 'localhost');
|
||||||
define('PSM_DB_PORT', '3306');
|
define('PSM_DB_PORT', '3306'); //3306 is the default port for MySQL. If no specfic port is used, leave it empty.
|
||||||
define('PSM_BASE_URL', '');
|
define('PSM_BASE_URL', '');
|
|
@ -27,7 +27,7 @@ To change these values correctly, only update the second parameter of the functi
|
||||||
define('PSM_DB_NAME', 'db_name');
|
define('PSM_DB_NAME', 'db_name');
|
||||||
define('PSM_DB_USER', 'db_user');
|
define('PSM_DB_USER', 'db_user');
|
||||||
define('PSM_DB_PASS', 'db_user_password');
|
define('PSM_DB_PASS', 'db_user_password');
|
||||||
define('PSM_DB_PORT', '3306');
|
define('PSM_DB_PORT', 'most likely 3306, may also be empty');
|
||||||
|
|
||||||
For example: to change your username you should ONLY change the 'db\_user' part.
|
For example: to change your username you should ONLY change the 'db\_user' part.
|
||||||
Do NOT remove the quotes around your username as that will result in an error.
|
Do NOT remove the quotes around your username as that will result in an error.
|
||||||
|
|
|
@ -6,7 +6,7 @@ define('PSM_DB_USER', 'psm'); \
|
||||||
define('PSM_DB_PASS', 'psm'); \
|
define('PSM_DB_PASS', 'psm'); \
|
||||||
define('PSM_DB_NAME', 'psm'); \
|
define('PSM_DB_NAME', 'psm'); \
|
||||||
define('PSM_DB_HOST', 'localhost'); \
|
define('PSM_DB_HOST', 'localhost'); \
|
||||||
define('PSM_DB_PORT', '3306'); \
|
define('PSM_DB_PORT', ''); \
|
||||||
?>" > /var/www/default/psm/config.php
|
?>" > /var/www/default/psm/config.php
|
||||||
|
|
||||||
echo "<?php \
|
echo "<?php \
|
||||||
|
|
|
@ -124,7 +124,7 @@ class InstallController extends AbstractController {
|
||||||
|
|
||||||
$config = array(
|
$config = array(
|
||||||
'db_host' => 'localhost',
|
'db_host' => 'localhost',
|
||||||
'db_port' => '3306',
|
'db_port' => '',
|
||||||
'db_name' => '',
|
'db_name' => '',
|
||||||
'db_user' => '',
|
'db_user' => '',
|
||||||
'db_pass' => '',
|
'db_pass' => '',
|
||||||
|
@ -315,7 +315,7 @@ class InstallController extends AbstractController {
|
||||||
'pass' => '',
|
'pass' => '',
|
||||||
'name' => '',
|
'name' => '',
|
||||||
'host' => '',
|
'host' => '',
|
||||||
'port' => '3306'
|
'port' => ''
|
||||||
);
|
);
|
||||||
$pattern = "/define\('SM_{key}', '(.*?)'/u";
|
$pattern = "/define\('SM_{key}', '(.*?)'/u";
|
||||||
|
|
||||||
|
|
|
@ -37,9 +37,9 @@ class Database {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* DB port
|
* DB port
|
||||||
* @var string $db_port
|
* @var string|integer $db_port
|
||||||
*/
|
*/
|
||||||
protected $db_port = 3306;
|
protected $db_port;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* DB name
|
* DB name
|
||||||
|
@ -86,11 +86,12 @@ class Database {
|
||||||
* @param string $user
|
* @param string $user
|
||||||
* @param string $pass
|
* @param string $pass
|
||||||
* @param string $db
|
* @param string $db
|
||||||
|
* @param string|integer $port
|
||||||
*/
|
*/
|
||||||
function __construct($host = null, $user = null, $pass = null, $db = null, $port = null) {
|
function __construct($host = null, $user = null, $pass = null, $db = null, $port = '') {
|
||||||
if ($host != null && $user != null && $pass !== null && $db != null) {
|
if ($host != null && $user != null && $pass !== null && $db != null) {
|
||||||
$this->db_host = $host;
|
$this->db_host = $host;
|
||||||
$this->db_port = (!empty($port)) ? $port : 3306;
|
$this->db_port = $port;
|
||||||
$this->db_name = $db;
|
$this->db_name = $db;
|
||||||
$this->db_user = $user;
|
$this->db_user = $user;
|
||||||
$this->db_pass = $pass;
|
$this->db_pass = $pass;
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
<div class="control-group">
|
<div class="control-group">
|
||||||
<label class="control-label" for="host">Database port</label>
|
<label class="control-label" for="host">Database port</label>
|
||||||
<div class="controls">
|
<div class="controls">
|
||||||
<input type="text" id="port" name="db_port" value="{{ db_port }}" />
|
<input type="text" id="port" name="db_port" value="{{ db_port }}" placeholder="3306 most likely, may be empty" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="control-group">
|
<div class="control-group">
|
||||||
|
|
Loading…
Reference in New Issue