Installing a new Laravel 5.5 application in a Debian 9 with PHP 7.0.27, when I execute the “composer install” I get this error:
Author: Jesús Amieiro
-
How to show the Laravel version of a project?
If you want to show the Laravel version of a project, you can use the command:
$ php artisan --version Laravel Framework 5.5.32
This command gets the version from a constant in a file placed in the vendor\laravel\framework\src\Illuminate\Foundation\Application.php file
class Application extends Container implements ApplicationContract, HttpKernelInterface { /** * The Laravel framework version. * * @var string */ const VERSION = '5.5.32';
-
How to install composer globally
To install composer globally, you have to execute in a shell
curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer
-
Automatizando la gestión de los certificados HTTPS en un entorno Dockerizado con Let’s Encrypt
Hola, soy Pablo, amigo de Jesús Amieiro y socio de TramitApp, un programa de control horario y gestión de recursos humanos online que te permite gestionar los trámites de los empleados (solicitud de vacaciones, bajas médicas, notas de gastos, etc.) con tu empresa de una manera rápida y sencilla.
Hace ya muchos años que soy amigo de Jesús y de vez en cuando nos juntamos para hablar de “frikadas”.
En una de nuestras charlas me habló acerca de Let’s Encrypt y lo fácil que era de implementar con WordPress, con lo que seguí su consejo y lo implanté gratuitamente para los WordPress que ya gestionaba.
-
Creating a Laravel Twitter bot
In this post, I will explain how to create a Twitter bot in Laravel. This app will send random tweets (selected from a database) periodically (each hour) and automatically, through the Laravel task scheduling. This project doesn’t have a graphical user interface.
You can download or clone the code from this GitHub repository.
-
Can’t ping between two guest OS in VirtualBox
If you can’t ping between two guest OS in VirtualBox (two Debian 9.1 in my example) try:
-
You need to have Ruby and Sass installed and in your PATH for this task to work
I was trying to compile some Sass files using Grunt when I get this error:
$ grunt Running "sass:dist" (sass) task Warning: You need to have Ruby and Sass installed and in your PATH for this task to work. More info: https://github.com/gruntjs/grunt-contrib-sass Use --force to continue. Aborted due to warnings.
-
Instalar un servidor web LEMP (IV). Certificado SSL/TLS de Let’s Encrypt
Tras instalar el sistema operativo base (Debian 9 Stretch), los servidores (MySQL y nginx) y configurarlos y migrar la instalación de WordPress desde otro servidor, llega el momento de isntalar un certificado SSL/TLS de Let’s Encrypt para proteger la comunicación.
-
Instalar un servidor web LEMP (III). Migrando WordPress
Tras instalar el sistema operativo base (Debian 9 Stretch) y los servidores (MySQL y nginx) y configurarlos, el siguiente paso es migrar las dos instalaciones de WordPress.
-
Instalar un servidor web LEMP (II). Instalación y configuración del MySQL, nginx y PHP
En la anterior entrada de esta serie expliqué cómo cómo instalar y configurar el sistema operativo base (Debian 9 Stretch) en un servidor físico.
En esta entrada voy a explicar cómo, partiendo de la instalación descrita en el artículo anterior, instalar los servicios y demás software necesario para poder ejecutar dos instalaciones de WordPress.