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'm fairly new to working with live MySQL database and so I just wanted to ask if it possible to edit and view a google cloud SQL mirror using xampp phpmyadmin? if so may I request a bit of guideline to achieve this task or reference to documentation containing relevant guidance.
Thank you in advance.
Yes, with a SQL GUI like MySQL WorkBench which is free.
You need to provide :
host (this correspond to cloud database public IP address)
database name (you need to create a database inside Google Cloud SQL)
user name (you need to create a user inside Google Cloud SQL, or use root user)
user password
Moreover, you have to authorized your personal public IP address. (Connections tab on Google Cloud SQL)
There is a lot of GUI for SQL database, one of my favorites is TablePlus
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 9 days ago.
Improve this question
I'm trying to create a web page which will store uploaded files in my account's OneDrive, regardless of which user uploads a file to the page. The page is hosted using XAMPP. I'd attempted to set this up using Google Drive, but found that I need to have a paid Workspace account to do so.
To avoid more wasted time I want to know whether this can be set up with OneDrive, as some of the questions I've seen are ambiguous about whether the files are stored to a specified OneDrive or that of the user interacting with the page. I have a Microsoft Account with Office 365; some pages I've seen have said this is neccessary.
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 looking for a way to host a webpage and a mySQL data base but in internal network, like an intranet for example.
When I was working on the website and the database, I used MAMP to emule a server on my PC but this work only on one PC. I'm looking for a way to share this website on different PC but only on my internal network.
Sorry for bad english. If there's something not understandable, please ask.
If it's a "repost question", please lead me to the answer I'm looking for. If you need more information, be pleased to ask them.
Thanks.
Unless it is very sensitive I would go for an external webhotel like godaddy.com or similar in your country. And add password protection on the site.
If you want to host it you need a computer that is on 24/7 and install your setup there, but then you are required to handle hardware failures, updating the software and so on.
MAMP and others should work. You might be visiting http://localhost:1234/index.php on your machine so on your network on other device, try http://yourmachinename:1234/index.php. As long as the ports are open, this should work.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I have created a website using xampp(localhost) as one of the project in my college.Now our professor said we have to host it. So i searched for the free hosting websites. I got 000webhost.com as one of the website.I created an account; downloaded FileZilla using which I uploaded all my project folders.
Now I created database on 000webhost.com changing my code accordingly from localhost to server name , root to username; and password.
My Problem is that now how should i create a table for storing data.Because in my actual website ( on my pc using localhost) i created directly using phpmyadmin.
I want to create a single table once and use it again and again for example if a user inputs some details then I need to store their details.
So can anyone please tell me how should i create table directly on 000webhost.com??
Although this question is really off-topic, I am going to answer it anyways.
Your webhost, should -if it supports SQL- provide you with the details for your mysql. So for example, if I had the host host.com, I would connect using their provided data, which could be db.host.com with port 3306. Just put those details instead of localhost to connect.
Then they should have a utility like PHPMyAdmin to manage the database, or you have to get one yourself (there is plenty of SQL managers out there!)
Update: 000webhost apparently has CPanel, on CPanel there should be a MySQL link which takes you to the utility.
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.