We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 29332
    • 80 Posts
    I added the captcha veriword extra to my site, but the captcha image isn’t appearing. See image.
    Am I missing something?

    I’m using modx 1.0.2, better-veriword-captcha-1.0
    here is my form code:
    [!eForm? &formid=`ContactForm` &subject=`[+subject+]` &to=`[(emailsender)]` &ccsender=`1` &tpl=`ContactForm` &report=`ContactFormReport` &invalidClass=`invalidValue` &requiredClass=`requiredValue` &cssStyle=`ContactStyles` &gotoid=`46` &vericode=`1`  !]


    chunk:
    <p class="error">[+validationmessage+]</p>
    
    <form method="post" action="[~[*id*]~]" id="EmailForm" name="EmailForm">
    
    	<fieldset>
    		<h3> Contact Form</h3>
    
    		<input name="formid" type="hidden" value="ContactForm" />
    
    		<label for="cfName">Your Name:
    		<input name="name" id="cfName" class="text" type="text" eform="Your Name::1:" /> </label>
    		<br /><br />
    		<label for="cfEmail">Your Email Address:
    		<input name="email" id="cfEmail" class="text" type="text" eform="Email Address:email:1" /> </label>
    		<br /><br />
    		<label for="cfRegarding">Regarding:</label>
    		<select name="subject" id="cfRegarding" eform="Form Subject::1">
    			<option value="General Inquiries">General Inquiries</option>
    			<option value="Employment">Employment Request</option>
    			<option value="Resume">Resume Request</option>
    		</select>
    		<br /><br />
    		<label for="cfMessage">Message: 
    		<br />
    		<textarea name="message" id="cfMessage" rows="4" cols="20" eform="Message:textarea:1"></textarea>
    		</label>
    		<br /><br />
    		Please enter the anti spam code below:<br />
    		<img src="[+verimageurl+]" alt="verification code" border="1"/>
    		</p>
    		<p></p>
    		<p>
    		<label accesskey="c" for="vericode">Code: (Case sensitive)</label>
    		<input type="text" name="vericode" size="20" />
    		<br /><br />
    		<label> </label><input type="submit" name="contact" id="cfContact" class="button" value="Send This Message" />
    
    	</fieldset>
    
    </form>
    


    Any ideas?
      Teaching myself MODx
      • 3749
      • 24,544 Posts
      Captcha requires GD and Freetype libraries to be enabled. Check that first (see PhpInfo() ).
        Did I help you? Buy me a beer
        Get my Book: MODX:The Official Guide
        MODX info for everyone: http://bobsguides.com/modx.html
        My MODX Extras
        Bob's Guides is now hosted at A2 MODX Hosting
        • 29332
        • 80 Posts
        That was it, thanks
          Teaching myself MODx