Laravel not properly config on my Wamp server

I have installed Laravel 4.2.11 on Wamp server through Composer. I have created the alias using wamp's Apache option but the URL http://localhost/laraveldemo/ (I have created the laraveldemo as alias) shows "Whoops, looks like something went wrong."

How I rectify this?

Upvotes: 0

Views: 194

Answers (1)

Englund
Englund

Reputation: 1117

For further reference, when encountering a problem like this the first step to a solution is enabling the debug flag. That way you can often see a better error message.

This can be done through changing the flag located in app/config/app.php

'debug' => true

Should be set to true.

Upvotes: 2

Related Questions