haleeben
Forum Replies Created
-
Forum: Plugins
In reply to: Woocommerce email notification / receipt not workingLooks like the guys on this thread are on the right track and might have a solution
how-can-i-get-my-ipn-works-in-woocommerce-paymentForum: Plugins
In reply to: Woocommerce email notification / receipt not workingIt would be really helpful to everyone else still having this problem if the people that found a solution would be more specific on how the solved it, like which plugins they uninstalled or deactivated.
Forum: Plugins
In reply to: [Admin Columns] Some custom post types are not showingMy custom post types are registered and I’m using them with no problem but Codepress Admin Columns is not seeing them.
Forum: Plugins
In reply to: JQuery Color Box Hiding behind embedded Youtube VideoIf your using iframe code, add this to the end of the url
?wmode=transparentexample;
<iframe width="605" height="500" src="http://www.youtube.com/embed/_MS345ptOH0E?wmode=transparent" frameborder="1" allowfullscreen></iframe>this worked for me after everything else failed
Forum: Localhost Installs
In reply to: Increase 2MB limit when uploading a Photo to a pageI’m using WAMP which is the windows version of MAMP and the php.ini file I changed was located in wamp\bin\apache\Apache2.2.17\bin and I changed line 886: upload_max_filesize = 2M, changing this to 1000M got it up to 64M in the media uploads in wordpress, for a lot of people this will be enough but I’ve got some large video files to upload so I needed more, so I changed line 734: post_max_size = 64M to 1000M and it got me up to 1GB in the media uploads. Don’t forget the restart the server after making the changes
If your on a hosted server and you have this same problem you can try this;
Create a php.ini file (with a text editor)
with the following contents and upload it to the WordPress wp-admin directory :<?php memory_limit = 64M upload_max_filesize = 1000M post_max_size = 1000M