update v1.0.7.7
This commit is contained in:
@@ -12,7 +12,7 @@ return [
|
||||
| application. If disabled, a simple generic error page is shown.
|
||||
|
|
||||
*/
|
||||
'debug' => false,
|
||||
'debug' => env('APP_DEBUG'),
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Error Log
|
||||
@@ -33,7 +33,7 @@ return [
|
||||
| This tells about aplication current version.
|
||||
|
|
||||
*/
|
||||
'version' => 'Community 1.0.7.5',
|
||||
'version' => 'Community 1.0.7.7',
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application URL
|
||||
@@ -44,7 +44,7 @@ return [
|
||||
| your application so that it is used when running Artisan tasks.
|
||||
|
|
||||
*/
|
||||
'url' => 'http://localhost/sujit/faveo-helpdesk/public//sujit/faveo-helpdesk/public//sujit/faveo-helpdesk/public/',
|
||||
'url' => env('APP_URL'),
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Timezone
|
||||
@@ -111,7 +111,7 @@ return [
|
||||
|to FAVEO team when any exception/error occurs or not. True value of this variable will
|
||||
|allow application to send error reports to FAVEO team's bugsnag log.
|
||||
*/
|
||||
'bugsnag_reporting' => true,
|
||||
'bugsnag_reporting' => env('APP_BUGSNAG'),
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Autoloaded Service Providers
|
||||
|
@@ -101,8 +101,7 @@ return [
|
||||
| installed or not.
|
||||
|
|
||||
*/
|
||||
|
||||
'install' => '%0%',
|
||||
'install' => env('DB_INSTALL'),
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Redis Databases
|
||||
|
@@ -9,7 +9,7 @@ return [
|
||||
'shared_folder_name' => 'shares',
|
||||
'thumb_folder_name' => 'thumbs',
|
||||
'images_dir' => 'public/photos/',
|
||||
'images_url' => '%url%',
|
||||
'images_url' => url('photos').'/',
|
||||
'files_dir' => 'public/files/',
|
||||
'files_url' => '/files/',
|
||||
'file_type_array' => [
|
||||
|
Reference in New Issue
Block a user