0
votes
1answer
28 views

Backing up large database [closed]

I'm trying to back up a big database for my localhost server for development stuff. But if I backup through phpmyadmin it freezes my website, which I am trying to prevent. Even when I go to the ...
3
votes
1answer
28 views

Is there a way to copy the folder according to the changes in the day through PHP?

Here I wanted to take the backup of my folder by using PHP I am having the folder structure as follows: ragu |__Raji |__ Ranjith If i am going to take the backup on today means the whole ...
0
votes
0answers
29 views

Transfer backup from one instance to another instance In Amazon ec2

I have 2 instance in amazon server. eg. Instance A and B Instance A has the DB stored in it. Instance 2 has the application stored in it. I need to make the backup of the DB and which is in ...
2
votes
3answers
347 views

How to import .sql.gz file into my database via MYSQL/PHP? (not command line)

I have a backup file (.sql.gz) and I want to import it to my empty database on localhost programmatically like how phpmyadmin does, inside a browser with php/mysql/javascript and not via command line. ...
0
votes
1answer
27 views

Detect if cPanel / WHM is currently running, in PHP?

I have full automatic backups running fine in WHM, and I'm now implementing a script to automatically download content to a database, however they're not playing nicely together. There's several ...
-1
votes
1answer
77 views

Export a PHP/MYSQL database, table by table

I am trying to save a array of tables into separate file. Why doesn't this code work? <?php $query = "SELECT * INTO OUTFILE 'pessoa_Out.txt' FIELDS TERMINATED BY ',' ENCLOSED BY '\"' LINES ...
0
votes
2answers
61 views

Backup an entire database with PHP/MYSQL

I am trying to perform php/mysql backups I receive values from a form page and then with the command "select tables", i save those values in a array. After that i do a "for" loop to backup each ...
0
votes
1answer
119 views

MySql Table wise Backup and Restore

I'm working on Mysql data backup and restore system but stuck that how to go with it. An Option which i may think of Table Wise Backup Method Creating A Directory With Dateandtime and directoy will ...
-3
votes
1answer
114 views

codeigniter database backup with PDO [closed]

