Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Footer Missing


csolanki

Recommended Posts

Hello there,

 

I recently updated a lot od mods in my OS shop, changing it to a catalog showroom instead of shopping store. Maybe while doing that I change something which has vanished the footer at the bottom. I have tried fixed, reloadeing all the original files of footer.php, english.php, index.php, application top.php but nothing seem to work.

 

Please help

Link to comment
Share on other sites

Hello there,

 

I recently updated a lot od mods in my OS shop, changing it to a catalog showroom instead of shopping store. Maybe while doing that I change something which has vanished the footer at the bottom. I have tried fixed, reloadeing all the original files of footer.php, english.php, index.php, application top.php but nothing seem to work.

 

Please help

 

 

Hi! I have the exact same problem...can anybody help me with this????

Link to comment
Share on other sites

add a link to your shop to your profile and remind us to look there... maybe seeing the code will show the culprit!

:-)

Monika

 

addicted to writing code ... can't get enough of databases either, LOL!

 

my toolbox: Textpad - Compare and Merge - phpMyAdmin - WS_FTP - Photoshop - How to search the forum

 

Interactive Media Award July 2007 ~ category E-Commerce

my advice on the forum is for free, PMs where you send me work are considered consultation which I charge for ...

Link to comment
Share on other sites

you could link us to any file in the root folder... they should ALL have the footer. Index.php would be a good start :-)

:-)

Monika

 

addicted to writing code ... can't get enough of databases either, LOL!

 

my toolbox: Textpad - Compare and Merge - phpMyAdmin - WS_FTP - Photoshop - How to search the forum

 

Interactive Media Award July 2007 ~ category E-Commerce

my advice on the forum is for free, PMs where you send me work are considered consultation which I charge for ...

Link to comment
Share on other sites

you could link us to any file in the root folder... they should ALL have the footer. Index.php would be a good start :-)

 

Hi. Thanks for your help. I checked all the files in the root folder and it seems to be correct. Which can be my next step?

 

Thanks and best regards.

Link to comment
Share on other sites

please post your column_right.php, and the content of the file that is below the reviews box in the col right

:-)

Monika

 

addicted to writing code ... can't get enough of databases either, LOL!

 

my toolbox: Textpad - Compare and Merge - phpMyAdmin - WS_FTP - Photoshop - How to search the forum

 

Interactive Media Award July 2007 ~ category E-Commerce

my advice on the forum is for free, PMs where you send me work are considered consultation which I charge for ...

Link to comment
Share on other sites

please post your column_right.php, and the content of the file that is below the reviews box in the col right

 

Hello! Thanks for your help.

Here is the column_right.php

 

 

<?php
/*
 $Id: column_right.php,v 1.17 2003/06/09 22:06:41 hpdl Exp $

 osCommerce, Open Source E-Commerce Solutions
 [url="http://www.oscommerce.com"]http://www.oscommerce.com[/url]

 Copyright © 2003 osCommerce

 Released under the GNU General Public License
*/

 require(DIR_WS_BOXES . 'shopping_cart.php');

 if (isset($HTTP_GET_VARS['products_id'])) include(DIR_WS_BOXES . 'manufacturer_info.php');

 if (tep_session_is_registered('customer_id')) include(DIR_WS_BOXES . 'order_history.php');

 if (isset($HTTP_GET_VARS['products_id'])) {
   if (tep_session_is_registered('customer_id')) {
     $check_query = tep_db_query("select count(*) as count from " . TABLE_CUSTOMERS_INFO . " where customers_info_id = '" . (int)$customer_id . "' and global_product_notifications = '1'");
     $check = tep_db_fetch_array($check_query);
     if ($check['count'] > 0) {
       include(DIR_WS_BOXES . 'best_sellers.php');
     } else {
       include(DIR_WS_BOXES . 'product_notifications.php');
     }
   } else {
     include(DIR_WS_BOXES . 'product_notifications.php');
   }
 } else {
   include(DIR_WS_BOXES . 'best_sellers.php');
 }

 if (isset($HTTP_GET_VARS['products_id'])) {
   if (basename($PHP_SELF) != FILENAME_TELL_A_FRIEND) include(DIR_WS_BOXES . 'tell_a_friend.php');
 } else {
   //include(DIR_WS_BOXES . 'specials.php');
 include(DIR_WS_BOXES . 'specials_scroll.php');
 }
//require(DIR_WS_BOXES . 'search.php');
require(DIR_WS_BOXES . 'whats_new.php');


 require(DIR_WS_BOXES . 'reviews.php');

 if (substr(basename($PHP_SELF), 0, 8) != 'checkout') {
   include(DIR_WS_BOXES . 'languages.php');
   include(DIR_WS_BOXES . 'currencies.php');
 }
?>

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...