반응형 laravel9 laravel/framework v5.4.9 requires ext-mbstring laravel 신규 프로젝트 생성 시 다음과 같은 오류가 발생할 때가 있다. php.ini 에서 extention 부분의 아래 세 항목의 ; 를 지워 활성화 해 주고 다시 terminal 을 실행하여 시도한다. extension=fileinfo extension=mbstring extension=openssl "Problem 1 - laravel/framework v5.3.9 requires ext-mbstring * -> the requested PHP extension mbstring is missing from your system. - laravel/framework v5.3.8 requires ext-mbstring * -> the requested PHP extension mbstring is.. 카테고리 없음 2020. 5. 9. laravel Project import 프로젝트 불러오기 우분투 기준입니다. 1. git clone2. 폴더 퍼미션 설정 chmod 777 -R 폴더명3. composer install (composer 가 없으면 sudo apt instll composer 를 실행하여 설치)4. php artisan key:generate5. php artisan serve 서버 실행 카테고리 없음 2018. 7. 31. the requested PHP extension simplexml is missing 라라벨 프로젝트에 Composer Install 을 하는 과정에서 "the requested PHP extension simplexml is missing" 오류가 발생하였다.php 라이브러리가 제대로 설치되어 있지 않아서 발생하는 오류로 아래와 같이 해결한다.1. "sudo apt-get update && sudo apt-get install php7.0-gd" 2. "sudo apt-get install php-xml" 카테고리 없음 2018. 7. 7. Laravel 5 on PHP 7.0: PDO Exception - Could not find driver (MySQL)c Laravel 5.4 on PHP 7.0: PDO Exception - Could not find driver (MySQL)라라벨을 서버에 배포하고 migrate db 작업을 하는 중에 "PDO Exception - Could not find driver (MySQL)" 에러가 발생했다.아래와 같이 sudo apt-get install php7-mysql또는sudo apt-get install php5-mysql또는sudo apt-get install php-mysql중에서 실행하여 설치를 해주고 다시 migrate 작업을 해주면 정상적으로 동작한다. 카테고리 없음 2018. 2. 14. laravel Class 'Laracasts\Flash\FlashServiceProvider' not found Begin by pulling in the package through Composer.composer require laracasts/flashNext, if using Laravel 5, include the service provider within your config/app.php file.'providers' => [ Laracasts\Flash\FlashServiceProvider::class, ]; 카테고리 없음 2018. 1. 30. laravel composer require laravelcollective/html 1. app.php 에 아래와 같이 추가한다.config/app.php: 'providers' => [ // ... Collective\Html\HtmlServiceProvider::class, // ... ], Finally, add two class aliases to the aliases array of config/app.php: 'aliases' => [ // ... 'Form' => Collective\Html\FormFacade::class, 'Html' => Collective\Html\HtmlFacade::class, // ... ], 2. 콘솔창에서 다음과 같이 입력해 준다. composer require laravelcollective/html 카테고리 없음 2018. 1. 30. Laravel Flash 알림 설치하기 https://github.com/laracasts/flash InstallationBegin by pulling in the package through Composer.composer require laracasts/flashNext, if using Laravel 5, include the service provider within your config/app.php file.'providers' => [ Laracasts\Flash\FlashServiceProvider::class, ];Finally, as noted above, the default CSS classes for your flash message are optimized for Twitter Bootstrap. As such, p.. 카테고리 없음 2018. 1. 26. Laravel 5 Class 'HTML' not found 문제1."Laravel 5 Class 'HTML' not found" 위 문제를 해결하기 위해 정말 오랜 시간을 소비한 것 같다. 라라벨 5 버전 이상에서 발생하며 각 버전에 따라 조금씩 다르게 composer 를 업데이트 해주어야 했기 때문이다. 아래와 같이 해결 가능하다. 1. 라라벨 버전 확인: 필자의 경우 5.1.4였다.2. 라라벨 버전에 맞는 html composer 설치아래의 문구를 composer.json 에 require 부분에 입력한다. 반드시 html 뒤에 5.1.. 버전이 현재 버전과 일치해야 한다."require": { "php": ">=5.5.9", "laravel/framework": "5.1.*", "laravelcollective/html": "5.1.*" },"laravel.. 카테고리 없음 2018. 1. 4. 라라벨 버전 확인하기 Laravel 버전은 아래 명령으로 확인할 수 있다. php artisan --version zerolism# php artisan --version Laravel Framework version 5.1.43 카테고리 없음 2018. 1. 4. 이전 1 다음 반응형