i have database backup function /** * bazis beqqafis shenaxva */ public function testbackup(){ $this->load->dbutil(); $prefs = array( ...
0
votes
2answers
87 views

Backup mysql database in ms-access format using php

i am using mysqldump to backup the database available in MySQL using the PHP to the sql dump format which creates the .SQL file. if i want to view / check the backup file then i have to import it ...
0
votes
2answers
122 views

DB backup script - Call to undefined function error - due to if statement

The error Fatal error: Call to undefined function backup_tables() The code: <?php $doBackupDB=$_REQUEST["doBackupDB"]; if($doBackupDB=='yes') { // create new fresh backup // dont forget to give ...
-6
votes
2answers
49 views

Getting a Parse error: syntax error, unexpected ';' [closed]

Minor problem with following code: <?php echo exec(‘cd /home/username/backup/files; tar -cvpzf `date +%y-%m-%d_%H-%M`.tar /home/username/public_html’); ?> Error I am getting is: Parse ...
1
vote
2answers
218 views

PHP Cronjobs using javascript/AJAX

i've a php script that runs a database backup and compress it without any particular html output. This script includes a time check to avoid execution before a specified delay stored in db. Now the ...
0
votes
2answers
171 views

Application Folder backup using Codeigniter

I am trying to create a web app using codeigniter which will be used over a home or office network. Now Im looking for a backup option which can be done from the web protal. For example, in my htdocs ...
0
votes
0answers
127 views

PHP Recursively Adding Files to .zip

I have used this website for a while now but never had the instance that I couldn't get everything fixed/working. My code gets all of the files from a selected directory and puts them in a .zip. This ...
0
votes
3answers
93 views

Ways to backup MySQL databases regularly? [closed]

I'd like to know what options do you recommend when it comes to backing up the information stored in MySQL databases. Maybe there are some ready solutions/plugins available that I can install on my ...
1
vote
1answer
220 views

backup mysql tables with php

I would like to backup tables (with PHP) from a db if the table prefix is matching with a sub string. What I was trying and is not working error_reporting(1); $dbname = 'wp_dev'; if ...
1
vote
1answer
82 views

Back Up My SQL database in PHP

Hello everyone I am pretty new to php. I am trying to create a back up of my sql database and I want the back up to run on php server at the click of a button. I found some templates the issues I am ...
1
vote
2answers
123 views

IMAP attachments

I'm creating a script in PHP, which's job is to backup an IMAP server to a MySQL database. My question now is: If an email has an attachment, is that attachment embedded in the email itself or is it ...
1
vote
2answers
34 views

How can I upload my joomla from scratch while keeping everything in place

my Joomla site has been infected with some virus, I managed to take it out but I'm afraid of that the attacker might have left a backdoor inside my server. I'm willing to take everything out of my ...
1
vote
0answers
472 views

Backup Entire Website Using PHP

Using PHP, I am developing a CMS. This needs to support website backups. Musts: Compressed ZIP Folders Must work on at least Linux and Windows Must work on PHP 5.0, PHP 4 would be nice I just need ...
0
votes
1answer
192 views

unexpected end of file error in mysqldump via php script

I am just using mysqldump from php script , but it gives error saying unexpected end of file. Please help , am stuck up. **Error:** sh: -c: line 1: syntax error: unexpected end of file ...
0
votes
2answers
70 views

How to Upload WinRAR Backup File

I have a backup of my website in WinRAR file, I wana upload it on my new website... So I uploaded that WinRAR file on my new website panel, but it didn't worked... Actually I'm moving my website to ...
0
votes
2answers
111 views

PHP Backup & Download

I'd like to create a backup script for files and folders on my server and I found this: # Name of the buckup file $filename = 'BACKUP_' . date('Y.m.d') . '.tar.gz'; # Target path where to save the ...
0
votes
2answers
36 views

Backing up uploaded document on Linux

So I have a PHP application running on linux machine which is using a mysql database. I have manage to add the back up my mysql database every day by adding a code in the CRONTAB. In my application ...
0
votes
3answers
265 views

How to speed up php backup script?

I have been using a mysql db backup script in php and the backups take 21 hours my dbs. I want to use it as a daily backup script through cli and cron and was wondering if you guys could take a look ...
1
vote
2answers
83 views

Backing up thousands of images in PHP?

I am just currently wondering how I can backup a folder which contains 8000+ images without the script timing out, the folder in all contains around 1.5gb of data, which we need to backup ourselves ...
1
vote
3answers
157 views

Is there a way to load a page with Cron Job?

I have created a php file; so every time I run that, it will run copy all the database to a folder inside my host. So I was wondering is there a way to call a cron job to load that page every day ?
1
vote
1answer
126 views

Is there a way to export/restore a database using Doctrine2?

Basically, I want the administrator of a web site to be able to make database backups and have the ability to restore them without making him to mess with SQL commands. I don't mind about the output ...
0
votes
1answer
146 views

PHP MYSQLi - Backup column data (into another table/column) before updating column

I am working on a system which keeps track of what was in the field, prior to it being updated. I'd prefer using a table for the previous data, but am open to other options. This is some sample code ...
0
votes
1answer
111 views

Is there a way of restoring a MySQL database on a time schedule

I've been creating scheduled MySQL backups and then sending them via FTP to another test server using PHP. I need to know if there is a program that I can run to restore the files on my other server ...
1
vote
1answer
177 views

Can I create a button on my site to back up my database?

I want to setup a button in my content management system where I can save a backup sql file for the table shown on a particular page. I just want it to download the SQL file to my computer if this is ...
1
vote
1answer
106 views

php code in FTP to backup db using URL

I fund and inserted this code in my FTP in a backup.php that works great but it copy the file into the root folder (homez/) 1- I would like to put these backup files in a homez/backupDB any idea ...
2
votes
1answer
176 views

Linux server backup with PHP?

I manage a VPS of my client. He wanted a backup solution includes some folders and mysql databases. OS is Ubuntu, web server is apache. I don't want my client to mess with ssh or ftp. I think i can ...
1
vote
3answers
921 views

back up mysql database using php

I'am using the code below to make a backup to mysql database . but when I import the backup file to new database the file imported successfuly but the new database is empty(no tables). this is the ...
2
votes
2answers
1k views

PHP call link & open new tab & continue running program?

I'm trying to write a php program that does sql backups and I have so many databases I want to split the processes into 3 separate ones. My backup.php file takes in a string argument and also outputs ...
0
votes
1answer
86 views

Creating a PHP CMS with an entry backup/restore option

I've been working on a CMS and wanted to add a backup/restore function. I want it to backup a saved entry every other time it is edited so that if a client makes a change they are unhappy with or ...
4
votes
1answer
958 views

create MySQL dump in pure PHP5

I'm creating a backup script for my project, which will be executed via cron. Right now I'm using: <?php include("config.php"); /* Misc */ $pathtobackup = realpath('.'); $backupfolder = ...
0
votes
2answers
168 views

Replicate / Backup Entire Site & SQL Databases To Remote Server With PHP Cronjob

I am trying to make a complete file & mySQL backup of my site each night. I was thinking the best way of doing it would be to have a cronjob run each night that would login to a remote server and ...
1
vote
2answers
617 views

Is there a PHP Archive utility to zip your web root folder for backup?

I wanted to backup my whole folder and files that are inside www or public_html and put it just one archive format (.tar or .zip). That way when downloading it would just be fast and not messy. My ...
0
votes
1answer
364 views

How can I export certain rows from a table with codeigniter?

I'm trying to create a function where users can export their entries in our system to an sql file. I found this page in the codeigniter documentation ...
0
votes
2answers
84 views

How to get a backup of files at specific interval of time?

I have created a web application storing files online. I want to get a backup of those uploaded files on a regular basis, meaning after a day or an hour. What should I do?
0
votes
0answers
177 views

Writing a cross platform backup script

I have been trying to write a cross platform encrypted, incremental and full backup script that would also integrate with my clients' wordpress and joomla sites with some work. Initially i tried to ...
1
vote
3answers
158 views

Empty SQL Files - PHPmyAdmin

So I'm trying to export my e-commerce database via PhpMyAdmin and it keeps downloading empty SQL Files. I'm 100% sure i'm selecting all my tables and I'm using the default sets when opening the export ...
1
vote
4answers
557 views

MySQL, PHP, Apache Application Backup

Should i need to stop Apache and MySQL servers before backup? Or can I make while they are working? Under one computer's virtual host, there are numerial sites running. I am asking for general backup ...
0
votes
3answers
208 views

backup .sql file is empty

i am trying to backup mysql database by using this code include ("functions_cp/f_connection.php"); Sqlconnection() ; $dbname = "Reservebox"; $dbhost = "localhost"; ...
1
vote
5answers
242 views

Backup MySql Database?

I have asked this question before but I haven't got an answer, so I'm rephrasing it. I want to back up a db using either: system("mysqldump -h DB_HOST -u DB_USER -p DB_PASS logindb > ...
0
votes
1answer
379 views

Create MySql Database Backup / Rollback

I understand that I can use MySql's command BACKUP and RESTORE to backup a database and rollback when needed. My question is, would I be able to execute it this way: sql="BACKUP my_db TO DISK ...
0
votes
2answers
261 views

How to Copy Drupal 7 site with only Admin access No FTP

I broke up with my boyfriend so he changed the FTP password to my Drupal 7 website he was hosting through his host. I still have admin access but that's about it. I can get the database(s). But ...
0
votes
1answer
909 views

PHP Backup Script to backup public_html only

$filename= "Backup.tar"; // The name (and optionally path) of the dump file $ftp_server = "IP"; // Name or IP. Shouldn't have any trailing slashes and shouldn't be prefixed with ftp:// ...

1 2 3