#laravel #database #eloquent #model #database-migration
Вопрос:
Я пытаюсь сделать: php artisan make:model Lala -m
но я получаю следующий вывод:
**Model created successfully.** Created Migration: 2021_11_27_225646_create_lalas_table **SymfonyComponentProcessExceptionRuntimeException** A temporary file could not be opened to write the process output: fopen(C:UsersCARINE~1AppDataLocalTempsf_proc_00.out.lock): failed to open stream: Permission denied at C:laragonwwwwebappvendorsymfonyprocessPipesWindowsPipes.php:63 59▕ if (file_exists($file.'.lock')) { 60▕ continue 2; 61▕ } 62▕ restore_error_handler(); ➜ 63▕ throw new RuntimeException('A temporary file could not be opened to write the process output: '.$lastError); 64▕ } 65▕ if (!flock($h, LOCK_EX | LOCK_NB)) { 66▕ continue 2; 67▕ } 1 C:laragonwwwwebappvendorsymfonyprocessProcess.php:1304 SymfonyComponentProcessPipesWindowsPipes::__construct() 2 C:laragonwwwwebappvendorsymfonyprocessProcess.php:302 SymfonyComponentProcessProcess::getDescriptors()
Что я могу сделать, чтобы исправить эту ошибку. Я хотел бы создать модель и ее миграцию с помощью laravel framework
Комментарии:
1. Сообщение об ошибке очень четкое, нет разрешения на создание временного файла. Может быть, попробуйте запустить командную строку от имени администратора?