Yvette Posted November 14, 2008 Share Posted November 14, 2008 When I go to the admin area, I get a browser error page that says it can't find the server at mywebsite.comdir_ws_adminindex.php and when I click on the subfolders under Catalog, I get the same message but with the subcategory .php file, such as: mywebsite.comdir_ws_adminmanufacturers.php. I can see that these files exist in the Admin folder from the Control Panel. Also, I don't know if this is related, I will post a separate topic for it, but several button gifs are also missing. I'm not sure where they're supposed to be and don't know where to look. The ones that are missing are Buy Now, the Flag icons in the Languages box, from inside Cart Contents area- Continue Shopping, Checkout and Update Cart. There may be others I haven't noticed. Prior to this, I edited the configure.php file, but it didn't fix what I was trying to do, so I changed it back to what it was originally. Could that have changed files elsewhere causing the existing problem? I would GREATLY appreciate any assistance with this! Thanks! Link to comment Share on other sites More sharing options...
Guest Posted November 14, 2008 Share Posted November 14, 2008 I,m not sure if this is helpful to your or not, due to my issues not having been the exact same as yours, but ... last night I had attempted to edit something in a file, it didnt' work, I put the original codes back in from the backup that I had made. When I refreshed my screen, I had a blank page showing. As it turns out, all I had to do was name the re-file that was on the server to config.php.bak & then upload my backed up original copy as config.php (if you use Text Document to write your files on the PC, make sure you save it in Unicode format and put the .php extension after the file name. I hope your fix is easy Link to comment Share on other sites More sharing options...
♥zelf Posted November 14, 2008 Share Posted November 14, 2008 I edited the configure.php file, but it didn't fix what I was trying to do, so I changed it back to what it was originally. Could that have changed files elsewhere causing the existing problem? Post your configure.php file, let's rule that out first. Virtual Merchant a.k.a. Elavon, ViaKlix, Nova Payment Module Contribution Link to comment Share on other sites More sharing options...
germ Posted November 14, 2008 Share Posted November 14, 2008 can't find the server at mywebsite.comdir_ws_adminindex.php From the error you posted I'd say you've lost your definition for DIR_WS_ADMIN in your admin configure file. Mine is defined as such: define('DIR_WS_ADMIN', '/admin/'); Yours may need to be different. If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you. "Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice." - Me - "Headers already sent" - The definitive help "Cannot redeclare ..." - How to find/fix it SSL Implementation Help Like this post? "Like" it again over there > Link to comment Share on other sites More sharing options...
Yvette Posted November 14, 2008 Author Share Posted November 14, 2008 It's weird because the define('DIR_WS_ADMIN', '/admin/'); wasn't in there originally and the website worked just fine then. I edited it because we would get that warning about not being able to do backups, which I have since learned from the advice on here that it's okay because it's better to do backups through the control panel, anyway. So, the 3 lines I added are in bold. I've since taken them out. Also, when I put define('DIR_WS_ADMIN', '/admin/') back in, our custom 404 error page page comes up, but when it is taken out the browser's error comes up. // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://www.mywebsite.com'); // eg, http://localhost - should not be NULL for productive servers define('HTTPS_SERVER', 'https://ssllocked.net/~xxxxx'); // eg, https://localhost - should not be NULL for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('DIR_WS_CATALOG', '/shop/'); // absolute path required define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_INCLUDES', 'includes/'); // If "URL fopen wrappers" are enabled in PHP (which they are in the default configuration), this can be a URL instead of a local pathname 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_ADMIN', '/admin/'); define('DIR_WS_DOWNLOAD_PUBLIC', DIR_WS_CATALOG . 'pub/'); define('DIR_FS_DOCUMENT_ROOT', '/home/xxxxxxx/public_html/'); define('DIR_FS_CATALOG', '/home/xxxxxx/public_html/shop/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); define('DIR_FS_ADMIN', '/home/xxxxxxx/public_html/admin/'); define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/'); Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.