+Apache2
+PHP5.5
+Laravel4
After installing laravel, I go to http://localhost
and chrome gives me an ERR_EMPTY_RESPONSE
error.
If I create in the public folder an index2.php file that just echo "hello", it works fine!
Everytime I try to access localhost, a line like this is added in the Apache's log:
[Sat Jul 26 14:38:37.083511 2014] [core:notice] [pid 9562] AH00051: child pid 10025 exit signal Segmentation fault (11), possible coredump in /etc/apache2
and this crash happens:
These are my conf files:
apache2.conf
<Directory /servidor/show/public>
AllowOverride All
allow from all
Options +Indexes
Require all granted
</Directory>
000-default.conf
<VirtualHost *:80>
DocumentRoot "/servidor/show/public"
ServerName tadflex.dev
ServerAlias tadflex.dev
<Directory "/servidor/show/public">
AllowOverride All
allow from all
Options +Indexes
Require all granted
</Directory>
</VirtualHost>
.htaccess
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
RewriteBase /public/
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
I've been for the last 2 days trying to do everything I found in stackoverflow threats... but nothing helped.
I have tried re-installing apache but it didn't work.
Do you have any clue what may be going on?
Thanks