Hi, I just want to share this after I scratching my head for few hours. To integrate Laravel 5 with ckfinder authorization method (So far I only can get the solutions for Laravel 4 but get none for Laravel 5 from google.), simply add these code at the top of config.php

<?php
require $_SERVER['DOCUMENT_ROOT'].'/bootstrap/autoload.php';
$app = require_once $_SERVER['DOCUMENT_ROOT'].'/bootstrap/app.php';
$kernel = $app->make('Illuminate\Contracts\Http\Kernel');
$response = $kernel->handle(
$request = Illuminate\Http\Request::capture()
);
$kernel->terminate($request, $response);

If you got any better suggestion just drop your suggestion at below. Sharing is caring =)

Member Avatar for diafol

Viewed this post a few times. Not sure if you'll get many bites here. I'm staying away from L5 for the mo (as are many others I've spoken to) as I hate what they've done to it.

If nothing else, this post will serve to bump and draw attention to it.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.