template\default\index.html
Still has your site link as
http://cpcommerce.org/______________________
In the admin folder you have a few index.php that have:
<?php
// You are Not Allowed Here!
$page = substr($_SERVER['PHP_SELF'], 0, strrpos($_SERVER['PHP_SELF'], "/"));
$page = substr($_SERVER['PHP_SELF'], 0, strrpos($page, "/"));
header("Location: http://{$_SERVER['HTTP_HOST']}{$page}");
?>
But it doesn’t seem to be working properly so I replaced it with:
<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://{$_SERVER['HTTP_HOST']}");
exit();
?>
Also index.php is missing in a few places in the admin section (mostly minor places like images). But you should add it to images\products\downloads as well so people can’t access your downloads list. Personally I added it to every folder because there’s no need for anyone to access any of it.
______________________
Also the front page of your site has an error.