Questions tagged [laravel-forge]

Provision and deploy unlimited PHP applications on DigitalOcean, Linode, AWS, and more.

The main features of Laravel Forge are:

On The Cutting Edge

Forge installs Nginx, PHP 7.3, MySQL, Postgres, Redis, and all of the other goodies that users need on the cloud of your choice. No more out-dated PHP installations.

Push To Deploy

Deploying code couldn't be any easier. Users just need to push to master on their GitHub, Bitbucket, or custom Git repository. Forge will handle it from there.

Free SSL Certificates

Forge integrates with LetsEncrypt, allowing its users to obtain free SSL certificates for their Forge powered applications.

Collaborate With Your Team

Using the Plus plan users may instantly share their server's management dashboard with their co-workers.

Dead Simple Queues

Easily start and manage supervised Laravel Queue workers directly from Forge. No more manual Supervisor configuration.

Secure By Default

All Forge servers require SSH key authentication and user's firewall comes configured out of the box. Security updates are installed automatically.

To know more about Laravel Forge, go to their site.

260 questions
15
votes
3 answers

Deployment on Laravel Forge throwing faker not found Exception

I am trying to deploy a laravel project on forge and i am getting the below exception : Symfony\Component\Debug\Exception\FatalErrorException] Class 'Faker\Factory' not found I have the faker reference in require-dev in…
vthallam
  • 551
  • 2
  • 8
  • 20
11
votes
2 answers

Laravel 7 - Stop Processing Jobs and Clear Queue

I have a production system on AWS and use Laravel Forge. There is a single default queue that is processing Jobs. I've created a number jobs and now wish to delete them (as they take many hours to complete and I realize my input data was bad). I…
BizzyBob
  • 12,309
  • 4
  • 27
  • 51
11
votes
2 answers

Reload .env constants in Laravel 5.2

I just changed a constant inside my .env file. The new value is shown up correctly with php-cli (via tinker), but not in my web app (php-fpm). So far I've tried everything as suggested: sudo service nginx restart sudo service php7.0-fpm…
John Smith
  • 1,848
  • 3
  • 13
  • 24
11
votes
8 answers

Laravel email with queue 550 error (too many emails per second)

Our emails are failing to send using Laravel with a Redis Queue. The code that triggers the error is this: ->onQueue('emails') $job = (new SendNewEmail($sender, $recipients))->onQueue('emails'); $job_result = $this->dispatch($job); In combination…
tim peterson
  • 23,653
  • 59
  • 177
  • 299
7
votes
2 answers

JOB_TOO_BIG Pheanstalk - what can be done?

On Laravel 4.2 & Laravel Forge I Made a mistake and accidentally pushed some code on to the production sever, but there was a bug and it pushed a job to the queue without deleting it once done. Now I can't push anything in the queue anymore, I…
commandantp
  • 947
  • 1
  • 12
  • 25
6
votes
1 answer

How to create another Redis server instance on same server (managed by Laravel Forge)

Laravel Horizon is coming, so I'm looking to switch my queues from beanstalkd to Redis to take advantage of better queue monitoring. However, occasionally I have to perform php artisan cache:clear. But if I do so, since my queue is now in Redis, it…
jcsoriano
  • 350
  • 2
  • 14
6
votes
2 answers

Laravel Forge + DigitalOcean - Adding a SFTP user with restricted access only to a directory

I am using Laravel Forge in a DigitalOcean droplet. I need to grant SFTP access to a specific directory on the server to one of my clients. He needs read/write access to only that directory, and I am having problems with the setup. I have followed…
andcl
  • 3,342
  • 7
  • 33
  • 61
6
votes
1 answer

Issue Deploying with Laravel Forge

I am trying to deploy a Laravel PHP Project with Laravel Forge. I have connected to my repository on github correctly. However, when I hit deploy, if I go to the public IP for the site, I just see: "No input file specified." on the page. I do…
user1072337
  • 12,615
  • 37
  • 116
  • 195
5
votes
0 answers

Error when using Browsershot with Laravel on Forge-provisioned server

I'm using Browsershot (which uses Puppeteer) with Laravel. I have it running perfectly in my local dev environment (Mac, Laravel Valet), but when running it on a Forge provisioned server, I get the following error in my log file (I've replaced…
Pete H
  • 211
  • 2
  • 10
5
votes
2 answers

413 Request Entity Too Large (Wordpress Laravel Forge)

It's my first time to use WordPress using laravel forge. I already installed WordPress but the thing is when I upload a new theme .zip file, I notice that the upload is running but after that it says: 413 Request Entity Too Large Tried also…
claudios
  • 6,588
  • 8
  • 47
  • 90
5
votes
1 answer

SSH key already exists on bitbucket

I was trying to add the SSH key of my server in laravel-forge to bitbucket. The ssh key is usually located in ~/.ssh/id_rsa.pub inside the laravel-forge terminal. Bitbucket did not allow me to add this. This is usually added in bitbucket by clicking…
Pranay Aryal
  • 5,208
  • 4
  • 30
  • 41
5
votes
1 answer

Multiple domains to one site in Laravel Forge

Is it possible to have multiple top-level-domains point to the same site? .com/.net/.eu etc... I created a site in Laravel Forge and you have to tell him the domain your site is going to be on. This works for the .com domain, but how about the other…
AgeDeO
  • 3,137
  • 2
  • 25
  • 57
5
votes
1 answer

Guzzle slow on laravel forge and homestead

I don't understand why guzzle requests are really slow on laravel forge and laravel homestead. I did not change default server configuration on forge and homestead. Every simple request like this one ... $client = new GuzzleHttp\Client(); $response…
rap-2-h
  • 30,204
  • 37
  • 167
  • 263
4
votes
2 answers

Laravel Blade component method undefined in production but work in local dev

I have a component NoteTag in app/View/Components/Notes and the blade component in resources/views/components/notes. I am using this component in a parent component like this: NoteTag has a…
4
votes
1 answer

QuickBooks webhooks works locally with ngrok but not working on production

I've gone through all the troubleshooting steps they provide here. My endpoint is accessible, SSL passes the tests. Webhooks work when I'm testing on my local environment using ngrok but it does not work on staging and production servers hosted on…
Varol
  • 1,798
  • 1
  • 22
  • 30
1
2 3
17 18