+
-
' + data['publish'] + '
');
}
- if (data['storage']) {
- $('#storage').append('' + data['storage'] + '
');
+ if (data['key']) {
+ $('#key').append('' + data['key'] + '
');
}
- if ((data['key_results'] == 0) && (data['seeder_results'] == 0) && (data['publish_results'] == 0) && (data['storage_results'] == 0)) {
+ if ((data['key_results'] == 0) && (data['seeder_results'] == 0) && (data['publish_results'] == 0)) {
$('#continue').show();
$('#migrate-seed').hide();
$('#loader').hide();
@@ -207,6 +207,7 @@
} else {
$('#migrate').show();
+ $('#loader').hide();
$('#migrate-seed').show();
$('#migration-back').show();
if (data['migrate']) {
@@ -231,11 +232,4 @@
});
});
-
-
-
-
-
-
-
-
+
\ No newline at end of file
diff --git a/public/installer/Seeder.php b/public/installer/Seeder.php
index 6ad5137db..a476842a9 100755
--- a/public/installer/Seeder.php
+++ b/public/installer/Seeder.php
@@ -1,17 +1,15 @@
&1';
$seeder = 'cd ../.. && php artisan db:seed 2>&1';
-$storage = 'cd ../.. && php artisan storage:link 2>&1';
$publish = 'cd ../.. && php artisan vendor:publish 2>&1';
$key_output = exec($key, $data['key'], $data['key_results']);
$seeder_output = exec($seeder, $data['seeder'], $data['seeder_results']);
-$storage_output = exec($storage, $data['storage'], $data['storage_results']);
$publish = exec($publish, $data['publish'], $data['publish_results']);
// return a response
diff --git a/public/installer/index.php b/public/installer/index.php
index fe60196a5..5530ea5c6 100755
--- a/public/installer/index.php
+++ b/public/installer/index.php
@@ -82,6 +82,8 @@
echo $requirement->render();
echo $permission->render();
echo $welcome->render();
+
+ $storage_output = exec('cd ../.. && php artisan storage:link 2>&1');
} else {
// getting url
$actual_link = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";