ItSolutionStuff.com

How to Solve - You Don't Have Permission to Upload Files in KCFinder?

By Hardik Savani • November 5, 2023
PHP

I was working on my project and implementing KCEditor and CKFinder (the free one) with image upload, but when i tried to upload image i found error like "you don't have permissions to upload files".

So, i though maybe issue for folder permission because i used ubuntu OS. i gave whole ckfinder folder give full permission 777 and also give ckeditor folder too. but same error. At last i found how to solve it. So if you have also fetch this error then you have to open config.php file in conf folder of ckfinder and disabled equal to give false.

ckfinder/conf/config.php

'disabled' => true,

INTO

'disabled' => false,

Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

PHP MySQL Login with Google Account Example

Read Now →

How to Create Zip Folder and Download in PHP?

Read Now →

PHP MySQL Confirmation Before Delete Record using Ajax Example

Read Now →

PHP Ajax Form Validation Example Tutorial

Read Now →

PHP MySQL DataTables Server-side Processing Example

Read Now →

PHP MySQL Integrate Fullcalendar Example Tutorial

Read Now →

PHP MySQL Image Gallery CRUD Example

Read Now →

PHP CKEditor Custom File Upload Example

Read Now →

How to Implement Flash Messages in Codeigniter?

Read Now →

PHP - Getting Started PHPUnit Test Example

Read Now →

How to Get Folder Path from File Path in PHP?

Read Now →

How to Get the File Size in PHP?

Read Now →

How to Send Mail in PHP Laravel?

Read Now →