Support the ongoing development of Laravel.io →
Installation
Last updated 1 year ago.
0

I believe wamp uses a second php.ini file for apache. I do not have wamp installed now, so I cannot remember the location.

Last updated 1 year ago.
0

I would recommend to look into Vagrant and then Vaprobash. This way you will be able to follow tutorials, that are for linux.

Last updated 1 year ago.
0

from your php.ini uncomment following line

extension=php_openssl.dll

and +1 for vagrant and vaprobash

Last updated 1 year ago.
0

It showed that there where a few more extenstions that were missing. Found out by Googling a little: http://www.wikihow.com/Install-Laravel-Framework-in-Windows

(Still not sure how vagrant/vaprobash was supposed to help me..)

Thanks for your engagement!

Last updated 1 year ago.
0

WAMP does have two php.ini files. What you are likely running into, is from using the CLI. Using PHP CLI in WAMP, you have to edit c:\wamp\bin\php\php5.x.x\php.ini. That is not the same file that you edit using the system tray menu. Uncomment the extension in that file, and you should be good to go. Source: Had a similar issue in the past with openssl and a zip extension.

If you are still having and issue, make sure that php.exe is not a running process in task explorer.

Last updated 1 year ago.
0

If you still want to use a dev package like wamp, I would recommend xampp. (You already have git and composer, I'll skip this part)

composer create-project laravel/laravel myproject --prefer-dist
  • Browse xampp\htdcos\myproject, open a command line
composer install
  • Edit apache\conf\extra\httpd-vhosts.conf, add a virtual host for myproject.dev
NameVirtualHost *:80

<VirtualHost *:80>
    DocumentRoot C:/xampp/htdocs
    ServerName localhost
</VirtualHost>

# Your virtual host for myproject.dev starts here:
# Note document root pointed to public folder

<VirtualHost *:80>
    ServerAdmin [email protected]
    DocumentRoot "C:/xampp/htdocs/myproject/public" 
    ServerName myproject.dev
    ErrorLog "logs/myproject.dev-error.log"
    CustomLog "logs/dev-myproject.dev-access.log" common
</VirtualHost>
  • Edit your hosts file, windows\system32\drivers\etc\hosts:
127.0.0.1 myproject.dev

That's it.

Last updated 1 year ago.
0

Install Laravel Guide http://8subjects.com/laravel-install/
Simple steps to do. Try once!

Last updated 7 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.