I have a form where users can upload images. I have turned on the file resize option (800px wide), but with the expected 2k-3K form submissions and multiple images (200kB) coming, I'm wondering what my best options are to store the files.
Thanks in advance -
Interesting question. I can help with #1 (and add a thought for #3). The value stored in the form field is the id of the wp_post table entry in which the file's information is stored. The value of the "guid" column is the path to the uploaded file's location. So my semi-educated guess is that you could use a developer hook to put the file wherever you want as long as you update the wp_posts entry accordingly.
Please login or Register to submit your answer