pburke
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Bulk Discount] Discount removed at checkout!axcho, your fix worked for me as well. Thank you!
My calendar feed was not displaying. I generated an API key, verified the correct calendar ID was being used, etc. The problem ended up being that the “Minimum Feed Start Date” and “Maximum Feed End Date” had both been reset to 0 days, presumably on updating the plugin to the latest version.
I hope this is just an isolated problem with migrating settings to the new Gcal API. Devs, please check and make sure those settings have sane defaults (and THANK YOU for your work on this plugin).
Forum: Fixing WordPress
In reply to: HTTP error – media uploadCould be related to a problem with PHP/Fast-CGI’s default maximum request length. See my other post and let me know if that works for you.
Forum: Fixing WordPress
In reply to: Media Uploader Issues HTTP ErrorHere’s what fixed it for me: Link
Basically, you are running PHP via Fast-CGI and your file uploads are exceeding Fast-CGI’s default maximum request length. To fix, either put the following in your .htaccess file…
<IfModule mod_fcgid.c> MaxRequestLen 15728640 </IfModule>… or, if you have access to your Apache config, add the “MaxRequestLen 15728640” line to your fcgi configuration file. (Mine was at /etc/httpd/conf.d/fcgid.conf, but yours might be at /etc/apache2/mods-available/fcgid.conf)