Results 1 to 8 of 8
  1. #1
    Join Date
    Jun 2007
    Posts
    68
    Plugin Contributions
    0

    red flag Is There Any One That Can Help Me With These Issues

    IM NEW AT THIS AND I NEED SOME GUIDENCE ON HOW TO FIX THESE PROBLEMS. CAN SOMEONE HELP ME THAT KNOWS WHAT THERE DOIN. I WOULD GREATLY APPRECIATE IT BECOUSE A FRIEND SAID HE KNEW WHAT HE WAS DOIN AND HE OBVIOUSLY DIDNT.(LOL) :censored:

    Warning: require(includes/templates/template_default/templates/tpl_product_info_display.php) [function.require]: failed to open stream: No such file or directory in /var/www/vhosts/urconnection.net/httpdocs/includes/modules/pages/product_info/main_template_vars.php on line 183


    Fatal error: require() [function.require]: Failed opening required 'includes/templates/template_default/templates/tpl_product_info_display.php' (include_path='.:') in /var/www/vhosts/urconnection.net/httpdocs/includes/modules/pages/product_info/main_template_vars.php on line 183

    Warning: Wrong parameter count for define() in /var/www/vhosts/urconnection.net/httpdocs/admin/includes/languages/english.php on line 583

  2. #2
    Join Date
    Jun 2007
    Posts
    68
    Plugin Contributions
    0

    Default Re: Is There Any One That Can Help Me With These Issues

    Warning: require(includes/templates/template_default/templates/tpl_product_info_display.php) [function.require]: failed to open stream: No such file or directory in /var/www/vhosts/urconnection.net/httpdocs/includes/modules/pages/product_info/main_template_vars.php on line 183

    <?php
    /**
    * product_info main_template_vars.php
    *
    * @package productTypes
    * @copyright Copyright 2003-2006 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: main_template_vars.php 5369 2006-12-23 10:55:52Z drbyte $
    */
    /*
    * Extracts and constructs the data to be used in the product-type template tpl_TYPEHANDLER_info_display.php
    */
    // This should be first line of the script:
    $zco_notifier->notify('NOTIFY_MAIN_TEMPLATE_VARS_START_PRODUCT_INFO');
    $module_show_categories = PRODUCT_INFO_CATEGORIES;
    $sql = "select count(*) as total
    from " . TABLE_PRODUCTS . " p, " .
    TABLE_PRODUCTS_DESCRIPTION . " pd
    where p.products_status = '1'
    and p.products_id = '" . (int)$_GET['products_id'] . "'
    and pd.products_id = p.products_id
    and pd.language_id = '" . (int)$_SESSION['languages_id'] . "'";

    $res = $db->Execute($sql);
    if ( $res->fields['total'] < 1 ) {
    $tpl_page_body = '/tpl_product_info_noproduct.php';
    } else {
    $tpl_page_body = '/tpl_product_info_display.php';
    $sql = "update " . TABLE_PRODUCTS_DESCRIPTION . "
    set products_viewed = products_viewed+1
    where products_id = '" . (int)$_GET['products_id'] . "'
    and language_id = '" . (int)$_SESSION['languages_id'] . "'";
    $res = $db->Execute($sql);
    $sql = "select p.products_id, pd.products_name,
    pd.products_description, p.products_model,
    p.products_quantity, p.products_image,
    pd.products_url, p.products_price,
    p.products_tax_class_id, p.products_date_added,
    p.products_date_available, p.manufacturers_id, p.products_quantity,
    p.products_weight, p.products_priced_by_attribute, p.product_is_free,
    p.products_qty_box_status,
    p.products_quantity_order_max,
    p.products_discount_type, p.products_discount_type_from, p.products_sort_order, p.products_price_sorter
    from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd
    where p.products_status = '1'
    and p.products_id = '" . (int)$_GET['products_id'] . "'
    and pd.products_id = p.products_id
    and pd.language_id = '" . (int)$_SESSION['languages_id'] . "'";
    $product_info = $db->Execute($sql);
    $products_price_sorter = $product_info->fields['products_price_sorter'];
    $products_price = $currencies->display_price($product_info->fields['products_price'],
    zen_get_tax_rate($product_info->fields['products_tax_class_id']));
    $manufacturers_name= zen_get_products_manufacturers_name((int)$_GET['products_id']);
    if ($new_price = zen_get_products_special_price($product_info->fields['products_id'])) {
    $specials_price = $currencies->display_price($new_price,
    zen_get_tax_rate($product_info->fields['products_tax_class_id']));
    }
    // set flag for attributes module usage:
    $flag_show_weight_attrib_for_this_prod_type = SHOW_PRODUCT_INFO_WEIGHT_ATTRIBUTES;
    // get attributes
    require(DIR_WS_MODULES . zen_get_module_directory(FILENAME_ATTRIBUTES));
    // if review must be approved or disabled do not show review
    $review_status = " and r.status = '1'";
    $reviews_query = "select count(*) as count from " . TABLE_REVIEWS . " r, "
    . TABLE_REVIEWS_DESCRIPTION . " rd
    where r.products_id = '" . (int)$_GET['products_id'] . "'
    and r.reviews_id = rd.reviews_id
    and rd.languages_id = '" . (int)$_SESSION['languages_id'] . "'" .
    $review_status;
    $reviews = $db->Execute($reviews_query);
    }
    require(DIR_WS_MODULES . zen_get_module_directory('product_prev_next.php'));
    $products_name = $product_info->fields['products_name'];
    $products_model = $product_info->fields['products_model'];
    $products_description = $product_info->fields['products_description'];
    if ($product_info->fields['products_image'] == '' and PRODUCTS_IMAGE_NO_IMAGE_STATUS == '1') {
    $products_image = PRODUCTS_IMAGE_NO_IMAGE;
    } else {
    $products_image = $product_info->fields['products_image'];
    }
    $products_url = $product_info->fields['products_url'];
    $products_date_available = $product_info->fields['products_date_available'];
    $products_date_added = $product_info->fields['products_date_added'];
    $products_manufacturer = $manufacturers_name;
    $products_weight = $product_info->fields['products_weight'];
    $products_quantity = $product_info->fields['products_quantity'];
    $products_qty_box_status = $product_info->fields['products_qty_box_status'];
    $products_quantity_order_max = $product_info->fields['products_quantity_order_max'];
    $products_base_price = $currencies->display_price(zen_get_products_base_price((int)$_GET['products_id']),
    zen_get_tax_rate($product_info->fields['products_tax_class_id']));
    $product_is_free = $product_info->fields['product_is_free'];
    $products_tax_class_id = $product_info->fields['products_tax_class_id'];
    $module_show_categories = PRODUCT_INFO_CATEGORIES;
    $module_next_previous = PRODUCT_INFO_PREVIOUS_NEXT;
    $products_id_current = (int)$_GET['products_id'];
    $products_discount_type = $product_info->fields['products_discount_type'];
    $products_discount_type_from = $product_info->fields['products_discount_type_from'];
    /**
    * Load product-type-specific main_template_vars
    */
    $prod_type_specific_vars_info = DIR_WS_MODULES . 'pages/' . $current_page_base . '/main_template_vars_product_type.php';
    if (file_exists($prod_type_specific_vars_info)) {
    include_once($prod_type_specific_vars_info);
    }
    $zco_notifier->notify('NOTIFY_MAIN_TEMPLATE_VARS_PRODUCT_TYPE_VARS_PRODUCT_INFO');

    /**
    * Load all *.PHP files from the /includes/templates/MYTEMPLATE/PAGENAME/extra_main_template_vars
    */
    $extras_dir = $template->get_template_dir('.php', DIR_WS_TEMPLATE, $current_page_base . 'extra_main_template_vars', $current_page_base . '/' . 'extra_main_template_vars');
    if ($dir = @dir($extras_dir)) {
    while ($file = $dir->read()) {
    if (!is_dir($extras_dir . '/' . $file)) {
    if (preg_match('/\.php$/', $file) > 0) {
    $directory_array[] = '/' . $file;
    }
    }
    }
    $dir->close();
    }
    if (sizeof($directory_array)) sort($directory_array);
    for ($i = 0, $n = sizeof($directory_array); $i < $n; $i++) {
    if (file_exists($extras_dir . $directory_array[$i])) include($extras_dir . $directory_array[$i]);
    }
    // build show flags from product type layout settings
    $flag_show_product_info_starting_at = zen_get_show_product_switch($_GET['products_id'], 'starting_at');
    $flag_show_product_info_model = zen_get_show_product_switch($_GET['products_id'], 'model');
    $flag_show_product_info_weight = zen_get_show_product_switch($_GET['products_id'], 'weight');
    $flag_show_product_info_quantity = zen_get_show_product_switch($_GET['products_id'], 'quantity');
    $flag_show_product_info_manufacturer = zen_get_show_product_switch($_GET['products_id'], 'manufacturer');
    $flag_show_product_info_in_cart_qty = zen_get_show_product_switch($_GET['products_id'], 'in_cart_qty');
    $flag_show_product_info_tell_a_friend = zen_get_show_product_switch($_GET['products_id'], 'tell_a_friend');
    $flag_show_product_info_reviews = zen_get_show_product_switch($_GET['products_id'], 'reviews');
    $flag_show_product_info_reviews_count = zen_get_show_product_switch($_GET['products_id'], 'reviews_count');
    $flag_show_product_info_date_available = zen_get_show_product_switch($_GET['products_id'], 'date_available');
    $flag_show_product_info_date_added = zen_get_show_product_switch($_GET['products_id'], 'date_added');
    $flag_show_product_info_url = zen_get_show_product_switch($_GET['products_id'], 'url');
    $flag_show_product_info_additional_images = zen_get_show_product_switch($_GET['products_id'], 'additional_images');
    $flag_show_product_info_free_shipping = zen_get_show_product_switch($_GET['products_id'], 'always_free_shipping_image_switch');
    require(DIR_WS_MODULES . zen_get_module_directory(FILENAME_PRODUCTS_QUANTITY_DISCOUNTS));
    $zco_notifier->notify('NOTIFY_MAIN_TEMPLATE_VARS_EXTRA_PRODUCT_INFO');

    require($template->get_template_dir($tpl_page_body,DIR_WS_TEMPLATE, $current_page_base,'templates'). $tpl_page_body);
    //require(DIR_WS_MODULES . zen_get_module_directory(FILENAME_ALSO_PURCHASED_PRODUCTS));
    // This should be last line of the script:
    $zco_notifier->notify('NOTIFY_MAIN_TEMPLATE_VARS_END_PRODUCT_INFO');
    ?>

  3. #3
    Join Date
    Mar 2004
    Posts
    16,042
    Plugin Contributions
    5

    Default Re: Is There Any One That Can Help Me With These Issues

    you need to add this folder from a fresh distro

    includes/templates/template_default/templates/tpl_product_info_display.php
    Zen cart PCI compliant Hosting

  4. #4
    Join Date
    Jun 2007
    Posts
    68
    Plugin Contributions
    0

    Default Re: Is There Any One That Can Help Me With These Issues

    Warning: Wrong parameter count for define() in /var/www/vhosts/urconnection.net/httpdocs/admin/includes/languages/english.php on line 583
    LINES 582 THRU 590
    // Rich Text / HTML resources
    define('<!-- Begin Official PayPal Seal --><a href="https://www.paypal.com/us/verified/p...arthlink%2enet" target="_blank"><img src="http://www.paypal.com/en_US/i/icon/v...ation_seal.gif" border="0" alt="Official PayPal Seal"></A><!-- End Official PayPal Seal -->');
    define('TEXT_WARNING_HTML_DISABLED','<span class = "main">Note: You are using TEXT only email. If you would like to send HTML you need to enable "use MIME HTML" under Email Options</span>');
    define('TEXT_WARNING_CANT_DISPLAY_HTML','<span class = "main">Note: You are using TEXT only email. If you would like to send HTML you need to enable "use MIME HTML" under Email Options</span>');
    define('TEXT_EMAIL_CLIENT_CANT_DISPLAY_HTML',"You're seeing this text because we sent you an email in HTML format but your email client cannot display HTML messages.");
    define('ENTRY_EMAIL_PREFERENCE','Email Format Pref:');
    define('ENTRY_EMAIL_FORMAT_COMMENTS','Choosing "none" or "optout" disables ALL mail, including order details');
    define('ENTRY_EMAIL_HTML_DISPLAY','HTML');
    define('ENTRY_EMAIL_TEXT_DISPLAY','TEXT-Only');

  5. #5
    Join Date
    Jun 2007
    Posts
    68
    Plugin Contributions
    0

    Default Re: Is There Any One That Can Help Me With These Issues

    What Is A Fresh Distro?

  6. #6
    Join Date
    Mar 2004
    Posts
    16,042
    Plugin Contributions
    5

    Default Re: Is There Any One That Can Help Me With These Issues

    go to the downloads section of this forum,
    click on the download link for ZC,

    unzip it on your local PC and that is a fresh distro
    Zen cart PCI compliant Hosting

  7. #7
    Join Date
    Jun 2007
    Posts
    68
    Plugin Contributions
    0

    Default Re: Is There Any One That Can Help Me With These Issues

    IM UNABLE TO FIND THIS "ZC" DOWNLOAD, CAN YOU TELL WHAT CATEGORY ITS IN ,IN THE DOWNLOADS SECTION?

  8. #8
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,527
    Plugin Contributions
    127

    Default Re: Is There Any One That Can Help Me With These Issues

    Go here: http://www.zen-cart.com/index.php

    Hit Download Now on the right hand side
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

 

 

Similar Threads

  1. Pleaes help,any one that uses both the Easy populate and Ceon URI
    By mybiz9999 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 19 Sep 2010, 10:38 AM
  2. Add On modules - are there compatibility issues with these?
    By atiqkhan in forum All Other Contributions/Addons
    Replies: 4
    Last Post: 29 Jul 2010, 06:10 AM
  3. Can I create a coupon that will be good for one time use for 50% off any one item?
    By ppruett in forum Discounts/Coupons, Gift Certificates, Newsletters, Ads
    Replies: 0
    Last Post: 13 Mar 2010, 08:10 PM
  4. Replies: 2
    Last Post: 30 Nov 2009, 10:47 PM
  5. Can any one help me with this
    By honeyhell in forum Setting Up Categories, Products, Attributes
    Replies: 1
    Last Post: 3 Oct 2008, 02:51 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg