davidtrushkov / store

A ecommerce store using Laravel 5.2
87 stars 62 forks source link

Fatal error: require_once() #10

Closed guazarito closed 7 years ago

guazarito commented 8 years ago

Hi everybody,

I'm not sure if I'm doing it right. I've built some laravel applications and it has never happened before.

This time I downloaded the .zip package, unpacked it into my d: drive and then I've run via command dos line the following: d:\store\src>php artisan serve

I've also run "composer install". "composer update", gave 777 permission to app/storage, etc..

However, when I try to access it on my browser, I get the error:

"Warning: require_once(D:\store\src/public/index.php): failed to open stream: No such file or directory in D:\store\src\server.php on line 21

Fatal error: require_once(): Failed opening required 'D:\store\src/public/index.php' (include_path='C:\xampp\php\PEAR') in D:\store\src\server.php on line 21"

Does anyone know how to fix it ? Many thanks,

Gustavo

davidtrushkov commented 7 years ago

I usually dont download the zip package, when installing a Laravel project. I clone it in the command prompt. One thing you said is "Warning: require_once(D:\store\src/public/index.php): failed to open stream: No such file or directory in D:\store\src\server.php on line 21. My index.php file is out side the src directory for this project. It seems like the index.php file is in the wrong place.

This is how my directory looks like. (I know you are not suppose to structure it this way) store

guazarito commented 7 years ago

Thanks for your reply, davidtrushkov.

I was trying to run it in Windows system, and I could solve it by running it in Ubuntu. Maybe the problem can be in Windows.

Anyway, many thanks for your help

Gustavo