Investigated...
Works, with warning, in IE 7 using SSL url..
Fine in Firefox and Safari but not IE6..
Flash file links to images in domain
zencart folder/s so testing on own server/template
means certain flash files load, others do not..
Investigated...
Works, with warning, in IE 7 using SSL url..
Fine in Firefox and Safari but not IE6..
Flash file links to images in domain
zencart folder/s so testing on own server/template
means certain flash files load, others do not..
After many hours of debugging I finally got my site to work properly in Internet Explorer except I get a small error code at the end of my site that only shows up in Internet Explorer and NOT Firefox
Notice: Object of class queryFactoryResult could not be converted to int in /home/evotacti/public_html/includes/application_bottom.php on line 18
Here is the code from application_bottom.php
Line 18 is the line that calls the function session_write_close();<?php
/**
* application_bottom.php
* Common actions carried out at the end of each page invocation.
*
* @package initSystem
* @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: application_bottom.php 3019 2006-02-13 03:59:48Z birdbrain $
*/
if (!defined('IS_ADMIN_FLAG')) {
die('Illegal Access');
}
// close session (store variables)
// zen_session_close();
session_write_close();
// breaks things
// pconnect disabled (safety switch)
// $db->close();
if ( (GZIP_LEVEL == '1') && ($ext_zlib_loaded == true) && ($ini_zlib_output_compression < 1) ) {
if ( (PHP_VERSION < '4.0.4') && (PHP_VERSION >= '4') ) {
zen_gzip_output(GZIP_LEVEL);
}
}
?>
Before I was using zen_session_close(); and that was what was causing the front page to fail in IE.
Any ideas why IE is whining about this line? It's the same code that everyone else uses in their application_bottom.php file.
I am so thankful that my website now works in IE now, just gota clear up this little error and I'll be able to sleep properly.
Any help is greatly appreciate. Thank you for your time!