Sounds like it explains itself, check your folder storage permissions.
: include(C:\xampp\htdocs\***\***\***): failed to open stream: Permission denied
when i run php artisan route:list i got this error what is the problem?
storage permissions?where is it?
Well you didn't show the whole error message so I'm not sure where you are having trouble but any folder that needs write permissions.
I would say show more of the error so people can help.
Have you moved the files from one windows installation to another? If so your username might not have the same user id. You can go through diretory by directory but that will take some time and might not help.
I suggest you copy paste the files you have updated into a new project. If you are not using git that is or some other version control system.
This is error message:
ErrorException : include(C:\xampp\htdocs\PHP\xxx\xxx): failed to open stream: Permission denied
at C:\xampp\htdocs\PHP\xxx\xxx\vendor\composer\ClassLoader.php:444 440| * Prevents access to $this/self from included files. 441| */ 442| function includeFile($file) 443| {
444| include $file; 445| } 446|
Exception trace:
1 include() C:\xampp\htdocs\PHP\xxx\xxx\vendor\composer\ClassLoader.php:444
2 Composer\Autoload\includeFile("C:\xampp\htdocs\PHP\xxx\xxx\vendor\composer/../..") C:\xampp\htdocs\PHP\xxx\xxx\vendor\composer\ClassLoader.php:322
Please use the argument -v to see more details.
What happens if you try to run the command in a administrator command window?
Like I wrote earlier you really should setup a proper lamp or lemp stack for your development or use Homestead.
LAMP https://www.howtoforge.com/tutorial/install-apache-with-php-and-mysql-on-ubuntu-18-04-lamp/
LEMP https://www.howtoforge.com/tutorial/how-to-install-nginx-with-php-and-mysql-lemp-on-ubuntu-1804/
Homestead https://laravel.com/docs/6.x/homestead
Please or to participate in this conversation.