php - Laravel 5.1.1 LTS: Incomplete Chunked Encoding -
i've seen lots of these reports, none regarding recent laravel 5.1.1 (lts). have started new app, , i'm receiving following error when requesting app.local/
:
get http://app.local/ net::err_incomplete_chunked_encoding
it takes on 5 seconds come conclusion.
now, fresh installation - i've made following changes:
- use
fallbackresource
instead ofmod_rewrite
sending requestindex.php
, and - set application path
/../name.application/bootstrap/autoload.php
inindex.php
(movedapp
,config
, etcname.application
directory.
i above error when sending request root of domain - app.local/
. there existing route this, , set return "hello" (return response('hello')
). response displayed immediately, page continues load 5 seconds, , console throws error.
if request /test
, response snappy, , don't receive error.
seemingly, laravel problem, , i'm not quite sure comes from. it's not .htaccess
problem reverting changes makes no difference. alternatively, apache problem, nothing points being case.
for reference, i'm running apache 2.4 php 5.6 on windows 8.1.
this issue isn't limited chrome others have reported previous versions.
any guidance appreciated.
update: having tested on same virtualhost, laravel 4.2 appears doing same thing. this, in fact, server issue?
after having looked @ answers here , realising bizarre issue, tried falling normal mod_rewrite
approach, , started working expected.
interestingly enough, did not happen first time, why question posted.
as such, more server issue. running app production server setup described in question worked perfectly.
Comments
Post a Comment