Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Baffled by "Fatal error"


donnelj

Recommended Posts

Posted

I'm on OSC 2.3 and I'm getting the following error at the bottom of most of my product pages:

 

Fatal error: Call to a member function display_price() on a non-object in /home/*******/public_html/shop/includes/modules/also_purchased_products.php on line 63

 

I also notice that my logo does not appear on pages that produce this error. Strange thing is that the error does not happen on any of the products in the 'Apparel' category. I've spent hours going through code line by line and I'm at my wit's ends here. Any help would be greatly appreciated. The store url is http://www.dwbrewproducts.com Thanks!

 

Here is the code for also_purchased_products.php:

 

<?php

/*

$Id$

 

osCommerce, Open Source E-Commerce Solutions

http://www.oscommerce.com

 

Copyright © 2010 osCommerce

 

Released under the GNU General Public License

*/

 

if (isset($HTTP_GET_VARS['products_id'])) {

$orders_query = tep_db_query("select p.products_id, p.products_image, p.products_price, p.products_tax_class_id from " . TABLE_ORDERS_PRODUCTS . " opa, " . TABLE_ORDERS_PRODUCTS . " opb, " . TABLE_ORDERS . " o, " . TABLE_PRODUCTS . " p where opa.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and opa.orders_id = opb.orders_id and opb.products_id != '" . (int)$HTTP_GET_VARS['products_id'] . "' and opb.products_id = p.products_id and opb.orders_id = o.orders_id and p.products_status = '1' group by p.products_id order by o.date_purchased desc limit " . MAX_DISPLAY_ALSO_PURCHASED);

$num_products_ordered = tep_db_num_rows($orders_query);

if ($num_products_ordered >= MIN_DISPLAY_ALSO_PURCHASED) {

 

$col_also_pur_prods = 0;

$row_also_pur_prods = 0;

 

$col_items_also_pur_prods = (MAX_DISPLAY_ALSO_PURCHASED_PRODUCTS_PER_ROW - 1);

$col_width = (int)(100 / ($col_items_also_pur_prods)).'%';

 

 

$also_pur_prods_content = '<div class="prods_content">';

 

while ($orders = tep_db_fetch_array($orders_query)) {

if (($col_also_pur_prods === 0) && ($row_also_pur_prods != 0)) {

$also_pur_prods_content .= '<ul><li class="prods_hseparator">'.tep_draw_separator('spacer.gif', '1', '1').'</li></ul>';

}

if ($col_also_pur_prods === 0) {

$also_pur_prods_content .= '<ul class="row_also_pur_prods_name row_also_pur_prods_block" id="row_also_pur_prods-'.$row_also_pur_prods.'">';

}else {

$also_pur_prods_content .= '<li class="prods_vseparator equal-height_also_pur_prods_block">'.tep_draw_separator('spacer.gif', '1', '1').''; //

}

// *************************************

if (IMG_HOVER_EFFECT == 'style-1') {

$img_effect = 'first';

$img_effect_width = PRODS_BLOCK_ALSO_PURCHASE_MODUL_WIDTH - PIC_MARG_W;

}

if (IMG_HOVER_EFFECT == 'style-2') {

$img_effect = 'tenth';

$img_effect_width = PRODS_BLOCK_ALSO_PURCHASE_MODUL_WIDTH - PIC_MARG_W;

}

if (IMG_HOVER_EFFECT == 'style-3') {

$img_effect = 'fifth';

$img_effect_width = PRODS_BLOCK_ALSO_PURCHASE_MODUL_WIDTH - PIC_MARG_W;

}

// *************************************

$orders['products_name'] = tep_get_products_name($orders['products_id']);

$p_id = $orders['products_id'];

 

$p_pic = '<a class="prods_pic_bg" href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $orders['products_id']) . '" style="width:'.(ALSO_PURCH_MODUL_IMAGE_WIDTH + PIC_MARG_W).'px;height:'.(ALSO_PURCH_MODUL_IMAGE_HEIGHT + PIC_MARG_H).'px;">' . tep_image(DIR_WS_IMAGES . $orders['products_image'], $orders['products_name'], (ALSO_PURCH_MODUL_IMAGE_WIDTH), (ALSO_PURCH_MODUL_IMAGE_HEIGHT), ' style="width:'.(ALSO_PURCH_MODUL_IMAGE_WIDTH + PIC_MARG_W2).'px;height:'.(ALSO_PURCH_MODUL_IMAGE_HEIGHT + PIC_MARG_H2).'px;margin:'.PIC_MARG_T.'px '.PIC_MARG_R.'px '.PIC_MARG_B.'px '.PIC_MARG_L.'px;"') . '';

 

$p_name = '<span><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $orders['products_id']) . '">' . $orders['products_name'] . '</a></span>';

 

if ($new_price = tep_get_products_special_price($orders['products_id'])) {

$products_price = '<span class="productSpecialPrice" style="float:right;">' . $currencies->display_price($new_price, tep_get_tax_rate($orders['products_tax_class_id'])) . '</span> <del>' . $currencies->display_price($orders['products_price'], tep_get_tax_rate($attributes_values['products_tax_class_id'])) . '</del>';

$sale = '<div class="sale"></div>';

// *************************************

} else {

// *************************************

$products_price = '<span class="productSpecialPrice">' . $currencies->display_price($orders['products_price'], tep_get_tax_rate($orders['products_tax_class_id']).'').'</span>';

$sale = '';

}

$p_price = $products_price;

 

$p_buy_now_text = '' .tep_draw_button_top() . '<a href="'.tep_href_link("products_new.php","action=buy_now&products_id=".$p_id).'" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-icon-primary ui-priority-secondary" role="button"><span class="ui-button-icon-primary ui-icon ui-icon-cart"></span><span class="ui-button-text">'. IMAGE_BUTTON_IN_CART .'</span></a>' . tep_draw_button_bottom().'';

 

// *************************************

// *************************************

$also_pur_prods_content .= '<li style="width:' . PRODS_BLOCK_ALSO_PURCHASE_MODUL_WIDTH . 'px;" class="wrapper_prods un equal-height_also_pur_prods_block hover">'.

 

'<div class="border_prods">'. "\n".

' <div class="pic_padd wrapper_pic_div" style="width:'.(ALSO_PURCH_MODUL_IMAGE_WIDTH + PIC_MARG_W).'px;height:'.(ALSO_PURCH_MODUL_IMAGE_HEIGHT + PIC_MARG_H).'px;">'.$p_pic.'</a></div>'. "\n". //'.tep_draw_prod_also_pur_pic_top().''.tep_draw_prod_also_pur_pic_bottom().'

''.$sale.''. "\n".

' <div class="prods_padd">'.

' <div class="name name_padd equal-height_also_pur_prods_name">'.$p_name.'</div>'. "\n".

' '.$p_desc.''. "\n".

' <div class="price price_padd '.$extra.'"><b>'.PRICE. '</b>'.$p_price.'</div>'. "\n".

' <div class="button__padd">'.$p_buy_now_text.'</div>'. "\n".

' </div>'. "\n".

 

'</div>'. "\n";

 

 

$col_also_pur_prods ++;

if ($col_also_pur_prods > $col_items_also_pur_prods) {

$also_pur_prods_content .= '</ul>';

$row_also_pur_prods ++;

$col_also_pur_prods = 0;

}else{

$also_pur_prods_content .= '</li>';

}

}

 

$also_pur_prods_content .= '</div>';

 

?>

<?php echo tep_draw_content_top();?>

<?php echo tep_draw_title_top();?>

<h1><?php echo TEXT_ALSO_PURCHASED_PRODUCTS; ?></h1>

<?php echo tep_draw_title_bottom();?>

<div class="contentContainer">

<div class="contentPadd">

<?php echo $also_pur_prods_content; ?>

</div>

</div>

<?php echo tep_draw_content_bottom();?>

<?php

}

}

