Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

All links in my admistration area have doubled up addresses


thischarmingham

Recommended Posts

Posted
The addresses look like this

 

http://www.1234gorecords.com/catalog/admin...d_box=customers

 

instead of

 

http://www.1234gorecords.com/catalog/admin...d_box=customers

 

anyone know what I might have futzed up to cause this?

 

 

So the board is shortening those addresses up to look exactly the same for some reason. I'm going to seperate them a little bit in the middle so you can see what I'm talking about. Help is much needed and much appreciated!

Posted

copy configure.php from admin and asterix all login/pw data

:-)

Monika

 

addicted to writing code ... can't get enough of databases either, LOL!

 

my toolbox: Textpad - Compare and Merge - phpMyAdmin - WS_FTP - Photoshop - How to search the forum

 

Interactive Media Award July 2007 ~ category E-Commerce

my advice on the forum is for free, PMs where you send me work are considered consultation which I charge for ...

Posted

Im getting exactly the same error

 

in the administration panel when i try and delete or upload stuff in categories. I get a doubled up url

Posted
copy configure.php from admin and asterix all login/pw data

 

<?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', 'www.1234gorecords.com'); // eg, http://localhost or - should not be empty for productive servers

define('HTTP_CATALOG_SERVER', 'www.1234gorecords.com');

define('HTTPS_CATALOG_SERVER', '');

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

define('DIR_FS_DOCUMENT_ROOT', '/home/go1234/public_html/catalog/'); // where the pages are located on the server

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

define('DIR_FS_ADMIN', '/home/go1234/public_html/catalog/admin/'); // absolute pate required

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

define('DIR_FS_CATALOG', '/home/go1234/public_html/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', 'www.1234gorecords.com'); // eg, http://localhost - should not be empty for productive servers

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

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

define('DB_DATABASE', '*********');

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

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

?>

Posted

your server definitions aren't set properly, add the http:// in front

 

define('HTTP_SERVER', 'http://www.1234gorecords.com'); // eg, [url=http://localhost]http://localhost[/url] or - should not be empty for productive servers
define('HTTP_CATALOG_SERVER', 'http://www.1234gorecords.com');

Archived

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

×
×
  • Create New...