So I followed the advice and i updated the both the configure.php files. Just to note I can get pages to show up in the browser but none of the product pages. The admin side is where I am struggling to get set up. The titles to all the menu's in admin are all messed up so it leads me to beelive its not getting the right path to the languages files. I also cannot access any of the products/pages inside of admin. None of hte links work but I can access the default admin menu.
Here is my newly updated admin/configure.php file....please help!
define('HTTP_SERVER', 'http://127.0.0.1'); // eg,
http://localhost or -
https://localhost should not be NULL for productive servers
define('HTTP_CATALOG_SERVER', 'http://127.0.0.1');
define('HTTPS_CATALOG_SERVER', 'http://127.0.0.1');
define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module
define('DIR_FS_DOCUMENT_ROOT', 'C://wamp/www/MemorywalkRemote/'); // where your pages are located on the server. if $DOCUMENT_ROOT doesnt suit you, replace with your local path. (eg, /usr/local/apache/htdocs)
define('DIR_WS_ADMIN', '/MemorywalkRemote/admin/');
define('DIR_FS_ADMIN', 'C:/wamp/www/MemorywalkRemote/admin/');
define('DIR_WS_CATALOG', '/MemorywalkRemote/');
define('DIR_FS_CATALOG', 'C:/wamp/www/MemorywalkRemote/');
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/');
define('DIR_WS_INCLUDES', 'includes/');
define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
define('DIR_WS_CATALOG_LANGUAGES', DIR_WS_CATALOG . 'includes/languages/');
define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/');
define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/');
define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/');
define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');
geoffreywalton, on Jun 10 2009, 09:09 PM, said:
HTH
G
define('HTTP_SERVER', 'http://localhost');
define('HTTPS_SERVER', 'http://localhost');
define('ENABLE_SSL', false);
define('HTTP_COOKIE_DOMAIN', 'localhost');
define('HTTPS_COOKIE_DOMAIN', 'localhost');
define('HTTP_COOKIE_PATH', '/MemorywalkRemote/');
define('HTTPS_COOKIE_PATH', '/MemorywalkRemote/');
define('DIR_WS_HTTP_CATALOG', '/MemorywalkRemote/');
define('DIR_WS_HTTPS_CATALOG', '/MemorywalkRemote/');
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_INCLUDES', 'includes/');
define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
define('HTTP_SERVER', 'http://localhost');
define('HTTP_CATALOG_SERVER', 'http://localhost');
define('HTTPS_CATALOG_SERVER', 'http://localhost');
define('ENABLE_SSL_CATALOG', 'false');
define('DIR_FS_DOCUMENT_ROOT', 'C:/wamp/www/MemorywalkRemote/');
define('DIR_WS_ADMIN', '/admin/');
define('DIR_FS_ADMIN', 'C:/wamp/www/MemorywalkRemote/admin/');
define('DIR_WS_CATALOG', '/MemorywalkRemote/');
define('DIR_FS_CATALOG', 'C:/wamp/www/MemorywalkRemote/');
define('DIR_WS_IMAGES', 'images/');