Laravel Community Tools by Tighten

All Recipes

144 recipes available

Resolve the issue of your RR email customer support

I am Dave Heller, I work as a Senior Technician at the RR email Support Service. We provide technical email support for various email: Roadrunner email , or TWC email,or TWC mail, or Time Warner e...

https://www.3citcians.com/roadrunner-email-support
5 years ago
Daveheller

elastic search

echo ">> Installing Elastic GPG Key"
wget -O - http://packages.elasticsearch.org/GPG-KEY-elasticsearch | apt-key add -

echo ">> Adding deb package"
5 years ago
hangrand

Install Imagick for PHP 7.3

This script will install imagick via PECL and add the extension to your php.ini file, for servers running PHP 7.3

#!/bin/bash
if [ "$EUID" -ne 0 ]
  then echo "Please run as root"
  exit
6 years ago
superbig

Install wkhtmltopdf 12.5.1 (latest as of 05/03/2020) on Ubuntu 18.04 LTS (Bionic Beaver)

Install wkhtmltopdf 12.5.1 (latest as of 05/03/2020) on Ubuntu 18.04 LTS (Bionic Beaver)

# Author: Rob Allport for f9web.co.uk
# script should be ran as the root user

echo "Installing required packages ..."
6 years ago
RobAllport

Install Image Optimizers used by the Spatie Media LIbrary Package

Install Image Optimizers used by the Spatie Media LIbrary Package (see https://docs.spatie.be/laravel-medialibrary/v7)

sudo apt-get install jpegoptim
sudo apt-get install optipng
sudo apt-get install pngquant
sudo npm install -g svgo
6 years ago
RobAllport

Install SOAP on PHP 7 enabled servers

By default, forge doesn't install the Soap client with its PHP setup.

sudo apt-get install php7.0-soap
6 years ago
saimemre

Install PHP Redis extension for PHP 7.3

sudo pecl install redis
sudo echo "extension=redis.so" > /etc/php/7.3/mods-available/redis.ini
sudo ln -sf /etc/php/7.3/mods-available/redis.ini /etc/php/7.3/fpm/conf.d/20-redis.ini
sudo ln -sf /etc/php/7.3/mods-available/redis.ini /etc/php/7.3/cli/conf.d/20-redis.ini
6 years ago
chimit

Install ImageMagick for PHP 7.3

apt-get install -y php-imagick
6 years ago
chimit

Reset MySQL 8 default authentication plugin

Reset MySQL 8 default authentication plugin to `mysql_native_password` so everything just works

# Default to mysql_native_password
echo "default-authentication-plugin = mysql_native_password" >> /etc/mysql/mysql.conf.d/mysqld.cnf

# Restart MySQL
6 years ago
bakerkretzmar

Install wkhtmltopdf (v 0.12.5-1 on Ubuntu 18.04)

Install the latest version (July 2019) of wkhtmltopdf on Ubuntu 18.04

# Author: Rob Allport for f9web.co.uk

echo "Install dependencies"
apt-get install -y wget fontconfig libxrender1 xfonts-base xfonts-75dpi libjpeg-turbo8 libxext6
6 years ago
RobAllport

Craft CMS 3

See https://github.com/engram-design/craft-forge-recipe for description

#!/bin/bash

# Exit immediately if a simple command exits with a non-zero status (https://ss64.com/bash/set.html) 
set -e
6 years ago
web@sgroup.com.au

Install ElasticSearch 7.x

Updated Elasticsearch version to 7.x and fix Java dependency

echo ">> Installing Elastic GPG Key"
wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -

echo ">> Install apt-transport-https"
6 years ago
pelmered