Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Where do I change this link.


ecustomwheels

Recommended Posts

Posted
I have a link on my main web page that is http://www.ecustomwheels.comproduct_info.php/?products_id=24&osCsid=8um7skid5kfd4nj9o6pq6t8au5

 

 

It is missing the / in front of product_info.php/?products_id=24&osCsid=8um7skid5kfd4nj9o6pq6t8au5

 

Any help is much appreciated.

 

Thanks

Open your configure.php file. Make changes ...

 

From this: define('DIR_WS_HTTP_CATALOG', '');

 

To this: define('DIR_WS_HTTP_CATALOG', '/');

Posted
Open your configure.php file. Make changes ...

 

From this: define('DIR_WS_HTTP_CATALOG', '');

 

To this: define('DIR_WS_HTTP_CATALOG', '/');

 

 

 

 

Thanks for your reply. I changed it like you said and it is still doing it. It did fix other links that I had problems with. but all the links in the footer are the same way. Any more ideas?

Posted
Thanks for your reply. I changed it like you said and it is still doing it. It did fix other links that I had problems with. but all the links in the footer are the same way. Any more ideas?

Post your configure.php file. Do NOT post the database portion. It's not needed.

Posted
Post your configure.php file. Do NOT post the database portion. It's not needed.

 

 

 

 

<?php

 define('HTTP_SERVER', 'http://www.ecustomwheels.com');

 define('HTTPS_SERVER', 'http://www.ecustomwheels.com');

 define('ENABLE_SSL', false);

 define('HTTP_COOKIE_DOMAIN', 'ecustomwheels.com');

 define('HTTPS_COOKIE_DOMAIN', 'ecustomwheels.com');

 define('HTTP_COOKIE_PATH', '/ecustomwheels/');

 define('HTTPS_COOKIE_PATH', '/ecustomwheels/');

 define('DIR_WS_HTTP_CATALOG', '/');

 define('DIR_WS_HTTPS_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/content/p/a/u/paulki/html/');

 define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');

 define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

Posted

Minor changes but everything looks good.

<?php

 define('HTTP_SERVER', 'http://www.ecustomwheels.com');

 define('HTTPS_SERVER', 'http://www.ecustomwheels.com');

 define('ENABLE_SSL', false);

 define('HTTP_COOKIE_DOMAIN', '.ecustomwheels.com');

 define('HTTPS_COOKIE_DOMAIN', '.ecustomwheels.com');

 define('HTTP_COOKIE_PATH', '/ecustomwheels/');

 define('HTTPS_COOKIE_PATH', '/ecustomwheels/');

 define('DIR_WS_HTTP_CATALOG', '/');

 define('DIR_WS_HTTPS_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/content/p/a/u/paulki/html/');

 define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');

 define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 

Also check for configure file in /includes/ local folder. It could be overriding your normal config files.

Make the same changes to it.

 

You are uploading it after you make the changes, right?

Posted

I checked the includes local and it just has a read me file in there. I have uploaded the configure.php and clicked yes to override the old one. Any other files I could check.

Posted

I fixed it when I was uploading it to the host it was not replacing the other file because of the permissions on the file. I had to go inside my host control panel and upload to overwrite the file.

 

Thanks for your help bryce.

Posted
I fixed it when I was uploading it to the host it was not replacing the other file because of the permissions on the file. I had to go inside my host control panel and upload to overwrite the file.

 

Thanks for your help bryce.

In my recent post I thought you might be placing your includes/config to your admin/includes folder.

Obviously, it's not the case.

 

Good thing everything is working fine now.

Archived

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

×
×
  • Create New...