I have the captcha mod installed and it works for the right places except the contact us page. I use the header_php.php that comes with it and get a totally blank page. So I ran debuggin tool and got this error message in the cache folder...which I can not seem to find the culprit to adjust anywhere.

http://www.remembertheoccasons.com/shop

template is ri-template-07 by rubiks

errors from debug:

[16-Dec-2009 03:32:44] PHP Warning: require(includes/modules/
require_languages.php) [<a href='function.require'>function.require</a>]: failed to open stream: No such file or directory in /home/remember/public_html/shop/includes/modules/pages/contact_us/header_php.php on line 13
[16-Dec-2009 03:32:44] PHP Warning: require(includes/modules/
require_languages.php) [<a href='function.require'>function.require</a>]: failed to open stream: No such file or directory in /home/xxx/xxx/shop/includes/modules/pages/contact_us/header_php.php on line 13
[16-Dec-2009 03:32:44] PHP Fatal error: require() [<a href='function.require'>function.require</a>]: Failed opening required 'includes/modules/
require_languages.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/xxx/xxx/shop/includes/modules/pages/contact_us/header_php.php on line 13

code from upper section of the file:

Code:
<?php
/**
 * Contact Us Page
 *
 * @package page
 * @copyright Copyright 2003-2007 Zen Cart Development Team
 * @copyright Portions Copyright 2003 osCommerce
 * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
 * @version $Id: header_php.php 6202 2007-04-12 22:56:10Z drbyte $
 */
// BOF Captcha
require(DIR_WS_MODULES . zen_get_module_directory('require_languages.php'));

// BOF Captcha
if(CAPTCHA_CONTACT_US != 'false') {
    require(DIR_WS_CLASSES . 'captcha.php');
    $captcha = new captcha();
}
// EOF Captcha

$error = false;
if (isset($_GET['action']) && ($_GET['action'] == 'send')) {
  $name = zen_db_prepare_input($_POST['contactname']);
  $email_address = zen_db_prepare_input($_POST['email']);
  $enquiry = zen_db_prepare_input(strip_tags($_POST['enquiry']));

  $zc_validate_email = zen_validate_email($email_address);

// BOF Captcha
  if (is_object($captcha) && !$captcha->validateCaptchaCode()) {
    $error = true;
    $messageStack->add('contact', ERROR_CAPTCHA);
  }
//  if ($zc_validate_email and !empty($enquiry) and !empty($name)) {
  if ($zc_validate_email and !empty($enquiry) and !empty($name) and !$error) {
// EOF Captcha

thanks for any ideas