mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-05-13 16:55:01 +00:00
max_execution_time fix
This commit is contained in:
+12
-3
@@ -221,26 +221,35 @@
|
||||
<li>Nginx or Apache</li>
|
||||
</ul>
|
||||
|
||||
<h3>Installation</h3>
|
||||
<p>
|
||||
<a
|
||||
href="https://gist.github.com/MakingCG/a702a112be63bc6f0032dd55522327cf#7-set-up-cron"
|
||||
>
|
||||
<strong>Installation instructions can be found here</strong>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
<h3>Tips</h3>
|
||||
<p>
|
||||
<a
|
||||
href="https://medium.com/vuefilemanager/how-to-set-up-vuefilemanager-laravel-application-on-vps-with-debian-10-64676a3ff4d7"
|
||||
>
|
||||
<strong>How to Set Up VueFileManager v2 on VPS with Debian 10</strong>
|
||||
<strong>How to install VueFileManager on VPS with Debian 10</strong>
|
||||
</a>
|
||||
</p>
|
||||
<p>
|
||||
<a
|
||||
href="https://medium.com/vuefilemanager/how-to-set-up-vuefilemanager-with-aws-s3-as-an-external-storage-a2c525aec698"
|
||||
>
|
||||
<strong>How to Set Up VueFileManager with AWS S3 as an External Storage</strong>
|
||||
<strong>How to Set Up AWS S3</strong>
|
||||
</a>
|
||||
</p>
|
||||
<p>
|
||||
<a
|
||||
href="https://medium.com/vuefilemanager/how-to-set-up-vuefilemanager-with-digital-ocean-spaces-as-a-external-storage-6cccf590c23d"
|
||||
>
|
||||
<strong>How to Set Up VueFileManager with Digital Ocean Spaces as an External Storage</strong>
|
||||
<strong>How to Set Up Digital Ocean Spaces</strong>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
|
||||
@@ -14,8 +14,6 @@ use App\Http\Controllers\Controller;
|
||||
use Domain\Maintenance\Models\AppUpdate;
|
||||
use Domain\Maintenance\Actions\UpgradeDatabaseAction;
|
||||
|
||||
ini_set('max_execution_time', -1);
|
||||
|
||||
class UpgradeSystemController extends Controller
|
||||
{
|
||||
public function __construct(
|
||||
@@ -25,6 +23,8 @@ class UpgradeSystemController extends Controller
|
||||
|
||||
public function __invoke(Request $request): Response
|
||||
{
|
||||
ini_set('max_execution_time', -1);
|
||||
|
||||
// Get already updated versions
|
||||
$alreadyUpdated = Schema::hasTable('app_updates')
|
||||
? AppUpdate::all()
|
||||
|
||||
Reference in New Issue
Block a user