Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Multi-Stores Multiple Shops Support


hobbzilla

Recommended Posts

Maskdingo - THANK YOU.

 

The installation materials said to reconfigure /includes/configure.php and includes/database_ables.php's TABLE_CONFIGURATION and I could not see where it was.

 

Is there anything else that I have to MANUALLY change?

Does it appear from my statement in post #1247 that I am on the right track?

 

I can't make any changes to the second and third stores and I'm sure that I have something set incorrectly.

Link to comment
Share on other sites

Maskdingo - THANK YOU.

 

The installation materials said to reconfigure /includes/configure.php and includes/database_ables.php's TABLE_CONFIGURATION and I could not see where it was.

 

Is there anything else that I have to MANUALLY change?

Does it appear from my statement in post #1247 that I am on the right track?

 

I can't make any changes to the second and third stores and I'm sure that I have something set incorrectly.

I know... the install doc is mad confusing...

 

definitely make sure each stores' /includes/configure.php has all the correct, respective information.

 

 

The install doc mentions commenting out lines... (this is where I got messed up) but the lines it mentioned weren't there... so I commented out the ones that a "thought" it was talking about.... In the end i didn't need to comment out anything in either stores file. :rolleyes:

Link to comment
Share on other sites

definitely make sure each stores' /includes/configure.php has all the correct, respective information.

 

That is where I am stuck... what IS the correct information?

What am I changing specifically and what am I changing it TO?

 

I posted my settings up top as to what I changed the Multi-Stores settings to. Is that correct?

When I go into the configure.php... what am I to change?

My second store is ticekts2 with a configuration of configuration_2

My third store is tickets3 with a configuration of configuration_3

 

<?php

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

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

define('ENABLE_SSL', false);

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

define('HTTPS_COOKIE_DOMAIN', 'www.indianaauditions.com');

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

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

define('DIR_WS_HTTP_CATALOG', '/tickets/');

define('DIR_WS_HTTPS_CATALOG', '/tickets/');

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

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

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

Link to comment
Share on other sites

Ok... here are the changes I made and it appears to be working for those of you who are stupid like I am. :rolleyes:

 

define('DIR_WS_HTTP_CATALOG', '/tickets2/');

define('DIR_WS_HTTPS_CATALOG', '/tickets2/');

 

When I go to to do the payment module however... it is not working.

Any help would be appreciated.

 

I get the following message.

 

Module Directory: /home/indianaa/public_html/indianaauditions/tickets/includes/modules/payment/

 

I assume that I have the path correct... but I am not able to choose a module.

Link to comment
Share on other sites

That is where I am stuck... what IS the correct information?

What am I changing specifically and what am I changing it TO?

 

I posted my settings up top as to what I changed the Multi-Stores settings to. Is that correct?

When I go into the configure.php... what am I to change?

My second store is ticekts2 with a configuration of configuration_2

My third store is tickets3 with a configuration of configuration_3

 

<?php

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

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

define('ENABLE_SSL', false);

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

define('HTTPS_COOKIE_DOMAIN', 'www.indianaauditions.com');

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

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

define('DIR_WS_HTTP_CATALOG', '/tickets/');

define('DIR_WS_HTTPS_CATALOG', '/tickets/');

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

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

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

Confgiure.php is just setting up your paths... don't need to worry about configuration tables for that file...

 

How you edit this file depends on your specific set up...

I, for example, have 2 stores on one web server:

 

/(WEB ROOT)/oscommerce/catalog/

and

/(WEB ROOT)/oscommerce/catalog2/

 

this is my first

 

<?php
 define('HTTP_SERVER', 'http://localhost/oscommerce/catalog/');
 define('HTTPS_SERVER', 'http://localhost/oscommerce/catalog/');
 define('ENABLE_SSL', false);
 define('HTTP_COOKIE_DOMAIN', 'localhost');
 define('HTTPS_COOKIE_DOMAIN', 'localhost');
 define('HTTP_COOKIE_PATH', '');
 define('HTTPS_COOKIE_PATH', '');
 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', 'C:/apache2triad/htdocs/oscommerce/catalog/');
 define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
 define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

?>

 

This is store2's:

 

<?php
 define('HTTP_SERVER', 'http://localhost/oscommerce/catalog2/');  
 define('HTTPS_SERVER', 'https://localhost/oscommerce/catalog2/');
 define('ENABLE_SSL', false);
 define('HTTP_COOKIE_DOMAIN', 'localhost');
 define('HTTPS_COOKIE_DOMAIN', 'localhost');
 define('HTTP_COOKIE_PATH', '');
 define('HTTPS_COOKIE_PATH', '');
 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', 'C:/apache2triad/htdocs/oscommerce/catalog2/');
 define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
 define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

?>

 

