Important

Okay
  Print

I could not uploaded images in widget single image of Pages Builder Extension?

- To resolve the issue, we should change permission settings for Dir Mode and File Mode in admin > Stores > Configuration > Ves Pages Builder > Base Widgets (try to change to 0777, default 0755 and 0644) as this:


Also you should change permission 0777 for folder pub/media/wysiwyg

- If the above solution not work. Please try to edit the file "app/code/Ves/BaseWidget/Classes/Elfinder/ElFinderVolumeLocalFileSystem.php" 

Find code:

@chmod($path, $this->options['dirMode']);

Change to:

@chmod($path, 0777);


Find code:

@chmod($path, $this->options['fileMode']);

Change to:

@chmod($path, 0777);