Magento 2 Blocks in cakephp 3How can I integrate Magento into an existing website via Cpanel and show the base URL?Integrate Magento 1.9 CE into already built site (not Wordpress) with cart info persistent across site/storeInstall 3rd party livechat script into our Magento storehow to integrate The Coupon Script in magentoMagento 2 : How to set secure cookie OR HTTP ONLY FLAG SETWhy is customer/section/* accessible publicly? Can we hide this?How to secure my website magento 2Converting Magento 1 to Magento 2 on same serverSecurity Patch SUPEE-11086 - Possible issues?Magento 2 blocks and templates

What can I do with a research project that is my university’s intellectual property?

Silly doubt about tidal effects and Einstein Field Equations

Hot coffee brewing solutions for deep woods camping

Methodology: Writing unit tests for another developer

Why does the Saturn V have standalone inter-stage rings?

Why do all the teams that I have worked with always finish a sprint without completion of all the stories?

Why don't countries like Japan just print more money?

Find the C-factor of a vote

How many people are necessary to maintain modern civilisation?

"How can you guarantee that you won't change/quit job after just couple of months?" How to respond?

What was the Shuttle Carrier Aircraft escape tunnel?

How does DC work with natural 20?

What did River say when she woke from her proto-comatose state?

What is the legal status of travelling with methadone in your carry-on?

What size of powerbank will I need to power a phone and DSLR for 2 weeks?

Is a single radon-daughter atom in air a solid?

Do I have any obligations to my PhD supervisor's requests after I have graduated?

If I wouldn't want to read the story, is writing it still a good idea?

When to remove insignificant variables?

Interaction between Leyline of Anticipation and Teferi, Time Raveler

Array initialization optimization

How to colour a table with opaque colour such that no text and no lines are visible?

Why do some professors with PhDs leave their professorships to teach high school?

How does the spell Remove Curse interact with a Sword of Vengeance?



Magento 2 Blocks in cakephp 3


How can I integrate Magento into an existing website via Cpanel and show the base URL?Integrate Magento 1.9 CE into already built site (not Wordpress) with cart info persistent across site/storeInstall 3rd party livechat script into our Magento storehow to integrate The Coupon Script in magentoMagento 2 : How to set secure cookie OR HTTP ONLY FLAG SETWhy is customer/section/* accessible publicly? Can we hide this?How to secure my website magento 2Converting Magento 1 to Magento 2 on same serverSecurity Patch SUPEE-11086 - Possible issues?Magento 2 blocks and templates






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








3















I want to incorporate my magento store products, in my cakephp site.
Is this possible? Also is this a secure way? I don't want to risk the security of the site too.










share|improve this question









New contributor



Akshay Naik is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.



















  • yes, its possible to integrate.

    – Anas Mansuri
    Jun 13 at 11:04

















3















I want to incorporate my magento store products, in my cakephp site.
Is this possible? Also is this a secure way? I don't want to risk the security of the site too.










share|improve this question









New contributor



Akshay Naik is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.



















  • yes, its possible to integrate.

    – Anas Mansuri
    Jun 13 at 11:04













3












3








3


2






I want to incorporate my magento store products, in my cakephp site.
Is this possible? Also is this a secure way? I don't want to risk the security of the site too.










share|improve this question









New contributor



Akshay Naik is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











I want to incorporate my magento store products, in my cakephp site.
Is this possible? Also is this a secure way? I don't want to risk the security of the site too.







magento2 integrate






share|improve this question









New contributor



Akshay Naik is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.










share|improve this question









New contributor



Akshay Naik is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








share|improve this question




share|improve this question








edited Jun 13 at 12:02









Anas Mansuri

40715




40715






New contributor



Akshay Naik is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








asked Jun 13 at 10:38









Akshay NaikAkshay Naik

183




183




New contributor



Akshay Naik is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




New contributor




Akshay Naik is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.














  • yes, its possible to integrate.

    – Anas Mansuri
    Jun 13 at 11:04

















  • yes, its possible to integrate.

    – Anas Mansuri
    Jun 13 at 11:04
















yes, its possible to integrate.

– Anas Mansuri
Jun 13 at 11:04





yes, its possible to integrate.

– Anas Mansuri
Jun 13 at 11:04










3 Answers
3






active

oldest

votes


















2














Follow these steps:
https://sarasotawebpros.com/is-it-possible-to-integrate-cakephp-and-magento/



It is explained very well in anove resource hor to integrate magento with cakephp.






share|improve this answer























  • This is for magento 1

    – Dominic Xigen
    Jun 13 at 18:08


















0














In summary using the magento API



https://devdocs.magento.com/guides/v2.3/rest/performing-searches.html



I recommend you take a look at something like this



https://medium.com/@ahazeemi/the-totally-beginners-guide-to-magento-2-rest-api-3a773be2b425



https://devdocs.magento.com/guides/v2.3/get-started/bk-get-started-api.html



But the idea is you are connecting to magento store from cakephp site through magento API and showing product search results.






share|improve this answer






























    0














    yes , it is possible to do so , you can use magento rest api's for it , here is the reference to the api from the magento 2 documentation
    List of REST endpoints



    To incorporate it in your cakephp 3 , you can use curl to manage the api requests here is reference for that from the magento 2 documentation
    Use cURL to run the request



    you can use postman for testing your the api endpoints and can generate the php curl code from it .



    To get a product information for a product with the sku Reebok-01 you would hit the request something like this



    http://youdomainname/index.php/rest/V1/products/Reebok-01



    Actually you have to do a lot more for it , you also have to authenticate yourself for auth 2.0



    Hope the links provided will be helpful for you to get started . If you get stuck message me , i will help :)






    share|improve this answer

























      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
      );



      );






      Akshay Naik is a new contributor. Be nice, and check out our Code of Conduct.









      draft saved

      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f278223%2fmagento-2-blocks-in-cakephp-3%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      3 Answers
      3






      active

      oldest

      votes








      3 Answers
      3






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      2














      Follow these steps:
      https://sarasotawebpros.com/is-it-possible-to-integrate-cakephp-and-magento/



      It is explained very well in anove resource hor to integrate magento with cakephp.






      share|improve this answer























      • This is for magento 1

        – Dominic Xigen
        Jun 13 at 18:08















      2














      Follow these steps:
      https://sarasotawebpros.com/is-it-possible-to-integrate-cakephp-and-magento/



      It is explained very well in anove resource hor to integrate magento with cakephp.






      share|improve this answer























      • This is for magento 1

        – Dominic Xigen
        Jun 13 at 18:08













      2












      2








      2







      Follow these steps:
      https://sarasotawebpros.com/is-it-possible-to-integrate-cakephp-and-magento/



      It is explained very well in anove resource hor to integrate magento with cakephp.






      share|improve this answer













      Follow these steps:
      https://sarasotawebpros.com/is-it-possible-to-integrate-cakephp-and-magento/



      It is explained very well in anove resource hor to integrate magento with cakephp.







      share|improve this answer












      share|improve this answer



      share|improve this answer










      answered Jun 13 at 11:03









      trushatrusha

      604




      604












      • This is for magento 1

        – Dominic Xigen
        Jun 13 at 18:08

















      • This is for magento 1

        – Dominic Xigen
        Jun 13 at 18:08
















      This is for magento 1

      – Dominic Xigen
      Jun 13 at 18:08





      This is for magento 1

      – Dominic Xigen
      Jun 13 at 18:08













      0














      In summary using the magento API



      https://devdocs.magento.com/guides/v2.3/rest/performing-searches.html



      I recommend you take a look at something like this



      https://medium.com/@ahazeemi/the-totally-beginners-guide-to-magento-2-rest-api-3a773be2b425



      https://devdocs.magento.com/guides/v2.3/get-started/bk-get-started-api.html



      But the idea is you are connecting to magento store from cakephp site through magento API and showing product search results.






      share|improve this answer



























        0














        In summary using the magento API



        https://devdocs.magento.com/guides/v2.3/rest/performing-searches.html



        I recommend you take a look at something like this



        https://medium.com/@ahazeemi/the-totally-beginners-guide-to-magento-2-rest-api-3a773be2b425



        https://devdocs.magento.com/guides/v2.3/get-started/bk-get-started-api.html



        But the idea is you are connecting to magento store from cakephp site through magento API and showing product search results.






        share|improve this answer

























          0












          0








          0







          In summary using the magento API



          https://devdocs.magento.com/guides/v2.3/rest/performing-searches.html



          I recommend you take a look at something like this



          https://medium.com/@ahazeemi/the-totally-beginners-guide-to-magento-2-rest-api-3a773be2b425



          https://devdocs.magento.com/guides/v2.3/get-started/bk-get-started-api.html



          But the idea is you are connecting to magento store from cakephp site through magento API and showing product search results.






          share|improve this answer













          In summary using the magento API



          https://devdocs.magento.com/guides/v2.3/rest/performing-searches.html



          I recommend you take a look at something like this



          https://medium.com/@ahazeemi/the-totally-beginners-guide-to-magento-2-rest-api-3a773be2b425



          https://devdocs.magento.com/guides/v2.3/get-started/bk-get-started-api.html



          But the idea is you are connecting to magento store from cakephp site through magento API and showing product search results.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Jun 13 at 10:58









          Dominic XigenDominic Xigen

          1,8101311




          1,8101311





















              0














              yes , it is possible to do so , you can use magento rest api's for it , here is the reference to the api from the magento 2 documentation
              List of REST endpoints



              To incorporate it in your cakephp 3 , you can use curl to manage the api requests here is reference for that from the magento 2 documentation
              Use cURL to run the request



              you can use postman for testing your the api endpoints and can generate the php curl code from it .



              To get a product information for a product with the sku Reebok-01 you would hit the request something like this



              http://youdomainname/index.php/rest/V1/products/Reebok-01



              Actually you have to do a lot more for it , you also have to authenticate yourself for auth 2.0



              Hope the links provided will be helpful for you to get started . If you get stuck message me , i will help :)






              share|improve this answer



























                0














                yes , it is possible to do so , you can use magento rest api's for it , here is the reference to the api from the magento 2 documentation
                List of REST endpoints



                To incorporate it in your cakephp 3 , you can use curl to manage the api requests here is reference for that from the magento 2 documentation
                Use cURL to run the request



                you can use postman for testing your the api endpoints and can generate the php curl code from it .



                To get a product information for a product with the sku Reebok-01 you would hit the request something like this



                http://youdomainname/index.php/rest/V1/products/Reebok-01



                Actually you have to do a lot more for it , you also have to authenticate yourself for auth 2.0



                Hope the links provided will be helpful for you to get started . If you get stuck message me , i will help :)






                share|improve this answer

























                  0












                  0








                  0







                  yes , it is possible to do so , you can use magento rest api's for it , here is the reference to the api from the magento 2 documentation
                  List of REST endpoints



                  To incorporate it in your cakephp 3 , you can use curl to manage the api requests here is reference for that from the magento 2 documentation
                  Use cURL to run the request



                  you can use postman for testing your the api endpoints and can generate the php curl code from it .



                  To get a product information for a product with the sku Reebok-01 you would hit the request something like this



                  http://youdomainname/index.php/rest/V1/products/Reebok-01



                  Actually you have to do a lot more for it , you also have to authenticate yourself for auth 2.0



                  Hope the links provided will be helpful for you to get started . If you get stuck message me , i will help :)






                  share|improve this answer













                  yes , it is possible to do so , you can use magento rest api's for it , here is the reference to the api from the magento 2 documentation
                  List of REST endpoints



                  To incorporate it in your cakephp 3 , you can use curl to manage the api requests here is reference for that from the magento 2 documentation
                  Use cURL to run the request



                  you can use postman for testing your the api endpoints and can generate the php curl code from it .



                  To get a product information for a product with the sku Reebok-01 you would hit the request something like this



                  http://youdomainname/index.php/rest/V1/products/Reebok-01



                  Actually you have to do a lot more for it , you also have to authenticate yourself for auth 2.0



                  Hope the links provided will be helpful for you to get started . If you get stuck message me , i will help :)







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Jun 13 at 11:17









                  KumarKumar

                  208




                  208




















                      Akshay Naik is a new contributor. Be nice, and check out our Code of Conduct.









                      draft saved

                      draft discarded


















                      Akshay Naik is a new contributor. Be nice, and check out our Code of Conduct.












                      Akshay Naik is a new contributor. Be nice, and check out our Code of Conduct.











                      Akshay Naik is a new contributor. Be nice, and check out our Code of Conduct.














                      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%2f278223%2fmagento-2-blocks-in-cakephp-3%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

                      Grendel Contents Story Scholarship Depictions Notes References Navigation menu10.1093/notesj/gjn112Berserkeree

                      Area configuration aggregation error after install Porto themeMagento 2.1 CE Installed but front/backend not loading/workingCSS not loading on page within Magento 2 pageCannot install module in Magento 2no commands defined in the “setup” namespace. in Magento2Magento 2: Static files are present but shows 404Why do i have to always run the commands to clean cache in Magento 2.1.8?Failure reason: 'Unable to unserialize value.'Error 500 after magento migrationIn production mode the site does not loadMagento 2 : Error 500 after installing

                      Middle Expansion Olielle Resaix Definition: Uttering songs of triumph shouting with joy triumphant exulting Sejunction Journal 붙다 달 고급 품목 외출 The stretch trades the screeching tin. Definition: The act of speaking with a drawl a drawl Cough Sand Definition: An uproar a quarrel a noisy outbreak Shake Iron Publicize Horse House Baby 사과 Resaix Flaggy Jelly Temporary Unequaled Puppet A drop in the bucket Shrew 성격 회원 성질 미팅 The burn frames the tacky quality. Materialistic The smoke reduces the way. Yammoe Nondescript Cheek 얼굴 배 약하다 날리다 타다 The illegal country shows the iron. Help Rule Drearien Smoke Teaching Meaty Wasp Abraham Lincoln Jaws 진심 수리하다 Size Cork Idea Convert Think Lark John Lennon 거울 청소 군 추천하다 아이스크림