Re: BackUp ZC [Support Thread]
Try setting to:
Create a SQL BackUp File From xxxx Database: Yes
Download Archive: No
This will place a zip file on the server (default your-zencart/cache/ )
Then use a ftp utility to download zip file.
Skip[/QUOTE]
I download the file more time but every time the zip file have a deference size.
File Zilla Screenshot: http://t-shirt-tshirt.com/BackUp.zc.3.png
how can this happens?
thanks
Re: BackUp ZC [Support Thread]
Download size is OK it was the Sql files from admin backups folder ;)
But the 7zip Errors are the same.
Re: BackUp ZC [Support Thread]
Check in zen cart admin if Configuration->GZip Compression is set to off '0'. If it is not off set it to off.
On some servers this interferes with zc backups zip compression.
Skip
Re: BackUp ZC [Support Thread]
Yes GZip Compression is set to off '0'
If I download all Directories I can backup ;)
With BackUp /home/tshirtcom/t-shirt-tshirt.com/Complete Site (Defualt)
I have errors.
If I zip the file I get the popup from 7zip “Confirm file replace” it looks like I have ghost file on my server.
The existing files have 0bytes and if I click yes replace it get the errors.
7ZIP popup Screenshot: http://t-shirt-tshirt.com/BackUp.zc.4.png
thanks
Re: BackUp ZC [Support Thread]
Attachment 11214
Hi,
as you can see from the image i uploaded, I have not correctly installed this mod, could you please point out what I did wrong & how i can fix it, thanks ;-)
regards,
ed
1 Attachment(s)
Re: BackUp ZC [Support Thread]
Hi,
as you can see from the image i uploaded, I have not correctly installed this mod, could you please point out what I did wrong & how i can fix it, thanks ;-)
regards,
ed
text at top of page:
Warning WARNING: You have entered /<--deliberately removed-->/extras in backup_zconfig.php as a EXCLUDED directory BUT it DOES NOT EXIST on your system.
Warning WARNING: You have entered /<--deliberately removed-->/pub in backup_zconfig.php as a EXCLUDED directory BUT it DOES NOT EXIST on your system.
Re: BackUp ZC [Support Thread]
You have listed folders in your config file backup_zconfig.php that are not on your server.
You need to edit your_admin_folder/backup_zconfig.php file.
Fine this section of code and edit it to your system.
Code:
// ***********************************************************************
// Set default exclude directories
// ***********************************************************************
$exclude_files = array("".DIR_FS_CATALOG."cache",
"".DIR_FS_CATALOG."extras",
"".DIR_FS_CATALOG."pub"
);
To this
Code:
// ***********************************************************************
// Set default exclude directories
// ***********************************************************************
$exclude_files = array("".DIR_FS_CATALOG."cache"
);
Skip
Re: BackUp ZC [Support Thread]
Quote:
Originally Posted by
skipwater
You have listed folders in your config file backup_zconfig.php that are not on your server,....etc
Hi Skip,
thanks for that fix, works a treat, what a star you are Sir! :D :clap:
http://www.zen-cart.com/images/smilies/clap.gif
many thanks!
best regards,
ed
Re: BackUp ZC [Support Thread]
backup_zc_v1.1
zencart v150
1. There are single quotation marks in the sql file that formed by this add-on as below. How to remove the quotation marks? I means removing the quotation marks surrounding the customers_id and keeping those that surrounding the 0.
Code:
CREATE TABLE `address_book` (
`address_book_id` int(11) NOT NULL AUTO_INCREMENT,
`customers_id` int(11) NOT NULL DEFAULT '0',
......
2. When selecting the files to backup, how to make a multi-choices for each time?
Re: BackUp ZC [Support Thread]
su35
Quote:
single quotation marks in the sql file
You would need to edit the class file youradmin/includes/classes/mysql_db_backup.class.php
Quote:
selecting the files to backup
Backup ZC is not setup to backup files it is based on folders. At this time there are no options to select multi-choices at once.
Skip