Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Cannot include column_right.php


Spekkio

Recommended Posts

Posted

I'm trying to include column_right.php to my site, but when I include it I get this. I've included header.php and column_left.php, and both those work fine (though the page looks funky), but for some reason it won't let me include column_right.php.

 

All I'm doing is changing

 <link rel="stylesheet" href="../stylesheets/arrowlist.css" type="text/css">
<link rel="stylesheet" href="../stylesheets/indent.css" type="text/css">
     <table width="510" border="0" cellspacing="0" cellpadding="0">
  <?php //require('includes/column_right.php'); ?>
  <script language="JavaScript" type="text/javascript">

to

<link rel="stylesheet" href="../stylesheets/arrowlist.css" type="text/css">
<link rel="stylesheet" href="../stylesheets/indent.css" type="text/css">
     <table width="510" border="0" cellspacing="0" cellpadding="0">
  <?php require('includes/column_right.php'); ?>
  <script language="JavaScript" type="text/javascript">

 

Any ideas?

 

Thanks,

 

~Nate B.

Posted

My guess is that column_right has been edited, and that the table code is off. I suggest reverting to a default column_right.php and seeing if the problem persists. I bet it won't.

 

-jared

Posted

Thanks for the help, but unfortunately, it still isn't working. All I really want is the shopping cart box on the right. Can I just add

require(DIR_WS_BOXES . 'shopping_cart.php');

or something like it?

 

Thanks,

 

~Nate B.

Posted

Nevermind, I figured it out. I just forgot to include applications_top.php :blush:.

 

Thanks anyways,

 

~Nate B.

Archived

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

×
×
  • Create New...