0

I have installed Akeneo CE 5.0.9 version and setting up a fresh PIM database using Nginx FPM server.
Getting the following error while upload the product base image. Followed this docs to adjusted PHP and Nginx settings but still getting the following error.

enter image description here

Here is the console error where media directory getting 403 forbidden error. Is there any specific configuration or setting to adjust in the Nginx or PHP to overcome this error?

enter image description here

I am new to Akeneo. Any help much appreciated! Thanks!

2 Answers2

0

It's might be folder permission issue. Please check your file_storage folder permissions.

0

One of the reasons is a misconfigured Nginx config file. The POST request to /media is not handled by PHP, and Nginx returns a 403 error. The following code should work.

location / {
    try_files $uri $uri/ /index.php?$query_string;
}
Vasili Pascal
  • 3,102
  • 1
  • 27
  • 21