Davide Rossi
Davide Rossi
I don't think the plugin has been built with different access roles in mind, but looking at [this](https://github.com/lazurey/strapi-plugin-content-export-import/blob/master/admin/src/utils/contentApis.js#L6) it seems that the plugin gets the available ContentTypes by making a...
Is there a limit for the json data and is there an indicator when the data is succusefully imported?
If you are on production, you may have to change the maximum POST size accepted by your web server. If you are using Nginx, the relevant config option is [client_max_body_size](http://nginx.org/en/docs/http/ngx_http_core_module.html#client_max_body_size)...
Is there a limit for the json data and is there an indicator when the data is succusefully imported?
This is because Strapi recently changed the way in which default `_limit` parameter is set on API request, I think, and this plugin was not updated since then. Which version...
I confirm that using `Flask-WTF==0.14` an error comes out when trying to access the `/register` view, but everything works fine with `Flask-WTF==0.13.1`. This is the error I get: ``` File...
@Alejandro-SB just get rid of path resolve and use relative path prefixed with `~` shortcut ```js importPT: { as: 'Lara', from: '~/presets/lara/' } ``` It will work both on Windows...