spooks, on Sep 29 2009, 12:07 PM, said:
Nope,
I am using dreamweaver, I have checked all the white space, there are non.
I have checked the session permissions, code, ect. nothing..
When I undo the Doctype, the error goes away, but the graphic in the box does as well. Put the doctype back, the graphic in the box comes back but so does the error..
Here is the code for the first part of the product_info.php
<?php
/*
$Id: product_info.php 1739 2007-12-20 00:52:16Z hpdl $
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2003 osCommerce
Released under the GNU General Public License
*/?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<?php
require('includes/application_top.php');
require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_PRODUCT_INFO);
// Simple multi image addon
$image_group = TINY_IMAGE_GROUP_SIZE; //Number of images to show per row/column
$vertical_format = (ADDITIONAL_IMAGE_FORMAT == 'vertical');
$product_info_query = tep_db_query("select p.products_id, pd.products_name, pd.products_description, p.products_model, p.products_quantity, p.products_image, p.products_image_array, pd.products_url, p.products_price, p.products_tax_class_id, p.products_date_added, p.products_date_available, p.manufacturers_id from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and p.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pd.products_id = p.products_id and pd.language_id = '" . (int)$languages_id . "'");
$product_info = tep_db_fetch_array($product_info_query);
$products_image_array = unserialize($product_info['products_image_array']);
if (!is_array($products_image_array)) $products_image_array = array();
// EOF Simple multi image addon
?>
<html <?php echo HTML_PARAMS; ?>>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>">
With this I get the error.
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/sierragu/public_html/product_info.php:13) in /home/sierragu/public_html/includes/functions/sessions.php on line 102
I am still trying to get this to work.
I have been thru the application_top.php, and am still going thru all the code to get ride of this..
Thank you for all your help thus far.
P.S. I will be installed all your recomended NON-HACK contrubs when I get this working.. Thanks for the links...
Edited by Allensbayou, 29 September 2009, 19:35.