Base URL cookieCookie Restriction Mode TranslationMagento CE Upgraded from 1.9.1.0 to 1.9.2.0 - Multi-Store -...

Is it possible to stack the damage done by the Absorb Elements spell?

Calculate the frequency of characters in a string

Can a medieval gyroplane be built?

Can you move over difficult terrain with only 5 feet of movement?

What does "Four-F." mean?

Pronounciation of the combination "st" in spanish accents

Help prove this basic trig identity please!

Am I eligible for the Eurail Youth pass? I am 27.5 years old

How to get the n-th line after a grepped one?

PTIJ: Do Irish Jews have "the luck of the Irish"?

Are dual Irish/British citizens bound by the 90/180 day rule when travelling in the EU after Brexit?

What does "mu" mean as an interjection?

Geography in 3D perspective

What are substitutions for coconut in curry?

How to generate binary array whose elements with values 1 are randomly drawn

How does 取材で訪れた integrate into this sentence?

Brake pads destroying wheels

Do native speakers use "ultima" and "proxima" frequently in spoken English?

Is it insecure to send a password in a `curl` command?

Maths symbols and unicode-math input inside siunitx commands

Violin - Can double stops be played when the strings are not next to each other?

When did antialiasing start being available?

Variable completely messes up echoed string

How do hiring committees for research positions view getting "scooped"?



Base URL cookie


Cookie Restriction Mode TranslationMagento CE Upgraded from 1.9.1.0 to 1.9.2.0 - Multi-Store - theme switches logosMagento store views inflated databaseUnder construction messageProduct custom option price scope issue in admin sideUsers can' t login at https store because of double frontend cookieCloned site still going back to old urlMulti store with different domains, cookie store is causing problemMultiple website with same domain in magento1.9Change store code in url without changing store code













0















We want to create one Magento store with 500 different URL's
The catalog and the products would be the same, only the store logo and some CMS blocks would be different.
The checkout would all go through the main store.
SO for example, the main store would be www.mainstore.com
we would also have www.store1.com with it's own logo and header banner - www.store2.com with it's own logo and header banner.



We don't want to use Magento store views functionality because of the affect on the database, it would create a new index for each storeview.



Is there any other way to accomplish this?










