Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Publish to web


Guest

Recommended Posts

Posted

Hi I am ready to go live but am not sure.............i have tried moving all folders to the top directory ie: out of the catalog !!!!!!! this didn't work --- can anyone help or have i missed something obvious.

thanks :blush:

Posted

Where are the files now Tracy?

IF they are on your PC you will need to upload them to your Web site, either by FTP or ssh programs.

NIc

Sometimes you're the dog and sometimes the lamp post

[/url]

My Contributions

Posted

Hi Nic

yes I have uploaded via an FTP - all files sitting in the catalog folder - to see on the web the www. address has to end in /catalog/. I have tried moving them out of the catalog but get 404 errors. do i need to redirect something????? Also..........isn't this the right place to be asking questions???

thanks

Posted
Hi Nic

yes I have uploaded via an FTP - all files sitting in the catalog folder - to see on the web the www. address has to end in /catalog/. I have tried moving them out of the catalog but get 404 errors. do i need to redirect something????? Also..........isn't this the right place to be asking questions???

thanks

 

 

You will need to make changes to your

admin / includes / configure.php

includes / configure.php

as the paths will still point to your old catalog location and not the newer root location

Nic

Sometimes you're the dog and sometimes the lamp post

[/url]

My Contributions

Posted

What changes do I need to make

i know where both config files are but not what to change and to what

Tracy

Posted
What changes do I need to make

i know where both config files are but not what to change and to what

Tracy

Copy or move ALL the CONTENTS of your catalog folder to root(public_html, html, www, etc.) AND

make these changes to your configure.php files

 

/includes/ configure.php file (No ssl)

 

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

define('HTTPS_SERVER', 'https://www.your_domain.com');

define('ENABLE_SSL', 'false');// <-False for now. Don't know if you have ssl cert.

//Cookie domain must match what is on ssl cert. Does it have www or no www?

define('HTTP_COOKIE_DOMAIN', '.www.your_domain.com');

define('HTTPS_COOKIE_DOMAIN', '.www.your_domain.com');//<-If you have shared ssl, this must change.

define('HTTP_COOKIE_PATH', '/');

define('HTTPS_COOKIE_PATH', '/');

define('DIR_WS_HTTP_CATALOG', '/');

define('DIR_WS_HTTPS_CATALOG', '/');

define('DIR_FS_CATALOG', '/home/content/blah/blah/public_html/');

 

admin/includes - configure.php (no ssl)

 

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

define('HTTP_CATALOG_SERVER', 'http://www.your_domain.com');

define('HTTPS_CATALOG_SERVER', 'https//www.your_domain.com');

define('ENABLE_SSL_CATALOG', 'false');//<-Same reason as above

define('DIR_FS_DOCUMENT_ROOT', '/home/content/blah/blah/public_html/');

define('DIR_WS_ADMIN', '/admin/');

define('DIR_FS_ADMIN', '/home/content/blah/blah/public_html/admin/');

define('DIR_WS_CATALOG', '/');

define('DIR_FS_CATALOG', '/home/content/blah/blah/public_html/');

Archived

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

×
×
  • Create New...