Note: I have no domains associated with these stores. They are only for my own personal testing purposes. basically HTTP_SERVER and HTTPS_SERVER should be whatever you need to type into a browser to get to the respective stores catalog, because this constant is used to generate links.

 

Also Note: I do have one line commented out, as this was the ONE with a corresponding constant defined through the database... It may work either way... but it's working for me right now so I left it commented out...

 

Yours looks good, as far as i can tell... just change it for each store... an easy way to think about it might be that the same information you entered for each stores path through the admin needs to be changed here as well... to the same information.

Edited by maskddingo
Link to comment
Share on other sites

When you are in admin/multi-stores

 

You are supposed to leave all the configuration paths blank right?

 

On the second store are you supposed to point them to (in my case) tickets2 or tickets which is my original information from the first store?

 

I'm able now to change data from the first store... but when I go to any of the modules... I can't do anything... so I assuming that a path is wrong somewhere.

Link to comment
Share on other sites

When you are in admin/multi-stores

 

You are supposed to leave all the configuration paths blank right?

 

On the second store are you supposed to point them to (in my case) tickets2 or tickets which is my original information from the first store?

 

I'm able now to change data from the first store... but when I go to any of the modules... I can't do anything... so I assuming that a path is wrong somewhere.

I have my paths set up in admin/multi-stores for each store, and in configure.php, for each store.

Link to comment
Share on other sites

So you are saying that in my Spotlight Players store which is tickets2 (catalog)

That it sohuld be...

 

Store Catalog Website URL http://www.indianaauditions.com/tickets2

Store Catalog Website SSL URL

Enable SSL Store Catalog false

Store Catalog Website Path http://www.indiaaauditions.com/tickets2

Store Catalog Filesystem Path /home/indianaa/public_html/indianaauditions/tickets2

Store Catalog Website Images Path http://www.indiaaauditions.com/tickets2/images/

Store Catalog Website Languages Path http://www.indiaaauditions.com/tickets2/includes/languages

Store Catalog Filesystem Languages Path /home/indianaa/public_html/indianaauditions/tickets2/includes/languages/

Store Catalog Filesystem Images Path /home/indianaa/public_html/indianaauditions/tickets2/images/

Store Catalog Filesystem Modules Path /home/indianaa/public_html/indianaauditions/tickets2/includes/modules/

 

<B>Any idea why my modules aren't working?</B>

Link to comment
Share on other sites

So you are saying that in my Spotlight Players store which is tickets2 (catalog)

That it sohuld be...

 

Store Catalog Website URL http://www.indianaauditions.com/tickets2

Store Catalog Website SSL URL

Enable SSL Store Catalog false

Store Catalog Website Path http://www.indiaaauditions.com/tickets2

Store Catalog Filesystem Path /home/indianaa/public_html/indianaauditions/tickets2

Store Catalog Website Images Path http://www.indiaaauditions.com/tickets2/images/

Store Catalog Website Languages Path http://www.indiaaauditions.com/tickets2/includes/languages

Store Catalog Filesystem Languages Path /home/indianaa/public_html/indianaauditions/tickets2/includes/languages/

Store Catalog Filesystem Images Path /home/indianaa/public_html/indianaauditions/tickets2/images/

Store Catalog Filesystem Modules Path /home/indianaa/public_html/indianaauditions/tickets2/includes/modules/

 

<B>Any idea why my modules aren't working?</B>

I have trailing '/' s at the end of all of my entries... don't know if that matters...

 

What exactlly isn't working with your modules?

 

I haven't really spent much time investigating that area... but i know i was able to remove the credit card module and install the paypal one without issue... Though I can't remember if this effected only one site.. or all of them... I'll look into it.

Link to comment
Share on other sites

Nothing is working with the module... that is the problem.

 

I go to the module page and there is an install button... but no drop down or modules to choose from.

Just the following line...

Module Directory: /home/indianaa/public_html/indianaauditions/tickets2/includes/modules/payment/

Link to comment
Share on other sites

I think this whole thing is FUBAR for me.

 

The images are all broken.

When I go to add something... I can add the product but I get errors like this. Error: Catalog images directory does not exist: /home/indianaa/public_html/indianaauditions/tickets2/images/

 

I don't know what I am doing and outslde of my NEW buddy.

There is no one who can walk me through this step by step in english.

 

Now here is a question.

Do I need for this to be set up in the following way...

 

My main website is http://www.indianaauditions.com

I set up the ticketing system in

http://www.indianaauditions.com/ticekts

Then my other categoires are

http://www.indianaauditions.com/tickets2

http://www.indianaauditions.com/tickets3

 

I'm wondering if it isn't supposed to be

 

http://www.indianaauditions.com/ticekts (as the main site)

http://www.indianaauditions.com/tickets/ticekt2 (as the sub site)

http://www.indianaauditions.com/tickets/ticekt3 (as the second sub site)

 

