Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I would like to install a server (with php and MySql Database) into an Android device and then make it accessible from the Internet with an URL. Is there a way to do it without any port forwading?
You can install that all but your server will not be reachable without port forwarding from the internet if the device uses wifi.
Also if the internet connection is done using a sim card it will not work. This time because your provider will block incoming connections.
Only with a client on the same local lan network it will work out of the box. –
Related
Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 days ago.
Improve this question
MySQL WILL NOT start without the configured ports free!
You need to uninstall/disable/reconfigure the blocking application or reconfigure MySQL and the Control Panel to listen on a different port?
How to uninstall or disable the blocking a application?
I Tried disabling mysql workbench because i have it installed, Is it the reason here.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 1 year ago.
Improve this question
I have a Bluehost Shared Hosting Plan, and it does not provide me the root server access. So how do I create a Database from the PHP code? Any solutions really appreciated...
So how do I create a Database from the PHP code?
You Can't Do That™ with SQL on hosting services with shared MySQL servers. If I remember correctly you can do it from the cpanel.
There are some services that give you a private MySQL server. https://nearlyfreespeech.net is a good example.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 years ago.
Improve this question
I am relatively new to Web development. I was reading about Remote files in PHP, and I came across this question at
Quara
My question is why would we require to use a second server in general?
Normally multiple servers used for high availability.
Using single server is a bottle nick. If it is goes down, your web will not be available.
Also multiple servers used to balance the load on each server.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
How to find static IP address of my non scalable app(free tier). I need it for My dns management A(HOST)entry field.any rhc window command
If you're trying to set Custom URL name for your OpenShift app, I suggest editing CNAME record instead of hard-coding the A record.
Edit the CNAME record of your domain to point to <app>-<namespace>.rhcloud.com
Run rhc alias add <app> <domain> command (OpenShift creates new VHost for your domain)
Wait for the DNS to get propagated (how long does it take)
Read Custom URL names for your PaaS applications (host forwarding and cnames) blog post for more information.
If you really want to know the IP address of your app, you can print it using OPENSHIFT_<cartridge>_IP environment variable:
rhc ssh <app> 'echo $OPENSHIFT_PHP_IP'
See the full list of environment variables exposed by OpenShift platform.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
I made a PHP based webapp and a customer of my needs it on his website. Now I want to put the PHP code on my server and let the customer's website include it remotely. How do I set this up? And can I restrict the acces when the customer doesn't need the app anymore and is it secure?
There is nothing such as remote PHP. Doesn't work that way. However you can setup some API to communicate between the two servers on backend. You'd still need both servers to be capable of this interaction, that means both servers still need to be fully functional. And if your code on client's server can talk to your API on host server, then they can take that code and see how it interacts with your host and replicate it.
A very simple solution would be to put the PHP-generated content from your website in an <iframe> on their website.