2

I've put my Laravel into the maintenance mode with php artisan down.

No I try to disable the mode with the command from the docs (php artisan up) but nothing happends.

I've cleared all Laravel caches and my browser cache. What is wrong?

Christian Gallarmin
  • 660
  • 4
  • 15
  • 34
Markus
  • 1,909
  • 4
  • 26
  • 54
  • 2
    Remove the maintenance file in `/storage/framework` – Jerodev Oct 09 '18 at 12:48
  • 1
    The answers you've received are good, but do note that if you have multiple load-balanced servers, you have to run `php artisan up` on *each* of them. – ceejayoz Oct 09 '18 at 19:11

1 Answers1

4

Seems weird, But you can up it again by deleting a file named down in storage/framework.

It will do the trick.

Note: You can create the file manually inside storage/framework. It will down your project. When you want live your project again, just remove the file.

Gammer
  • 5,453
  • 20
  • 78
  • 121