Have I had this set up the wrong way all along?

Link to comment
Share on other sites

I think this whole thing is FUBAR for me.

 

The images are all broken.

When I go to add something... I can add the product but I get errors like this. Error: Catalog images directory does not exist: /home/indianaa/public_html/indianaauditions/tickets2/images/

 

I don't know what I am doing and outslde of my NEW buddy.

There is no one who can walk me through this step by step in english.

 

Now here is a question.

Do I need for this to be set up in the following way...

 

My main website is http://www.indianaauditions.com

I set up the ticketing system in

http://www.indianaauditions.com/ticekts

Then my other categoires are

http://www.indianaauditions.com/tickets2

http://www.indianaauditions.com/tickets3

 

I'm wondering if it isn't supposed to be

 

http://www.indianaauditions.com/ticekts (as the main site)

http://www.indianaauditions.com/tickets/ticekt2 (as the sub site)

http://www.indianaauditions.com/tickets/ticekt3 (as the second sub site)

 

Have I had this set up the wrong way all along?

first way looks more logical to me than the second. l

 

Like mine is set up:

 

http://localhost/oscommerse/catalog/

and

http://localhost/oscommerse/catalog2/

 

 

This is what I did: From Scratch

 

1. Made a clean install of oscommerce to '/(WEB ROOT)/oscommerce/'

2. Set up store1 with install.php like you noramly would when creating a new oscommerce site.

3. Installed Multi-stores (the typical copy-over way you install most contribs...)

