<![CDATA[ [SOLVED] CAPTCHA not showing - My Forums]]> https://forums.modx.com/thread/?thread=46513 <![CDATA[Re: [SOLVED] CAPTCHA not showing]]> https://forums.modx.com/thread/46513/solved-captcha-not-showing?page=2#dis-post-539627 paulp Mar 15, 2016, 10:17 AM https://forums.modx.com/thread/46513/solved-captcha-not-showing?page=2#dis-post-539627 <![CDATA[Re: [SOLVED] CAPTCHA not showing]]> https://forums.modx.com/thread/46513/solved-captcha-not-showing?page=2#dis-post-539623
http://www.insideyork.co.uk/attractions/cliffordstower.html

at the bottom of that page the captcha text shows but not the word/image.

Here is my snippet code:

<div id="commentsAnchor">
<p><strong>Below you can write a review or comment for this listing.</strong><br />For more detailed York discussions with visitors & residents please see our <a href="http://www.insideyorkshire.uk/forum" target="_blank" title="Yorkshire Chat Forum">Yorkshire Talk forum.</p>
[!Jot? &customfields=`name,email` &subscribe=`1` &pagination=`4` &badwords=`dotNet` &captcha=`1` &moderated=`1` &notify=`2` &canmoderate=`Administrator` !]
</div>
You can also rate this restaurant, place or attraction by awarding it stars below:
[!star_rating? &useSession=1 &onevote=1!]
[+starRating+]
[+totalVotes+]


Thanks for any help with this.]]>
jonahnaylor Mar 15, 2016, 09:57 AM https://forums.modx.com/thread/46513/solved-captcha-not-showing?page=2#dis-post-539623
<![CDATA[Re: [SOLVED] CAPTCHA not showing]]> https://forums.modx.com/thread/46513/solved-captcha-not-showing?page=2#dis-post-474902

<img src="[+verimageurl+]" alt="verification
code" border="0"/>


What do you see there when you do a "View Source" on the page?]]>
BobRay Aug 13, 2013, 09:45 PM https://forums.modx.com/thread/46513/solved-captcha-not-showing?page=2#dis-post-474902
<![CDATA[Re: [SOLVED] CAPTCHA not showing]]> https://forums.modx.com/thread/46513/solved-captcha-not-showing?page=2#dis-post-474862 Everettg_99 Aug 13, 2013, 05:00 PM https://forums.modx.com/thread/46513/solved-captcha-not-showing?page=2#dis-post-474862 <![CDATA[Re: [SOLVED] CAPTCHA not showing]]> https://forums.modx.com/thread/46513/solved-captcha-not-showing?page=2#dis-post-474849 Quote from: Everettg_99 at Jun 25, 2009, 03:07 PM
There are 2 php modules required for this. One good way to test this is to log into the manager, and see how the login page is affected in a second browser. See the wiki for info/troubleshooting:
http://wiki.modxcms.com/index.php/CAPTCHA#Server_support


Everett, I have also been having the problem of no image showing. I am using the code from eform (In Evolution) for a contact form:

[+validationmessage+]
<form method="post" action="[~[*id*]~]">
<input type="hidden" name="formid" value="feedbackForm" />
<p>
<label for="author">Name<span class="required">*</span></label>
<input id="author" class="aqua_input" name="author" type="text" value=""/>
</p>
<p>
<label for="email">Email<span class="required">*</span></label>
<input id="email" class="aqua_input" name="email" type="email" value=""/>
</p>
<p>
<label for="comment">Message<span class="required">*</span></label>
<textarea id="comment" rows="8" class="aqua_input" name="comment"></textarea>
</p>

<p>
Please enter the anti spam code below:

<img src="[+verimageurl+]" alt="verification
code" border="0"/>
</p>
<p>
<label accesskey="c" for="vericode">code</label>
<input type="text" name="vericode" size="20" />
</p>


So I went to the link you posted for modx wiki...http://yoursite.com/manager/includes/veriword.php for Evolution. The captcha image shows up when I use this link for my site...so what does that mean?

I should warn you that I'm a newbie. So you might have to break it down a little more than usual smiley Thanks in advance for any help!]]>
saplingdesigns Aug 13, 2013, 04:04 PM https://forums.modx.com/thread/46513/solved-captcha-not-showing?page=2#dis-post-474849
<![CDATA[Re: [SOLVED] CAPTCHA not showing]]> https://forums.modx.com/thread/46513/solved-captcha-not-showing?page=2#dis-post-463519
You can insert some debugging code in it to check on where it's going wrong.

Change this:

$modx= new modX();
$modx->initialize('web');
$modx->addPackage('captcha',$captcha_core_path.'model/');
$modx->loadClass('captcha.VeriWord',$captcha_core_path.'model/',true,true);
$modx->lexicon->load('captcha:default');


to this

$modx= new modX();
if (! $modx) {
   echo "\nNo MODX";
}
$modx->initialize('web');

$success = $modx->addPackage('captcha',$captcha_core_path.'model/');

if (! $success) {
   echo "\nCould not load Captcha class";
}

$success = $modx->loadClass('captcha.VeriWord',$captcha_core_path.'model/',true,true);

if (! $success) {
   echo "\ncould not load Veriword class";
}


$modx->lexicon->load('captcha:default');



Also, check the error log after trying to use it in MODX.]]>
BobRay Apr 18, 2013, 05:47 PM https://forums.modx.com/thread/46513/solved-captcha-not-showing?page=2#dis-post-463519
<![CDATA[Re: [SOLVED] CAPTCHA not showing]]> https://forums.modx.com/thread/46513/solved-captcha-not-showing#dis-post-463382 "The image cannot be displayed as it contains errors". Phpinfo shows that all the required GD libraries are installed

GD Support enabled
GD Version 2.0
FreeType Support enabled
FreeType Linkage with freetype
FreeType Version 2.4.2
]]>
qudsiyya Apr 18, 2013, 04:16 AM https://forums.modx.com/thread/46513/solved-captcha-not-showing#dis-post-463382
<![CDATA[Re: CAPTCHA not showing]]> https://forums.modx.com/thread/46513/solved-captcha-not-showing#dis-post-269202 ]]> BobRay Jun 25, 2009, 11:44 PM https://forums.modx.com/thread/46513/solved-captcha-not-showing#dis-post-269202 <![CDATA[Re: CAPTCHA not showing]]> https://forums.modx.com/thread/46513/solved-captcha-not-showing#dis-post-269201 Thanks!]]> ZipGenius Jun 25, 2009, 07:20 PM https://forums.modx.com/thread/46513/solved-captcha-not-showing#dis-post-269201 <![CDATA[Re: CAPTCHA not showing]]> https://forums.modx.com/thread/46513/solved-captcha-not-showing#dis-post-269200 ZipGenius Jun 25, 2009, 06:41 PM https://forums.modx.com/thread/46513/solved-captcha-not-showing#dis-post-269200