scharpentier
Forum Replies Created
-
Forum: Plugins
In reply to: [Images Optimize and Upload CF7] Doesn’t handle upload failiure gracefullyLets add to this issue that the files being rejected because of the file case was also this plugin’s fault. The solution was to go straight to the DB and add a wp_options entry with the name
yr-images-optimize-upload-file-formatsand the valuepng|PNG|jpg|JPG|jpeg|JPEG|gif|GIF|bmp|BMPso it gets loaded ondefine('YR3K_UPLOAD_FILE_FORMATS', get_option('yr-images-optimize-upload-file-formats', 'png|jpg|jpeg|gif|bmp'));in the plugin’s root’s index.php
It’s that line that causes problem, because the fallback string like regex expression isn’t interpreted with a case insensitive regex approach. Also the plugin’s settings don’t display a field to edit this option, so it tries to read an option that can never be set using the plugin’s settings…- This reply was modified 7 months ago by scharpentier.
- This reply was modified 7 months ago by scharpentier.
Forum: Plugins
In reply to: [Images Optimize and Upload CF7] Latest update deleted my backlog of uploadsBy the way, I was able to restore the content from a backup service I had enabled luckily!
Forum: Plugins
In reply to: [Images Optimize and Upload CF7] Multiple fields in single formThat’s super neat! I will give the 5 star review!