I moved all the contents from /customer into the web root and in top.inc.php, I changed
define ('DIR_CUSTOMER', '/customer');
to
define ('DIR_CUSTOMER', '');
Everything seems to work ok right not but there is a slight problem, in /customer there is an index.php and in the root there is an index.php. When I moved the files from /customer to the root, I decided not to replaces the root's index.php with the /customer's index.php.
Should I keep the root index.php or replace it with the customer's php?
Thanks!
|