You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$this->output->comment('The application URL MUST begin with https:// or http:// depending on if you are using SSL or not. If you do not include the scheme your emails and other content will link to the wrong location.');
$this->output->comment('The timezone should match one of PHP\'s supported timezones. If you are unsure, please reference http://php.net/manual/en/timezones.php.');
$this->output->note('You\'ve selected the Redis driver for one or more options, please provide valid connection information below. In most cases you can use the defaults provided unless you have modified your setup.');
$this->output->comment('By default a Redis server instance has no password as it is running locally and inaccessible to the outside world. If this is the case, simply hit enter without entering a value.');
$this->output->note('It is highly recommended to not use "localhost" as your database host as we have seen frequent socket connection issues. If you want to use a local connection you should be using "127.0.0.1".');
$this->output->note('Using the "root" account for MySQL connections is not only highly frowned upon, it is also not allowed by this application. You\'ll need to have created a MySQL user for this software.');
$this->output->error(sprintf('Unable to connect to the MySQL server using the provided credentials. The error returned was "%s".', $exception->getMessage()));
101
+
$this->output->error('Your connection credentials have NOT been saved. You will need to provide valid connection information before proceeding.');
116
102
117
-
if ($this->confirm(trans('command/messages.environment.database.try_again'))) {
Copy file name to clipboardExpand all lines: resources/lang/en/command/messages.php
-31Lines changed: 0 additions & 31 deletions
Original file line number
Diff line number
Diff line change
@@ -62,36 +62,5 @@
62
62
'ask_mail_name' => 'Name that emails should appear from',
63
63
'ask_encryption' => 'Encryption method to use',
64
64
],
65
-
'database' => [
66
-
'host_warning' => 'It is highly recommended to not use "localhost" as your database host as we have seen frequent socket connection issues. If you want to use a local connection you should be using "127.0.0.1".',
67
-
'host' => 'Database Host',
68
-
'port' => 'Database Port',
69
-
'database' => 'Database Name',
70
-
'username_warning' => 'Using the "root" account for MySQL connections is not only highly frowned upon, it is also not allowed by this application. You\'ll need to have created a MySQL user for this software.',
71
-
'username' => 'Database Username',
72
-
'password_defined' => 'It appears you already have a MySQL connection password defined, would you like to change it?',
73
-
'password' => 'Database Password',
74
-
'connection_error' => 'Unable to connect to the MySQL server using the provided credentials. The error returned was ":error".',
75
-
'creds_not_saved' => 'Your connection credentials have NOT been saved. You will need to provide valid connection information before proceeding.',
76
-
'try_again' => 'Go back and try again?',
77
-
],
78
-
'app' => [
79
-
'settings' => 'Enable UI based settings editor?',
80
-
'author' => 'Egg Author Email',
81
-
'author_help' => 'Provide the email address that eggs exported by this Panel should be from. This should be a valid email address.',
82
-
'app_url_help' => 'The application URL MUST begin with https:// or http:// depending on if you are using SSL or not. If you do not include the scheme your emails and other content will link to the wrong location.',
83
-
'app_url' => 'Application URL',
84
-
'timezone_help' => 'The timezone should match one of PHP\'s supported timezones. If you are unsure, please reference http://php.net/manual/en/timezones.php.',
85
-
'timezone' => 'Application Timezone',
86
-
'cache_driver' => 'Cache Driver',
87
-
'session_driver' => 'Session Driver',
88
-
'queue_driver' => 'Queue Driver',
89
-
'using_redis' => 'You\'ve selected the Redis driver for one or more options, please provide valid connection information below. In most cases you can use the defaults provided unless you have modified your setup.',
90
-
'redis_host' => 'Redis Host',
91
-
'redis_password' => 'Redis Password',
92
-
'redis_pass_help' => 'By default a Redis server instance has no password as it is running locally and inaccessible to the outside world. If this is the case, simply hit enter without entering a value.',
93
-
'redis_port' => 'Redis Port',
94
-
'redis_pass_defined' => 'It seems a password is already defined for Redis, would you like to change it?',
0 commit comments