I'm doing a traineeship in a Telecomunication Company. I'm responsable for making the back office, so I decided to make it on Laravel 4.2 (something new to me).
Actually, I already did the most of the project, but i'm having problems whan i try to deploy it into the server. I followed severel guides and tutorial but nothing worked (image)
Server conf.: Apache/2.2.25 (Win32) mod_jk/1.2.37 mod_ssl/2.2.25 OpenSSL/0.9.8y mod_wsgi/3.3 Python/2.7.2 PHP/5.4.33RC1
Also I have enable mod_rewrite and ssl modules in httpd.conf, and open_ssl in php.ini
my .htaccess :
IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
I've also installed an identical environment on my personal pc and later updated to apache 2.4.9 and php 5.4. It didn't work either in both case.
PD: Sorry for my english
Update Chrome returns net::ERR_CONNECTION_RESET
Update 2
The problem was actually caused by some Blade comment statements ({{-- the comment --}}
) in my master layout file. I replaced them with PHP comments (<?php // the comment ?>
) and now the page is working flawless.