Merge pull request #524 from open-sausages/pulls/export-docs

Suggest installing gridfieldqueuedexport
This commit is contained in:
Will Rossiter 2016-11-28 17:31:34 +13:00 committed by GitHub
commit 1a74f45992
2 changed files with 9 additions and 1 deletions

View File

@ -34,7 +34,8 @@
},
"suggest": {
"colymba/gridfield-bulk-editing-tools": "Allows for bulk management of form submissions",
"silverstripe/secureassets": "Enables files uploaded via userforms to be secured from public access"
"silverstripe/secureassets": "Enables files uploaded via userforms to be secured from public access",
"silverstripe/gridfieldqueuedexport": "Export large submission as CSV through queued jobs in the background"
},
"extra": {
"branch-alias": {

View File

@ -18,3 +18,10 @@ it then grabs the columns for the live database it will create a backup of the t
are surplus.
To run the task login as Admin and go to to http://yoursite/dev/tasks/UserFormsColumnCleanTask
## My CSV export times out or runs out of memory
You likely have too many submissions to fit within the PHP constraints
on your server (execution time and memory). If you can't increase these limits,
consider installing the [gridfieldqueuedexport](https://github.com/silverstripe/silverstripe-gridfieldqueuedexport) module. It uses [queuedjobs](https://github.com/silverstripe-australia/silverstripe-queuedjobs) to export
submissions in the background, providing users with a progress indicator.