Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Help! admin probs on windows server


tayl1684

Recommended Posts

Hi

 

I built our shop on my test linux server without any problems. I need to temporarily have it on a windows xp laptop to give to someone for error checking etc.

 

The catalog side works fine (as far as I can tell) but the admin side intermitently comes up with "404 page not found" on seemingly random pages. It displays the correct page for about a second and then shows the error page!! Works fine on linux! Sometimes you can see wierd characters in the pages before they dissapear.

 

Im running windows Xp, Apache 2.053, PHP 4.3.10 and Mysql 4.1.10

 

Since the catalog works ok I figure it may be something to do with the configure.php so have included it here.

 

One more thing, when I imported the database I noticed only one problem for some bizare reason the ? symbol on all the prices etc had been changed to ? very very strange.

 

Any help Would be very very welcome as my brain now aches.

 

Cheers

 

Ian

 

Here is the configure.php file

 

<?php

/*

  osCommerce, Open Source E-Commerce Solutions

  http://www.oscommerce.com

 

  Copyright © 2003 osCommerce

 

  Released under the GNU General Public License

*/

 

// Define the webserver and path parameters

// * DIR_FS_* = Filesystem directories (local/physical)

// * DIR_WS_* = Webserver directories (virtual/URL)

  define('HTTP_SERVER', 'http://192.168.0.65'); // eg, http://localhost - should not be empty for productive servers

  define('HTTP_CATALOG_SERVER', 'http://192.168.0.65');

  define('HTTPS_CATALOG_SERVER', 'https://192.168.0.65');

  define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module

  define('DIR_FS_DOCUMENT_ROOT', 'c:/public_html/meccanoman/catalog/'); // where the pages are located on the server

  define('DIR_WS_ADMIN', '/meccanoman/catalog/admin/'); // absolute path required

  define('DIR_FS_ADMIN', 'c:/public_html/meccanoman/catalog/admin/'); // absolute pate required???

  define('DIR_WS_CATALOG', '/meccanoman/catalog/'); // absolute path required

  define('DIR_FS_CATALOG', 'c:/public_html/meccanoman/catalog/'); // absolute path required

  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/');

 

// define our database connection

  define('DB_SERVER', 'localhost'); // eg, localhost - should not be empty for productive servers

  define('DB_SERVER_USERNAME', '****');

  define('DB_SERVER_PASSWORD', '********');

  define('DB_DATABASE', 'meccanoman');

  define('USE_PCONNECT', 'false'); // use persisstent connections?

  define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql'

?>

Link to comment
Share on other sites

Forgot to mention, It works fine from Firefox. The problem apprears to be in internet explorer both from the local and a remote machine. The only difference being when I use internet explorer on the local machine it goes into some kind of crazy loop - trying to display the page, instead of just displaying a "page not found" as it does on the remote machine!

 

Any ideas?

 

Cheers

 

Ian

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...