Download the PHP package namdp06/ckfinder-4.0-fix-s3-iam-upload without Composer
On this page you can find all versions of the php package namdp06/ckfinder-4.0-fix-s3-iam-upload. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download namdp06/ckfinder-4.0-fix-s3-iam-upload
More information about namdp06/ckfinder-4.0-fix-s3-iam-upload
Files in namdp06/ckfinder-4.0-fix-s3-iam-upload
Package ckfinder-4.0-fix-s3-iam-upload
Short Description CKFinder 4 package for Laravel fixed S3 upload using IAM role
License MIT
Informations about the package ckfinder-4.0-fix-s3-iam-upload
CKFinder 4 Package for Laravel 9+
This repository contains the CKFinder 4 Package for Laravel 9+. This repository was forked from https://github.com/ckfinder/ckfinder-laravel-package Purpose: Fix S3 Upload using IAM role from EC2
Installation
-
Add a Composer dependency and install the package.
-
Publish the CKFinder connector configuration and assets.
This will publish CKFinder assets to
public/js/ckfinder
, and the CKFinder connector configuration toconfig/ckfinder.php
.You can also publish the views used by this package in case you need custom route names, different assets location, file browser customization etc.
Finally, you can publish package's configuration, assets and views using only one command.
-
Create a directory for CKFinder files and allow for write access to it. By default CKFinder expects the files to be placed in
public/userfiles
(this can be altered in the configuration).NOTE: Since usually setting permissions to
0777
is insecure, it is advisable to change the group ownership of the directory to the same user as Apache and add group write permissions instead. Please contact your system administrator in case of any doubts. -
CKFinder by default uses a CSRF protection mechanism based on double submit cookies. On some configurations it may be required to configure Laravel not to encrypt the cookie set by CKFinder.
To do that, please add the cookie name
ckCsrfToken
to the$except
property ofEncryptCookies
middleware:You should also disable Laravel's CSRF protection for CKFinder's path, as CKFinder uses its own CSRF protection mechanism. This can be done by adding
ckfinder/*
pattern to the$except
property ofVerifyCsrfToken
middleware: (app/Http/Middleware/VerifyCsrfToken.php)
At this point you should see the connector JSON response after navigating to the <APP BASE URL>/ckfinder/connector?command=Init
address.
Authentication for CKFinder is not configured yet, so you will see an error response saying that CKFinder is not enabled.
Configuring Authentication
CKFinder connector authentication is handled by middleware class or alias. To create the custom middleware class, use the artisan command:
The new middleware class will appear in app/Http/Middleware/CustomCKFinderAuth.php
. Change the authentication
option in config/ckfinder.php
:
The handle
method in CustomCKFinderAuth
class allows to authenticate CKFinder users. A basic implementation that returns true
from the authentication
callable (which is obviously not secure) can look like below:
Please have a look at the CKFinder for PHP connector documentation to find out more about this option.
Note:
Alternatively, you can set the configuration option $config['loadRoutes'] = false;
in config/ckfinder.php
. Then you copy the routes from vendor/ckfinder/ckfinder-laravel-package/src/routes.php
to your application routes such as to protect them with your Laravel auth middleware.
Configuration Options
The CKFinder connector configuration is taken from the config/ckfinder.php
file.
To find out more about possible connector configuration options please refer to the CKFinder for PHP connector documentation.
Usage
The package code contains a couple of usage examples that you may find useful. To enable them, uncomment the ckfinder_examples
route in vendor/ckfinder/ckfinder-laravel-package/src/routes.php
:
After that you can navigate to the <APP BASE URL>/ckfinder/examples
path and have a look at the list of available examples.
To find out about the code behind them, check the views/samples
directory in the package (vendor/ckfinder/ckfinder-laravel-package/views/samples/
).
Including the Main CKFinder JavaScript File in Templates
To be able to use CKFinder on a web page you have to include the main CKFinder JavaScript file. The preferred way to do that is to include the CKFinder setup template, as shown below:
The included template renders the required script
tags and configures a valid connector path.
Useful Links
All versions of ckfinder-4.0-fix-s3-iam-upload with dependencies
laravel/framework Version ^9.0
pimple/pimple Version ~3.0
league/flysystem Version ^3.0
league/flysystem-aws-s3-v3 Version ^3.0
league/flysystem-azure-blob-storage Version ^3.0
league/flysystem-ftp Version ^3.0
spatie/flysystem-dropbox Version ^2.0
ext-json Version *
ext-gd Version *
ext-zip Version *