I cant get to anything since I moved my cart folder to my main public_html folder to make the site live.

I changed the session directory in admin, then I moved the entire contents of the cart directory up to my public_html directory, then I went in and manually changed the includes/configure.php and the admin/includes/configure.php files to remove all the cart/ references. When I went to try out the site at www.gourmetshoppe.net/index.php I got the error. I cant even access www.gourmetshoppe.net/admin

I looked through that file to see if there were any extra lines or something below the last } but there isnt and the contents of the file is not much, so I dont see how it could be a problem. This is the contents of that file:

<?php
/**
* gif_info.php
* gif-info class for transparency stuff
*
* @version $Id: bmz_gif_info.class.php,v 1.2 2006/04/11 22:00:55 tim Exp $
*/
class gifinfo
{
var $m_transparentRed;
var $m_transparentGreen;
var $m_transparentBlue;
var $m_signature;
var $m_version;
var $m_width;
var $m_height;
var $m_colorFlag;
var $m_backgroundIndex;


function gifinfo($filename)
{
$fp = fopen($filename,"rb");
$result = fread($fp,13);
$this->m_signature = substr($result,0,3);
$this->m_version = substr($result,3,3);
$this->m_width = ord(substr($result,6,1)) + ord(substr($result,7,1)) * 256;
$this->m_height = ord(substr($result,8,1)) + ord(substr($result,9,1)) * 256;
$this->m_colorFlag = ord(substr($result,10,1)) >> 7;
$this->m_background = ord(substr($result,11));

if($this->m_colorFlag)
{
$tableSizeNeeded = ($this->m_background + 1) * 3;
$result = fread($fp,$tableSizeNeeded);
$this->m_transparentRed = ord(substr($result,$this->m_background * 3,1));
$this->m_transparentGreen = ord(substr($result,$this->m_background * 3 + 1,1));
$this->m_transparentBlue = ord(substr($result,$this->m_background * 3 + 2,1));
}
fclose($fp);
}
}

For some reason, it looks like that file is still trying to be read through the cart/ directory which doenst exist anymore since I moved all the contents to the main directory and deleted that folder. I just cant figure out where it is calling that folder at.