I have zencart installed into a directory on my web hosting
www.domain.com/store/

I am looking to change this so that it runs from
www.domain.com

From what I gather I would need to edit the configure.php files
looking at the file I would need to edit:

PHP Code:
define('DIR_WS_CATALOG''/store/');
  
define('DIR_WS_HTTPS_CATALOG''/store/');

 
define('DIR_FS_CATALOG''/home/content/38/6133435/html/store/');


  
define('DIR_FS_SQL_CACHE''/home/content/38/6133435/html/store/cache'); 

Then move the content of the store folder to the root directory.

Is that all it should take or would there be anything else that needs done?