Custom coded configurator on Cpanel Subdomain for existing Shopify marketplace - server

a. I have a Shopify shop ex: shop.com
b. The product configurator is a PHP built and its hosted on a server (https://zaorstudiofurniture.com/index.php?page=configurator)
c. How can I setup configurator.shop.com URL if my domain is hosted on Shopify?

You cannot run PHP code on Shopify. You can however set your DNS up so that your configurator App runs as a subdomain on zaorstudiofurniture.com. For example, you would run your shopify store as:
www.zaorstudiofurniture.com
and your configurator as:
config.zaorstudiofurniture.com
with simple DNS settings. Shopify has some DNS settings internal to their admin that is good for ensuring Shopify stores run on domains correctly, but no one really needs that unless they are total n00bs to Internet. Setting up your own DNS ensures you can run your PHP, your Shopify, email and any other services without too much trouble.

Related

Netlify not support wildcard subdomain

In Netlify I have tried and even upgraded the paid plan with their community forums reference. But later found that they are not supporting wildcard subdomain configuration.
For the basic level subdomain with one-click app setup, Netlify is good. Except for wildcard domain it's a best to configure your frontend apps.
For the basic level subdomain with one click app setup Netlify is good. Except wildcard domain its a best to configure your frontend apps.

What is the correct way to share gsuite add-on with external users without publishing to Marketplace?

Using a company domain gsuite account, I have successfully deployed a gsuite Google Docs add-on for my company domain using the G Suite Marketplace SDK, but I have some users that are outside of the domain e.g. part-timers, contractors etc. who are using their personal name#gmail.com accounts. How can I share the add-on with them to install?
In G Suite Marketplace SDK > Publish, I have this App URL, but it gives error 400 so I don't know where to go next.
https://gsuite.google.com/marketplace/app/appname/<project number>
Unfortunately, you will need to publish it to the Public for anyone outside your domain to install it.
Here is some more info:
https://developers.google.com/gsuite/add-ons/how-tos/publishing-gsuite-addons#step_4_configure_the_marketplace_sdk

Difference between deployment and hosting

What is the difference between hosting and deployment? Do web apps, android apps and websites get deployed or do they get hosted?
The process of moving code from your local computer to a public host (server) is called Deployment. It is basically putting out your project to the world so that people can use it.
Web hosting is a service provided by Web Hosts. Web hosts are companies that provide this service which includes:
Web space for storing data of your website and
Domain name
For Example :
Netlify is a web hosting company and it is used for deploying static websites for free.
Deployment is phase of product lifecycle when software and data deployed , that is installed , delivered to environment, configured, etc. After that product enters in next phase - usage. And in this phase we can say that software and data is hosted. This steps can be repeated.

Dev Environment Facebook Graph API

I have doubts about how could I create objects, actions and aggregation and test it on development environment. Since facebook needs to scrap my webpage to get the object when i register an action. How could I configure my dev environment?
I've had my network guys poke a hole in the firewall to my dev server and have updated DNS point my development subdomain (ie dev.domain.tld).

Local Facebook App Development using localhost

Is it possible to develop facebook apps locally on my system so that the callback URL need not be a public URL like http://abc.com and instead can be an internal IP address like localhost http://127.0.0.1?
It is now possible to develop Facebook apps locally.
I believe this is true especially if you're developing in an iframe, which is now the standard way of developing facebook apps (FBML is deprecated).
In case this does not work, there are still some ways to make working more convenient.
Take a look at this answer:
Testing FB apps is still a rather primitive process.
I generally setup a test application that is a complete copy of the production settings inside the FB development environment that uses an SSH tunnel to point to my development server. You can setup as many applications as you need inside FB - I generally have a development application, a staging app and production. Staging and Production are both on "live" servers rather than an SSH tunnel.
The rest of the answers to this question detail different workflows that people have utilized to make it more convenient to develop on a remote host.
you can use http://127.0.0.1/ProjectName as the callback url, or your ip address itself