mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
da8c5af6e5
Split README.md and docs/en/index.md so that One is targeted towards users visiting the github repo, and the other for browsing a documentation repository.
21 lines
833 B
Markdown
21 lines
833 B
Markdown
# Troubleshooting
|
|
|
|
Check the below if you have any issues during installation or use
|
|
|
|
## Installation Issues
|
|
|
|
After installation make sure you have done a `dev/build` you may also need to flush the admin view by appending
|
|
`?flush=1` to the URL like `http://yoursite.com/admin?flush=1`
|
|
|
|
## UserForms EditableFormField Column Clean task
|
|
|
|
This task is used to clear unused columns from EditableFormField
|
|
|
|
The reason to clear these columns is because having surplus forms can break form saving.
|
|
|
|
Currently it only supports MySQL and when it is run it queries the EditableFormField class for the valid columns,
|
|
it then grabs the columns for the live database it will create a backup of the table and then remove any columns that
|
|
are surplus.
|
|
|
|
To run the task login as Admin and go to to http://yoursite/dev/tasks/UserFormsColumnCleanTask
|