MyBB Community Forums

Full Version: Image Verification Not Showing
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I recently installed MyBB on my site, www.incursio-guild.com, and I found that when someone attempts to register an account, the picture for image verification doesn't show. Is there a way to fix this?
What version of Mybb are you using?
Does your host have GD library installed?
Have you search Mybb for "captcha" to see if past troubleshooting threads helps you?
I'm using version 1.4.5. I just called my hosting service (GoDaddy) and they said GD Library should be installed. I searched captcha on the forums and everythings telling me to reupload the captcha.php file and the captcha_fonts folder, which i've already done. Any other solutions?
I know this sounds weird, but try deleting ./inc/captcha_fonts
Have u check this thread?
http://community.mybboard.net/thread-410...79706.html
may will solve ur problem.
(2009-05-04, 06:15 AM)Kronikz Wrote: [ -> ]I recently installed MyBB on my site, www.incursio-guild.com, and I found that when someone attempts to register an account, the picture for image verification doesn't show. Is there a way to fix this?

You have something that inserts crap (AdTag, tradex, openx) HTML and JavaScript into the output, and since this doesn't belong in binary PNG image data, the image can't be displayed.

You have the same crap in your HTML pages too but you probably don't notice because browsers are forgiving. If you look at the HTML source of any of your pages, you'll find this:

		</div>
<!-- end: footer -->
</body>
</html>
<!-- end: index --><html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"></head><body><div id="ieoxAdTag" style="text-align: center;"><div id="oxAdTag" style="width: 728px; margin-left: auto; margin-right: auto;">

        <script type="text/javascript"><!--//<![CDATA[
           var m3_u = (location.protocol=='https:'?'https://d.tradex.openx.com/ajs.php':'http://d.tradex.openx.com/ajs.php');
           var m3_r = Math.floor(Math.random()*99999999999);
...

find whatever is adding this crap to your output. remove it.