Usuario:ManuelRomero/laravel
De WikiEducator
< Usuario:ManuelRomero
Revisión a fecha de 05:21 5 jun 2020; ManuelRomero (Discusión | contribuciones)
__TOP__
sudo docker start docker_name sudo docker exec docker_name service apache2 start
- Subir Laravel al hosting
https://www.nigmacode.com/laravel/Subir-proyecto-laravel-a-hosting
Laravel: Framework de Php
https://styde.net/laravel-5/ https://github.com/laravel/laravel https://laravel.com/ https://laraveles.com/ |
How to deploy a Laravel web app on Google App Engine Build a simple blog with multiple image upload using Laravel & Vue |
How to deploy a Laravel web app on Google App Engine
Problemas ejecutando un proyecto Laravel
- Al crear migraciones
SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes (SQL: alter table `users` add unique `users_email_unique`(`email`)) *Esta circunstancia está recogida en la documentación de Laravel https://laravel.com/docs/master/migrations#creating-indexes *Ir a la sección '''''index Lengths & MySQL / MariaDB'''''
- El problema es de la vesion de mysql. hay que permitir un tamaño por defecto para las variables string
use Illuminate\Support\Facades\Schema;
public function boot() {
Schema::defaultStringLength(191);
}