PostgreSQL for Windows [closed] - php

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
Basically i used to make web systems with php and mysql, I wanted to learn a new database system, i chose postgresql. I uninstalled xampp and installed postgresql-9.3.4-2-windows-x64 with PgAdmin III.
Question 1: How can i run my php files using postgre assuming im creating a new system from scratch. Like where do i put my php file? Do i still need to install xampp again? or just put my files inside a folder in the postgresql installation folders?
Question 2: How can i manage my databases using pgAdmin instead of phpPgAdmin or any browser based postgresql database manager.

PostgreSQL is a database, you put your php files in a directory that Apache can serve, and configure Apache accordingly. You can start here
As for the how to use pgadmin, RTM.

Related

How to Run MySQL without installation and access with IP address (like http://127.0.0.1/phpmyadmin) [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 4 years ago.
Improve this question
i have to download MySQL zip from this site (https://dev.mysql.com/downloads/mysql/) and run it with cmd but i want to run it with php code and access database with IP address like Xampp or wamp server (http://127.0.0.1/phpmyadmin).
please help me about this problem.
thanks.
what you have done is installed the core of the mysqli. so It does not come with a GUI.
So you will have to manually download the GUI and install it.. its called mysqli workbench
here in this link download it.
you can't use mysqli like phpmyadmin because its a desktop version. If you really want to use the browser version you will have to install wampserver here

Is it possible to convert MySQL to AWS(Amazon web services) later? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I'm creating the web application using(PHP) CodeIgniter framework with MySQL database. Later I want to replace MySQL to AWS(Amazon web services).
Is it possible? What are the challenges to face here?
I need your inputs folks!!!
If possible, Guide me with some examples.
I think you are talking about Amazon RDS. It is pretty simple to migrate.
Step 1: Backup from MySQL
Step 2: Export to your Amazon RDS instance, you can use MySQL Workbench for this
Step 3: Configure your CodeIgniter database.php file to use the Amazon RDS.
You also ahve steps to create the database and all on AWS RDS, but thats all pretty self explained.

Run a web app coded in PHP locally [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I need help with making a webpage from several files and I am not sure how to go about it. I'm not sure how to follow these instructions can someone help me out.
Install:
Copy contents of folder "upload_to_server" to your server.
Open "includes/config.php" and edit $cfg['db_server'], $cfg['db_username'], $cfg['db_password'], $cfg['db_database'] to be your database details, and $cfg['site_url'] to be the URL to the site with a trailing slash e.g. "http://www.example.com/" or "http://www .example.com/example/" (if it has been uploaded to a sub folder named "example".
Import database.sql into your database
![Here is a picture of the files for the site][1]
[1]: http://i.stack.imgur.com/7eHOb.pn g
You need to install a local web stack first. WAMP or XAMPP for Windows, LAMP for Linux, or MAMP for Mac
You are then going to have to locate your web folder, which is usually called www, htdocs, or public_html. This is where your files need to go.
You can import databases from PhpMyAdmin, which should come bundled with your web stack.
Then you use http://localhost/whatever-folder-you-added to access it.

MySQL workflow with vagrant and git at different environments (sync) [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
I currently try to improve my workflow with the new de facto standard software like vagrant.
My setting for a PHP / MySQL project looks like this:
no team, just 1 dev; but working from 3 different machines (iMac, MacBook, Win 8.1 PC)
private Github repository (dev and master branch)
https://puphpet.com/ created vagrant box with Nginx, MySQL and PHP 5.4
rootserver for the production files and database (pull from master-branch)
Everything works fine, but I'm not sure how I could manage the different MySQL databases. Should I add a blanko database to the production server which I only use for schema updates? If so, I could sync each schema's via Navicat or similiar applications...
Are there any best practices for the mysql part?

My php application with Xampp into a single exe or msi installer? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
Xampp is a great product for newbie like us, it is very easy to install and configure. Today I am thinking of rolling up my php applications which I have it inside htdocs folder with the xampp installer. I know that Xampp has a zip package version too. And what I need to know now is that: is it possible and how to include my php application inside the xampp installer or exe for distribution? An example of what I want to achieve is timetracks (it has its own server and all the applications in one installer). Any suggestion is welcome.
You Should look into using server2go http://www.server2go-web.de/ i have used various times to package my PHP apps.

Categories