Link to where I can see the issue?
Are you using any caching on your site?
Where is your site hosted?
Thread Starter
Marty
(@6killer)
http://www.coastlinecredit.com/index.php/contact-us/
Not using caching to my knowledge.
Site is hosted @ GoDaddy.com
Can you try turning off WP_DEBUG_DISPLAY (use WP_DEBUG_LOG instead)?
Looks like some PHP warnings are corrupting the image output:
http://www.coastlinecredit.com/wp-admin/admin-ajax.php?action=sfw2l_get_captcha&_CAPTCHA=true&t=0.50232200+1442631925&hash=0735b6bb6cbd4b65b444d592303fa1ae45df7118
I’ll note those to fix in the next release.
Thread Starter
Marty
(@6killer)
WP_DEBUG_DISPLAY was already set to false.
I added this line immediately below it and it corrected the situation, allowing the CAPTCHA to render and the form is working properly:
@ini_set('display_errors',0);
I’m not a PHP guru. Is this acceptable?
That is acceptable and should be set on production sites. Odd that it’s not already set on your server.