Exporting a MySQL database with FTP access only [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
Hay guys, i need to export a MySQL database, but i only have access to the FTP server.
How could i export the DB? Are there any scripts i could upload and run to export the database? I have the username/password for the database, but i cannot connect to the database through my local MySQL client.

You might be able to install MySQLdumper. It is a web-based (PHP or Perl) scripted tool to dump MySQL. I have had varying success on crappy servers where even PHPMyAdmin failed with this.

Related

How can i access a database hosted on bluehost/godaddy/hostinger from xampp installation [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 2 years ago.
Improve this question
I have a PHP website used for research purposes and users from 6 countries. This site needs to CRON data from different websites and store to database. currently I have hosted it on GoDaddy. right now when I try to CRON, its gives me 503 error. Can I CRON from my local installation of XAMPP and save those data to database hosted on GoDaddy or any other hosting provider? can someone help me on this by telling what I should do?
You should follow documentation here https://www.godaddy.com/help/connect-remotely-to-a-mysql-database-in-my-linux-hosting-account-16103

Connect React client to PHP server with MYSQL [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 2 years ago.
Improve this question
What are the steps need to follow to connect a react client to a PHP backend with MySQL database?
All you need is a webservice to provide data for react app. it won't really mater what really in backend to connect. You can utilise the webservice through axios no matter what backend is.

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.

Access client's SQL Database with PHP [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 7 years ago.
Improve this question
I was thinking is there a method to gain access to a client PC's SQL database? I am creating a web portal for our LAN clients and I will need to manipulate data on the client's database.
No. you cannot do this with PHP. Php runs on the server.
You cannot do this with javascript in the browser as it is not allowed access to the client pc.
You may be able to write a chrome or firefox plugin that will have access to the host pc and then write code to interact with it.
Or just write an application for your clients to install that comunicates with your app on the php server.

Connect PHP (GoDaddy) to local Oracle Database [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 8 years ago.
Improve this question
I've been trying to find a way for a while but I had no success! (OCI, PDO..)
I need Oracle (Express) or something in my php installation.
Could anyone help me? GoDaddy PHP to Oracle DB.
Thanks!
Download INSTANT_CLIENT
Set `%ORACLE_HOME%` to your instant client path
Set `%TNS_ADMIN%` to your `*.ORA` files
Add `%ORACLE_HOME%` to your `%PATH%`
Enable the extension `php_ociX.dll` in your `php.ini` file
Restart your Apache Server
Follow this example to connect to ORACLE : http://php.net/manual/en/oci8.examples.php

Categories