4. Used MySql Query browser (or whatever program you want to use) to Drop the 'administrators' table (this will get replaced by the next step if you don't drop it first you will get a table already exsists error)

5. Used MySql Query browser (or whatever program you want to use) to execute the "update.sql" script that is included in multi-stores zip file.

6. Logged onto /(WEB ROOT)/oscommerce/catalog/admin USR: Admin PWD: Admin

7. 'Insterted' new store (store2) as per the instruction in the install doc

8. at this point I copied the entire contents of /(WEB ROOT)/oscommerce/catalog/ to /(WEB ROOT)/oscommerce/catalog2/ thus creating my second store

9. Set up the FS and WS paths for each store through the admin panel as described in the multi-store install doc

10. Edited both stores configure.php files to make sure they reflect the correct WS and FS paths for each store. (did not need to comment out any lines)

11. Edited store2's database_tables.php setting the define(TABLE_CONFIGURATION, 'configuration2'); line. Where configuration2 was the name of store2's

configuration table that I chose when I "instered the store" (step #7)

12. Make sure that each store has at least one language assosiated with it through admin pannel (this is important! any store that has no language assosiated with it will not display)

Edited by maskddingo
Link to comment
Share on other sites

It was in fact a paths issue... just a stupid old paths issue.

 

I can NOT thank you enough for your help.

As I stated earlier this week, I had been using OSCMALL, and while it has been stable for the most part... it is riddled with bugs and there is no one there to answer any questions.

It's like everone is asking... and no one is answering.

 

It is so refreshing to find someone who is willing to invest the time to help out.

Thank you so much.

 

As I get this thing up and going... I will send you a link... and a little bit of a donation to boot.

 

Thanks again!!!

Link to comment
Share on other sites

Everything is working EXCEPT images.

I'm sure there are others that have that problem and I can find the answer somewhere here on the site.

Images is a funny thing... if you upload new images when you add a product though the admin panel no mater what store you curently have selected... it places them all in you original (site1's) images folder... but then site2 looks for them in site2's images folder. You will need to copy them manually to the image folder on the correct site. Or if your site is running on linux, a better solution is explained in the multi-stores install.html under 'Simplifying M-S Administration', which involves linking the directories.

Link to comment
Share on other sites

I did copy all the images over to the new directory /tickets2, but still no images.

I copied everything over but the admin... this is correct I think.

 

I don't get ANY images... and even the ones I upload aren't working.

 

OK... so I am back to square one and once again... feel like an idiot.

Link to comment
Share on other sites

I did copy all the images over to the new directory /tickets2, but still no images.

I copied everything over but the admin... this is correct I think.

 

I don't get ANY images... and even the ones I upload aren't working.

 

OK... so I am back to square one and once again... feel like an idiot.

 

Try fooling arround with your image paths... in both the configure.php and in the database... If you aren't getting ANY images at all it sounds to me like this could be the issue. A way I foudn to "debug" my images was to go to your site in a web browser, do a right click on the broken image, select properties and look ad the image source. (should be a properly formated URL to the correct image file). You could also just "view page source" from your browser and check all the <img> tags to see if the correct path is being inserted into the src property of the img tag.

Link to comment
Share on other sites

That is what is weird... and I can't figure it out.

 

indianaauditions.com/ticekts2/tickets2/images/header_account.gif

 

It is showing ticket2 TWICE... but I can't see where it would be getting this.

Edited by floydian1
Link to comment
Share on other sites

That is what is weird... and I can't figure it out.

 

indianaauditions.com/ticekts2/tickets2/images/header_account.gif

 

It is showing ticket2 TWICE... but I can't see where it would be getting this.

hmm yeah well at least you are starting to put you finger on the problem... It's the same basic issue I ran into with this software... You don't really know what constants are being used to create what paths, and where... At least we know you gotta get rid of that extra tickets2... can you maybe post your current configure.php file for tikets2?

Link to comment
Share on other sites

This all looks right to me... how bout you?

 

<?php

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

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

define('ENABLE_SSL', false);

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

define('HTTPS_COOKIE_DOMAIN', 'www.indianaauditions.com');

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

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

define('DIR_WS_HTTP_CATALOG', '/tickets2/');

define('DIR_WS_HTTPS_CATALOG', '/tickets2/');

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

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

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

?>

Link to comment
Share on other sites

Got it...

 

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

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

 

I hope someone can use the trials I have had with this and will put it to good use.

 

After I get it all up and running... I am going to put step by step instructions with all kinds of examples.

Link to comment
Share on other sites

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

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

define('ENABLE_SSL', false);

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

define('HTTPS_COOKIE_DOMAIN', 'www.indianaauditions.com');

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

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

define('DIR_WS_HTTP_CATALOG', '/tickets2/');

define('DIR_WS_HTTPS_CATALOG', '/tickets2/');

 

 

You ar repeating /ticket2/ so it is not correct.

 

Satish

Ask/Skype for Free osCommerce value addon/SEO suggestion tips for your site.

 

Check My About US For who am I and what My company does.

Link to comment
Share on other sites

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

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

define('DIR_WS_HTTP_CATALOG', '/tickets2/');

define('DIR_WS_HTTPS_CATALOG', '/tickets2/');

change to this:

 

define('HTTP_COOKIE_PATH', '');

define('HTTPS_COOKIE_PATH', '');

define('DIR_WS_HTTP_CATALOG', '');

define('DIR_WS_HTTPS_CATALOG', '');

Link to comment
Share on other sites

Hi all,

 

 

I have read and re-read all threads and still not having any luck.

 

I am wondering if I should just start from scratch and try again.

 

Here is where I am (if at all possible to avoid starting all over...this would be a tremdous relief!)

 

I have 2 domain's (bobsaonlinestores.com & bobsaonlinefl.com).

 

bobsaonlinestores.com is my default store.

 

I have installed oscommerce on both url's.

I have overwritten the /catalog/ directory of bobsaonlinefl.com and made necessary changes to configure & database_table.

 

I have:

 

created the new store under bobsaonlinestores.com/catalog/admin

installed languge on bobsaonlinefl.com

added category & product.

 

I have the categories image coming up but not the product.

 

by now I am confused (too much reading I think) weather I was suppose to create under the bobsaonlinestores.com a catalog & catalog2 OR was I suppose to add a catalog folder under the bobsaonlinefl.com url...

 

PLEASE ANY GUIDANCE WILL BE GREATLY APPRECIATED...

 

R.S.B. >_<

 

 

change to this:

 

define('HTTP_COOKIE_PATH', '');

define('HTTPS_COOKIE_PATH', '');

define('DIR_WS_HTTP_CATALOG', '');

define('DIR_WS_HTTPS_CATALOG', '');

Link to comment
Share on other sites

Hi all,

I have read and re-read all threads and still not having any luck.

 

I am wondering if I should just start from scratch and try again.

 

Here is where I am (if at all possible to avoid starting all over...this would be a tremdous relief!)

 

I have 2 domain's (bobsaonlinestores.com & bobsaonlinefl.com).

 

bobsaonlinestores.com is my default store.

 

I have installed oscommerce on both url's.

I have overwritten the /catalog/ directory of bobsaonlinefl.com and made necessary changes to configure & database_table.

 

I have:

 

created the new store under bobsaonlinestores.com/catalog/admin

installed languge on bobsaonlinefl.com

added category & product.

 

I have the categories image coming up but not the product.

 

by now I am confused (too much reading I think) weather I was suppose to create under the bobsaonlinestores.com a catalog & catalog2 OR was I suppose to add a catalog folder under the bobsaonlinefl.com url...

 

PLEASE ANY GUIDANCE WILL BE GREATLY APPRECIATED...

 

R.S.B. >_<

 

 

on your second domain, bobsaonlinefl.com you just need to install it just like you did on your main domain, place all of the catalog files in your second shop as you did in the first. so it should be bobsaonlinefl.com/catalog. then edit the database_tables.php configuration table in your second shop, to reflect the confiuration table you gave your second store.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...