share|improve this question



























    0















    We want to create one Magento store with 500 different URL's
    The catalog and the products would be the same, only the store logo and some CMS blocks would be different.
    The checkout would all go through the main store.
    SO for example, the main store would be www.mainstore.com
    we would also have www.store1.com with it's own logo and header banner - www.store2.com with it's own logo and header banner.



    We don't want to use Magento store views functionality because of the affect on the database, it would create a new index for each storeview.



    Is there any other way to accomplish this?










    share|improve this question

























      0












      0








      0








      We want to create one Magento store with 500 different URL's
      The catalog and the products would be the same, only the store logo and some CMS blocks would be different.
      The checkout would all go through the main store.
      SO for example, the main store would be www.mainstore.com
      we would also have www.store1.com with it's own logo and header banner - www.store2.com with it's own logo and header banner.



      We don't want to use Magento store views functionality because of the affect on the database, it would create a new index for each storeview.



      Is there any other way to accomplish this?










      share|improve this question














      We want to create one Magento store with 500 different URL's
      The catalog and the products would be the same, only the store logo and some CMS blocks would be different.
      The checkout would all go through the main store.
      SO for example, the main store would be www.mainstore.com
      we would also have www.store1.com with it's own logo and header banner - www.store2.com with it's own logo and header banner.



      We don't want to use Magento store views functionality because of the affect on the database, it would create a new index for each storeview.



      Is there any other way to accomplish this?







      magento-1.9 cookie base-url






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked May 16 '16 at 14:34









      HaimHaim

      1,243923




      1,243923






















          1 Answer
          1






          active

          oldest

          votes


















          3














          Yes, you can.



          One solution that came fist that involves little backend and not little frontend and do not preserve the domain after clicking links is:




          1. In the administration - disable the field "Auto-redirect to Base URL" from the URL Options section in System > Configuration > Web

          2. Create simple module with helper which contains a method, for the example with name formatStrByDomain, that transforms string such as foo_%s_bar to foo_store1com_bar


          In header.phtml you can replace <?php echo $this->getLogoSrc() ?> with something like this:



          <?php echo Mage::getBaseUrl('media') . '/wysiwyg/logos/' . Mage::helper('mymodule/myhelper')->formatStrByDomain('logo_%s_.png'); ?>


          And then in an editor from the admin in the image gallery you can create folder named 'logos' and upload a logo with name logo_store1com.png which will be used on the domain store1.com



          Similar to this you can change cms blocks from the layout or directly from the template from which the cms block is called.



          From the layout (The prefered way):



          instead of



          <block type="cms/block" name="cms_block.some_cms_block_from_layout">
          <action method="setBlockId">
          <identifier>some_cms_block_from_layout</identifier>
          </action>
          </block>


          you will:



          %s_some_cms_block_from_layout




          From template files:



          instead of



          <?php echo $this->getChildHtml('some_cms_block_from_layout'); // or creating and outputing cms block ?>


          You will:



          <?php 
          $someCmsBlock = $this->getChildHtml('some_cms_block_from_layout'); // or creating a cms block
          $someCmsBlock->setBlockId(Mage::helper('mymodule/myhelper')->formatStrByDomain('%s_some_cms_block_identifier'));
          ?>


          And create a cms block(s) in the admin with identifier which looks like store1com_some_cms_block_identifier



          It's up to you how you will manage the domains (through cpanel I suppose)






          share|improve this answer


























          • thanks MrHellish! if I point store.com and store2.com to the root domain that should be enough, no? But what would a visitor to the site see? store1.com or systemurl.com?

            – Haim
            May 16 '16 at 17:51













          • Yes, you can point them but not with redirect, but with A record. The visitor will see the site which he opens.

            – MrHellish
            May 16 '16 at 20:36











          • And when he goes to a product page from the home page what will the URL be?

            – Haim
            May 16 '16 at 20:36











          • Will be the system one, but check out this solution: stackoverflow.com/a/14835697

            – MrHellish
            May 18 '16 at 10:53













          • What if we developed a module that would duplicate Magento functionality that allows for a different base URL per store view, without creating index and catalog tables for each store view? is that even possible?

            – Haim
            May 19 '16 at 4:00











          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "479"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f115596%2fbase-url-cookie%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          3














          Yes, you can.



          One solution that came fist that involves little backend and not little frontend and do not preserve the domain after clicking links is:




          1. In the administration - disable the field "Auto-redirect to Base URL" from the URL Options section in System > Configuration > Web

          2. Create simple module with helper which contains a method, for the example with name formatStrByDomain, that transforms string such as foo_%s_bar to foo_store1com_bar


          In header.phtml you can replace <?php echo $this->getLogoSrc() ?> with something like this:



          <?php echo Mage::getBaseUrl('media') . '/wysiwyg/logos/' . Mage::helper('mymodule/myhelper')->formatStrByDomain('logo_%s_.png'); ?>


          And then in an editor from the admin in the image gallery you can create folder named 'logos' and upload a logo with name logo_store1com.png which will be used on the domain store1.com



          Similar to this you can change cms blocks from the layout or directly from the template from which the cms block is called.



          From the layout (The prefered way):



          instead of



          <block type="cms/block" name="cms_block.some_cms_block_from_layout">
          <action method="setBlockId">
          <identifier>some_cms_block_from_layout</identifier>
          </action>
          </block>


          you will:



          %s_some_cms_block_from_layout




          From template files:



          instead of



          <?php echo $this->getChildHtml('some_cms_block_from_layout'); // or creating and outputing cms block ?>


          You will:



          <?php 
          $someCmsBlock = $this->getChildHtml('some_cms_block_from_layout'); // or creating a cms block
          $someCmsBlock->setBlockId(Mage::helper('mymodule/myhelper')->formatStrByDomain('%s_some_cms_block_identifier'));
          ?>


          And create a cms block(s) in the admin with identifier which looks like store1com_some_cms_block_identifier



          It's up to you how you will manage the domains (through cpanel I suppose)






          share|improve this answer


























          • thanks MrHellish! if I point store.com and store2.com to the root domain that should be enough, no? But what would a visitor to the site see? store1.com or systemurl.com?

            – Haim
            May 16 '16 at 17:51













          • Yes, you can point them but not with redirect, but with A record. The visitor will see the site which he opens.

            – MrHellish
            May 16 '16 at 20:36











          • And when he goes to a product page from the home page what will the URL be?

            – Haim
            May 16 '16 at 20:36











          • Will be the system one, but check out this solution: stackoverflow.com/a/14835697

            – MrHellish
            May 18 '16 at 10:53













          • What if we developed a module that would duplicate Magento functionality that allows for a different base URL per store view, without creating index and catalog tables for each store view? is that even possible?

            – Haim
            May 19 '16 at 4:00
















          3














          Yes, you can.



          One solution that came fist that involves little backend and not little frontend and do not preserve the domain after clicking links is:




          1. In the administration - disable the field "Auto-redirect to Base URL" from the URL Options section in System > Configuration > Web

          2. Create simple module with helper which contains a method, for the example with name formatStrByDomain, that transforms string such as foo_%s_bar to foo_store1com_bar


          In header.phtml you can replace <?php echo $this->getLogoSrc() ?> with something like this:



          <?php echo Mage::getBaseUrl('media') . '/wysiwyg/logos/' . Mage::helper('mymodule/myhelper')->formatStrByDomain('logo_%s_.png'); ?>


          And then in an editor from the admin in the image gallery you can create folder named 'logos' and upload a logo with name logo_store1com.png which will be used on the domain store1.com



          Similar to this you can change cms blocks from the layout or directly from the template from which the cms block is called.



          From the layout (The prefered way):



          instead of



          <block type="cms/block" name="cms_block.some_cms_block_from_layout">
          <action method="setBlockId">
          <identifier>some_cms_block_from_layout</identifier>
          </action>
          </block>


          you will:



          %s_some_cms_block_from_layout




          From template files:



          instead of



          <?php echo $this->getChildHtml('some_cms_block_from_layout'); // or creating and outputing cms block ?>


          You will:



          <?php 
          $someCmsBlock = $this->getChildHtml('some_cms_block_from_layout'); // or creating a cms block
          $someCmsBlock->setBlockId(Mage::helper('mymodule/myhelper')->formatStrByDomain('%s_some_cms_block_identifier'));
          ?>


          And create a cms block(s) in the admin with identifier which looks like store1com_some_cms_block_identifier



          It's up to you how you will manage the domains (through cpanel I suppose)






          share|improve this answer


























          • thanks MrHellish! if I point store.com and store2.com to the root domain that should be enough, no? But what would a visitor to the site see? store1.com or systemurl.com?

            – Haim
            May 16 '16 at 17:51













          • Yes, you can point them but not with redirect, but with A record. The visitor will see the site which he opens.

            – MrHellish
            May 16 '16 at 20:36











          • And when he goes to a product page from the home page what will the URL be?

            – Haim
            May 16 '16 at 20:36











          • Will be the system one, but check out this solution: stackoverflow.com/a/14835697

            – MrHellish
            May 18 '16 at 10:53













          • What if we developed a module that would duplicate Magento functionality that allows for a different base URL per store view, without creating index and catalog tables for each store view? is that even possible?

            – Haim
            May 19 '16 at 4:00














          3












          3








          3







          Yes, you can.



          One solution that came fist that involves little backend and not little frontend and do not preserve the domain after clicking links is:




          1. In the administration - disable the field "Auto-redirect to Base URL" from the URL Options section in System > Configuration > Web

          2. Create simple module with helper which contains a method, for the example with name formatStrByDomain, that transforms string such as foo_%s_bar to foo_store1com_bar


          In header.phtml you can replace <?php echo $this->getLogoSrc() ?> with something like this:



          <?php echo Mage::getBaseUrl('media') . '/wysiwyg/logos/' . Mage::helper('mymodule/myhelper')->formatStrByDomain('logo_%s_.png'); ?>


          And then in an editor from the admin in the image gallery you can create folder named 'logos' and upload a logo with name logo_store1com.png which will be used on the domain store1.com



          Similar to this you can change cms blocks from the layout or directly from the template from which the cms block is called.



          From the layout (The prefered way):



          instead of



          <block type="cms/block" name="cms_block.some_cms_block_from_layout">
          <action method="setBlockId">
          <identifier>some_cms_block_from_layout</identifier>
          </action>
          </block>


          you will:



          %s_some_cms_block_from_layout




          From template files:



          instead of



          <?php echo $this->getChildHtml('some_cms_block_from_layout'); // or creating and outputing cms block ?>


          You will:



          <?php 
          $someCmsBlock = $this->getChildHtml('some_cms_block_from_layout'); // or creating a cms block
          $someCmsBlock->setBlockId(Mage::helper('mymodule/myhelper')->formatStrByDomain('%s_some_cms_block_identifier'));
          ?>


          And create a cms block(s) in the admin with identifier which looks like store1com_some_cms_block_identifier



          It's up to you how you will manage the domains (through cpanel I suppose)






          share|improve this answer















          Yes, you can.



          One solution that came fist that involves little backend and not little frontend and do not preserve the domain after clicking links is:




          1. In the administration - disable the field "Auto-redirect to Base URL" from the URL Options section in System > Configuration > Web

          2. Create simple module with helper which contains a method, for the example with name formatStrByDomain, that transforms string such as foo_%s_bar to foo_store1com_bar


          In header.phtml you can replace <?php echo $this->getLogoSrc() ?> with something like this:



          <?php echo Mage::getBaseUrl('media') . '/wysiwyg/logos/' . Mage::helper('mymodule/myhelper')->formatStrByDomain('logo_%s_.png'); ?>


          And then in an editor from the admin in the image gallery you can create folder named 'logos' and upload a logo with name logo_store1com.png which will be used on the domain store1.com



          Similar to this you can change cms blocks from the layout or directly from the template from which the cms block is called.



          From the layout (The prefered way):



          instead of



          <block type="cms/block" name="cms_block.some_cms_block_from_layout">
          <action method="setBlockId">
          <identifier>some_cms_block_from_layout</identifier>
          </action>
          </block>


          you will:



          %s_some_cms_block_from_layout




          From template files:



          instead of



          <?php echo $this->getChildHtml('some_cms_block_from_layout'); // or creating and outputing cms block ?>


          You will:



          <?php 
          $someCmsBlock = $this->getChildHtml('some_cms_block_from_layout'); // or creating a cms block
          $someCmsBlock->setBlockId(Mage::helper('mymodule/myhelper')->formatStrByDomain('%s_some_cms_block_identifier'));
          ?>


          And create a cms block(s) in the admin with identifier which looks like store1com_some_cms_block_identifier



          It's up to you how you will manage the domains (through cpanel I suppose)







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited 1 min ago









          Teja Bhagavan Kollepara

          3,00641949




          3,00641949










          answered May 16 '16 at 17:44









          MrHellishMrHellish

          563




          563













          • thanks MrHellish! if I point store.com and store2.com to the root domain that should be enough, no? But what would a visitor to the site see? store1.com or systemurl.com?

            – Haim
            May 16 '16 at 17:51













          • Yes, you can point them but not with redirect, but with A record. The visitor will see the site which he opens.

            – MrHellish
            May 16 '16 at 20:36











          • And when he goes to a product page from the home page what will the URL be?

            – Haim
            May 16 '16 at 20:36











          • Will be the system one, but check out this solution: stackoverflow.com/a/14835697

            – MrHellish
            May 18 '16 at 10:53













          • What if we developed a module that would duplicate Magento functionality that allows for a different base URL per store view, without creating index and catalog tables for each store view? is that even possible?

            – Haim
            May 19 '16 at 4:00



















          • thanks MrHellish! if I point store.com and store2.com to the root domain that should be enough, no? But what would a visitor to the site see? store1.com or systemurl.com?

            – Haim
            May 16 '16 at 17:51













          • Yes, you can point them but not with redirect, but with A record. The visitor will see the site which he opens.

            – MrHellish
            May 16 '16 at 20:36











          • And when he goes to a product page from the home page what will the URL be?

            – Haim
            May 16 '16 at 20:36











          • Will be the system one, but check out this solution: stackoverflow.com/a/14835697

            – MrHellish
            May 18 '16 at 10:53













          • What if we developed a module that would duplicate Magento functionality that allows for a different base URL per store view, without creating index and catalog tables for each store view? is that even possible?

            – Haim
            May 19 '16 at 4:00

















          thanks MrHellish! if I point store.com and store2.com to the root domain that should be enough, no? But what would a visitor to the site see? store1.com or systemurl.com?

          – Haim
          May 16 '16 at 17:51







          thanks MrHellish! if I point store.com and store2.com to the root domain that should be enough, no? But what would a visitor to the site see? store1.com or systemurl.com?

          – Haim
          May 16 '16 at 17:51















          Yes, you can point them but not with redirect, but with A record. The visitor will see the site which he opens.

          – MrHellish
          May 16 '16 at 20:36





          Yes, you can point them but not with redirect, but with A record. The visitor will see the site which he opens.

          – MrHellish
          May 16 '16 at 20:36













          And when he goes to a product page from the home page what will the URL be?

          – Haim
          May 16 '16 at 20:36





          And when he goes to a product page from the home page what will the URL be?

          – Haim
          May 16 '16 at 20:36













          Will be the system one, but check out this solution: stackoverflow.com/a/14835697

          – MrHellish
          May 18 '16 at 10:53







          Will be the system one, but check out this solution: stackoverflow.com/a/14835697

          – MrHellish
          May 18 '16 at 10:53















          What if we developed a module that would duplicate Magento functionality that allows for a different base URL per store view, without creating index and catalog tables for each store view? is that even possible?

          – Haim
          May 19 '16 at 4:00





          What if we developed a module that would duplicate Magento functionality that allows for a different base URL per store view, without creating index and catalog tables for each store view? is that even possible?

          – Haim
          May 19 '16 at 4:00


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Magento Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f115596%2fbase-url-cookie%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          “%fieldName is a required field.”, in Magento2 REST API Call for GET Method Type The Next...

          How to change City field to a dropdown in Checkout step Magento 2Magento 2 : How to change UI field(s)...

          夢乃愛華...