Davidson_Y
Forum Replies Created
-
I figured out that it was caused by the fact I didn’t have a payment page setup for the payment gateway.
Will there be a way to avoid the payment gateway at a later release?
I tried the template overriding and it didn’t work with version 3. I tried to override the templates/loop.php in version 3 and it still didn’t make any difference.
I even tried it with a fresh install on WordPress with no success.
- This reply was modified 9 years, 8 months ago by Davidson_Y.
Forum: Plugins
In reply to: [Olimometer] Broken Image for custom skin with overlayI checked the thermometer.php file and it throws warnings that I think is the cause of the olimometer breaking with an overlay image.
Warning: imagecreatefrompng() [function.imagecreatefrompng]: http:// wrapper is disabled in the server configuration by allow_url_fopen=0 (line 301) Warning: imagecreatefrompng(http://canada7sfund.com/wp-content/uploads/2014/10/leaf5.png) [function.imagecreatefrompng]: failed to open stream: no suitable wrapper could be found (line 301) Warning: getimagesize() [function.getimagesize]: http:// wrapper is disabled in the server configuration by allow_url_fopen=0 (line 304) Warning: imagecopyresampled() expects parameter 2 to be resource, boolean given (line 349) Warning: Cannot modify header information - headers already sent (line 360)After some time I did manage to figure out a solution to fix the olimometer.
Include the following on the .htaccess file:
php_value allow_url_fopen 1 php_value allow_url_include 0 php_value allow_call_time_pass_reference 0Some servers will have all these values default to 0 for security reasons and because of the use of
imagecreatefrompng()requires only theallow_url_fopento be set to1