?>

<script type="text/javascript">

$(document).ready(function(){

var row_list_also_pur_prods_name = $('.row_also_pur_prods_name');

row_list_also_pur_prods_name.each(function(){

new equalHeights_also_pur_prods_name($('#' + $(this).attr("id")));

});

var row_list_also_pur_prods_block = $('.row_also_pur_prods_block');

row_list_also_pur_prods_block.each(function(){

new equalHeights_also_pur_prods_block($('#' + $(this).attr("id")));

});

})

</script>

Posted

$currencies is undefined. It's not set locally, and I don't see any 'include' or 'require' to bring it in (or the code to set it). Is that the entire file? If not, is $currencies set somewhere above (before) in a different function? Maybe a "global" statement is needed. Have you modified the code in any way (installed add-ons, etc.)? Is this a template from a third party vendor?

Posted

Thanks for you response Phil

Is that the entire file?

Yes that is the entire file

 

Have you modified the code in any way (installed add-ons, etc.)?

There have been a few addons installed but "also_purchased_products.php" has not been modified.

 

Is this a template from a third party vendor?

Yes this is a template from TemplateMonster. I was called in to help on behalf of my friend who is the site owner. He tried to get support from the vendor but they are not very helpful. Posted on this forum in hopes that someone may have experienced a similar error.

Posted

The also_purchased_products.php you listed appears to be an almost total rewrite of what is shipped with osC. Not knowing whatever other changes they made, I can't offer any help on this. Sorry.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...