squart Posted December 4, 2009 Share Posted December 4, 2009 So I made a duplicate of the database and did a second install which went smoothly enough. The site is actually displaying all the content correctly. Prices, product images, the CSS is working no problem. However, in the admin I am seeing some issues and for all my tinkering I'm not finding a solution. So here are the two issues: 1) This error occurs when I enter Catalog in the Admin. Error: Catalog images directory does not exist: /home/xxxx/oscomm2/catalog/images/ However, as I said...it is displaying the product images correctly. From my browser I can see that the image is being pulled from /oscomm2/catalog/images/clear.jpg So I'm not sure how to fix a problem that isn't actually happening. The folder is in the right place. And while I'm getting errors in my http log errors aren't actually occurring via browser. 2) The second error is also in the Admin. When I enter any of the module sections I see the following and nothing else: Module Directory: /home/nero/oscomm2/catalog/includes/modules/payment/ I don't see any of the modules listed that I have installed. In both cases I'm sure I made a silly error in configure.php. I compared the 2 installs and couldn't see what I did wrong. Here is my /oscomm2/catalog/includes/configure.php <?php define('HTTP_SERVER', 'http://xxxx.xxxxxxxxxx.com/'); define('HTTPS_SERVER', 'http://xxxx.xxxxxxxxxx.com/'); define('ENABLE_SSL', false); define('HTTP_COOKIE_DOMAIN', 'xxxx.xxxxxxxxxx.com/'); define('HTTPS_COOKIE_DOMAIN', 'xxxx.xxxxxxxxxx.com/'); define('HTTP_COOKIE_PATH', '/oscomm2/catalog/'); define('HTTPS_COOKIE_PATH', '/oscomm2/catalog/'); define('DIR_WS_HTTP_CATALOG', '/oscomm2/catalog/'); define('DIR_WS_HTTPS_CATALOG', '/oscomm2/catalog/'); 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('DIR_WS_DOWNLOAD_PUBLIC', 'pub/'); define('DIR_FS_CATALOG', '/home/xxxx/oscomm2/catalog/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); ?> And here is my /oscomm2/oscomm2/catalog/admin/includes/ <?php define('HTTP_SERVER', 'http://xxxx.xxxxxxxxxx.com'); define('HTTP_CATALOG_SERVER', 'http://xxxx.xxxxxxxxxx.com'); define('HTTPS_CATALOG_SERVER', 'http://xxxx.xxxxxxxxxx.com'); define('ENABLE_SSL_CATALOG', 'false'); define('DIR_FS_DOCUMENT_ROOT', '/home/xxxx/oscomm2/catalog/'); define('DIR_WS_ADMIN', '/oscomm2/catalog/admin/'); define('DIR_FS_ADMIN', '/home/xxx/oscomm2/catalog/admin/'); define('DIR_WS_CATALOG', '/oscomm2/'); define('DIR_FS_CATALOG', '/home/xxxx/oscomm2/catalog/'); 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/'); ?> Note: I removed the db info from each cut and paste, but it's there and working correctly. Can anyone perhaps spot where I went wrong? Thanks in advance for your help. Link to comment Share on other sites More sharing options...
FIMBLE Posted December 4, 2009 Share Posted December 4, 2009 define('DIR_WS_CATALOG', '/oscomm2/'); should be define('DIR_WS_CATALOG', '/oscomm2/catalog/'); Sometimes you're the dog and sometimes the lamp post [/url] My Contributions Link to comment Share on other sites More sharing options...
squart Posted December 4, 2009 Author Share Posted December 4, 2009 define('DIR_WS_CATALOG', '/oscomm2/'); should be define('DIR_WS_CATALOG', '/oscomm2/catalog/'); Hey Fimble, Thanks for responding. I made the edit that you suggested and unfortunately no change. I still have the exact same errors. Any other ideas? Link to comment Share on other sites More sharing options...
FIMBLE Posted December 4, 2009 Share Posted December 4, 2009 you also need to get rid of the forward slash at the end of the URL http://xxxx.xxxxxxxxxx.com/ The way it is the URL looks like /xxxx.xxxxxxxx...oscomm2//catalog With 2 x slashes in the name Nic Sometimes you're the dog and sometimes the lamp post [/url] My Contributions Link to comment Share on other sites More sharing options...
squart Posted December 4, 2009 Author Share Posted December 4, 2009 you also need to get rid of the forward slash at the end of the URL http://xxxx.xxxxxxxxxx.com/ The way it is the URL looks like /xxxx.xxxxxxxx...oscomm2//catalog With 2 x slashes in the name Nic That was actually never in my config files, the trailing /. Just from the cut and paste operation to sanitize my post. More ideas? B) Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.